Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/kewton/commandmate/progress-reportgit clone --depth 1 https://github.com/Kewton/CommandMateWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00017 | $0.01114 |
| Opus 5 | $0.00009 | $0.00557 |
| Sonnet 5 | $0.00003 | $0.00223 |
| Haiku 4.5 | $0.00002 | $0.00111 |
Grade B, and why
progress-report scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
cat .claude/prompts/progress-report-core.md How it starts
The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.
進捗報告スキル
概要
開発の各フェーズ(TDD、テスト、リファクタリング)の結果を集約し、進捗レポートを作成するスキルです。
このスキルはスラッシュコマンドモードで動作します(ユーザーが直接実行)。
使用方法
/progress-report [Issue番号]- 「Issue #[番号]の進捗レポートを作成してください」
- 「現在の開発状況をまとめてください」
実行内容
共通プロンプトを読み込んで実行します:
cat .claude/prompts/progress-report-core.md
↑ このプロンプトの内容に従って、進捗レポートを作成してください。
動作モード
スラッシュコマンドモード:
- ユーザーから対話的に情報を取得
- Issue番号を確認
- 各フェーズの結果ファイルを読み込み
- Git履歴を確認
- 結果をMarkdown形式でターミナルに表示
レポート内容
- 概要 - Issue番号、ステータス
- フェーズ別結果 - TDD、テスト
- 総合品質メトリクス - カバレッジ、静的解析エラー
- 検証メトリクス - 対象期間の
report metrics出力(tasks / verification / intervention) - ブロッカー - 問題点、課題(あれば)
- 次のステップ - 具体的なアクション提案
4. 検証メトリクスの取り方
commandmate report metrics --days <対象期間の日数> --json > /tmp/vibe-metrics.json 2>&1; echo $?
--daysは 1..90 の整数のみ。範囲外はクランプされずexit 2で失敗するので、 期間を計算した側で 1..90 に丸めてから渡す。> ファイル 2>&1; echo $?の形を崩さないこと。| grepに繋ぐと exit code が消え、失敗を成功として読む。- exit code が 0 以外なら、このセクションごと省略する(サーバ未稼働は
1、認証エラー・範囲外は2、commandmate不在は127)。進捗レポートの生成自体は止めない。失敗時のファイルには JSON ではなく エラー文が入るため、パースしてから判断してはいけない。 - exit 0 でも
tasks.total/verification.runs/intervention.humanResponds/intervention.autoAnsweredがすべて 0 なら、同じくセクションごと省略する(日次レポートのbuildMetricsSection()と同じ方針。 ゼロの羅列は「何も起きていない」をモデルに「発見」として語らせるため)。 - 比率は分母ゼロのとき
0ではなくnullで返る。nullはn/aと書き、0%と書いてはいけない。
載せる項目:
| 群 | フィールド |
|---|---|
| tasks | total / succeeded / failed / notStarted / successRate / avgRetryLoops |
| verification | runs / passRate / gateFailBreakdown(failCount 降順・最大 10 件) |
| intervention | humanResponds / autoAnswered |
intervention.suppressedByPolicyは v1 では常にnull(抑止ログが DB 化されていない)なので載せない。
完了条件
以下をすべて満たすこと:
- すべての結果ファイルを読み込み済み
- Git履歴を確認済み
- 品質メトリクスを集計済み
- 次のステップを提案済み
サブエージェントモード
サブエージェントとして呼び出す場合は、PM Auto-Devが以下のように実行します:
Use progress-report-agent to generate progress report for Issue #166.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 100 lines · 17 tokens per session scan B e3bd891604e4
progress-report is a command published in the GitHub repository Kewton/CommandMate (39 stars, last pushed yesterday), licensed MIT. It adds 17 tokens to every session and 1,114 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
crow-image
Show an image in Crow's Images panel — pass the file path as the argument.
release-notes
Draft release notes, recommend and apply a version bump, and update CHANGELOG.md for the next dormouse release by analyzing all merge commits and squash-merged PRs since the last release tag. Used as step 2 of the release checklist in docs/specs/deploy.md.
refresh-compare-pages
Freshly research, add, and refresh marketing compare pages, then open a descriptive PR.
build-docs
Build and serve the docs site locally with Jekyll.
release
Cut a domux release — tag HEAD, push, watch the GH Action.
review-session-log
Use when the user asks what a session did, wants to review session history, or needs to find errors in a session log.