@chris1807/claude-kit
v2.1.4
Published
Claude Code starter kit — agents, hooks, MCP servers, slash commands, and workflow automation
Maintainers
Readme
Claude Kit
A starter kit for Claude Code — agents, hooks, MCP servers, slash commands, and workflow automation, installed into any project with a single
npxcommand.
About
This package installs a complete AI development infrastructure into any project. It includes specialized agents that handle specific tasks (deployment, database ops, code review), security hooks that prevent mistakes automatically, MCP server connections to your tools (databases, Teams, Stripe, Azure CLI), and slash commands that automate your entire workflow from work item to pull request.
Every session Claude learns from your feedback and gets better at helping you specifically. The infrastructure is modular — install only what your project needs.
What's Included
| Component | Count | Where Installed | Description |
|-----------|-------|----------------|-------------|
| Global Agents | 13 | ~/.claude/agents/ (your machine, all projects) | backend, frontend, legacy (Lucee/CFML), manager, mockup, reviewer, test-runner, build-validator, lint-checker, uat-generator, azure-ops, security-auditor, api-tester |
| Project Agents | 3 | .claude/agents/ (in the project) | deployer, db-admin, devops-tracker |
| Hooks | 9 | .claude/hooks/ (in the project) | Secret blocker, sensitive data blocker (Bash + MCP + output), protected files, auto-format, test suggestions, UAT reminder, self-improve |
| Slash Commands | 13 | .claude/commands/ (in the project) | /implement, /review, /deploy, /create-release, /deploy-release, /add-to-release, /cherry-pick, /promote, /rollback, /status, /cleanup-branches, /quote, /explain |
| MCP Servers | Up to 6 | .mcp.json (in the project) | Playwright, MongoDB/SQL/Postgres, Teams, Stripe, Azure CLI |
| Workflow Template | 1 | Appended to CLAUDE.md | Documents the full development process |
| Settings | 1 | .claude/settings.json (in the project) | Registers all hooks and MCP servers |
Prerequisites
- Claude Code CLI installed
- Node.js 18 or later
Verify it works
npx @chris1807/claude-kit --helpYou should see the help output. The package is published publicly on npmjs.com — no authentication or .npmrc setup required.
Installation
How It Works
Every install mode does two things:
- Global agents → installed to
~/.claude/agents/(works across ALL your projects) - Project files → installed to the target project directory (agents, hooks, commands, MCP config, settings)
Option 1: Interactive Install (Recommended)
Best for first-time setup or when you want to pick exactly what you need.
npx @chris1807/claude-kit initYou'll be asked:
- Target directory — where is your project?
- Components — checkboxes to pick which parts to install:
- ☑ Project Agents (deployer, db-admin, devops-tracker)
- ☑ Hooks (secret blocker, auto-format, etc.)
- ☑ Slash Commands (13 commands — /implement, /review, /deploy, /create-release, /deploy-release, /add-to-release, /cherry-pick, /promote, /rollback, /status, /cleanup-branches, /quote, /explain)
- ☑ MCP Servers
- ☑ Settings
- ☑ CLAUDE.md Workflow
- ☑ .gitignore Updates
- Database type — MongoDB, SQL Server, Azure SQL, PostgreSQL, or None
- MCP servers — pick which ones:
- ☑ Playwright (browser testing)
- ☑ Microsoft Teams (notifications)
- ☐ Stripe (payments) — off by default
- ☑ Azure CLI (infrastructure)
- Existing files — for each file that already exists, choose overwrite or skip
Option 2: Install to a Specific Project
Same as Option 1, but you specify the project path upfront:
npx @chris1807/claude-kit init /path/to/your/projectOption 3: Install Everything (Minimal Prompts)
Installs all components. Only asks which database type (there's no sensible default).
npx @chris1807/claude-kit init --allThis installs:
- ✅ Global agents (backend, frontend, legacy, manager, mockup, reviewer, test-runner, build-validator, lint-checker, uat-generator, azure-ops, security-auditor, api-tester)
- ✅ Project agents (deployer, db-admin, devops-tracker)
- ✅ All 9 hooks
- ✅ All 13 slash commands
- ✅ MCP servers: Playwright, Teams, Azure CLI (+ your DB choice)
- ✅ Settings, CLAUDE.md workflow, .gitignore
- ❌ Stripe (not included in --all, add via interactive mode)
- ⏭️ Skips files that are already identical
- 🔄 Overwrites files that have changed
Option 4: Fully Automated (Zero Prompts)
Specify the database type as a flag — no prompts at all:
npx @chris1807/claude-kit init --all --db=mongo
npx @chris1807/claude-kit init --all --db=mssql
npx @chris1807/claude-kit init --all --db=azuresql
npx @chris1807/claude-kit init --all --db=postgresYou can also target a specific directory:
npx @chris1807/claude-kit init /path/to/project --all --db=mongoOption 5: Global Agents Only
Just installs the 13 global agents to ~/.claude/agents/. No project files, no prompts.
npx @chris1807/claude-kit init --global-onlyUse this when you just want the global agents on a new machine and will install project files separately per project.
Re-Running the Installer
Safe to run as many times as you want. The installer:
- Skips files that are identical (no unnecessary changes)
- Asks before overwriting files that have changed (in interactive mode)
- Overwrites changed files silently (in
--allmode) - Merges MCP server configs (adds missing servers without removing existing ones)
Installing on Additional Projects
Already installed on one project? Just run the same command for the next one:
npx @chris1807/claude-kit init /path/to/another/projectThe installer automatically skips global agents that are already installed (they're identical) and only installs the project-specific files. You don't need --global-only or any special flag — it just works.
📦 Global Agents → ~/.claude/agents/
= azure-ops.md (identical, skipped) ← already installed, skipped
= security-auditor.md (identical, skipped)
= api-tester.md (identical, skipped)
📦 Project Agents → .claude/agents/ ← fresh install for this project
✓ deployer.md
✓ db-admin.md
✓ devops-tracker.md
...What Gets Installed
~/.claude/agents/ ← Global (all projects)
├── backend.md # .NET/C# backend developer (Clean Architecture)
├── frontend.md # React/TypeScript frontend developer
├── legacy.md # Lucee/CFML legacy app developer (RBWO + others)
├── manager.md # Workflow orchestrator (delegates to other agents)
├── mockup.md # HTML mockup designer
├── reviewer.md # Code reviewer (read-only)
├── test-runner.md # Test executor — xUnit, Vitest, Playwright (read-only)
├── build-validator.md # Build checker (read-only)
├── lint-checker.md # ESLint + dotnet format checker
├── uat-generator.md # UAT checklist generator (read-only)
├── azure-ops.md # Azure infrastructure management
├── security-auditor.md # Security scanning (read-only)
└── api-tester.md # API endpoint testing
your-project/ ← Project-specific
├── .claude/
│ ├── agents/
│ │ ├── deployer.md # Commit → push → deploy → monitor
│ │ ├── db-admin.md # Database queries and data management
│ │ └── devops-tracker.md # Azure DevOps work item management
│ │
│ ├── hooks/
│ │ ├── sensitive-data-blocker.sh # BLOCKS mongosh queries for TIN/SSN/PII
│ │ ├── sensitive-data-mcp-blocker.sh # BLOCKS MCP DB queries for TIN/SSN/PII
│ │ ├── sensitive-data-output-blocker.sh # BLOCKS output containing PII fields
│ │ ├── secret-blocker.sh # BLOCKS hardcoded secrets before write
│ │ ├── protected-files.sh # BLOCKS/warns on critical file edits
│ │ ├── auto-format.sh # Auto-runs formatters after edits
│ │ ├── test-on-change.sh # Suggests related tests after edits
│ │ ├── uat-reminder.sh # Reminds to run UAT after features
│ │ └── self-improve.sh # Saves learnings after each session
│ │
│ ├── commands/
│ │ ├── implement.md # /implement AB#1234
│ │ ├── review.md # /review 142
│ │ ├── deploy.md # /deploy "commit message"
│ │ ├── create-release.md # /create-release 23
│ │ ├── deploy-release.md # /deploy-release 23 staging
│ │ ├── cherry-pick.md # /cherry-pick AB#1234 production
│ │ ├── promote.md # /promote staging production
│ │ ├── rollback.md # /rollback AB#1234 production
│ │ ├── add-to-release.md # /add-to-release 24 AB#4599
│ │ ├── status.md # /status release 24
│ │ ├── cleanup-branches.md # /cleanup-branches
│ │ ├── quote.md # /quote AB#1234
│ │ └── explain.md # /explain AB#1234
│ │
│ └── settings.json # Hook and MCP registration
│
├── .mcp.json # MCP server configuration
└── CLAUDE.md # Gets workflow section appendedUsage
Start Working
cd /path/to/your/project
claudeVerify MCP servers are connected:
/mcpImplement a Work Item
/implement AB#1234Claude automatically:
- Reads the work item from Azure DevOps
- Summarizes and asks you to confirm — shows title, description, acceptance criteria. Waits for you to agree or add context
- Creates a feature branch based on work item type
- Explores the codebase and presents an implementation plan — lists files to create, modify, and delete. Waits for your approval before writing any code
- Implements using backend/frontend agents (only after plan approval)
- Runs tests, linting, and build validation
- Generates a UAT checklist from acceptance criteria
- Pauses for you to manually test
- Creates the PR after you confirm
Review a Pull Request
/review 142Claude automatically:
- Reads the full PR diff
- Reads the linked work item and checks all acceptance criteria
- Reviews for Clean Architecture, security, missing tests, code quality
- Posts inline comments on all findings
- Posts a PR-level summary
- Asks: "Approve, Request Changes, or skip the vote?"
Deploy Changes
/deploy "Add payment export feature"Claude automatically:
- Runs pre-flight checks (dotnet build, tsc)
- Stages and commits with the provided message
- Pushes the current branch
- Triggers the CD pipeline if on an environment branch
Create a Release
/create-release 23Claude automatically:
- Asks which work items to include
- Creates a
Release #23iteration in Azure DevOps - Assigns and tags all work items with
release-23
Deploy a Release
/deploy-release 23 stagingClaude automatically:
- Finds all work items in Release #23
- Cherry-picks their commits into
release/23-to-staging - Creates a PR targeting the staging branch
- Links all work items to the PR
Cherry-Pick Work Items
/cherry-pick AB#1234 AB#1235 productionCherry-picks specific work items to an environment without a formal release.
Promote an Environment
/promote staging productionCreates a PR to promote all code from staging to production. Shows a summary of all included commits before confirming.
Rollback a Deployment
/rollback AB#1234 production
/rollback last stagingReverts specific commits or the last deployment on an environment. Creates a revert branch and PR.
Add Work Items to a Release
/add-to-release 24 AB#4599 AB#4600Adds work items to an existing release — assigns them to the iteration and tags them.
Check Status
/status release 24
/status pipeline
/status AB#4521
/status staging
/statusShows the status of a release, pipeline, work item, environment, or a high-level overview of everything.
Quote a Work Item
/quote AB#1234Displays a work item as a formatted blockquote — title, type, state, assignee, description, acceptance criteria, and child items. Useful for pasting into PR descriptions, Teams messages, or discussions.
Explain a Work Item
/explain AB#1234Reads a work item and explains it in plain language:
- Summary — what the work item is about in 1–2 sentences
- What needs to happen — acceptance criteria translated into concrete actions
- Why it matters — business/user value
- Current status — state, assignee, parent, child progress, linked PRs
- Scope & risks — flags ambiguity, missing criteria, or large scope
Clean Up Merged Branches
/cleanup-branches
/cleanup-branches --dry-runFinds and deletes branches that have been fully merged. Protects environment branches. Use --dry-run to preview without deleting.
Branching Strategy
Target State (All Projects)
Every project should converge to this standard. Each long-lived branch maps to an Azure subscription and environment:
| Branch | Azure Subscription | Environment | Deploys When |
|--------|-------------------|-------------|-------------|
| develop | Dev | Development | PR merged into develop |
| staging | Staging | Staging | PR merged into staging |
| main | Production | Production | PR merged into main (with approval gate) |
Note: Some projects are not yet in sync — they may use
masterinstead ofmain, or lack astagingbranch. All commands work dynamically with whatever branch you're on. No branch names are hardcoded.
Branch Naming
When you run /implement, a branch is automatically created based on the Azure DevOps work item type:
| Work Item Type | Branch Prefix | Example |
|----------------|--------------|---------|
| Feature | feature/ | feature/AB#1234-add-payment-export |
| User Story | story/ | story/AB#1235-user-can-view-history |
| Bug | bugfix/ | bugfix/AB#1236-fix-login-redirect |
| Hot Fix | hotfix/ | hotfix/AB#1237-fix-crash-on-submit |
| (other) | work/ | work/AB#1238-update-dependencies |
The branch is always created off the current branch — no assumptions are made about which branch you're on.
Note: The Azure DevOps work item type is "Hot Fix" (two words), but the branch prefix and PR label use
hotfix(one word, lowercase).
Code Promotion Flow
Code flows through environments via PRs, never by direct push:
feature/AB#1234-... ──PR──▸ develop ──PR──▸ staging ──PR──▸ main
(work branch) (Dev) (Staging) (Production)Development Workflow Guide
This section walks through the complete workflow from picking up a work item to deploying to production.
Step 1: Implement a Work Item
Start by switching to your project's development branch and running /implement:
cd /path/to/your/project
claude# Switch to the develop branch first
git checkout develop
# Implement the work item
/implement AB#1234Claude will:
- Read the work item from Azure DevOps (extracts type, title, acceptance criteria)
- Summarize the work item and ask you to confirm understanding. You can add context or corrections here
- Create a branch automatically (e.g.,
story/AB#1234-user-can-view-history) - Explore the codebase and present an implementation plan showing which files will be created, modified, or deleted
- Wait for your approval before writing any code
- Implement using backend and/or frontend agents
- Run all quality checks (build, lint, tests, review)
- Generate a UAT checklist and pause for you to manually test
- After you confirm "testing passed", create a PR targeting
develop
The PR merges into develop, which triggers the Dev environment CD pipeline.
Step 2: Deploy Changes (Quick Commits)
For smaller changes that don't need the full /implement workflow:
/deploy "Fix typo in dashboard header"This commits, pushes, and triggers the pipeline if you're on an environment branch. If you're on a feature branch, it just pushes — the pipeline triggers on PR merge.
Step 3: Group Work Items into a Release
Once multiple work items are merged to develop and tested in Dev, group them into a release:
/create-release 23Claude will:
- Ask which work items to include — you can provide:
- Specific IDs:
AB#1234, AB#1235, AB#1236 - A query:
all Ready for Testing user stories - A state filter:
all items tagged sprint-5
- Specific IDs:
- Show you the list and ask for confirmation
- Create a
Release #23iteration in Azure DevOps - Assign all work items to the iteration and tag them with
release-23 - Tell you how to deploy:
/deploy-release 23 stagingor/deploy-release 23 production
Step 4: Deploy a Release to Staging
/deploy-release 23 stagingClaude will:
- Find all work items tagged
release-23 - Find their associated commits on the
developbranch - Create a release branch:
release/23-to-staging - Cherry-pick all commits for each work item
- Create a PR from
release/23-to-staging→staging - Link all work items to the PR
After the PR is reviewed and merged, the Staging CD pipeline triggers automatically.
Step 5: Test on Staging
QA and stakeholders test on the Staging environment. If issues are found, fix them with /implement and add the fixes to the release.
Step 6: Deploy a Release to Production
When staging testing passes:
/deploy-release 23 productionSame process — cherry-picks the release's commits to a PR targeting the production branch. After merge, the Production CD pipeline triggers (with approval gate).
Selective Deployment
If staging has 5 user stories but only 3 are ready for production:
Option A: Create a smaller release
/create-release 24Include only the 3 ready stories, then /deploy-release 24 production.
Option B: Cherry-pick specific items
/cherry-pick AB#1234 AB#1235 AB#1236 productionThis cherry-picks just those 3 work items without creating a formal release.
Promoting Without a Release
To promote all code from one environment to the next (no cherry-picking):
/promote staging productionThis creates a PR from staging → production branch containing everything. Use this when all staging code is ready for production.
You can also auto-detect the next environment:
/promoteIf you're on the staging branch, it auto-detects staging → production.
Hot Fix Workflow
For critical production issues:
- Switch to the production branch:
git checkout main - Run
/implementwith the Hot Fix work item:/implement AB#9999 - Claude creates a
hotfix/AB#9999-fix-crash-on-submitbranch - Automated checks still run (build, lint, tests, review)
- Manual UAT is skipped — you get an abbreviated confirmation instead
- PR targets the production branch directly with a
hotfixlabel
Rollback a Deployment
If a deployment causes issues:
Revert specific work items:
/rollback AB#1234 productionRevert the most recent deployment:
/rollback last stagingClaude will:
- Find the commits to revert
- Create a revert branch (e.g.,
revert/2026-03-21-on-production) - Run
git reverton each commit - Run pre-flight checks on the reverted code
- Create a PR targeting the environment branch
Merge the PR to deploy the rollback.
Code Review
For any open PR:
/review 142Claude reviews for:
- Clean Architecture boundaries (Domain has no infrastructure dependencies)
- Tenant/organizationId enforcement on all database queries
- Missing unit or integration tests for new code
anytypes in TypeScript (should be properly typed)- Security issues (OWASP Top 10, hardcoded secrets)
- Acceptance criteria coverage from the linked work item
Slash Commands Reference
| Command | Usage | What It Does |
|---------|-------|-------------|
| /implement | /implement AB#1234 | Read work item → summarize → approve plan → implement → quality checks → UAT → PR |
| /review | /review 142 | Full code review on a PR with inline comments |
| /deploy | /deploy "message" | Commit, push, trigger pipeline if on environment branch |
| /create-release | /create-release 23 | Group work items into Release #23 iteration with tags |
| /deploy-release | /deploy-release 23 staging | Cherry-pick release work items to environment via PR |
| /add-to-release | /add-to-release 24 AB#4599 | Add work items to an existing release |
| /cherry-pick | /cherry-pick AB#1234 AB#1235 production | Cherry-pick specific work items to environment via PR |
| /promote | /promote staging production | PR to promote all code between environments |
| /rollback | /rollback AB#1234 production | Revert specific commits on an environment via PR |
| /status | /status release 24 | Check status of a release, pipeline, work item, or environment |
| /quote | /quote AB#1234 | Display a work item as a formatted blockquote |
| /explain | /explain AB#1234 | Summarize and explain a work item in plain language |
| /cleanup-branches | /cleanup-branches | Delete merged feature/work branches |
Hooks
These run automatically — no action needed:
| When | Hook | What It Does |
|------|------|-------------|
| Before any Bash command | sensitive-data-blocker.sh | Blocks mongosh commands that reference sensitive PII fields (TIN, SSN, bank accounts). Blocks the command. |
| Before any MCP database tool | sensitive-data-mcp-blocker.sh | Blocks MongoDB/MSSQL/Postgres MCP tool calls that reference PII fields. Blocks the call. |
| After any Bash/MCP/Read/Grep | sensitive-data-output-blocker.sh | Scans output for PII field names in JSON, C#, YAML formats — catches broad queries, seed data, test fixtures, log files, and git diffs. Blocks the output. |
| Before any file write | secret-blocker.sh | Scans for hardcoded credentials (MongoDB URIs, AWS keys, Stripe keys, passwords). Blocks the write. |
| Before any file edit | protected-files.sh | Blocks edits to production/staging configs. Warns on critical files (CLAUDE.md, pipelines, Program.cs). |
| After any file edit | auto-format.sh | Runs dotnet format on .cs files, eslint --fix on .ts/.tsx files |
| After any file edit | test-on-change.sh | Suggests the relevant test command for the modified file |
| When Claude stops | uat-reminder.sh | Reminds to run UAT if a feature was implemented |
| When Claude stops | self-improve.sh | Prompts Claude to save learnings to memory for next time |
Environment Variables
Each team member sets their own. Never commit these.
Add to ~/.zshrc (Mac) or System Environment Variables (Windows):
# MongoDB (if your project uses MongoDB)
export MONGODB_CONNECTION_STRING="mongodb+srv://user:[email protected]/"
# SQL Server (if your project uses SQL Server or Azure SQL)
export MSSQL_CONNECTION_STRING="Server=localhost;Database=MyDb;User Id=sa;Password=...;"
# PostgreSQL (if your project uses PostgreSQL)
export POSTGRES_CONNECTION_STRING="postgresql://user:password@localhost:5432/mydb"
# Microsoft Teams (for team notifications and messages)
export TEAMS_TENANT_ID="your-azure-ad-tenant-id"
export TEAMS_CLIENT_ID="your-app-registration-client-id"
export TEAMS_CLIENT_SECRET="your-client-secret"
# Stripe (if your project uses Stripe payments)
export STRIPE_SECRET_KEY="sk_test_..."
# Azure CLI (no env var needed — just log in)
az loginSetting Up the Teams MCP Server
- Go to Azure Portal > App Registrations
- Click New Registration → name it "Claude Code Teams Bot"
- API Permissions → Add Microsoft Graph:
ChannelMessage.SendChannelMessage.Read.AllChat.ReadWriteTeam.ReadBasic.All
- Certificates & Secrets → Create a new client secret
- Copy the Tenant ID, Client ID, and Client Secret
- Set the three
TEAMS_*environment variables above
Memory System
Claude maintains persistent memory across sessions in ~/.claude/projects/.../memory/. The self-improvement hook prompts Claude to save learnings after each session.
| Memory Type | Purpose | Example | |-------------|---------|---------| | user | Who you are, preferences, expertise | "Senior .NET dev, prefers terse responses" | | feedback | What to do / avoid (self-improving) | "Always push to both main and develop" | | project | Decisions, priorities, blockers | "Using Stripe instead of Dwolla because..." | | reference | URLs, credentials, external resources | "Staging URL: https://..." |
Setting Up Your Memory
After installing, start a Claude Code session and say:
Set up my memory profile. I'm [your name], a [your role] at [your company].
I work on [your projects]. I prefer [your preferences].Claude creates the initial memory files. Each subsequent session adds to them automatically.
Customization
Adding Custom Agents
Create .claude/agents/your-agent.md in your project:
---
name: your-agent
description: What this agent does
tools:
- Bash
- Read
- Write
---
Instructions for the agent...Adding Custom Hooks
- Create
.claude/hooks/your-hook.shand make it executable - Add it to
.claude/settings.jsonunder PreToolUse, PostToolUse, or Stop
Adding Custom Slash Commands
Create .claude/commands/your-command.md:
Do something with $ARGUMENTS.
1. Step one
2. Step twoUse it: /your-command some-argument
Removing Components
Delete any agent, hook, command, or MCP server you don't need. Everything works independently.
Updating
When the infrastructure package is updated:
# npx always fetches the latest version
npx @chris1807/claude-kit init /path/to/projectThe installer detects existing files and asks whether to overwrite or skip each one.
Publishing Updates (Maintainers Only)
cd claude-kit
# Make your changes, then bump the version
npm version patch # 2.0.0 → 2.0.1
# Push the tag — GitHub Actions publishes to npm automatically
git push && git push --tagsThe
.github/workflows/publish.ymlworkflow runs on any pushedv*tag and publishes to npm using theNPM_TOKENrepo secret. You should not runnpm publishfrom a dev machine.
Security
- No secrets in the repo —
.mcp.jsononly contains${ENV_VAR}references - Sensitive data blocker hooks (4 layers) — blocks database queries referencing TIN, SSN, bank account numbers, or other PII fields before execution (Bash + MCP), and scans all output (Bash, MCP, Read, Grep) for PII field names. Even encrypted values are never exposed. CLAUDE.md policy is injected at the top of every project
- Secret blocker hook — automatically blocks writes containing hardcoded credentials
- Protected files hook — prevents edits to production/staging configs
.claude/settings.local.jsonis gitignored — personal permissions stay private- Public npm package — published from a GitHub Actions workflow gated on a tag-version match check
Troubleshooting
npm ERR! 404 Not Found
If npx @chris1807/claude-kit reports 404, your local npm registry may be set to a private feed that overrides the public one. Check with npm config get registry — it should be https://registry.npmjs.org/.
Hooks not running
Verify the settings file is loaded:
claude
/configCheck that .claude/settings.json shows your hooks.
MCP server not connecting
Check that the environment variable is set:
echo $MONGODB_CONNECTION_STRING # Should show your connection string
echo $STRIPE_SECRET_KEY # Should show sk_test_...
az account show # Should show your Azure subscriptionSupport
- Issues: github.com/Christopher-Waters/claude-kit/issues
- Source: github.com/Christopher-Waters/claude-kit
License
MIT
