From spec-flow
Displays all plans under docs/plans/ with status information and lets the user select a plan to edit, build, research, or check. Use as a hub for navigating existing plans.
How this skill is triggered — by the user, by Claude, or both
Slash command
/spec-flow:listThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
`docs/plans/` 配下のプラン一覧をステータス付きで表示し、アクション選択のハブとして機能する。
docs/plans/ 配下のプラン一覧をステータス付きで表示し、アクション選択のハブとして機能する。
Step 1: プラン走査 + ステータス表示
Step 2: プラン選択 + アクション選択
Glob docs/plans/**/plan.md
0件なら「プランが見つかりません。/spec で新規作成してください。」と案内して終了。
各プランの plan.md(title, feature-name)、progress.md(タスク状態)、result.md(judgment)を読み、ステータスを算出する:
| 条件 | ステータス |
|---|---|
| result.md あり → judgment 値 | 検証済み / 部分合格 / 要修正 |
progress.md のタスクに → あり | 実装中 |
progress.md のタスクが全て ✓ | 実装完了 |
progress.md あり、全て - | 未着手 |
| plan.md のみ | 仕様作成済み |
番号付きリストでステータスと共に表示する。
AskUserQuestion でプランを選択させ、続けてアクションを選択させる:
Skill(spec, args: "{feature-name}") で起動Skill(build, args: "{feature-name}") で起動Skill(check, args: "{feature-name}") で起動npx claudepluginhub 884js/spec-flow --plugin spec-flowProvides a session briefing showing active plans, progress per phase, and suggested focus. Use at session start or when checking progress.
Checks .planning/ directory integrity for files like STATE.md, config.json, ROADMAP.md; reports PASS/FAIL issues and optionally auto-fixes corruption.