Skip to content

Installation

Claude Kit installs in under 2 minutes. Choose your preferred method below.

  • Claude Code installed and authenticated
  • Git (for cloning the repository)

The simplest way to get started:

Terminal window
# Clone Claude Kit
git clone https://github.com/duthaho/claudekit.git
# Copy the .claude folder to your project
cp -r claudekit/.claude /path/to/your-project/
# Navigate to your project
cd /path/to/your-project
# Start Claude Code
claude

If you prefer not to use Git:

  1. Go to github.com/duthaho/claudekit
  2. Click CodeDownload ZIP
  3. Extract the ZIP file
  4. Copy the .claude folder to your project root

Method 3: Git Submodule (For Version Control)

Section titled “Method 3: Git Submodule (For Version Control)”

If you want to track Claude Kit updates:

Terminal window
# Add as submodule
git submodule add https://github.com/duthaho/claudekit.git .claudekit
# Create symlink to .claude folder
ln -s .claudekit/.claude .claude
# Commit the changes
git add .claudekit .claude
git commit -m "Add Claude Kit"

To update later:

Terminal window
git submodule update --remote .claudekit

After installation, verify everything is working:

Terminal window
# Start Claude Code in your project
cd your-project
claude
# Try a simple command
> /help

You should see the Claude Kit help output listing available commands.

After installation, your project should have:

your-project/
├── .claude/
│ ├── CLAUDE.md # Project instructions
│ ├── commands/ # Slash commands
│ │ ├── feature.md
│ │ ├── fix.md
│ │ └── ...
│ ├── modes/ # Behavioral modes
│ │ ├── brainstorm.md
│ │ ├── implementation.md
│ │ └── ...
│ ├── skills/ # Knowledge modules
│ │ ├── languages/
│ │ ├── frameworks/
│ │ ├── methodology/
│ │ └── ...
│ └── settings.json # Claude Code settings
└── ... (your project files)

Make sure the .claude folder is in your project root (same level as package.json or pyproject.toml).

On Unix systems, ensure the files are readable:

Terminal window
chmod -R 644 .claude/

Restart Claude Code after adding the .claude folder:

Terminal window
# Exit Claude Code (Ctrl+C or /exit)
# Restart
claude

Now that Claude Kit is installed:

  1. Quick Start — Run your first command
  2. Configuration — Customize for your project