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 Augment tools when executing GSD workflows:
launch-process for running commands (terminal operations)
str-replace-editor for editing existing files
view for reading files and listing directories
save-file for creating new files
grep for searching code (or use MCP servers for advanced search)
web-search, web-fetch for web queries
add_tasks, view_tasklist, update_tasks for task management
D. Subagent Spawning
When the workflow needs to spawn a subagent:
- Use the built-in subagent spawning capability
- Define agent prompts in
.augment/agents/ directory
Purpose: Create historical record of shipped version, archive milestone artifacts (roadmap + requirements), and prepare for next milestone.
Output: Milestone archived (roadmap + requirements), PROJECT.md evolved, git tagged.
- @/home/delorenj/code/bhappy/.augment/get-shit-done/workflows/complete-milestone.md (main workflow)
- @/home/delorenj/code/bhappy/.augment/get-shit-done/templates/milestone-archive.md (archive template)
User input:
- Version: {{version}} (e.g., "1.0", "1.1", "2.0")
Follow complete-milestone.md workflow:
Check for audit:
- Look for
.planning/v{{version}}-MILESTONE-AUDIT.md
- If missing or stale: recommend
/gsd-audit-milestone first
- If audit status is
gaps_found: recommend /gsd-plan-milestone-gaps first
- If audit status is
passed: proceed to step 1
## Pre-flight Check
{If no v{{version}}-MILESTONE-AUDIT.md:}
⚠ No milestone audit found. Run `/gsd-audit-milestone` first to verify
requirements coverage, cross-phase integration, and E2E flows.
{If audit has gaps:}
⚠ Milestone audit found gaps. Run `/gsd-plan-milestone-gaps` to create
phases that close the gaps, or proceed anyway to accept as tech debt.
{If audit passed:}
✓ Milestone audit passed. Proceeding with completion.
Verify readiness:
- Check all phases in milestone have completed plans (SUMMARY.md exists)
- Present milestone scope and stats
- Wait for confirmation
Gather stats:
- Count phases, plans, tasks
- Calculate git range, file changes, LOC
- Extract timeline from git log
- Present summary, confirm
Extract accomplishments:
- Read all phase SUMMARY.md files in milestone range
- Extract 4-6 key accomplishments
- Present for approval
Archive milestone:
- Create
.planning/milestones/v{{version}}-ROADMAP.md
- Extract full phase details from ROADMAP.md
- Fill milestone-archive.md template
- Update ROADMAP.md to one-line summary with link
Archive requirements:
- Create
.planning/milestones/v{{version}}-REQUIREMENTS.md
- Mark all v1 requirements as complete (checkboxes checked)
- Note requirement outcomes (validated, adjusted, dropped)
- Delete
.planning/REQUIREMENTS.md (fresh one created for next milestone)
Update PROJECT.md:
- Add "Current State" section with shipped version
- Add "Next Milestone Goals" section
- Archive previous content in
<details> (if v1.1+)
Commit and tag:
- Stage: MILESTONES.md, PROJECT.md, ROADMAP.md, STATE.md, archive files
- Commit:
chore: archive v{{version}} milestone
- Tag:
git tag -a v{{version}} -m "[milestone summary]"
- Ask about pushing tag
Offer next steps:
/gsd-new-milestone — start next milestone (questioning → research → requirements → roadmap)
- Milestone archived to
.planning/milestones/v{{version}}-ROADMAP.md
- Requirements archived to
.planning/milestones/v{{version}}-REQUIREMENTS.md
.planning/REQUIREMENTS.md deleted (fresh for next milestone)
- ROADMAP.md collapsed to one-line entry
- PROJECT.md updated with current state
- Git tag v{{version}} created
- Commit successful
- User knows next steps (including need for fresh requirements)
- Load workflow first: Read complete-milestone.md before executing
- Verify completion: All phases must have SUMMARY.md files
- User confirmation: Wait for approval at verification gates
- Archive before deleting: Always create archive files before updating/deleting originals
- One-line summary: Collapsed milestone in ROADMAP.md should be single line with link
- Context efficiency: Archive keeps ROADMAP.md and REQUIREMENTS.md constant size per milestone
- Fresh requirements: Next milestone starts with
/gsd-new-milestone which includes requirements definition
1---2name: gsd-complete-milestone-33description: Archive completed milestone and prepare for next version4---56<augment_skill_adapter>7## A. Skill Invocation8- This skill is invoked when the user mentions `gsd-complete-milestone` or describes a task matching this skill.9- Treat all user text after the skill mention as `{{GSD_ARGS}}`.10- If no arguments are present, treat `{{GSD_ARGS}}` as empty.1112## B. User Prompting13When the workflow needs user input, prompt the user conversationally:14- Present options as a numbered list in your response text15- Ask the user to reply with their choice16- For multi-select, ask for comma-separated numbers1718## C. Tool Usage19Use these Augment tools when executing GSD workflows:20- `launch-process` for running commands (terminal operations)21- `str-replace-editor` for editing existing files22- `view` for reading files and listing directories23- `save-file` for creating new files24- `grep` for searching code (or use MCP servers for advanced search)25- `web-search`, `web-fetch` for web queries26- `add_tasks`, `view_tasklist`, `update_tasks` for task management2728## D. Subagent Spawning29When the workflow needs to spawn a subagent:30- Use the built-in subagent spawning capability31- Define agent prompts in `.augment/agents/` directory32</augment_skill_adapter>3334<objective>35Mark milestone {{version}} complete, archive to milestones/, and update ROADMAP.md and REQUIREMENTS.md.3637Purpose: Create historical record of shipped version, archive milestone artifacts (roadmap + requirements), and prepare for next milestone.38Output: Milestone archived (roadmap + requirements), PROJECT.md evolved, git tagged.39</objective>4041<execution_context>42**Load these files NOW (before proceeding):**4344- @/home/delorenj/code/bhappy/.augment/get-shit-done/workflows/complete-milestone.md (main workflow)45- @/home/delorenj/code/bhappy/.augment/get-shit-done/templates/milestone-archive.md (archive template)46 </execution_context>4748<context>49**Project files:**50- `.planning/ROADMAP.md`51- `.planning/REQUIREMENTS.md`52- `.planning/STATE.md`53- `.planning/PROJECT.md`5455**User input:**5657- Version: {{version}} (e.g., "1.0", "1.1", "2.0")58 </context>5960<process>6162**Follow complete-milestone.md workflow:**63640. **Check for audit:**6566 - Look for `.planning/v{{version}}-MILESTONE-AUDIT.md`67 - If missing or stale: recommend `/gsd-audit-milestone` first68 - If audit status is `gaps_found`: recommend `/gsd-plan-milestone-gaps` first69 - If audit status is `passed`: proceed to step 17071 ```markdown72 ## Pre-flight Check7374 {If no v{{version}}-MILESTONE-AUDIT.md:}75 ⚠ No milestone audit found. Run `/gsd-audit-milestone` first to verify76 requirements coverage, cross-phase integration, and E2E flows.7778 {If audit has gaps:}79 ⚠ Milestone audit found gaps. Run `/gsd-plan-milestone-gaps` to create80 phases that close the gaps, or proceed anyway to accept as tech debt.8182 {If audit passed:}83 ✓ Milestone audit passed. Proceeding with completion.84 ```85861. **Verify readiness:**8788 - Check all phases in milestone have completed plans (SUMMARY.md exists)89 - Present milestone scope and stats90 - Wait for confirmation91922. **Gather stats:**9394 - Count phases, plans, tasks95 - Calculate git range, file changes, LOC96 - Extract timeline from git log97 - Present summary, confirm98993. **Extract accomplishments:**100101 - Read all phase SUMMARY.md files in milestone range102 - Extract 4-6 key accomplishments103 - Present for approval1041054. **Archive milestone:**106107 - Create `.planning/milestones/v{{version}}-ROADMAP.md`108 - Extract full phase details from ROADMAP.md109 - Fill milestone-archive.md template110 - Update ROADMAP.md to one-line summary with link1111125. **Archive requirements:**113114 - Create `.planning/milestones/v{{version}}-REQUIREMENTS.md`115 - Mark all v1 requirements as complete (checkboxes checked)116 - Note requirement outcomes (validated, adjusted, dropped)117 - Delete `.planning/REQUIREMENTS.md` (fresh one created for next milestone)1181196. **Update PROJECT.md:**120121 - Add "Current State" section with shipped version122 - Add "Next Milestone Goals" section123 - Archive previous content in `<details>` (if v1.1+)1241257. **Commit and tag:**126127 - Stage: MILESTONES.md, PROJECT.md, ROADMAP.md, STATE.md, archive files128 - Commit: `chore: archive v{{version}} milestone`129 - Tag: `git tag -a v{{version}} -m "[milestone summary]"`130 - Ask about pushing tag1311328. **Offer next steps:**133 - `/gsd-new-milestone` — start next milestone (questioning → research → requirements → roadmap)134135</process>136137<success_criteria>138139- Milestone archived to `.planning/milestones/v{{version}}-ROADMAP.md`140- Requirements archived to `.planning/milestones/v{{version}}-REQUIREMENTS.md`141- `.planning/REQUIREMENTS.md` deleted (fresh for next milestone)142- ROADMAP.md collapsed to one-line entry143- PROJECT.md updated with current state144- Git tag v{{version}} created145- Commit successful146- User knows next steps (including need for fresh requirements)147 </success_criteria>148149<critical_rules>150151- **Load workflow first:** Read complete-milestone.md before executing152- **Verify completion:** All phases must have SUMMARY.md files153- **User confirmation:** Wait for approval at verification gates154- **Archive before deleting:** Always create archive files before updating/deleting originals155- **One-line summary:** Collapsed milestone in ROADMAP.md should be single line with link156- **Context efficiency:** Archive keeps ROADMAP.md and REQUIREMENTS.md constant size per milestone157- **Fresh requirements:** Next milestone starts with `/gsd-new-milestone` which includes requirements definition158 </critical_rules>