Files
get-shit-done/commands/gsd/new-milestone.md
Tim Willis 4d92b3cdda feat: add Claude Code marketplace plugin support
Add complete marketplace plugin configuration and documentation for GSD,
enabling installation via Claude Code's plugin marketplace.

Changes:
- Add .claude-plugin/marketplace.json and plugin.json manifests
- Add marketplace installation instructions to README.md
- Update all command files with marketplace tool permissions
- Add plugin conversion design and implementation documentation
- Update .gitignore for Claude Code plugin artifacts

Users can now install via:
  /plugin marketplace add glittercowboy/get-shit-done
  /plugin install get-shit-done@get-shit-done
2026-01-06 18:11:30 -06:00

2.0 KiB

name, description, argument-hint
name description argument-hint
gsd:new-milestone Create a new milestone with phases for an existing project [milestone name, e.g., 'v2.0 Features']
Create a new milestone for an existing project with defined phases.

Purpose: After completing a milestone (or when ready to define next chunk of work), creates the milestone structure in ROADMAP.md with phases, updates STATE.md, and creates phase directories. Output: New milestone in ROADMAP.md, updated STATE.md, phase directories created

<execution_context> @/.claude/get-shit-done/workflows/create-milestone.md @/.claude/get-shit-done/templates/roadmap.md </execution_context>

Milestone name: $ARGUMENTS (optional - will prompt if not provided)

Load project state first: @.planning/STATE.md

Load roadmap: @.planning/ROADMAP.md

Load milestones (if exists): @.planning/MILESTONES.md

1. Load project context (STATE.md, ROADMAP.md, MILESTONES.md) 2. Calculate next milestone version and starting phase number 3. If milestone name provided in arguments, use it; otherwise prompt 4. Gather phases (per depth setting: quick 3-5, standard 5-8, comprehensive 8-12): - If called from /gsd:discuss-milestone, use provided context - Otherwise, prompt for phase breakdown 5. Detect research needs for each phase 6. Confirm phases (respect config.json gate settings) 7. Follow create-milestone.md workflow: - Update ROADMAP.md with new milestone section - Create phase directories - Update STATE.md for new milestone - Git commit milestone creation 8. Offer next steps (discuss first phase, plan first phase, review)

<success_criteria>

  • Next phase number calculated correctly (continues from previous milestone)
  • Phases defined per depth setting (quick: 3-5, standard: 5-8, comprehensive: 8-12)
  • Research flags assigned for each phase
  • ROADMAP.md updated with new milestone section
  • Phase directories created
  • STATE.md reset for new milestone
  • Git commit made
  • User knows next steps </success_criteria>