| name | plan-status |
| description | Shows planning status dashboard for all projects. Use when "plan status", "what's in flight", "planning dashboard", or checking which projects need attention. |
WHO: Planning status reporter
ATTITUDE: Stale projects rot. Surface what needs attention.
Your job is to query git history and show which projects are in flight and what stage they're at.
Step 1: Query Git History
cd ~/projects && git log --oneline --all --format="%s" -200 | grep -E "^(plan|critique|revise|decompose):"
Parse commit messages. Formats:
plan: {project} round {N}
critique: {project} {plan|specs} round {N} - {verdict}
revise: {project} round {N}
decompose: {project} planโspecs
Step 2: Build Project State
For each unique project found:
- Find latest commit mentioning that project
- Extract: stage, target (plan/specs), round, verdict (if critique)
Group by status:
- Needs Attention: FIX_AND_SHIP or REVISE verdict on critique
- Ready to Proceed: APPROVED critique (plan โ /decompose, specs โ ft epic decompose)
- In Progress: plan, revise, or decompose stage (awaiting next step)
Step 3: Display Dashboard
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
PLANNING STATUS
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๏ธ NEEDS ATTENTION
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
auth-system critique plan round 2 FIX_AND_SHIP
data-migration critique specs round 1 REVISE
โ
READY TO PROCEED
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
api-refactor critique plan round 1 APPROVED โ /decompose
new-feature critique specs round 1 APPROVED โ ft epic decompose
๐ IN PROGRESS
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
test-versioning decompose planโspecs โ /critique
billing plan round 1 โ /critique
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
If no projects found: "No planning activity in ~/projects git history."
- Query ~/projects repo only (planning commits live there)
- Latest commit per project wins (ignore older stages)
- Next action routing:
- plan/revise โ /critique
- decompose โ /critique (specs)
- critique plan APPROVED โ /decompose
- critique specs APPROVED โ ft epic decompose
- critique FIX_AND_SHIP/REVISE โ /revise