mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-25 17:25:23 +02:00
* fix: replace /gsd: command format with /gsd- skill format in all suggestions All next-step suggestions shown to users were still using the old colon format (/gsd:xxx) which cannot be copy-pasted as skills. Migrated all occurrences across agents/, commands/, get-shit-done/, docs/, README files, bin/install.js (hardcoded defaults for claude runtime), and get-shit-done/bin/lib/*.cjs (generate-claude-md templates and error messages). Updated tests to assert new hyphen format instead of old colon format. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: migrate remaining /gsd: format to /gsd- in hooks, workflows, and sdk Addresses remaining user-facing occurrences missed in the initial migration: - hooks/: fix 4 user-facing messages (pause-work, update, fast, quick) and 2 comments in gsd-workflow-guard.js - get-shit-done/workflows/: fix 21 Skill() literal calls that Claude executes directly (installer does not transform workflow content) - sdk/prompt-sanitizer.ts: update regex to strip /gsd- format in addition to legacy /gsd: format; update JSDoc comment - tests/: update autonomous-ui-steps, prompt-sanitizer to assert new format Note: commands/gsd/*.md frontmatter (name: gsd:xxx) intentionally unchanged — installer derives skillName from directory path, not the name field. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(plan-phase): preserve --chain flag in auto-advance sync and handle ui-phase gate in chain mode Bug 1: step 15 sync-flag check only guarded against --auto, causing _auto_chain_active to be cleared when plan-phase is invoked without --auto in ARGUMENTS even though a --chain pipeline was active. Added --chain to the guard condition, matching discuss-phase behaviour. Bug 2: UI Design Contract gate (step 5.6) always exited the workflow when UI-SPEC was missing, breaking the discuss --chain pipeline silently. When _auto_chain_active is true, the gate now auto-invokes gsd-ui-phase --auto via Skill() and continues to step 6 without prompting. Manual invocations retain the existing AskUserQuestion flow. * fix: remove <sub>/clear</sub> pattern and duplicate old-format command in discuss-phase.md --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
3.9 KiB
3.9 KiB
コンテキストウィンドウモニター
ツール使用後に実行されるフック(Claude Code では PostToolUse、Gemini CLI では AfterTool)で、コンテキストウィンドウの使用量が高くなった際にエージェントに警告します。
課題
ステータスラインはコンテキスト使用量をユーザーに表示しますが、エージェント自身はコンテキストの制限を認識していません。コンテキストが不足すると、エージェントは限界に達するまで作業を続行し、タスクの途中で状態を保存できないまま停止する可能性があります。
仕組み
- ステータスラインフックがコンテキストメトリクスを
/tmp/claude-ctx-{session_id}.jsonに書き込む - 各ツール使用後、コンテキストモニターがこのメトリクスを読み取る
- 残りコンテキストがしきい値を下回ると、
additionalContextとして警告を注入する - エージェントが会話内で警告を受け取り、適切に対応できる
しきい値
| レベル | 残量 | エージェントの動作 |
|---|---|---|
| Normal | > 35% | 警告なし |
| WARNING | <= 35% | 現在のタスクをまとめ、新しい複雑な作業の開始を避ける |
| CRITICAL | <= 25% | 即座に停止し、状態を保存する(/gsd-pause-work) |
デバウンス
エージェントへの繰り返し警告を防ぐため:
- 最初の警告は即座に発火
- 以降の警告は間に5回のツール使用が必要
- 深刻度のエスカレーション(WARNING -> CRITICAL)はデバウンスをバイパス
アーキテクチャ
ステータスラインフック (gsd-statusline.js)
| 書き込み
v
/tmp/claude-ctx-{session_id}.json
^ 読み取り
|
コンテキストモニター (gsd-context-monitor.js, PostToolUse/AfterTool)
| 注入
v
additionalContext -> エージェントが警告を確認
ブリッジファイルはシンプルな JSON オブジェクトです:
{
"session_id": "abc123",
"remaining_percentage": 28.5,
"used_pct": 71,
"timestamp": 1708200000
}
GSD との統合
GSD の /gsd-pause-work コマンドは実行状態を保存します。WARNING メッセージはこのコマンドの使用を提案し、CRITICAL メッセージは即座の状態保存を指示します。
セットアップ
両フックは npx get-shit-done-cc のインストール時に自動的に登録されます:
- ステータスライン(ブリッジファイルの書き込み): settings.json の
statusLineとして登録 - コンテキストモニター(ブリッジファイルの読み取り): settings.json の
PostToolUseフックとして登録(Gemini ではAfterTool)
~/.claude/settings.json(Claude Code)への手動登録:
{
"statusLine": {
"type": "command",
"command": "node ~/.claude/hooks/gsd-statusline.js"
},
"hooks": {
"PostToolUse": [
{
"hooks": [
{
"type": "command",
"command": "node ~/.claude/hooks/gsd-context-monitor.js"
}
]
}
]
}
}
Gemini CLI(~/.gemini/settings.json)の場合、PostToolUse の代わりに AfterTool を使用します:
{
"hooks": {
"AfterTool": [
{
"hooks": [
{
"type": "command",
"command": "node ~/.gemini/hooks/gsd-context-monitor.js"
}
]
}
]
}
}
安全性
- フックは全体を try/catch で囲み、エラー時はサイレントに終了
- ツール実行をブロックしない — モニターの故障がエージェントのワークフローを壊してはならない
- 古いメトリクス(60秒以上前)は無視
- ブリッジファイルが存在しない場合も正常に処理(サブエージェント、新規セッション)