Check project progress, show context, and route to next action (execute or plan)
Displays project status, summarizes recent work, and routes to the next appropriate action.
/plugin marketplace add glittercowboy/get-shit-done/plugin install get-shit-done@get-shit-donegsd/Provides situational awareness before continuing work. </objective>
<process> <step name="verify"> **Verify planning structure exists:**If no .planning/ directory:
No planning structure found.
Run /gsd:new-project to start a new project.
Exit.
If missing STATE.md or ROADMAP.md: inform what's missing, suggest running /gsd:new-project.
</step>
.planning/STATE.md for living memory (position, decisions, issues).planning/ROADMAP.md for phase structure and objectives.planning/PROJECT.md for current state (What This Is, Core Value, Requirements)
</step>{phase}-CONTEXT.md exists in phase directory
</step># [Project Name]
**Progress:** [████████░░] 8/10 plans complete
## Recent Work
- [Phase X, Plan Y]: [what was accomplished - 1 line]
- [Phase X, Plan Z]: [what was accomplished - 1 line]
## Current Position
Phase [N] of [total]: [phase-name]
Plan [M] of [phase-total]: [status]
CONTEXT: [✓ if CONTEXT.md exists | - if not]
## Key Decisions Made
- [decision 1 from STATE.md]
- [decision 2]
## Open Issues
- [any deferred issues or blockers]
## What's Next
[Next phase/plan objective from ROADMAP]
</step>
<step name="route">
**Determine next action based on verified counts.**
Step 1: Count plans, summaries, and issues in current phase
List files in the current phase directory:
ls -1 .planning/phases/[current-phase-dir]/*-PLAN.md 2>/dev/null | wc -l
ls -1 .planning/phases/[current-phase-dir]/*-SUMMARY.md 2>/dev/null | wc -l
ls -1 .planning/phases/[current-phase-dir]/*-ISSUES.md 2>/dev/null | wc -l
ls -1 .planning/phases/[current-phase-dir]/*-FIX.md 2>/dev/null | wc -l
ls -1 .planning/phases/[current-phase-dir]/*-FIX-SUMMARY.md 2>/dev/null | wc -l
State: "This phase has {X} plans, {Y} summaries, {Z} issues files, {W} fix plans."
Step 1.5: Check for unaddressed UAT issues
For each *-ISSUES.md file, check if matching *-FIX.md exists. For each *-FIX.md file, check if matching *-FIX-SUMMARY.md exists.
Track:
issues_without_fix: ISSUES.md files without FIX.mdfixes_without_summary: FIX.md files without FIX-SUMMARY.mdStep 2: Route based on counts
| Condition | Meaning | Action |
|---|---|---|
| fixes_without_summary > 0 | Unexecuted fix plans exist | Go to Route A (with FIX.md) |
| issues_without_fix > 0 | UAT issues need fix plans | Go to Route E |
| summaries < plans | Unexecuted plans exist | Go to Route A |
| summaries = plans AND plans > 0 | Phase complete | Go to Step 3 |
| plans = 0 | Phase not yet planned | Go to Route B |
Route A: Unexecuted plan exists
Find the first PLAN.md without matching SUMMARY.md.
Read its <objective> section.
---
## ▶ Next Up
**{phase}-{plan}: [Plan Name]** — [objective summary from PLAN.md]
`/gsd:execute-plan [full-path-to-PLAN.md]`
<sub>`/clear` first → fresh context window</sub>
---
Route B: Phase needs planning
Check if {phase}-CONTEXT.md exists in phase directory.
If CONTEXT.md exists:
---
## ▶ Next Up
**Phase {N}: {Name}** — {Goal from ROADMAP.md}
<sub>✓ Context gathered, ready to plan</sub>
`/gsd:plan-phase {phase-number}`
<sub>`/clear` first → fresh context window</sub>
---
If CONTEXT.md does NOT exist:
---
## ▶ Next Up
**Phase {N}: {Name}** — {Goal from ROADMAP.md}
`/gsd:plan-phase {phase}`
<sub>`/clear` first → fresh context window</sub>
---
**Also available:**
- `/gsd:discuss-phase {phase}` — gather context first
- `/gsd:research-phase {phase}` — investigate unknowns
- `/gsd:list-phase-assumptions {phase}` — see Claude's assumptions
---
Route E: UAT issues need fix plans
ISSUES.md exists without matching FIX.md. User needs to plan fixes.
---
## ⚠ UAT Issues Found
**{plan}-ISSUES.md** has {N} issues without a fix plan.
`/gsd:plan-fix {plan}`
<sub>`/clear` first → fresh context window</sub>
---
**Also available:**
- `/gsd:execute-plan [path]` — continue with other work first
- `/gsd:verify-work {phase}` — run more UAT testing
---
Step 3: Check milestone status (only when phase complete)
Read ROADMAP.md and identify:
Count total phases and identify the highest phase number.
State: "Current phase is {X}. Milestone has {N} phases (highest: {Y})."
Route based on milestone status:
| Condition | Meaning | Action |
|---|---|---|
| current phase < highest phase | More phases remain | Go to Route C |
| current phase = highest phase | Milestone complete | Go to Route D |
Route C: Phase complete, more phases remain
Read ROADMAP.md to get the next phase's name and goal.
---
## ✓ Phase {Z} Complete
## ▶ Next Up
**Phase {Z+1}: {Name}** — {Goal from ROADMAP.md}
`/gsd:plan-phase {Z+1}`
<sub>`/clear` first → fresh context window</sub>
---
**Also available:**
- `/gsd:verify-work {Z}` — user acceptance test before continuing
- `/gsd:discuss-phase {Z+1}` — gather context first
- `/gsd:research-phase {Z+1}` — investigate unknowns
---
Route D: Milestone complete
---
## 🎉 Milestone Complete
All {N} phases finished!
## ▶ Next Up
**Complete Milestone** — archive and prepare for next
`/gsd:complete-milestone`
<sub>`/clear` first → fresh context window</sub>
---
**Also available:**
- `/gsd:verify-work` — user acceptance test before completing milestone
---
</step>
<step name="edge_cases">
**Handle edge cases:**
/gsd:plan-phase [next]/gsd:resume-work
</step><success_criteria>