Slash Command

Structured workflows you can build on

A Claude Code plugin for planning, implementing, and shipping code—with artifacts saved for context.

View on GitHub

The Workflow

How to build features with Claude Code

  1. /research_codebase(optional)

    Learn how your code works before making changes. Creates notes in research/ you can reference later.

  2. /create_plan

    Tell Claude what you want to build. It analyzes your code and writes a step-by-step plan in plans/.

  3. /implement_plan

    Claude follows the plan and writes the code. Creates an isolated worktree by default. Use --here to implement in place.

  4. /validate_plan

    Double-check that everything in the plan is done and working.

  5. /ship

    Create a pull request, merge it, and clean up. Use --direct to bypass PR.

Shipping Options

/yolo"add feature X"

Full auto mode. Plans, implements, commits, and ships with no stops. Halts immediately on any failure.

/pr

Create or update a PR with a detailed description.

/merge

Merge an existing PR and clean up branches.

/ship = /pr + /merge

Context Management

All output is saved to your repo so Claude can reference it later

thoughts/
├── plans/ # Step-by-step implementation plans
├── research/ # Notes about how your code works
├── handoffs/ # Summaries for resuming work later
├── prs/ # Pull request descriptions
└── notes/ # Personal notes and decisions

These directories provide historical context across sessions, enabling Claude to resume work with full understanding of past decisions, find similar patterns from previous implementations, and reference research when planning new features.

Session Continuity

Pick up where you left off in a new conversation

  1. /create_handoff — Save what you were working on
  2. /resume_handoff — Continue from that point

Install

1. Add the marketplace

/plugin marketplace add ii-vo/claude-meta

2. Install the plugin

/plugin install claude-meta:slash-command