Scans your project DNA and generates context-aware knowledge architecture (CLAUDE.md, STANDARDS.md, QUICKSTART.md, ERRORS_AND_LESSONS.md) for Claude Code.
README
Claude Toolkit
A monorepo containing tools for AI-assisted development with Claude Code.
Unified CLI that combines Primer + MAO in one command
npx claude-toolkit init
Quick Start
Option 1: Full Toolkit (Recommended)
npx claude-toolkit init
This runs Claude Primer to generate knowledge docs, then installs MAO agents, commands, and skills — one command to set up everything.
Option 2: Individual Tools
# Just the knowledge architecture
npx claude-primer
# Just the multi-agent orchestrator
npx mao-orchestrator init --global
How They Work Together
Claude Primer MAO
┌──────────────┐ ┌──────────────────┐
│ Scans your │ │ Decomposes tasks │
│ codebase │────▶│ into DAG │
│ │ │ │
│ Generates: │ │ Executes via: │
│ • CLAUDE.md │ │ • Opus (arch) │
│ • STANDARDS │ │ • Sonnet (impl) │
│ • QUICKSTART │ │ • Haiku (mech) │
│ • ERRORS │ │ │
│ • config.json│ │ Verifies, reviews│
└──────────────┘ │ and merges │
└──────────────────┘
Development
git clone https://github.com/limaronaldo/claude-toolkit.git
cd claude-toolkit
npm install
# Run all Node tests
npm test
# Run Python tests
cd packages/claude-primer/python
pip install pytest
pytest tests/ -v