Display help documentation for the ralph-planner plugin
Creates structured execution plans for tasks using specialized templates with verifiable promises. Use this when you need a detailed plan for features, bug fixes, refactors, migrations, or performance work.
/plugin marketplace add vavasilva/ralph-planner/plugin install ralph-planner@ralph-plannerDisplay help documentation for the ralph-planner plugin.
Output the following help information:
# Ralph Planner
Companion plugin for ralph-wiggum that creates structured execution plans.
## Commands
### Generic Planning
- `/ralph-planner:plan-loop "<task>"` - Create a plan for any task
### Work Type Templates
Specialized templates with pre-defined phases and **verifiable promises**:
- `/ralph-planner:feature "<description>"` - New feature implementation
- `/ralph-planner:bugfix "<description>"` - Bug fix with regression test
- `/ralph-planner:refactor "<description>"` - Code refactoring
- `/ralph-planner:migration "<description>"` - Data/code migration
- `/ralph-planner:performance "<description>"` - Performance optimization
### From File
- `/ralph-planner:from-file "<path>" [--type <type>]` - Create plan from existing .md file
### Help
- `/ralph-planner:help` - Show this help message
## Template Benefits
Each template includes:
- **Pre-defined phases** optimized for the work type
- **Verifiable promises** (not generic statements)
- **Specific completion criteria** for each phase
Example promises by type:
- **feature**: "All new tests pass", "No regressions"
- **bugfix**: "Bug no longer reproducible", "Regression test added"
- **refactor**: "All existing tests still pass", "No behavior changes"
- **migration**: "All data migrated correctly", "Rollback tested"
- **performance**: "Metrics improved by X%", "Benchmarks documented"
## Example
/ralph-planner:bugfix "Users can't login after password reset"
Generates a plan with Reproduction → Root Cause → Fix → Verification phases.
## Requirements
Requires ralph-wiggum plugin for executing generated loop commands.