kuma
Integrates ESLint for linting via the static_analysis tool, parsing output into structured results.
Provides tools for viewing commit history and diffs, and includes safety measures like blocking dangerous git commands such as git push --force.
Integrates with npm for package management detection in project conventions and blocks dangerous npm publish commands.
Supports pnpm via workspace detection in monorepo awareness features.
Integrates Prettier for code formatting checks via the static_analysis tool.
Integrates Ruff for Python linting via the static_analysis tool.
Runs TypeScript static analysis (type checking) via the static_analysis tool and provides LSP-based queries with regex fallback.
Supports Yarn via workspace detection in monorepo awareness features.
Safety-first context & orchestration engine for AI coding agents.
Works with any MCP-compatible agent: Claude Code, Cursor, Windsurf, Zed, and more.
What is Kuma?
Kuma is an MCP (Model Context Protocol) server that acts as a pre-modification safety layer for AI coding agents. Before an agent touches your code, Kuma enforces a research and safety pipeline — like a pre-flight checklist for code changes.
The Problem: AI agents often modify code without understanding the full context — missing dependencies, breaking related features, or repeating past mistakes.
The Solution: Kuma is a shadow memory that injects "where is this file fragile and why is it written this way" right before the agent touches it:
🪄 Auto-inject hooks — gotchas/decisions/history injected before every edit, zero extra steps
🧠 Knowledge graph — SQLite-based derived cache (hash-verified, never stale)
📝 Decision memory — ADR-style decision tracking across sessions
📊 Kuma Studio — Visual dashboard for gotchas, decisions, and shadow-memory metrics
Related MCP server: repo-seatbelt
Quick Start
⚡ Universal 1-Liner (Auto-detects your IDE/Agent)
curl -fsSL https://raw.githubusercontent.com/plumpslabs/kuma/main/install.sh | bash🧩 Or Install as a Native Plugin
Claude Code Marketplace:
/plugin marketplace add plumpslabs/kuma /plugin install kuma@plumpslabs-kumaAntigravity CLI (AGY):
agy plugin add https://github.com/plumpslabs/kumaVia NPX (Zero Install):
npx @plumpslabs/kuma init --all
📖 See INSTALL.md for the complete provider matrix (Cursor, Windsurf, OpenCode, Copilot, Zed, Cline, Aider, etc.).
Core Architecture: 3 Pipeline-Driven Tools
Kuma exposes 3 coarse-grained tools with 15 core actions — the full agent surface. Anything else (impact, navigate, changes, digest, drift, resume, mine, session, delete_node, clear, goal_progress, check, audit, security, gc, ast, validate, gotcha_staleness) was removed — not hidden, gone — so the agent never has to choose from 30+ options and there is no dead surface to maintain.
🧠 kuma_context — Context & Research
Action | Purpose | Impact |
| Lean project brief + restore session + branch tracking | 🔴 Required first |
| 5-step pipeline: cache → graph → scan → impact → decision | 🔴 Required before edits |
| Monorepo package topology & workspace boundary mapping | 🔴 High |
| Concept-level subsystem clusters with typed relationship verbs | 🔴 High |
| Compressed AST code outline (85-93% token reduction) | 🔴 High |
| Anti-duplication helper discovery before writing new code | 🔴 High |
| Blast radius analysis with PageRank centrality scoring | 🔴 High |
| Why is this file written this way (cross-session trace) | 🔴 High |
| Read a recorded architecture flow | 🔴 High |
💾 kuma_memory — Decision & Knowledge
Action | Purpose | Impact |
| Record bugs/quirks + lifecycle ( | 🔴 Exponential |
| Record architecture flow (max 5 core files) | 🔴 Exponential |
| Record ADR-style decision with rationale | 🔴 Exponential |
| Save research findings to cache | 🟡 Linear |
| Quick lookup of memory + knowledge graph | 🟡 Linear |
🛡️ kuma_safety — Safety & Verification
Action | Purpose | Impact |
| Detect anti-patterns, drift, runaway loops | 🔴 Required |
| Post-edit blast radius & affected test targeting (<50ms static resolution) | 🔴 High |
| Labeled snapshot before risky work | 🟡 Linear |
| Restore a labeled snapshot | 🟡 Linear |
Architecture
Kuma exposes exactly 3 coarse-grained tools — the agent picks an action, Kuma runs the internal workflow:
Tool | Core Actions | Purpose |
|
| Load project context, understand unfamiliar code |
|
| Persistent knowledge that saves future sessions |
|
| Pre-risk guard, post-edit blast radius verification, snapshot/restore |
Everything else is an internal action — not exposed to the agent. The agent uses its own native tools for editing, searching, and execution — Kuma is memory & safety, not a code manager.
What Kuma Provides
Knowledge Graph — SQLite + FTS5 full-text search (derived cache)
Session Memory — track tool calls, recordings, and efficiency per session
Guard System — real-time monitoring with blocking warnings for anti-patterns
Shadow Injection — gotchas injected before edits via hooks (zero token waste when clean)
Kuma Studio — visual dashboard with graph, gotchas, and injection metrics
Checkpoint/Rollback — atomic snapshots before major refactors
Kuma Studio
Kuma Studio is a streamlined, modular web dashboard for visualizing your codebase intelligence, gotchas shield, and workspace topology without visual clutter.
Features
🛡️ Gotcha Shield — Filter gotchas by status (
active,verified,resolved), severity, and copy workarounds in 1 click🔀 Domain Sequence Flows — Linear architecture hops and execution sequences
📦 Workspace & Blast Radius — Monorepo package dependency matrix and real-time blast radius impact simulator
⚡ Health & Efficiency — Session metrics, estimated hours saved, verification pass rates, and injection statistics
🕸️ Calm Knowledge Graph — Clean node-link visualization with optional physics simulation and depth controls
Usage
# Start Kuma Studio
kuma studio
# Or via npx
npx -y @plumpslabs/kuma studioStudio runs at http://localhost:3322 and provides:
Real-time graph visualization
Copy report functionality for activity analysis
Node detail modals with relations and gotchas
Search and filter capabilities
Physics-based graph layout with depth controls
Knowledge Graph Schema
Kuma builds a comprehensive knowledge graph with these node types:
Node Type | Description |
| High-level module (e.g., Auth, Billing) |
| Architecture flow between files |
| Known bug or quirk |
| ADR-style decision with rationale |
| Function or method |
| Class definition |
| UI component |
| Source file |
| API endpoint |
| Test file |
| Research cache entry |
Edge types include: contains, flows_through, owns, explains.
Safety Layer
Audit Trail
Every safety check is logged to the audit trail:
Tool name and parameters
Risk level (low/medium/high/critical)
Allowed/blocked decision
Duration and metadata
Workflow
A typical Kuma-powered session follows this flow:
1. INIT → kuma_context({ action: 'init' })
Load project brief, restore session context
2. RESEARCH → kuma_context({ action: 'research', scope: '<area>' })
5-step pipeline: cache → graph → impact → decision → safety
3. GUARD → kuma_safety({ action: 'guard' })
Check for anti-patterns, drift, runaway loops
4. EDIT → Agent modifies code (native tools)
5. RECORD → kuma_memory({ action: 'gotcha' | 'arch_flow' | 'decision' })
Record what was learned for future sessions
6. VERIFY → kuma_safety({ action: 'verify' })
Auto-run scoped tests + validation
7. CHECKPOINT → kuma_safety({ action: 'checkpoint', label: 'post-<feature>' })
Snapshot once stable — restore with rollback_label if neededPer-Project Context Model
Kuma stores all context locally in .kuma/:
.kuma/
├── kuma.db # SQLite knowledge graph (WASM) — nodes, edges, research cache, changes
├── init.md # Project behavioral rules (generated by `kuma init`)
├── memory.json # Session state + metrics (auto)
├── auto-gotcha.json # Self-learning loop state (auto)
├── policy.yml # OPTIONAL safety policy — only read if you create it
├── memories/ # Decision log markdown (decisions.md)
├── checkpoints/ # Atomic snapshots (label/ with kuma.db + files/)Hooks are registered in
.claude/settings.json(PreToolUse) — not stored under.kuma/.
Research cache is not a folder — it lives in the
research_cachetable insidekuma.db.
Key principle: Context is per-project, per-agent. No shared state between projects.
Why Kuma?
Problem | Without Kuma | With Kuma |
Context | Agent forgets project-specific patterns | Knowledge graph persists across sessions |
Safety | Agent may break critical code | Policy engine blocks risky operations |
Impact | Agent doesn't know what's affected | Impact analysis traces dependencies |
Coordination | Multiple agents conflict | Per-agent session state + audit trail avoid collisions |
Memory | Agent repeats past mistakes | Decision memory + gotchas prevent loops |
Reversibility | Hard to undo changes | Checkpoint snapshots + rollback_label |
Staleness | Knowledge becomes outdated | Drift detection + gotcha staleness checks flag stale data |
Installation
# Global install
npm install -g @plumpslabs/kuma
# Or use npx (no install needed)
npx -y @plumpslabs/kuma
# With pnpm
pnpm add -g @plumpslabs/kumaRequirements
Node.js >= 18.0.0
No native dependencies (uses WASM for SQLite)
CLI Commands
# Start MCP server (default)
kuma
# Start Kuma Studio dashboard
kuma studio
# Initialize a project
kuma init
# Show version
kuma --version
# Show help
kuma --helpConfiguration
MCP Client Configuration
Add to your MCP client config (e.g., Claude Desktop):
{
"mcpServers": {
"kuma": {
"command": "npx",
"args": ["-y", "@plumpslabs/kuma"]
}
}
}Environment Variables
Variable | Description | Default |
| Custom database path |
|
| Custom policy file |
|
| Studio server port |
|
Development
# Clone the repo
git clone https://github.com/plumpslabs/kuma.git
cd kuma
# Install dependencies
pnpm install
# Build
pnpm run build:all
# Run tests
pnpm test
# Start studio in dev mode
pnpm run studio:devPower Curve: What to Record
What to Record | When | Why | Impact |
| After tracing a complete flow | Saves 5-10 files next session | 🔴 Exponential |
| IMMEDIATELY when finding bugs | Prevents re-discovery | 🔴 Exponential |
| When choosing between options | Preserves rationale | 🔴 Exponential |
| When identifying a module | Creates owns edges to files | 🔴 Exponential |
| After exploring an area | Creates search cache | 🔴 Exponential |
Function/class nodes | Skip | Agent can grep/glob | 🟢 Skip |
Import edges | Skip | Agent can read imports | 🟢 Skip |
Visual graph | Skip | For humans, not AI | 🟢 Skip |
License
MIT — use freely in personal and commercial projects.
Community
GitHub: github.com/plumpslabs/kuma
This server cannot be deployed
Maintenance
Related MCP Connectors
AgentGuard — 20-tool AI safety MCP: policy preflight, risk scoring, audit logging, rate limits.
DeFi safety layer for AI agents: wallet safety, token risk, tx decode/simulate. 20 tools.
Deterministic runtime safety for AI agents: scan PII, gate tool actions, verify LLM output.
The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceProvides sandboxed code execution for AI agents with support for Python, JavaScript, and shell commands. Includes comprehensive safety features like destructive pattern blocking, timeout protection, and restricted file access for secure production use.9 npm113 PyPIMIT
- AlicenseNot gradedqualityDmaintenanceRuntime safety guardrails for AI coding agents. Checks file access, validates shell commands, and scores your repo's AI safety — all via MCP.5 npm8MIT
- AlicenseNot gradedqualityCmaintenanceLocal-first memory, pipelines, learning, feedback, and safe code tools for AI coding agents.MIT
- AlicenseNot gradedqualityDmaintenanceProvides AI agents with 25 security analysis tools including vulnerability scanning, package hallucination detection, prompt injection firewall, and CI/CD integration.1MIT