Command Reference
Here's the thing about slash commands: they're workflows you'd spend 20 minutes doing manually, compressed into one line. Type /plan and watch three agents launch in parallel to research your codebase while you grab coffee. That's the point—automation that actually saves time, not busywork dressed up as productivity.
Workflow Commands (four)
These are the big four: Plan your feature, Review your code, Work through the implementation, and Codify what you learned. Every professional developer does this cycle—these commands just make you faster at it.
/plan
You've got a feature request and a blank page. This command turns "we need OAuth" into a structured plan that actually tells you what to build—researched, reviewed, and ready to execute.
Arguments
[feature description, bug report, or improvement idea]
Workflow
- Repository Research (Parallel) - Launch three agents simultaneously:
repo-research-analyst- Project patternsbest-practices-researcher- Industry standardsframework-docs-researcher- Framework documentation
- SpecFlow Analysis - Run
spec-flow-analyzerfor user flows - Choose Detail Level:
- MINIMAL - Simple bugs/small improvements
- MORE - Standard features
- A LOT - Major features with phases
- Write Plan - Save as
plans/<issue_title>.md - Review - Call
/plan_reviewfor multi-agent feedback
This command does NOT write code. It only researches and creates the plan.
/plan Add OAuth integration for third-party auth
/plan Fix N+1 query in user dashboard
/review
Twelve specialized reviewers examine your PR in parallel—security, performance, architecture, patterns. It's like code review by committee, except the committee finishes in two minutes instead of two days.
Arguments
[PR number, GitHub URL, branch name, or "latest"]
Workflow
- Setup - Detect review target, optionally use git-worktree for isolation
- Launch 12 Parallel Review Agents:
kieran-rails-reviewer,dhh-rails-reviewersecurity-sentinel,performance-oraclearchitecture-strategist,data-integrity-guardianpattern-recognition-specialist,git-history-analyzer- And more...
- Ultra-Thinking Analysis - Stakeholder perspectives, scenario exploration
- Simplification Review - Run
code-simplicity-reviewer - Synthesize Findings - Categorize by severity (P1/P2/P3)
- Create Todo Files - Using file-todos skill for all findings
P1 (Critical) findings BLOCK MERGE. Address these before merging.
/review 42
/review https://github.com/owner/repo/pull/42
/review feature-branch-name
/review latest
/work
Point this at a plan file and watch it execute—reading requirements, setting up environment, running tests, creating commits, opening PRs. It's the "just build the thing" button you wish you always had.
Arguments
[plan file, specification, or todo file path]
Phases
- Quick Start
- Read plan & clarify requirements
- Setup environment (live or worktree)
- Create TodoWrite task list
- Execute
- Task execution loop with progress tracking
- Follow existing patterns
- Test continuously
- Figma sync if applicable
- Quality Check
- Run test suite
- Run linting
- Optional reviewer agents for complex changes
- Ship It
- Create commit with conventional format
- Create pull request
- Notify with summary
/work plans/user-authentication.md
/work todos/042-ready-p1-performance-issue.md
/compound
Just fixed a gnarly bug? This captures the solution before you forget it. Seven agents analyze what you did, why it worked, and how to prevent it next time. Each documented solution compounds your team's knowledge.
Arguments
[optional: brief context about the fix]
Workflow
- Preconditions - Verify problem is solved and verified working
- Launch seven parallel subagents:
- Context Analyzer - Extract YAML frontmatter skeleton
- Solution Extractor - Identify root cause and solution
- Related Docs Finder - Find cross-references
- Prevention Strategist - Develop prevention strategies
- Category Classifier - Determine docs category
- Documentation Writer - Create the file
- Optional Specialized Agent - Based on problem type
- Create Documentation - File in
docs/solutions/[category]/
Auto-Triggers
Phrases: "that worked", "it's fixed", "working now", "problem solved"
/compound
/compound N+1 query optimization
Utility Commands (12)
The supporting cast—commands that do one specific thing really well. Generate changelogs, resolve todos in parallel, triage findings, create new commands. The utilities you reach for daily.
/changelog
Turn your git history into a changelog people actually want to read. Breaking changes at the top, fun facts at the bottom, everything organized by what matters to your users.
Arguments
[optional: daily|weekly, or time period in days]
Output Sections
- Breaking Changes (top priority)
- New Features
- Bug Fixes
- Other Improvements
- Shoutouts
- Fun Fact
/changelog daily
/changelog weekly
/changelog 7
/create-agent-skill
Need a new skill? This walks you through creating one that actually works—proper frontmatter, clear documentation, all the conventions baked in. Think of it as scaffolding for skills.
Arguments
[skill description or requirements]
/create-agent-skill PDF processing for document analysis
/create-agent-skill Web scraping with error handling
/generate_command
Same idea, but for commands instead of skills. Tell it what workflow you're tired of doing manually, and it generates a proper slash command with all the right patterns.
Arguments
[command purpose and requirements]
/generate_command Security audit for codebase
/generate_command Automated performance testing
/heal-skill
Skills drift—APIs change, URLs break, parameters get renamed. When a skill stops working, this figures out what's wrong and fixes the documentation. You approve the changes before anything commits.
Arguments
[optional: specific issue to fix]
Approval Options
- Apply and commit
- Apply without commit
- Revise changes
- Cancel
/heal-skill API endpoint URL changed
/heal-skill parameter validation error
/plan_review
Before you execute a plan, have three reviewers tear it apart—Rails conventions, best practices, simplicity. Better to find the problems in the plan than in production.
Arguments
[plan file path or plan content]
Review Agents
dhh-rails-reviewer- Rails conventionskieran-rails-reviewer- Rails best practicescode-simplicity-reviewer- Simplicity and clarity
/plan_review plans/user-authentication.md
/report-bug
Something broken? This collects all the context—what broke, what you expected, error messages, environment—and files a proper bug report. No more "it doesn't work" issues.
Arguments
[optional: brief description of the bug]
Information Collected
- Bug category (Agent/Command/Skill/MCP/Installation)
- Specific component name
- Actual vs expected behavior
- Steps to reproduce
- Error messages
- Environment info (auto-gathered)
/report-bug Agent not working
/report-bug Command failing with timeout
/reproduce-bug
Give it a GitHub issue number and it tries to actually reproduce the bug—reading the issue, analyzing code paths, iterating until it finds the root cause. Then it posts findings back to the issue.
Arguments
[GitHub issue number]
Investigation Process
- Read GitHub issue details
- Launch parallel investigation agents
- Analyze code for failure points
- Iterate until root cause found
- Post findings to GitHub issue
/reproduce-bug 142
/triage
Got a pile of code review findings or security audit results? This turns them into actionable todos—one at a time, you decide: create the todo, skip it, or modify and re-present.
Arguments
[findings list or source type]
User Decisions
- "yes" - Create/update todo file, change status to ready
- "next" - Skip and delete from todos
- "custom" - Modify and re-present
This command does NOT write code. It only categorizes and creates todo files.
/triage code-review-findings.txt
/triage security-audit-results
/resolve_parallel
All those TODO comments scattered through your codebase? This finds them, builds a dependency graph, and spawns parallel agents to resolve them all at once. Clears the backlog in minutes.
Arguments
[optional: specific TODO pattern or file]
Process
- Analyze TODO comments from codebase
- Create dependency graph (mermaid diagram)
- Spawn parallel
pr-comment-resolveragents - Commit and push after completion
/resolve_parallel
/resolve_parallel authentication
/resolve_parallel src/auth/
/resolve_pr_parallel
Same deal, but for PR review comments. Fetch unresolved threads, spawn parallel resolver agents, commit the fixes, and mark threads as resolved. Your reviewers will wonder how you're so fast.
Arguments
[optional: PR number or current PR]
Process
- Get all unresolved PR comments
- Create TodoWrite list
- Launch parallel
pr-comment-resolveragents - Commit, resolve threads, and push
/resolve_pr_parallel
/resolve_pr_parallel 123
/resolve_todo_parallel
Those todo files in your /todos directory? Point this at them and watch parallel agents knock them out—analyzing dependencies, executing in the right order, marking resolved as they finish.
Arguments
[optional: specific todo ID or pattern]
Process
- Get unresolved TODOs from
/todos/*.md - Analyze dependencies
- Spawn parallel agents
- Commit, mark as resolved, push
/resolve_todo_parallel
/resolve_todo_parallel 042
/resolve_todo_parallel p1
/prime
Your project initialization command. What exactly it does depends on your project setup—think of it as the "get everything ready" button before you start coding.
/prime