{
  "_설명": [
    "세션 키퍼 훅 (2026-09-04) — 사람이 저장을 기억하지 않아도 작업 위치가 남게 한다. 정본: docs/session-keeper.md",
    "Stop        매 턴 끝  → 기록(jsonl)에서 체크포인트 복구 (머리·꼬리만 읽어 1초 안팎)",
    "PreCompact  압축 직전 → 같은 복구 (컨텍스트가 지워지기 전 마지막 스냅샷)",
    "SessionStart 세션 시작 → checkpoint show --brief 를 컨텍스트로 넣는다 (새 세션이 기억할 필요 없음)",
    "⚠ 계정 전환·한도 우회 훅은 없다 — 이용정책 위반이라 만들지 않는다"
  ],
  "hooks": {
    "Stop": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "node tools/checkpoint.mjs recover --quiet",
            "timeout": 20
          }
        ]
      }
    ],
    "PreCompact": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "node tools/checkpoint.mjs recover --quiet",
            "timeout": 20
          }
        ]
      }
    ],
    "SessionStart": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "node tools/checkpoint.mjs show --brief",
            "timeout": 20
          }
        ]
      }
    ]
  }
}