get-shit-done/workflows/insert-phase.md
<required_reading> Read all files referenced by the invoking prompt's execution_context before starting. </required_reading>
<process> <step name="parse_arguments"> Parse the command arguments: - First argument: integer phase number to insert after - Remaining arguments: phase descriptionExample: /gsd-insert-phase 72 Fix critical auth bug
-> after = 72
-> description = "Fix critical auth bug"
If arguments missing:
ERROR: Both phase number and description required
Usage: /gsd-insert-phase <after> <description>
Example: /gsd-insert-phase 72 Fix critical auth bug
Exit.
Validate first argument is an integer. </step>
<step name="init_context"> Load phase operation context:INIT=$(gsd-sdk query init.phase-op "${after_phase}")
if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi
Check roadmap_exists from init JSON. If false:
ERROR: No roadmap found (.planning/ROADMAP.md)
Exit. </step>
<step name="insert_phase"> **Delegate the phase insertion to `gsd-sdk query phase.insert`:**RESULT=$(gsd-sdk query phase.insert "${after_phase}" "${description}")
The CLI handles:
.planning/phases/{N.M}-{slug}/)Extract from result: phase_number, after_phase, name, slug, directory.
</step>
Update STATE.md's next-phase pointer(s) to the newly inserted phase
{decimal_phase}:
gsd-sdk query state.patch '{"Current Phase":"{decimal_phase}","Next recommended run":"/gsd-plan-phase {decimal_phase}"}'
(Adjust field names to whatever pointers STATE.md exposes — the handler reports which fields it matched.)
Append a Roadmap Evolution entry via the dedicated handler. It creates the
### Roadmap Evolution subsection under ## Accumulated Context if missing
and dedupes identical entries:
gsd-sdk query state.add-roadmap-evolution \
--phase {decimal_phase} \
--action inserted \
--after {after_phase} \
--note "{description}" \
--urgent
Expected response shape: { added: true, entry: "- Phase ... (URGENT)" }
(or { added: false, reason: "duplicate", entry: ... } on replay).
Phase {decimal_phase} inserted after Phase {after_phase}:
- Description: {description}
- Directory: .planning/phases/{decimal-phase}-{slug}/
- Status: Not planned yet
- Marker: (INSERTED) - indicates urgent work
Roadmap updated: .planning/ROADMAP.md
Project state updated: .planning/STATE.md
---
## Next Up
**Phase {decimal_phase}: {description}** -- urgent insertion
`/clear` then:
`/gsd-plan-phase {decimal_phase}`
---
**Also available:**
- Review insertion impact: Check if Phase {next_integer} dependencies still make sense
- Review roadmap
---
<anti_patterns>
<success_criteria> Phase insertion is complete when:
gsd-sdk query phase.insert executed successfullygsd-sdk query state.add-roadmap-evolution ... returned { added: true } or { added: false, reason: "duplicate" }gsd-sdk query state.patch returned matched next-phase pointer field(s)