1---2name: gsdmilestone-summary3description: Generate a comprehensive project summary from milestone artifacts for team onboarding and review4---567<objective>8Generate 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.910Purpose: Enable new team members to understand a completed project by reading one document and asking follow-up questions.11Output: MILESTONE_SUMMARY written to `.planning/reports/`, presented inline, optional interactive Q&A.12</objective>1314<execution_context>15@${CLAUDE_PLUGIN_ROOT}/workflows/milestone-summary.md16</execution_context>1718<context>19**Project files:**20- `.planning/ROADMAP.md`21- `.planning/PROJECT.md`22- `.planning/STATE.md`23- `.planning/RETROSPECTIVE.md`24- `.planning/milestones/v{version}-ROADMAP.md` (if archived)25- `.planning/milestones/v{version}-REQUIREMENTS.md` (if archived)26- `.planning/phases/*-*/` (SUMMARY.md, VERIFICATION.md, CONTEXT.md, RESEARCH.md)2728**User input:**29- Version: $ARGUMENTS (optional — defaults to current/latest milestone)30</context>3132<process>33Read and execute the milestone-summary workflow from @${CLAUDE_PLUGIN_ROOT}/workflows/milestone-summary.md end-to-end.34</process>3536<success_criteria>37- Milestone version resolved (from args, STATE.md, or archive scan)38- All available artifacts read (ROADMAP, REQUIREMENTS, CONTEXT, SUMMARY, VERIFICATION, RESEARCH, RETROSPECTIVE)39- Summary document written to `.planning/reports/MILESTONE_SUMMARY-v{version}.md`40- All 7 sections generated (Overview, Architecture, Phases, Decisions, Requirements, Tech Debt, Getting Started)41- Summary presented inline to user42- Interactive Q&A offered43- STATE.md updated44</success_criteria>4546---4748**Source:** [`davepoon/buildwithclaude`](https://github.com/davepoon/buildwithclaude) → `plugins/gsd/skills/milestone-summary/SKILL.md`