Skip to content

elynch303/claude-dev-kit

Repository files navigation

Claude Dev Kit

A portable .claude/ plugin that turns Claude Code into a fully autonomous development team — from epic grooming through validated, reviewed PRs — on any project, any stack. Now with multi-AI CLI support and a self-improvement feedback loop.

Run bunx claude-dev-kit@latest in any project. Claude gains two orchestrator agents, a full specialist sub-agent hierarchy, an MCP integration wizard, smart stack detection, a complete delivery pipeline, multi-AI task routing (Gemini, Codex, Grok, Kimi, OpenCode), and a self-improvement system that gets better with every session.


Architecture

YOU
 │
 ├── /pm:groom / /pm:size / /pm:plan-epic
 │    └── project-manager [opus] ─────── orchestrates planning
 │         ├── pm-groomer   [sonnet]  ← writes acceptance criteria, DoD, sub-tasks
 │         ├── pm-sizer     [sonnet]  ← t-shirt sizes, confidence scores, sprint plans
 │         └── pm-prp-writer[sonnet]  ← deep-research → PRP documents
 │
 └── /dev <issue> / /dev-issue / /dev-epic
      └── dev-lead [opus] ──────────── orchestrates implementation
           ├── dev-backend  [sonnet]  ← API routes, services, DB, auth
           ├── dev-frontend [sonnet]  ← components, pages, state, styling
           ├── dev-storybook[sonnet]  ← CSF3 stories, play tests, a11y, docs (optional)
           │    ├── dev-storybook-play [sonnet]  ← play/interaction functions
           │    ├── dev-storybook-a11y [sonnet]  ← WCAG A/AA auditing
           │    └── dev-storybook-docs [sonnet]  ← argTypes, controls, prop docs
           ├── dev-test     [sonnet]  ← unit tests, mocks, coverage
           ├── dev-e2e      [sonnet]  ← Playwright/Cypress user journeys
           └── dev-reviewer [sonnet]  ← security, correctness, pattern review

Key principle: Each sub-agent runs in a clean context window with only the specific files and facts it needs. Orchestrators trim context before every spawn — no sub-agent ever sees the full conversation history. This keeps context usage low and output quality high.


The Full Dev Flow

Phase 1 — Epic Grooming & Sizing

/pm:plan-epic "User Authentication"

Claude acts as your tech lead:

project-manager
 ├── Fetch all open issues in the milestone
 ├── pm-groomer: Rewrites each issue with Given/When/Then criteria + DoD
 ├── pm-sizer: Scores each story (scope, novelty, risk, test burden, deps)
 │   └── Returns sprint plan + confidence scores
 └── pm-prp-writer: Writes detailed PRP for each L/XL story
     └── Deep codebase scan (Gemini for large repos) + web research

You confirm each step before GitHub is updated.


Phase 2 — Feature Implementation

/dev 142

Claude acts as your senior engineer + code reviewer:

dev-lead
 ├── Reads issue + PRP
 ├── Classifies work: backend-only / frontend-only / fullstack
 ├── [fullstack path]
 │   ├── dev-backend:  implements API routes + service layer
 │   ├── dev-frontend: implements UI (receives API contracts from backend)
 │   ├── dev-storybook: writes CSF3 stories + coordinates play/a11y/docs (when Storybook detected)
 │   ├── dev-test:     writes unit tests (90%+ branch coverage)
 │   ├── dev-e2e:      writes Playwright tests for user journeys
 │   └── dev-reviewer: structured PASS/FAIL review (security, correctness, types)
 ├── Runs all 5 validation gates
 └── Commits + creates PR with "Closes #142"

Phase 3 — Validation Gates

Every implementation runs all 5 gates in sequence. Claude will not commit if any gate fails — it re-spawns the responsible sub-agent with the error output and iterates.

Gate What runs Requirement
1 Lint Zero errors — fix the code, not the rule
2 Unit tests + coverage All pass, threshold met (90% branch by default)
3 E2E tests All pass (when user flows changed)
4 Static analysis Quality gate pass (SonarQube/CodeClimate if configured)
5 Build / type check Exit 0, zero type errors

Phase 4 — Code Review

Every implementation ends with dev-reviewer checking:

  • Security: injection, auth gaps, hardcoded secrets, CSRF
  • Correctness: each acceptance criterion satisfied
  • Pattern adherence: mirrors existing codebase conventions
  • Type safety: no any, nullability handled
  • Test quality: error paths covered, behavior tested
  • File hygiene: no .env, no debug logs, files under 500 lines

FAIL with BLOCKERs → responsible sub-agent re-spawns to fix → re-review. PASS (or warnings only) → commits and creates PR.


Install

Quick start

# No clone needed — run directly with bunx or npx:
cd /path/to/your/project
bunx claude-dev-kit@latest install
# or
npx claude-dev-kit@latest install

Or if you prefer to clone first:

git clone https://github.com/evandempsey/claude-dev-kit /tmp/cdk
bash /tmp/cdk/scripts/install.sh /path/to/your/project

CLI subcommands

Command Description
claude-dev-kit install [target] Full install: copy .claude/, hook deps, MCP wizard (default)
claude-dev-kit update [target] Migration only — pull new agents/skills/hooks, no prompts
claude-dev-kit mcp [target] Run MCP wizard only (add integrations to existing project)
claude-dev-kit version Print installed kit version
claude-dev-kit help Print usage summary
# Update an existing install non-interactively (e.g. in CI)
bunx claude-dev-kit@latest update

# Add/reconfigure MCP integrations only
bunx claude-dev-kit@latest mcp

# Run fully non-interactively (skips all prompts)
CI=true bunx claude-dev-kit@latest install

What the installer does

Phase 1 — File install:

  • Copies .claude/ into your project
  • Installs hook dependencies (skill-activation-prompt)
  • Backs up any existing .claude/ first

Phase 2 — MCP wizard (interactive prompts):

The installer asks about your toolchain and automatically configures the right Claude MCP integrations:

Git Platform
  ❯ GitHub         → installs @modelcontextprotocol/server-github
    GitLab          → installs @modelcontextprotocol/server-gitlab
    Bitbucket       → (manual — no official MCP yet)
    Azure DevOps    → (manual)
    None

Ticket System
  ❯ GitHub Issues  → uses GitHub MCP (already installed)
    Linear          → installs @linear/mcp-server
    Jira            → installs @modelcontextprotocol/server-jira
    Notion          → installs @modelcontextprotocol/server-notion
    Trello          → (manual)
    None

Design Tools
    Figma           → installs figma-developer-mcp
    Storybook       → (Claude uses browser tools to access)
    None

Core MCPs (prompted individually)
    Context7        → up-to-date library documentation
    Sequential Thinking → improved multi-step reasoning
    Filesystem      → direct file access
    Serena          → semantic code navigation (requires Python/uv)

All MCPs are installed with --scope project — they activate only in this project, not globally.

MCP-only install (add integrations to existing project)

bunx claude-dev-kit@latest mcp
# or (legacy flag still works)
bash /path/to/install.sh --mcp-only

Requirements

Dependency Purpose Required?
Claude Code CLI claude mcp add for MCP setup For MCP wizard
Node.js or Bun Skill-activation hook Yes
Python 3 Context monitor + learning logger hooks Yes
GitHub CLI (gh) Issue/PR operations in pipeline For /dev commands
Gemini CLI Large codebase analysis, 1M context tasks Recommended
OpenCode CLI Codex, Grok, Kimi, and other model access Optional
Ollama Local LLMs (privacy, offline, no-cost) Optional
uv / uvx Serena MCP For Serena only

Setup (3 steps after install)

Step 1: Run /init in Claude Code

/init

This command auto-detects your stack and configures all engineering agents to match. It handles:

  • Existing projects: scans package.json, pyproject.toml, go.mod, etc. → detects framework, ORM, test runner, E2E tool → generates stack-specific agents
  • New projects: asks 10 questions about your idea (platform, scale, stack) → generates everything from scratch

Supported stacks: Next.js + Prisma, Next.js + Drizzle, Remix, SvelteKit, Nuxt, Express, Fastify, NestJS, FastAPI, Django, Flask, Go, Rust, and more.

Step 2: Review CLAUDE.md

/init generates CLAUDE.md with your stack, commands, and conventions. Review it and add anything project-specific in the ## Project Notes section at the bottom. /init will never touch that section.

Step 3: Prime Claude's context

/primer

Reads the project structure and CLAUDE.md, so Claude understands the project before you ask it to do anything.


All Commands

Planning

Command What it does
/pm Project manager: assess and act on the backlog
/pm:groom [issue | milestone] Rewrite issues with AC, DoD, sub-tasks
/pm:size [milestone | issues] T-shirt size + sprint plan
/pm:plan-epic <milestone> Full pipeline: groom → size → PRPs
/generate-prp <file> Research + write a PRP manually
/execute-prp <file> Execute a PRP with full validation
/think <question> Meta-cognitive reasoning with confidence scores
/bs:brainstorm_full <question> 7 AI models in parallel → synthesized recommendation

Implementation

Command What it does
/init [existing | new] Smart setup — detect stack or interview for new project
/dev <issue> Full autonomous pipeline: classify → sub-agents → validate → PR
/dev-issue <issue> Equivalent to /dev
/dev-epic All stories in highest-priority epic → one PR
/dev:backend <task> Backend work only
/dev:frontend <task> Frontend work only
/dev:storybook [component | issue | "audit"] Write or audit Storybook stories — skips if Storybook not detected
/dev:test <files> Write tests for specific files
/dev:e2e <flow> Write E2E tests for a flow
/dev:review Code review of current branch
/fix-github-issue <N> Quick fix: read → implement → PR
/design <file-key> <slug> Full design pipeline — wireframe → Figma frames → review (requires Figma MCP)
/design:mockup <file-key> <slug> Wireframe + Figma frame creation (requires Figma MCP)
/design:review <file-key> <slug> Compare Figma vs code — PASS/FAIL deviations (requires Figma MCP)
/design:tokens <file-key> Sync Figma variables ↔ code design tokens (requires Figma MCP)
/design:component <file-key> <name> Design a single component end-to-end (requires Figma MCP)

Multi-AI Management

Command What it does
/ai:detect Scan system for installed AI CLIs (Gemini, OpenCode, Ollama, etc.) and update providers.json
/ai:switch <provider> Change the default AI provider — use ollama:<model> to switch Ollama models
/ai:route <task> Intelligently route a task to the best available AI based on task type
/bs:brainstorm_full <question> 7 AI models brainstorm in parallel → synthesized recommendation
/bs:gemini <task> Run a task directly with Gemini CLI
/bs:codex <task> Run a task with OpenAI Codex (via opencode)
/bs:grok <task> Run a task with Grok (via opencode)
/bs:kimi <task> Run a task with Kimi K2 (via opencode)
/bs:ollama <task> Run a task with a local Ollama model — no cloud, data stays on machine. Prefix with model:name to override

Self-Improvement

Command What it does
/improve [days=14] Analyze session learning data → propose skill rule and agent improvements
/self-improve [agents|commands|skills|all] Multi-AI critique of the kit's own prompts → synthesize and optionally apply improvements

Utilities

Command What it does
/primer Prime context: read project structure + CLAUDE.md
/code:build-and-fix Build and auto-fix lint/format errors
/code:simplify [files] Refactor for clarity
/git:status Current branch, diff, status
/haiku <task> Fast one-shot task in clean Haiku sub-context

All Agents

Agent Model Role
project-manager opus Planning orchestrator — grooms, sizes, PRPs
dev-lead opus Dev orchestrator — implements, validates, ships
pm-groomer sonnet Writes AC, DoD, sub-tasks for issues
pm-sizer sonnet T-shirt sizes, confidence scores, sprint plans
pm-prp-writer sonnet Deep research + PRP authoring
dev-backend sonnet API routes, services, DB, auth (stack-specific after /init)
dev-frontend sonnet Components, pages, state (stack-specific after /init)
dev-test sonnet Unit tests, mocks, coverage (stack-specific after /init)
dev-e2e sonnet E2E tests (stack-specific after /init)
dev-reviewer sonnet Security, correctness, pattern, type safety review
system-architect opus Architecture design, ADRs, C4 diagrams
deep-think-partner opus Complex reasoning, trade-off analysis
documentation-manager sonnet Docs sync after code changes
validation-gates sonnet Quality gate runner (standalone use)
haiku-executor haiku Fast one-shot tasks

Designer Agent Hierarchy (optional — requires Figma MCP)

Agent Model Role
designer opus Design orchestrator — classifies work, spawns sub-agents, validates outputs
design-researcher sonnet Reads Figma file structure, component library, tokens via MCP
design-wireframer sonnet ASCII wireframe spec + Figma node blueprint JSON
design-system-manager sonnet Creates frames, variables, components via Figma REST API
design-reviewer sonnet Read-only comparison of Figma frames vs code implementation

Optional Agents

Some agent packs require additional MCPs or external tooling. They ship dormant in the kit and activate only when their dependencies are configured.

Pack Requirement How to activate
Designer (designer + 4 sub-agents) Figma MCP Run bunx claude-dev-kit@latest mcp and select Figma under Design Tools. Or select the Designer pack in Phase 1.5 during a fresh install — the installer will auto-prompt for your Figma token.
DevOps (planned) Future release.
Data (planned) Future release.

Every design command performs a runtime guard: if claude mcp list does not show figma, the command exits with instructions to run the MCP installer. This keeps the kit safe to ship with optional agents enabled by default.


Skills (Auto-Suggested)

The UserPromptSubmit hook suggests relevant skills based on keywords:

Skill Triggered by Purpose
verification-before-completion done, complete, fixed Run verification before claiming done
code-investigator debug, trace, how does, investigate, refactor Serena-first targeted search
build-and-fix build, lint, compile, fix errors Auto-fix simple build errors
ai-router use gemini, use codex, use ollama, ask grok, route to, which ai, entire codebase, private, local only Route task to best available AI CLI
improve improve the kit, skill not triggering, agent failing Analyze session data, propose kit improvements
self-improve critique the kit, self-improve, have AIs review Multi-AI critique of kit prompts
stack-detector Used internally by /init Detect project stack

Multi-AI Support

Claude Code is always the orchestrator — it never becomes a different AI. Other AI CLIs are called as subprocesses and their output is returned to you via Claude.

Supported AI Providers

Provider CLI Best for Context Local?
Claude claude Reasoning, agents, architecture 1M No
Gemini gemini Entire codebase scans, web search 1M No
Codex opencode Code generation, completion 128k No
Grok opencode Speed, quick analysis 131k No
Kimi K2 opencode Coding, math 128k No
Ollama ollama Privacy, offline, no-cost — any local model 128k Yes
GLM cczy Multilingual tasks 128k No
MiniMax ccmy Multimodal tasks 40k No

Quick start with multi-AI

# 1. Detect what's installed
/ai:detect

# 2. Route a task automatically
/ai:route scan the entire codebase and identify architectural issues

# 3. Run with a specific AI
/bs:gemini explain the authentication flow in this repo
/bs:ollama explain this function  # stays local, no cloud

# 4. Brainstorm with all 7 AIs at once
/bs:brainstorm_full what's the best way to add real-time updates to this app?

Routing logic

Task: "scan entire codebase"     → Gemini  (1M context)
Task: "quick summary of X"       → Grok    (fastest)
Task: "implement function Y"     → Claude  (default)
Task: "private / confidential"   → Ollama  (local — no cloud)
Task: "brainstorm approaches"    → multi   (all AIs)

Ollama — Local LLMs

Run any model on your own hardware — zero cost, fully private, works offline.

# Install Ollama
curl -fsSL https://ollama.ai/install.sh | sh

# Pull a model (choose based on your needs)
ollama pull llama3.2          # general purpose
ollama pull codellama         # code generation
ollama pull qwen2.5-coder     # strong coding model
ollama pull deepseek-coder-v2 # coding + reasoning
ollama pull mistral           # fast, good quality

# Start the service
ollama serve

# Use it in the kit
/ai:detect                        # auto-detects Ollama + lists models
/bs:ollama explain this function  # one-off query
/ai:switch ollama                 # make Ollama the default
/ai:switch ollama:codellama       # switch to a specific model
/ai:route <sensitive task>        # auto-routes private tasks to Ollama

Good models for coding tasks: qwen2.5-coder, codellama, deepseek-coder-v2


Self-Improvement System

The kit tracks its own usage and improves over time through two mechanisms:

1. Learning Logger (automatic)

After every session, a Stop hook captures to .claude/learning/sessions/YYYY-MM-DD.jsonl:

  • Which commands and skills were used
  • Which agents were spawned
  • Token consumption
  • Error patterns
  • User prompt fragments (for skill trigger analysis)

Logs are pruned after 90 days.

2. /improve — Pattern Analysis

/improve           # Analyze last 14 days
/improve 30        # Analyze last 30 days
/improve all       # Analyze all available data

Reads your session logs and:

  • Identifies skill activation gaps (phrases that should have triggered a skill but didn't)
  • Flags underused commands (candidates for removal or better docs)
  • Spots common error patterns with suggested fixes
  • Reports token hotspots (tasks that could use cheaper models)
  • Proposes concrete updates to skill-rules.json

3. /self-improve — Multi-AI Kit Critique

/self-improve              # Critique everything
/self-improve agents       # Focus on agent prompts
/self-improve skills       # Focus on skill definitions
/self-improve commands     # Focus on slash commands

Reads the kit's own agent/skill/command files, sends them to all available AIs for critique, synthesizes consensus improvements, and optionally applies them + creates a PR.

Run monthly or after major feature additions.


Safety Hooks

Hook What it does
Block Dangerous Commands Intercepts Bash calls — blocks rm ~, force push main, git reset --hard, .env reads, etc. (configurable: critical/high/strict)
Context Monitor Warns at 65% context, stops at 85% — instructs to /clear
Learning Logger Captures session data after each session for self-improvement analysis
Validation Gates Runs lint, security, typecheck, and build checks on session end — surfaces failures to Claude so it can fix before finishing. Configure per-gate via stopGates in settings.json. Optional gates (tests, e2e, ui) are off by default.
Skill Suggester Watches your prompts — surfaces the right skill at the right time

Model Strategy

Task type Model Why
Orchestration, architecture, deep reasoning Opus Trade-off analysis, coordination
Code generation, testing, reviews Sonnet Excellent at code; domain knowledge in system prompt matters more than raw reasoning
Fast one-shot tasks Haiku Speed + cost for simple work

The 5 code-specialist sub-agents run on Sonnet. Orchestrators run on Opus. This keeps costs low while maintaining quality where it matters.


Adding a Stack Agent

Copy from examples/agents/ and customize:

cp examples/agents/nextjs-engineer.md .claude/agents/my-stack-engineer.md

Or add a new stack template to .claude/templates/stacks/my-stack.md and re-run /init.


Re-initializing

Run /init again after:

  • Changing your framework or ORM
  • Adding a new test runner or E2E tool
  • Switching package managers

It safely preserves manual edits in CLAUDE.md (outside the CDK fences) and never overwrites your hooks in settings.json.


Contributing

PRs welcome. To add support for a new stack:

  1. Add .claude/templates/stacks/<framework>-<orm>.md with BACKEND_AGENT_BODY, FRONTEND_AGENT_BODY, TEST_AGENT_BODY, E2E_AGENT_BODY sections
  2. Add detection logic to .claude/skills/stack-detector/SKILL.md
  3. Add an example to examples/agents/

To add a new AI provider:

  1. Add an entry to .claude/providers.json with cli, run_cmd, strengths, and context_window
  2. Update /ai:detect detection logic in .claude/commands/ai/detect.md
  3. Add a brainstorm command to .claude/commands/bs/<provider>.md (optional)
  4. Update the routing table in .claude/skills/ai-router/SKILL.md if the provider has a unique strength

To improve the kit automatically:

  • Run /improve after a few sessions to get data-driven suggestions
  • Run /self-improve monthly for multi-AI critique of the kit's own prompts

About

Portable Claude Code plugin: autonomous dev pipeline from epic grooming to validated PRs

Resources

Stars

1 star

Watchers

1 watching

Forks

Packages

 
 
 

Contributors