On a complex project,Documentation Index
Fetch the complete documentation index at: https://docs.joggr.ai/llms.txt
Use this file to discover all available pages before exploring further.
/gg-plan may produce several phases that need to execute in sequence. You finished Phase 1 (database schema) and now you want to run execute and verify on Phase 2 (API endpoints) specifically — without touching Phase 3 (frontend) yet.
When you need to advance a specific phase rather than running the full workflow end-to-end, you target it by number. This is also useful for resuming after a pause or retrying a failed step.
Prerequisites
- An active Workflows project — run
/gg-statusto confirm - A plan with phases defined — run
/gg-planif no phases exist yet - Codebase docs generated — run
/gg-codebaseif not done already
1. Check Phase State
Run/gg-status to see where each phase is in the pipeline:
plan/done is ready for /gg-execute. A phase at execute/done is ready for /gg-verify.
You can also check a phase’s state directly by opening its file and reading the frontmatter:
step and status fields at the top reflect the current state.
2. Run the Step Command
Pass the phase number to the corresponding command:/gg-discuss 3— discuss Phase 3/gg-research 1— research Phase 1/gg-plan 4— plan Phase 4/gg-verify 2— verify Phase 2
Troubleshooting
Phase shows no eligible steps
Phase shows no eligible steps
The phase may be blocked by a dependency on another phase. Run
/gg-status to see which phases
need to complete first, then advance those before returning to this phase.Phase stuck in 'running' or 'error' status
Phase stuck in 'running' or 'error' status
This usually happens when a session was interrupted. Re-run the step command — Workflows will detect the
stale state and resume. If it remains stuck, see the Troubleshooting
guide for how to reset phase state manually.