Show available GYWD commands and usage guide
Displays the complete GYWD command reference and usage guide for decision-aware development.
/plugin marketplace add cyberbloke9/pmp-gywd/plugin install pmp-gywd@pmp-gywdgywd/Output ONLY the reference content below. Do NOT add:
GYWD (Get Your Work Done) is a decision-aware development system for Claude Code.
v1.4 Philosophy: Code is crystallized decisions. GYWD understands WHY code exists, not just WHAT it does.
Fast track (minimal questions):
/gywd:init my-project
/gywd:create-roadmap
/gywd:plan-phase 1
/gywd:execute-plan
Full setup (detailed questioning):
/gywd:new-project
/gywd:create-roadmap
/gywd:plan-phase 1
/gywd:execute-plan
Check status anytime:
/gywd:status # One-line status
/gywd:progress # Detailed progress
/gywd:context # Context budget analysis
/gywd:health # Project health dashboard
Decision Intelligence (v1.4):
/gywd:why <code> # Why does this code exist?
/gywd:extract-decisions # Build decision graph from history
/gywd:challenge # Adversarial review of plans/code
/gywd:history # Query temporal codebase evolution
/gywd:anticipate # Predictive context loading
/gywd:profile # Developer digital twin
/gywd:impact # Connect code to production reality
v2.0 Unified Intelligence:
/gywd:bootstrap # Initialize complete v2.0 system on any codebase
Initialization → Planning → Execution → Milestone Completion
/gywd:init <name> (New!)
Quick project initialization with minimal questions.
Usage: /gywd:init my-app
/gywd:new-project
Initialize new project with brief and configuration.
.planning/PROJECT.md (vision and requirements).planning/config.json (workflow mode)Usage: /gywd:new-project
/gywd:create-roadmap
Create roadmap and state tracking for initialized project.
.planning/ROADMAP.md (phase breakdown).planning/STATE.md (project memory).planning/phases/ directoriesUsage: /gywd:create-roadmap
/gywd:map-codebase
Map an existing codebase for brownfield projects.
.planning/codebase/ with 7 focused documents/gywd:new-project on existing codebasesUsage: /gywd:map-codebase
/gywd:discuss-phase <number>
Help articulate your vision for a phase before planning.
Usage: /gywd:discuss-phase 2
/gywd:research-phase <number>
Comprehensive ecosystem research for niche/complex domains.
Usage: /gywd:research-phase 3
/gywd:list-phase-assumptions <number>
See what Claude is planning to do before it starts.
Usage: /gywd:list-phase-assumptions 3
/gywd:plan-phase <number>
Create detailed execution plan for a specific phase.
.planning/phases/XX-phase-name/XX-YY-PLAN.mdUsage: /gywd:plan-phase 1
Result: Creates .planning/phases/01-foundation/01-01-PLAN.md
/gywd:preview-plan <path> (New!)
Preview what a plan will do before executing it.
Usage: /gywd:preview-plan .planning/phases/01-foundation/01-01-PLAN.md
/gywd:execute-plan <path> [--tasks]
Execute a PLAN.md file directly.
Usage: /gywd:execute-plan .planning/phases/01-foundation/01-01-PLAN.md
Partial: /gywd:execute-plan .planning/phases/01-foundation/01-01-PLAN.md --tasks 1-3
/gywd:add-phase <description>
Add new phase to end of current milestone.
Usage: /gywd:add-phase "Add admin dashboard"
/gywd:insert-phase <after> <description>
Insert urgent work as decimal phase between existing phases.
Usage: /gywd:insert-phase 7 "Fix critical auth bug"
Result: Creates Phase 7.1
/gywd:remove-phase <number>
Remove a future phase and renumber subsequent phases.
Usage: /gywd:remove-phase 17
Result: Phase 17 deleted, phases 18-20 become 17-19
/gywd:discuss-milestone
Figure out what you want to build in the next milestone.
Usage: /gywd:discuss-milestone
/gywd:new-milestone <name>
Create a new milestone with phases for an existing project.
Usage: /gywd:new-milestone "v2.0 Features"
/gywd:complete-milestone <version>
Archive completed milestone and prepare for next version.
Usage: /gywd:complete-milestone 1.0.0
/gywd:status
Quick one-line project status.
Usage: /gywd:status
Output: [████░░░░░░] 40% | Phase 2/5: Auth | Last: today
/gywd:context (New!)
Show context budget visibility and usage analysis.
Usage: /gywd:context
/gywd:health (New!)
Phase health dashboard showing quality metrics.
Usage: /gywd:health
/gywd:progress
Check project status and intelligently route to next action.
Usage: /gywd:progress
/gywd:memory [show|add|clear|learn] (New!)
Multi-session memory for patterns and preferences.
Usage: /gywd:memory show or /gywd:memory add preference "Use TypeScript strict mode"
/gywd:check-drift (New!)
Detect specification drift between PROJECT.md and implementation.
Usage: /gywd:check-drift
/gywd:deps [phase-number|all] (New!)
Visualize phase and task dependencies.
Usage: /gywd:deps or /gywd:deps 3
/gywd:resume-work
Resume work from previous session with full context restoration.
Usage: /gywd:resume-work
/gywd:pause-work
Create context handoff when pausing work mid-phase.
Usage: /gywd:pause-work
/gywd:digest [focus-area] (New!)
Create compact codebase digest for quick context refresh.
Usage: /gywd:digest or /gywd:digest auth
/gywd:rollback [target] (New!)
Safely rollback to a previous checkpoint.
Usage: /gywd:rollback last or /gywd:rollback 3
/gywd:sync-github [type] (New!)
Sync GYWD state with GitHub issues, PRs, milestones.
Usage: /gywd:sync-github or /gywd:sync-github issues
/gywd:consider-issues
Review deferred issues with codebase context.
Usage: /gywd:consider-issues
/gywd:why <target>
Ask why code exists - trace to decisions.
Usage: /gywd:why src/utils/result.ts or /gywd:why "the retry logic in payments"
/gywd:extract-decisions
Build decision graph from codebase history.
Usage: /gywd:extract-decisions --depth deep
/gywd:history <query>
Query temporal codebase evolution.
Usage: /gywd:history "Why did we remove Redux?"
/gywd:challenge [target]
Adversarial review - agents that attack your plan/code.
Usage: /gywd:challenge .planning/phases/03-payment/03-01-PLAN.md
/gywd:anticipate
Predictive development - know what you'll need.
Usage: /gywd:anticipate --for "payment integration"
/gywd:profile [show|learn]
Developer Digital Twin - model of your patterns.
Usage: /gywd:profile show or /gywd:profile learn
/gywd:impact <target>
Reality integration - connect code to outcomes.
Usage: /gywd:impact src/api/checkout.ts
/gywd:bootstrap [--quick|--deep]
Initialize complete GYWD v2.0 system on any codebase.
Modes:
--quick: Shallow analysis (~2 min)--deep: Exhaustive analysis with adversarial validation (~15-30 min)Usage: /gywd:bootstrap or /gywd:bootstrap --deep
/gywd: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 /gywd:new-project:
Interactive Mode
YOLO Mode
Change anytime by editing .planning/config.json
Starting a new project:
/gywd:new-project
/gywd:create-roadmap
/gywd:plan-phase 1
/gywd:execute-plan .planning/phases/01-foundation/01-01-PLAN.md
Resuming work after a break:
/gywd:progress # See where you left off and continue
Adding urgent mid-milestone work:
/gywd:insert-phase 5 "Critical security fix"
/gywd:plan-phase 5.1
/gywd:execute-plan .planning/phases/05.1-critical-security-fix/05.1-01-PLAN.md
Completing a milestone:
/gywd:complete-milestone 1.0.0
/gywd:new-project # Start next milestone
.planning/PROJECT.md for project vision.planning/STATE.md for current context.planning/ROADMAP.md for phase status/gywd:progress to check where you're up to
</reference>