Skip to content

Installation

Claude Kit installs as a Claude Code plugin via a marketplace. Setup takes under 2 minutes.

  • Claude Code installed and authenticated
  • Node.js (for MCP servers, if you choose to configure them)
/plugin marketplace add duthaho/claudekit-marketplace
/plugin install claudekit

That’s it — all 44 skills and 20 agents are now available. Skills auto-trigger based on context, and agents can be dispatched as claudekit:<agent-name>.

Run the setup wizard to scaffold project-level configuration:

/claudekit:init

The wizard interactively installs:

CategoryWhatLocation
RulesAPI, frontend, migrations, security, testing.claude/rules/
Modesbrainstorm, deep-research, default, implementation, orchestration, review, token-efficient.claude/modes/
Hooksauto-format, block-dangerous-commands, notifications.claude/hooks/ + settings.local.json
MCP ServersContext7, Sequential, Playwright, Memory, Filesystem.mcp.json

Or install everything at once:

/claudekit:init --all

To test the plugin locally without the marketplace:

Terminal window
claude --plugin-dir ./path/to/claudekit

Use /reload-plugins to pick up changes without restarting.

After installing, skills trigger automatically based on your conversation:

You: "I need to add user authentication to our app"
→ triggers: claudekit:brainstorming, claudekit:authentication
You: "There's a TypeError in the UserService"
→ triggers: claudekit:systematic-debugging

You can also invoke skills manually:

/claudekit:brainstorming
/claudekit:init

Update to the latest version:

/plugin marketplace update

Make sure the plugin is installed and enabled:

/plugin list

You should see claudekit in the list.

MCP servers are only available after running /claudekit:init and selecting them. Verify your .mcp.json has the correct entries, then restart Claude Code.

Make sure you’ve added the marketplace first:

/plugin marketplace add duthaho/claudekit-marketplace
  1. Configuration — Customize rules, modes, and more via /claudekit:init
  2. Workflows — See how skills work together