How to Use Claude Code Slash Commands

Learn about the slash commands available in Claude Code (/plan, /sketch, /build, etc.) and their uses.

Updated Jul 6, 2026Beginner1 min read
Share

Slash Commands Overview

Claude Code provides slash commands that let you quickly perform specific tasks.

Main Commands

/plan - Create a Plan

Write an implementation plan for a project or feature:

plaintext
/plan Build a todo app with React

Response includes:

  • Architecture overview
  • Step-by-step implementation plan
  • Estimated time

/sketch - Quick Sketch

Use this for rapid prototyping:

plaintext
/sketch Create a counter component

This command provides a simpler output than /plan.

/build - Full Build

Generate a complete implementation:

plaintext
/build Implement user authentication

This command includes:

  • Full code implementation
  • Test cases
  • Documentation

/review - Code Review

Get feedback on your code:

plaintext
/review

The current file is analyzed and improvements are suggested.

Combining Commands

Use multiple commands together:

bash
/plan Build authentication
/build Implement login form
/review

Tips

  • You can cancel any command anytime (Ctrl+C)
  • Provide detailed context for better results
  • Start with /plan for systematic development