Skip to content

Quick Start

This guide will have you using Claude Kit in under 2 minutes.

Open your terminal in a project with Claude Kit installed:

Terminal window
cd your-project
claude

Let’s use the /help command to see what’s available:

Terminal window
> /help

This shows all available commands organized by category.

Try the /plan command to break down a task:

Terminal window
> /plan "add a user profile page"

Claude will:

  1. Analyze the requirement
  2. Break it into actionable tasks
  3. Create a structured implementation plan

Ready to build something? Use the full feature workflow:

Terminal window
> /feature "add password reset with email verification"

This orchestrates:

  1. Planning — Requirements analysis and task breakdown
  2. Implementation — Code generation with best practices
  3. Testing — Unit and integration tests
  4. Review — Self-review checklist

Change how Claude behaves with modes:

Terminal window
> /mode brainstorm

Now Claude will:

  • Ask more clarifying questions
  • Present multiple alternatives
  • Explore trade-offs before converging

Other useful modes:

Terminal window
> /mode implementation # Code-focused, minimal prose
> /mode token-efficient # Compressed output, saves tokens
> /mode review # Critical analysis mode
Terminal window
> /fix "TypeError: Cannot read property 'email' of undefined in UserService.ts:45"

Claude will analyze the error, find the root cause, implement a fix, and add a regression test.

Terminal window
> /review src/auth/

Get a comprehensive review covering:

  • Code quality
  • Security vulnerabilities
  • Performance issues
  • Maintainability
Terminal window
> /ship "feat: add user authentication"

Creates a git commit with proper message formatting and optionally opens a PR.

Terminal window
> /research "best practices for JWT authentication in Node.js"

Claude researches the topic and provides a comprehensive summary with recommendations.

Before writing code, use /plan or /brainstorm to think through the approach:

Terminal window
> /brainstorm "how should we handle file uploads?"

Match the mode to your task:

TaskMode
Exploring optionsbrainstorm
Writing codeimplementation
Reviewing codereview
Researchingdeep-research
High-volume worktoken-efficient

Commands support flags for customization:

Terminal window
> /feature --skip-tests "add logging utility"
> /review --persona=security src/auth/
> /plan --depth=5 "implement payment flow"

Get details on any command:

Terminal window
> /help feature
> /help fix

You’re ready to use Claude Kit! Here’s where to go next: