A monorepo containing tools for AI-assisted development with Claude Code.
| Package | Description | Install |
|---|---|---|
| claude-primer | Prime your repo for Claude Code with context-aware knowledge architecture | npx claude-primer / pip install claude-primer |
| mao-orchestrator | Multi-Agent Orchestrator — intelligent model tiering, DAG scheduling, git worktrees | npx mao-orchestrator init |
| claude-toolkit | Unified CLI that combines Primer + MAO in one command | npx claude-toolkit init |
npx claude-toolkit initThis runs Claude Primer to generate knowledge docs, then installs MAO agents, commands, and skills — one command to set up everything.
# Just the knowledge architecture
npx claude-primer
# Just the multi-agent orchestrator
npx mao-orchestrator init --globalClaude 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 │
└──────────────────┘
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/ -vSee CONTRIBUTING.md for detailed development guidelines.
MIT