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 ReactResponse includes:
- Architecture overview
- Step-by-step implementation plan
- Estimated time
/sketch - Quick Sketch
Use this for rapid prototyping:
plaintext
/sketch Create a counter componentThis command provides a simpler output than /plan.
/build - Full Build
Generate a complete implementation:
plaintext
/build Implement user authenticationThis command includes:
- Full code implementation
- Test cases
- Documentation
/review - Code Review
Get feedback on your code:
plaintext
/reviewThe current file is analyzed and improvements are suggested.
Combining Commands
Use multiple commands together:
bash
/plan Build authentication
/build Implement login form
/reviewTips
- You can cancel any command anytime (Ctrl+C)
- Provide detailed context for better results
- Start with
/planfor systematic development