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: Enable new team members to understand a completed project by reading one document and asking follow-up questions.
Output: MILESTONE_SUMMARY written to .planning/reports/, presented inline, optional interactive Q&A.
User input:
- Version: {{GSD_ARGS}} (optional — defaults to current/latest milestone)
1---2name: gsd-milestone-summary-33description: Generate a comprehensive project summary from milestone artifacts for team onboarding and review4---56<augment_skill_adapter>7## A. Skill Invocation8- This skill is invoked when the user mentions `gsd-milestone-summary` 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>35Generate a structured milestone summary for team onboarding and project review. Reads completed milestone artifacts (ROADMAP, REQUIREMENTS, CONTEXT, SUMMARY, VERIFICATION files) and produces a human-friendly overview of what was built, how, and why.3637Purpose: Enable new team members to understand a completed project by reading one document and asking follow-up questions.38Output: MILESTONE_SUMMARY written to `.planning/reports/`, presented inline, optional interactive Q&A.39</objective>4041<execution_context>42@/home/delorenj/code/bhappy/.augment/get-shit-done/workflows/milestone-summary.md43</execution_context>4445<context>46**Project files:**47- `.planning/ROADMAP.md`48- `.planning/PROJECT.md`49- `.planning/STATE.md`50- `.planning/RETROSPECTIVE.md`51- `.planning/milestones/v{version}-ROADMAP.md` (if archived)52- `.planning/milestones/v{version}-REQUIREMENTS.md` (if archived)53- `.planning/phases/*-*/` (SUMMARY.md, VERIFICATION.md, CONTEXT.md, RESEARCH.md)5455**User input:**56- Version: {{GSD_ARGS}} (optional — defaults to current/latest milestone)57</context>5859<process>60Read and execute the milestone-summary workflow from @/home/delorenj/code/bhappy/.augment/get-shit-done/workflows/milestone-summary.md end-to-end.61</process>6263<success_criteria>64- Milestone version resolved (from args, STATE.md, or archive scan)65- All available artifacts read (ROADMAP, REQUIREMENTS, CONTEXT, SUMMARY, VERIFICATION, RESEARCH, RETROSPECTIVE)66- Summary document written to `.planning/reports/MILESTONE_SUMMARY-v{version}.md`67- All 7 sections generated (Overview, Architecture, Phases, Decisions, Requirements, Tech Debt, Getting Started)68- Summary presented inline to user69- Interactive Q&A offered70- STATE.md updated71</success_criteria>