Installation
Installation
Section titled “Installation”Claude Kit installs as a Claude Code plugin via a marketplace. Setup takes under 2 minutes.
Prerequisites
Section titled “Prerequisites”- Claude Code installed and authenticated
- Node.js (for MCP servers, if you choose to configure them)
Install the Plugin
Section titled “Install the Plugin”Step 1: Add the Marketplace
Section titled “Step 1: Add the Marketplace”/plugin marketplace add duthaho/claudekit-marketplaceStep 2: Install Claude Kit
Section titled “Step 2: Install Claude Kit”/plugin install claudekitThat’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>.
Step 3: Configure Your Project (Optional)
Section titled “Step 3: Configure Your Project (Optional)”Run the setup wizard to scaffold project-level configuration:
/claudekit:initThe wizard interactively installs:
| Category | What | Location |
|---|---|---|
| Rules | API, frontend, migrations, security, testing | .claude/rules/ |
| Modes | brainstorm, deep-research, default, implementation, orchestration, review, token-efficient | .claude/modes/ |
| Hooks | auto-format, block-dangerous-commands, notifications | .claude/hooks/ + settings.local.json |
| MCP Servers | Context7, Sequential, Playwright, Memory, Filesystem | .mcp.json |
Or install everything at once:
/claudekit:init --allLocal Development
Section titled “Local Development”To test the plugin locally without the marketplace:
claude --plugin-dir ./path/to/claudekitUse /reload-plugins to pick up changes without restarting.
Verify Installation
Section titled “Verify Installation”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-debuggingYou can also invoke skills manually:
/claudekit:brainstorming/claudekit:initUpdating
Section titled “Updating”Update to the latest version:
/plugin marketplace updateTroubleshooting
Section titled “Troubleshooting”Skills not triggering
Section titled “Skills not triggering”Make sure the plugin is installed and enabled:
/plugin listYou should see claudekit in the list.
MCP servers not working
Section titled “MCP servers not working”MCP servers are only available after running /claudekit:init and selecting them. Verify your .mcp.json has the correct entries, then restart Claude Code.
Plugin not found in marketplace
Section titled “Plugin not found in marketplace”Make sure you’ve added the marketplace first:
/plugin marketplace add duthaho/claudekit-marketplaceNext Steps
Section titled “Next Steps”- Configuration — Customize rules, modes, and more via
/claudekit:init - Workflows — See how skills work together