Files
2nd/10_Wiki/Topics/Domain_General/From_Other/Burnout.md
T
Antigravity Agent c24165b8bc refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조
에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게
[공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류.
문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인).

- Topic_Programming → Domain_Programming (내부 구조 보존)
- Topic_Graphic → Domain_Design
- Topic_Business → Domain_Product
- Topic_General → Domain_General
- _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning),
  Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing)
- 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서)
- 빈 폴더 정리 (memory/procedures)
- 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-11 11:05:56 +09:00

6.0 KiB

id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id title category status canonical_id aliases duplicate_of source_trust_level confidence_score verification_status tags raw_sources last_reinforced github_commit tech_stack
wiki-2026-0508-burnout Burnout 10_Wiki/Topics verified self
Occupational Burnout
Job Burnout
Maslach Burnout
none A 0.95 applied
mental-health
occupational-health
engineering-management
productivity
2026-05-10 pending
language framework
n/a WHO ICD-11

Burnout

매 한 줄

"매 chronic workplace stress 의 unsuccessful management 의 result — exhaustion + cynicism + reduced efficacy 의 triad". Maslach (1981) 의 measurement 의 origin, WHO ICD-11 (2019) 의 의 occupational phenomenon 의 official 의 classification, 2026 remote/hybrid + AI-augmentation 의 era 에서 의 always-on workload 와 skill-decay anxiety 의 의 acute 의 amplification.

매 핵심

매 Maslach 3 dimensions

  • Emotional Exhaustion: depleted, drained, "tank empty"
  • Depersonalization / Cynicism: detachment, callousness toward work / colleagues
  • Reduced Personal Accomplishment: efficacy loss, "nothing matters"

매 6 mismatch sources (Maslach & Leiter)

  • Workload: chronic overload
  • Control: autonomy 의 lack
  • Reward: recognition 의 absence
  • Community: relationship breakdown
  • Fairness: unequal treatment
  • Values: misalignment with employer

매 응용

  1. Engineering team early-warning — commit pattern + on-call burden 의 signal.
  2. Recovery protocol — sabbatical, role rotation, scope reduction.
  3. Prevention — sustainable pace, buffer time, retrospective culture.
  4. Post-incident — psychological safety + blameless review.

💻 패턴

Maslach Burnout Inventory (MBI) — quick screen

from dataclasses import dataclass

@dataclass
class MBIScore:
    emotional_exhaustion: int   # 0-54
    depersonalization: int      # 0-30
    personal_accomplishment: int  # 0-48 (reverse)
    
    def risk_level(self) -> str:
        ee_high  = self.emotional_exhaustion >= 27
        dp_high  = self.depersonalization >= 13
        pa_low   = self.personal_accomplishment <= 31
        score = sum([ee_high, dp_high, pa_low])
        return ["Low", "Moderate", "High", "Severe"][score]

Engineering burnout signals (commit telemetry)

import pandas as pd

def burnout_signals(commits: pd.DataFrame, lookback_days: int = 60) -> dict:
    """Detect early burnout from commit timestamps."""
    recent = commits[commits["ts"] > pd.Timestamp.now() - pd.Timedelta(days=lookback_days)]
    return {
        "weekend_pct": (recent["ts"].dt.dayofweek >= 5).mean(),
        "after_hours_pct": ((recent["ts"].dt.hour < 9) | (recent["ts"].dt.hour > 19)).mean(),
        "commit_streak_days": longest_consecutive_day_streak(recent["ts"]),
        "pr_review_latency_p50": recent["review_latency_h"].median(),
    }

# Trigger: weekend > 25% OR streak > 21d OR after-hours > 20%

On-call rotation fairness (page burden)

def on_call_burden(pages: list[dict], engineer: str, window_days: int = 30) -> dict:
    """ICE-style page-volume + sleep-disruption tracking."""
    e_pages = [p for p in pages if p["engineer"] == engineer]
    sleep_disrupted = [p for p in e_pages if 0 <= p["hour"] < 6]
    return {
        "total_pages": len(e_pages),
        "sleep_disrupted_pages": len(sleep_disrupted),
        "comp_time_owed_h": len(sleep_disrupted) * 4,
    }

Recovery protocol (manager template)

@dataclass
class RecoveryPlan:
    duration_weeks: int
    scope_reduction_pct: float  # e.g. 0.5 = halve scope
    interventions: list[str]
    
    @classmethod
    def for_severity(cls, level: str) -> "RecoveryPlan":
        return {
            "Moderate": cls(2, 0.25, ["scope cut", "no on-call"]),
            "High":     cls(4, 0.5,  ["sabbatical week", "no meetings", "therapy"]),
            "Severe":   cls(8, 1.0,  ["medical leave", "psychiatric eval"]),
        }[level]

Sustainable-pace policy (team-level)

# .team/sustainable-pace.yaml
hours:
  expected_weekly: 40
  hard_cap: 50
  
on_call:
  rotation_size_min: 6
  weekend_compensation: comp_day
  paging_threshold: 3_per_shift

vacation:
  minimum_consecutive_days: 5
  manager_approval_required: false
  blackout_periods: []  # no blackouts allowed

friday_deploy: false
weekend_release: false  # except emergency

Post-incident psychological safety

Blameless retrospective questions:
1. What did you observe? (no "you should have")
2. What constraint were you under?
3. What would have helped?
4. What systemic gap surfaced?

매 결정 기준

상황 Approach
Early signal (1 dimension high) Scope reduction + check-in
Moderate (2 dimensions) Recovery plan + therapy referral
Severe (3 dimensions) Medical leave + role evaluation
Team-wide pattern Systemic — review WLB, rotation, scope
Post-major-incident Blameless retro + comp time

기본값: engineering manager 의 default — quarterly MBI screen + commit telemetry + sustainable-pace policy.

🔗 Graph

🤖 LLM 활용

언제: burnout signal detection from telemetry, recovery plan draft, retrospective question generation. 언제 X: clinical diagnosis 의 substitute 의 X — therapy 의 separate.

안티패턴

  • "Resilience training"-only: individual fix 의 systemic problem 의 mask.
  • Pizza & ping-pong: perks 의 root cause (workload, control) 의 not-address.
  • Burnout = weakness: stigma 의 의 의 의 reporting 의 suppress.
  • Manager 의 "just push through": short-term gain 의 long-term attrition.

🧪 검증 / 중복

  • Verified (Maslach & Leiter The Truth About Burnout; WHO ICD-11 QD85).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — Maslach 3D, MBI, commit telemetry signals, recovery protocol