Show available GSD commands and usage guide
Shows available GSD commands and usage guide
/plugin marketplace add glittercowboy/get-shit-done/plugin install get-shit-done@get-shit-donegsd/Output ONLY the reference content below. Do NOT add:
GSD (Get Shit Done) creates hierarchical project plans optimized for solo agentic development with Claude Code.
/gsd:new-project - Initialize project with brief/gsd:create-roadmap - Create roadmap and phases/gsd:plan-phase <number> - Create detailed plan for first phase/gsd:execute-plan <path> - Execute the planInitialization → Planning → Execution → Milestone Completion
/gsd:new-project
Initialize new project with brief and configuration.
.planning/PROJECT.md (vision and requirements).planning/config.json (workflow mode)Usage: /gsd:new-project
/gsd:create-roadmap
Create roadmap and state tracking for initialized project.
.planning/ROADMAP.md (phase breakdown).planning/STATE.md (project memory).planning/phases/ directoriesUsage: /gsd:create-roadmap
/gsd:map-codebase
Map an existing codebase for brownfield projects.
.planning/codebase/ with 7 focused documents/gsd:new-project on existing codebasesUsage: /gsd:map-codebase
/gsd:discuss-phase <number>
Help articulate your vision for a phase before planning.
Usage: /gsd:discuss-phase 2
/gsd:research-phase <number>
Comprehensive ecosystem research for niche/complex domains.
Usage: /gsd:research-phase 3
/gsd:list-phase-assumptions <number>
See what Claude is planning to do before it starts.
Usage: /gsd:list-phase-assumptions 3
/gsd:plan-phase <number>
Create detailed execution plan for a specific phase.
.planning/phases/XX-phase-name/XX-YY-PLAN.mdUsage: /gsd:plan-phase 1
Result: Creates .planning/phases/01-foundation/01-01-PLAN.md
/gsd:execute-plan <path>
Execute a PLAN.md file directly.
Usage: /gsd:execute-plan .planning/phases/01-foundation/01-01-PLAN.md
/gsd:add-phase <description>
Add new phase to end of current milestone.
Usage: /gsd:add-phase "Add admin dashboard"
/gsd:insert-phase <after> <description>
Insert urgent work as decimal phase between existing phases.
Usage: /gsd:insert-phase 7 "Fix critical auth bug"
Result: Creates Phase 7.1
/gsd:remove-phase <number>
Remove a future phase and renumber subsequent phases.
Usage: /gsd:remove-phase 17
Result: Phase 17 deleted, phases 18-20 become 17-19
/gsd:discuss-milestone
Figure out what you want to build in the next milestone.
Usage: /gsd:discuss-milestone
/gsd:new-milestone <name>
Create a new milestone with phases for an existing project.
Usage: /gsd:new-milestone "v2.0 Features"
/gsd:complete-milestone <version>
Archive completed milestone and prepare for next version.
Usage: /gsd:complete-milestone 1.0.0
/gsd:progress
Check project status and intelligently route to next action.
Usage: /gsd:progress
/gsd:resume-work
Resume work from previous session with full context restoration.
Usage: /gsd:resume-work
/gsd:pause-work
Create context handoff when pausing work mid-phase.
Usage: /gsd:pause-work
/gsd:consider-issues
Review deferred issues with codebase context.
Usage: /gsd:consider-issues
/gsd:help
Show this command reference.
.planning/
├── PROJECT.md # Project vision
├── ROADMAP.md # Current phase breakdown
├── STATE.md # Project memory & context
├── ISSUES.md # Deferred enhancements (created when needed)
├── config.json # Workflow mode & gates
├── codebase/ # Codebase map (brownfield projects)
│ ├── STACK.md # Languages, frameworks, dependencies
│ ├── ARCHITECTURE.md # Patterns, layers, data flow
│ ├── STRUCTURE.md # Directory layout, key files
│ ├── CONVENTIONS.md # Coding standards, naming
│ ├── TESTING.md # Test setup, patterns
│ ├── INTEGRATIONS.md # External services, APIs
│ └── CONCERNS.md # Tech debt, known issues
└── phases/
├── 01-foundation/
│ ├── 01-01-PLAN.md
│ └── 01-01-SUMMARY.md
└── 02-core-features/
├── 02-01-PLAN.md
└── 02-01-SUMMARY.md
Set during /gsd:new-project:
Interactive Mode
YOLO Mode
Change anytime by editing .planning/config.json
Starting a new project:
/gsd:new-project
/gsd:create-roadmap
/gsd:plan-phase 1
/gsd:execute-plan .planning/phases/01-foundation/01-01-PLAN.md
Resuming work after a break:
/gsd:progress # See where you left off and continue
Adding urgent mid-milestone work:
/gsd:insert-phase 5 "Critical security fix"
/gsd:plan-phase 5.1
/gsd:execute-plan .planning/phases/05.1-critical-security-fix/05.1-01-PLAN.md
Completing a milestone:
/gsd:complete-milestone 1.0.0
/gsd:new-project # Start next milestone
.planning/PROJECT.md for project vision.planning/STATE.md for current context.planning/ROADMAP.md for phase status/gsd:progress to check where you're up to
</reference>