| name | gsd-add-phase |
| description | Add phase to end of current milestone in roadmap |
<windsurf_skill_adapter>
A. Skill Invocation
- This skill is invoked when the user mentions
gsd-add-phase or describes a task matching this skill.
- Treat all user text after the skill mention as
{{GSD_ARGS}}.
- If no arguments are present, treat
{{GSD_ARGS}} as empty.
B. User Prompting
When the workflow needs user input, prompt the user conversationally:
- Present options as a numbered list in your response text
- Ask the user to reply with their choice
- For multi-select, ask for comma-separated numbers
C. Tool Usage
Use these Windsurf tools when executing GSD workflows:
Shell for running commands (terminal operations)
StrReplace for editing existing files
Read, Write, Glob, Grep, Task, WebSearch, WebFetch, TodoWrite as needed
D. Subagent Spawning
When the workflow needs to spawn a subagent:
- Use
Task(subagent_type="generalPurpose", ...)
- The
model parameter maps to Windsurf's model options (e.g., "fast")
</windsurf_skill_adapter>
Add a new integer phase to the end of the current milestone in the roadmap.
Routes to the add-phase workflow which handles:
- Phase number calculation (next sequential integer)
- Directory creation with slug generation
- Roadmap structure updates
- STATE.md roadmap evolution tracking
<execution_context>
@/Users/diegocaminor/Documents/proyectos/anyone-ai/final-project/anyone-ai-interviewer-frontend/.windsurf/get-shit-done/workflows/add-phase.md
</execution_context>
Arguments: {{GSD_ARGS}} (phase description)
Roadmap and state are resolved in-workflow via init phase-op and targeted tool calls.
**Follow the add-phase workflow** from `@/Users/diegocaminor/Documents/proyectos/anyone-ai/final-project/anyone-ai-interviewer-frontend/.windsurf/get-shit-done/workflows/add-phase.md`.
The workflow handles all logic including:
- Argument parsing and validation
- Roadmap existence checking
- Current milestone identification
- Next phase number calculation (ignoring decimals)
- Slug generation from description
- Phase directory creation
- Roadmap entry insertion
- STATE.md updates