# 주간 회고 실행 결과 (2026-08-17 09:00 KST)

실행: `python3 /home/jay/workspace/scripts/weekly-retro.py` (exit 0)

## 1) 기본 실행 — 현재 주 2026-34 (08-17 ~ 08-23)
```json
{
  "week": "2026-34",
  "period": {
    "start": "2026-08-17",
    "end": "2026-08-23"
  },
  "teams": {
    "dev2-team": {
      "task_count": 1,
      "avg_duration_seconds": 3812.448404,
      "fix_pct": 0.0,
      "session_pattern": {
        "deep": 1,
        "medium": 0,
        "micro": 0
      }
    }
  },
  "commits": {
    "total": 0,
    "by_type": {
      "feat": 0,
      "fix": 0,
      "refactor": 0,
      "docs": 0,
      "chore": 0,
      "other": 0
    }
  },
  "trend": {
    "task_count_change_pct": -96.96969696969697,
    "avg_duration_change_pct": -84.95757575393178
  },
  "anomalies": [
    "생산성 급감: dev2-team (이전 12건 → 현재 1건, 91.7% 감소)"
  ]
}
```

## 2) 보조 실행 — 직전 주 2026-33 (08-10 ~ 08-16)
```json
{
  "week": "2026-33",
  "period": {
    "start": "2026-08-10",
    "end": "2026-08-16"
  },
  "teams": {
    "dev1-team": {
      "task_count": 8,
      "avg_duration_seconds": 3731.821781375,
      "fix_pct": 0.0,
      "session_pattern": {
        "deep": 5,
        "medium": 2,
        "micro": 1
      }
    },
    "unknown": {
      "task_count": 10,
      "avg_duration_seconds": 3027.0055002999998,
      "fix_pct": 0.0,
      "session_pattern": {
        "deep": 5,
        "medium": 3,
        "micro": 2
      }
    },
    "dev2-team": {
      "task_count": 12,
      "avg_duration_seconds": 4736.208777333333,
      "fix_pct": 0.0,
      "session_pattern": {
        "deep": 10,
        "medium": 2,
        "micro": 0
      }
    },
    "dev3-team": {
      "task_count": 2,
      "avg_duration_seconds": 2372.852813,
      "fix_pct": 0.0,
      "session_pattern": {
        "deep": 2,
        "medium": 0,
        "micro": 0
      }
    },
    "dev5-team": {
      "task_count": 1,
      "avg_duration_seconds": 112855.315501,
      "fix_pct": 0.0,
      "session_pattern": {
        "deep": 1,
        "medium": 0,
        "micro": 0
      }
    }
  },
  "commits": {
    "total": 0,
    "by_type": {
      "feat": 0,
      "fix": 0,
      "refactor": 0,
      "docs": 0,
      "chore": 0,
      "other": 0
    }
  },
  "trend": {
    "task_count_change_pct": 725.0,
    "avg_duration_change_pct": 2387.5095044139152
  },
  "anomalies": []
}
```

## 3) 검증 메모
- commits.total=0 은 스크립트 결함 아님. workspace repo 최신 커밋 = 2026-07-05 (244e0d9c). 직접 git log 재현으로 확인.
- fix_pct 는 커밋에서만 파생(compute_fix_pct). 커밋 0 → 전 팀 0.0 은 품질 신호가 아니라 무의미값.
- detect_anomalies 규칙은 fix_pct>30% 와 작업수 50% 급감 2종뿐. 소요시간 이상치 규칙 없음 → dev5 31.3시간 단일 작업이 미탐지.
