What's the recommended GSD workflow for re-slicing a roadmap? #1857
SituationAfter executing Phase 1, I realized that phases were too big. My Phase 1 tried to deliver auth + navigation + projects + tasks + deploy all at once. I want to break it into thinner slices (e.g., Phase 1 = just auth + app shell, Phase 2 = projects, Phase 3 = tasks, etc.). I've already reset to a clean state post phase 1 (post-discussion, pre-research) using tag + soft reset to preserve history. I do have valuable context in phase 1 that i want to preserve. QuestionWhat's the recommended GSD workflow for restructuring an existing roadmap into thinner phases? Claude Code is suggesting the following:
Is there a recommended pattern for this? Some specific questions:
Context
|
Replies: 1 comment 1 reply
|
Great questions. Here's the recommended approach for re-slicing a roadmap: 1. Edit ROADMAP.md directlyYes, edit ROADMAP.md directly. This is the pragmatic and correct approach. GSD tracks state via STATE.md and the phase directory structure — the roadmap is a planning document, not a state machine. After editing: # Create the new phase directories
/gsd-add-phase 02 projects
/gsd-add-phase 03 tasks
# etc.Then run the normal pipeline (discuss → research → plan → execute) for each new phase. 2. Existing discussion contextKeep your 3. Phase numberingRenumber cleanly. GSD supports 4. Requirements mappingUpdate the Summary workflow
For the commands reference, see COMMANDS.md. |
Great questions. Here's the recommended approach for re-slicing a roadmap:
1. Edit ROADMAP.md directly
Yes, edit ROADMAP.md directly. This is the pragmatic and correct approach. GSD tracks state via STATE.md and the phase directory structure — the roadmap is a planning document, not a state machine. After editing:
Then run the normal pipeline (discuss → research → plan → execute) for each new phase.
2. Existing discussion context
Keep your
01-CONTEXT.mdfor the thinner Phase 1 — just remove decisions that now belong to later phases. Don't re-run/gsd-discuss-phasefor Phase 1 if the remaining deci…