mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-25 17:25:23 +02:00
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
2.0 KiB
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'] |
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>
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>