A powerful orchestration framework for Claude Code (CLI) that enables multi-agent workflows, session management, and real-time monitoring through a streamlined Rich-based interface.
β οΈ Important: Claude MPM requires Claude Code CLI (v1.0.92+), not Claude Desktop (app). All MCP integrations work with Claude Code's CLI interface only.Don't have Claude Code? Install from: https://docs.anthropic.com/en/docs/claude-code
Version Requirements:
- Minimum: v1.0.92 (hooks support)
- Recommended: v2.0.30+ (latest features)
Quick Start: See docs/user/getting-started.md to get running in 5 minutes!
Claude MPM now supports Git repositories for distributing and managing agents and skills - the most requested feature from our community!
π― Key Highlights:
- π¦ Massive Library: 47+ agents and hundreds of skills deployed automatically from curated repositories
- π’ Official Content: Anthropic's official skills repository included by default
- π§ Fully Extensible: Add your own agent/skill repositories with immediate testing
- π³ Smart Organization: Hierarchical BASE-AGENT.md inheritance for shared templates
- π Clear Visibility: Two-phase progress bars show sync and deployment status
- β Fail-Fast Testing: Test repositories before they cause startup issues
# Add custom agent repository (with immediate testing)
claude-mpm agent-source add https://github.com/yourorg/your-agents
# Add custom skill repository
claude-mpm skill-source add https://github.com/yourorg/your-skills
# Test repository without saving
claude-mpm agent-source add https://github.com/yourorg/your-agents --test
# List all configured sources
claude-mpm agent-source listAgents (47+ agents):
- π’ System:
bobmatnyc/claude-mpm-agents- Core agent templates
Skills (hundreds of skills):
- π’ System:
bobmatnyc/claude-mpm-skills- Community skills - π― Official:
anthropics/skills- Anthropic's official skills (14+ skills)
What This Means:
- β Automatic Setup: Everything deploys on first run
- β Always Updated: Git repositories sync on startup
- β Nested Support: Repositories with subdirectories are automatically flattened
- β Template Inheritance: BASE-AGENT.md files cascade from parent directories
- β Priority System: Control which sources win when multiple repos provide the same agent/skill
Support for BASE-AGENT.md enables powerful template inheritance:
your-agents/
BASE-AGENT.md # Root shared content (all agents inherit)
engineering/
BASE-AGENT.md # Engineering-specific (engineering/* agents inherit)
python/
fastapi-engineer.md # Inherits both BASE files
See docs/features/hierarchical-base-agents.md for complete guide.
- 47+ Specialized Agents: Comprehensive coverage from Git repositories (Python, Rust, QA, Security, Ops, etc.)
- Smart Task Routing: PM agent intelligently delegates work to specialist agents
- Session Management: Resume previous sessions with
--resume - Resume Log System: Proactive context management with automatic 10k-token session logs at 70%/85%/95% thresholds
- π’ Curated Content: Default repositories with 47+ agents and hundreds of skills
- π― Official Skills: Anthropic's official skills included by default
- π§ Custom Repositories: Add your own via CLI or configuration
- π³ Nested Support: Automatic flattening of nested directory structures
- π Template Inheritance: BASE-AGENT.md for hierarchical organization
- β Immediate Testing: Fail-fast validation when adding repositories
- π Progress Visibility: Two-phase progress bars (sync + deployment)
- β‘ Smart Caching: ETag-based caching reduces bandwidth by 95%+
- Hundreds of Skills: Comprehensive skill library from curated repositories
- Official Skills: 14+ skills from Anthropic's official repository
- Three-Tier Organization: Bundled/user/project skills with priority resolution
- Auto-Linking: Skills automatically linked to relevant agents
- Interactive Configuration: Skills wizard via
claude-mpm configure - Version Tracking: Semantic versioning for all skills
- MCP Integration: Full support for Model Context Protocol services
- Real-Time Monitoring: Live dashboard with
--monitorflag - Multi-Project Support: Per-session working directories
- Git Integration: View diffs and track changes across projects
- Simplified Architecture: ~3,700 lines removed for better performance
- Enhanced Security: Comprehensive input validation and sanitization
- Intelligent Caching: File-based instruction caching for optimal performance
- β Eliminates ARG_MAX limits on Linux (exceeds by 19.1%) and Windows (exceeds by 476%)
- β ~200ms faster agent startup with hash-based cache invalidation
- β Automatic and transparent (no configuration required)
Before installing Claude MPM, ensure you have:
- Python 3.11+ (required for kuzu-memory dependency)
- Claude Code CLI v1.0.92+ (required!)
# Verify Claude Code is installed
claude --version
# If not installed, get it from:
# https://docs.anthropic.com/en/docs/claude-code# Basic installation
pip install claude-mpm
# Or with uv (faster)
uv tool install claude-mpm
# Install with monitoring dashboard (recommended)
pip install "claude-mpm[monitor]"
uv tool install "claude-mpm[monitor]"Or with pipx/uvx (recommended for isolated installation):
# Basic installation
pipx install claude-mpm
# Or with uv tool (permanent installation)
uv tool install claude-mpm
# Or with uvx (one-off execution)
uvx claude-mpm
# Install with monitoring dashboard (recommended)
pipx install "claude-mpm[monitor]"
uv tool install "claude-mpm[monitor]"# Check versions
claude-mpm --version
claude --version
# Run diagnostics (checks Claude Code compatibility)
claude-mpm doctor
# Verify Git repositories are synced
ls ~/.claude/agents/ # Should show 47+ agents
ls ~/.claude/skills/ # Should show hundreds of skills
# Check agent sources
claude-mpm agent-source list
# Check skill sources
claude-mpm skill-source listWhat You Should See:
- β
47+ agents deployed to
~/.claude/agents/ - β
Hundreds of skills deployed to
~/.claude/skills/ - β Two agent sources configured (system + official)
- β Two skill sources configured (system + official)
- β Progress bars showing sync and deployment phases
π‘ Optional Dependencies:
[monitor]- Full monitoring dashboard with Socket.IO and async web server components[mcp]- Additional MCP services (mcp-browser, mcp-ticketer) - most users won't need this
π Pipx Support Now Fully Functional! Recent improvements ensure complete compatibility:
- β Socket.IO daemon script path resolution (fixed)
- β Commands directory access (fixed)
- β Resource files properly packaged for pipx environments
- β Python 3.13+ fully supported
Claude MPM works excellently with these complementary MCP tools. While optional, we strongly recommend installing them for enhanced capabilities:
What it does: Provides persistent, project-specific knowledge graphs that enable agents to learn and retain context across sessions. Your agents will remember project patterns, architectural decisions, and important context automatically.
Installation:
pipx install kuzu-memory
# Or with uv
uv tool install kuzu-memoryBenefits with Claude MPM:
- π§ Persistent Context: Agents remember project-specific patterns and decisions across sessions
- π― Intelligent Prompts: Automatically enriches agent prompts with relevant historical context
- π Knowledge Graphs: Structured storage of project knowledge, not just flat memory
- π Seamless Integration: Works transparently in the background with zero configuration
- π‘ Smart Learning: Agents improve over time as they learn your project's patterns
Perfect for: Long-running projects, teams needing consistent context, complex codebases with deep architectural patterns.
Learn more: kuzu-memory on PyPI | GitHub Repository
What it does: Enables semantic code search across your entire codebase using AI embeddings. Find code by what it does, not just what it's named. Search for "authentication logic" and find relevant functions even if they're named differently.
Installation:
pipx install mcp-vector-search
# Or with uv
uv tool install mcp-vector-searchBenefits with Claude MPM:
- π Semantic Discovery: Find code by intent and functionality, not just keywords
- π― Context-Aware: Understand code relationships and similarities automatically
- β‘ Fast Indexing: Efficient vector embeddings for large codebases
- π Live Updates: Automatically tracks code changes and updates index
- π Pattern Recognition: Discover similar code patterns and potential refactoring opportunities
Use with: /mpm-search "authentication logic" command in Claude Code sessions or claude-mpm search CLI command.
Perfect for: Large codebases, discovering existing functionality, finding similar implementations, architectural exploration.
Learn more: mcp-vector-search on PyPI | GitHub Repository
Install both recommended tools in one go:
pipx install kuzu-memory
pipx install mcp-vector-search
# Or with uv
uv tool install kuzu-memory
uv tool install mcp-vector-searchThen verify they're working:
claude-mpm verifyThat's it! These tools integrate automatically with Claude MPM once installed. No additional configuration needed.
That's it! See docs/user/getting-started.md for immediate usage.
Claude MPM maintains a local cache of agent templates at ~/.claude-mpm/cache/agents/.
~/.claude-mpm/cache/agents/
βββ bobmatnyc/
βββ claude-mpm-agents/
βββ .git/ # Git repository
βββ agents/ # 45+ agent templates
βββ docs/
Note: Prior to v5.4.23, agents were cached to
~/.claude-mpm/cache/remote-agents/. This has been standardized to~/.claude-mpm/cache/agents/. Existing caches are automatically migrated.
If your cache is a git repository, you can manage agents with git operations:
# Check cache status
claude-mpm agents cache-status
# Pull latest agents
claude-mpm agents cache-pull
# Commit local changes
claude-mpm agents cache-commit --message "feat: update agents"
# Push changes
claude-mpm agents cache-push
# Full sync workflow
claude-mpm agents cache-syncOr use Makefile targets:
make agents-cache-status # Show git status
make agents-cache-pull # Pull latest
make agents-cache-sync # Full sync (pull + commit + push)
make deploy-agents # Deploy with auto-pullIf cache is not a git repository, Claude MPM automatically falls back to HTTP sync with GitHub API.
If you have an old cache/agents/ directory, run the migration script:
python scripts/migrate_cache_to_remote_agents.pySee also: docs/CACHE_MANAGEMENT.md for comprehensive cache management guide.
# Start interactive mode (recommended)
claude-mpm
# Start with monitoring dashboard
claude-mpm run --monitor
# Use semantic code search (auto-installs mcp-vector-search on first use)
claude-mpm search "authentication logic"
# or inside Claude Code session:
/mpm-search "authentication logic"
# Use MCP Gateway for external tool integration
claude-mpm mcp
# Run comprehensive health diagnostics
claude-mpm doctor
# Generate detailed diagnostic report with MCP service analysis
claude-mpm doctor --verbose --output-file doctor-report.md
# Run specific diagnostic checks including MCP services
claude-mpm doctor --checks installation configuration agents mcp
# Check MCP service status specifically
claude-mpm doctor --checks mcp --verbose
# Verify MCP services installation and configuration
claude-mpm verify
# Auto-fix MCP service issues
claude-mpm verify --fix
# Verify specific service
claude-mpm verify --service kuzu-memory
# Get JSON output for automation
claude-mpm verify --json
# Manage memory for large conversation histories
claude-mpm cleanup-memory
# Check for updates (including Claude Code compatibility)
claude-mpm doctor --checks updatesπ‘ Update Checking: Claude MPM automatically checks for updates and verifies Claude Code compatibility on startup. Configure in ~/.claude-mpm/configuration.yaml or see docs/update-checking.md.
See docs/user/getting-started.md for complete usage examples.
Claude MPM uses Git repositories to distribute and manage agents and skills. This provides automatic updates, version control, and easy sharing of agent/skill libraries.
# Add custom agent repository
claude-mpm agent-source add https://github.com/yourorg/your-agents
# Add custom skill repository
claude-mpm skill-source add https://github.com/yourorg/your-skills
# Test repository without saving (fail-fast validation)
claude-mpm agent-source add https://github.com/yourorg/your-agents --test
# List configured sources
claude-mpm agent-source list
claude-mpm skill-source list
# Update from all sources
claude-mpm agent-source update
claude-mpm skill-source updateWhen multiple sources provide the same agent/skill, priority controls which one wins:
- Lower number = Higher precedence (priority 10 beats priority 100)
- Local agents/skills (
.claude-mpm/agents/,.claude-mpm/skills/) always override - System defaults provide fallback
Example Configuration:
# ~/.claude-mpm/config/agent_sources.yaml
repositories:
- url: https://github.com/myteam/agents
priority: 10 # Highest precedence (custom agents)
- url: https://github.com/bobmatnyc/claude-mpm-agents
priority: 100 # System default (official agents)Support for BASE-AGENT.md enables powerful template inheritance:
your-agents/
BASE-AGENT.md # Root shared content (all agents inherit)
engineering/
BASE-AGENT.md # Engineering-specific (engineering/* inherit)
python/
fastapi-engineer.md # Inherits both BASE files
django-engineer.md # Inherits both BASE files
rust/
systems-engineer.md # Inherits both BASE files
How It Works:
- Cascading Inheritance: Each agent inherits from all BASE-AGENT.md files in parent directories
- Automatic Flattening: Nested repositories are automatically flattened during deployment
- DRY Templates: Share common instructions across related agents
- Maintainability: Update shared content in one place
See docs/features/hierarchical-base-agents.md for complete guide.
Edit configuration files directly:
- Agents:
~/.claude-mpm/config/agent_sources.yaml - Skills:
~/.claude-mpm/config/skill_sources.yaml
Example agent_sources.yaml:
repositories:
- url: https://github.com/bobmatnyc/claude-mpm-agents
priority: 100
enabled: true
- url: https://github.com/yourorg/custom-agents
priority: 10
enabled: trueβ Always Up-to-Date: Repositories sync automatically on startup β Bandwidth Efficient: ETag-based caching reduces network usage by 95%+ β Version Control: Track changes through Git history β Immediate Testing: Fail-fast validation prevents startup issues β Nested Support: Automatic flattening of directory structures β Template Inheritance: BASE-AGENT.md for DRY principles β Progress Visibility: Two-phase progress bars (sync + deployment) β Community Access: Latest improvements available immediately β Organization Libraries: Share team-specific content across projects
- Agent Sources User Guide - Complete guide with examples
- CLI Reference - All
agent-sourcecommands - Hierarchical BASE-AGENT.md - Template inheritance guide
- Migration Guide - Upgrading from v4.4.x
- Troubleshooting - Common issues and solutions
Skills are automatically deployed from Git repositories, just like agents. Claude MPM includes hundreds of skills from curated repositories:
- System Skills: Community skills from
bobmatnyc/claude-mpm-skills - Official Skills: Anthropic's official skills from
anthropics/skills - Custom Skills: Add your own skill repositories
# Skills are automatically deployed on first run
# No manual deployment needed!
# Add custom skill repository
claude-mpm skill-source add https://github.com/yourorg/custom-skills
# List configured skill sources
claude-mpm skill-source list
# Update skills from all sources
claude-mpm skill-source update- Automatic Deployment: All skills from configured repositories deploy on startup
- Three-Tier Organization:
- Bundled: System and official skills (hundreds)
- User: Custom skills in
~/.config/claude-mpm/skills/ - Project: Project-specific skills in
.claude-mpm/skills/
- Priority Resolution: Project β User β Bundled (local always wins)
- Auto-Linking: Skills automatically linked to relevant agents
- Version Tracking: All skills support semantic versioning
The Research agent automatically analyzes your project and recommends relevant skills:
| Your Technology | Auto-Recommended Skills |
|---|---|
| Python + pytest | test-driven-development, python-style |
| FastAPI/Flask | backend-engineer |
| React/Next.js | frontend-development, web-frameworks |
| Docker | docker-workflow |
| GitHub Actions | ci-cd-pipeline-builder |
| Playwright | webapp-testing |
# Interactive skills wizard
claude-mpm configure
# Choose option 2: Skills Management
# Features:
# - View all deployed skills
# - Configure skill assignments to agents
# - Auto-link skills based on agent roles
# - Manage custom skill repositoriesβ οΈ Skills load at Claude Code startup only - restart required after adding repositories- β Batch add related skill repositories to minimize restarts
- β Research agent automatically recommends missing skills during project analysis
- See Skills Deployment Guide for comprehensive details
- See Skills Quick Reference for command reference
Claude MPM features a clean, service-oriented architecture:
- Streamlined Rich Interface: Removed complex TUI system (~2,500 lines) for cleaner user experience
- MCP Integration: Full support for Model Context Protocol services with automatic detection
- Service-Oriented Architecture: Simplified five specialized service domains
- Interface-Based Contracts: All services implement explicit interfaces
- Enhanced Performance: ~3,700 lines removed for better startup time and maintainability
- Enhanced Security: Comprehensive input validation and sanitization framework
See docs/ARCHITECTURE.md for detailed architecture information.
Claude MPM includes 15 specialized agents:
- Engineer - Software development and implementation
- Research - Code analysis and research
- Documentation - Documentation creation and maintenance
- QA - Testing and quality assurance
- Security - Security analysis and implementation
-
Python Engineer (v2.3.0) - Type-safe, async-first Python with SOA patterns for non-trivial applications
- Service-oriented architecture with ABC interfaces for applications
- Lightweight script patterns for automation and one-off tasks
- Clear decision criteria for when to use DI/SOA vs simple functions
- Dependency injection containers with auto-resolution
- Use for: Web applications, microservices, data pipelines (DI/SOA) or scripts, CLI tools, notebooks (simple functions)
-
Rust Engineer (v1.1.0) - Memory-safe, high-performance systems with trait-based service architecture
- Dependency injection with traits (constructor injection, trait objects)
- Service-oriented architecture patterns (repository, builder)
- Decision criteria for when to use DI/SOA vs simple code
- Async programming with tokio and zero-cost abstractions
- Use for: Web services, microservices (DI/SOA) or CLI tools, scripts (simple code)
- Ops - Operations and deployment with advanced git commit authority and security verification (v2.2.2+)
- Version Control - Git and version management
- Data Engineer - Data pipeline and ETL development
- Web UI - Frontend and UI development
- Web QA - Web testing and E2E validation
- Ticketing - Issue tracking and management
- Project Organizer - File organization and structure
- Memory Manager - Project memory and context management
- Refactoring Engineer - Code refactoring and optimization
- Code Analyzer - Static code analysis with AST and tree-sitter
NEW in v5.4.13: Runtime memory loading for instant updates and better efficiency.
How It Works:
- Memory Files: Store agent memories in
.claude-mpm/memories/{agent_id}.md(e.g.,engineer.md,qa.md) - Runtime Loading: Memories loaded dynamically when agents are delegated to (no restart required)
- Instant Updates: Memory changes take effect immediately
- Event Observability: Memory loading tracked via EventBus (
agent.memory.loadedevents)
Memory Format:
Agents learn project-specific patterns using a simple markdown list format and can update memories via JSON response fields (remember for incremental updates, MEMORIES for complete replacement).
See: Memory Flow Architecture for complete technical details.
Claude MPM includes a powerful skills system that eliminates redundant agent guidance through reusable skill modules:
20 Bundled Skills covering essential development workflows (all versioned starting at 0.1.0):
- Git workflow, TDD, code review, systematic debugging
- API documentation, refactoring patterns, performance profiling
- Docker containerization, database migrations, security scanning
- JSON/PDF/XLSX handling, async testing, ImageMagick operations
- Local development servers: Next.js, FastAPI, Vite, Express
- Web performance: Lighthouse metrics, Core Web Vitals optimization
Three-Tier Organization:
- Bundled: Core skills included with Claude MPM (~15,000 lines of reusable guidance)
- User: Custom skills in
~/.config/claude-mpm/skills/ - Project: Project-specific skills in
.claude-mpm/skills/
Version Tracking:
- All skills support semantic versioning (MAJOR.MINOR.PATCH)
- Check versions with
/mpm-versioncommand in Claude Code - See Skills Versioning Guide for details
Quick Access:
# Interactive skills management
claude-mpm configure
# Choose option 2: Skills Management
# Auto-link skills to agents based on their roles
# Configure custom skill assignments
# View current skill mappingsSkills are automatically injected into agent prompts, reducing template size by 85% while maintaining full capability coverage.
Claude MPM includes a powerful MCP Gateway that enables:
- Integration with external tools and services
- Custom tool development
- Protocol-based communication
- Extensible architecture
See MCP Gateway Documentation for details.
Large conversation histories can consume 2GB+ of memory. Use the cleanup-memory command to manage Claude conversation history:
# Clean up old conversation history
claude-mpm cleanup-memory
# Keep only recent conversations
claude-mpm cleanup-memory --days 7NEW in v4.17.2 - Proactive context management for seamless session continuity.
The Resume Log System automatically generates structured 10k-token logs when approaching Claude's context window limits, enabling you to resume work without losing important context.
Key Features:
- π― Graduated Thresholds: Warnings at 70% (60k buffer), 85% (30k buffer), and 95% (10k buffer)
- π Structured Logs: 10k-token budget intelligently distributed across 7 key sections
- π Seamless Resumption: Automatically loads previous session context on startup
- π Human-Readable: Markdown format for both Claude and human review
- βοΈ Zero-Configuration: Works automatically with sensible defaults
How It Works:
- Monitor token usage continuously throughout session
- Display proactive warnings at 70%, 85%, and 95% thresholds
- Automatically generate resume log when approaching limits
- Load previous resume log when starting new session
- Continue work seamlessly with full context preservation
Example Resume Log Structure:
# Session Resume Log: 20251101_115000
## Context Metrics (500 tokens)
- Token usage and percentage
## Mission Summary (1,000 tokens)
- Overall goal and purpose
## Accomplishments (2,000 tokens)
- What was completed
## Key Findings (2,500 tokens)
- Important discoveries
## Decisions & Rationale (1,500 tokens)
- Why choices were made
## Next Steps (1,500 tokens)
- What to do next
## Critical Context (1,000 tokens)
- Essential state, IDs, pathsConfiguration (.claude-mpm/configuration.yaml):
context_management:
enabled: true
budget_total: 200000
thresholds:
caution: 0.70 # First warning - plan transition
warning: 0.85 # Strong warning - wrap up
critical: 0.95 # Urgent - stop new work
resume_logs:
enabled: true
auto_generate: true
max_tokens: 10000
storage_dir: ".claude-mpm/resume-logs"QA Status: 40/41 tests passing (97.6% coverage), APPROVED FOR PRODUCTION β
See docs/user/resume-logs.md for complete documentation.
The --monitor flag opens a web dashboard showing live agent activity, file operations, and session management.
See docs/reference/MEMORY.md and docs/developer/11-dashboard/README.md for details.
π Complete Documentation Hub - Start here for all documentation!
- π 5-Minute Quick Start - Get running immediately
- π¦ Installation Guide - All installation methods
- π User Guide - Complete user documentation
- β FAQ - Common questions answered
- ποΈ Architecture Overview - Service-oriented system design
- π» Developer Guide - Complete development documentation
- π§ͺ Contributing - How to contribute
- π API Reference - Complete API documentation
- π€ Agent System - Complete agent development guide
- π Creation Guide - Step-by-step tutorials
- π Schema Reference - Agent format specifications
- π Deployment - Release management & versioning
- π Monitoring - Real-time dashboard & metrics
- π Troubleshooting - Enhanced
doctorcommand with detailed reports and auto-fix capabilities
- Single Entry Point: docs/README.md is your navigation hub
- Clear User Paths: Organized by user type and experience level
- Cross-Referenced: Links between related topics and sections
- Up-to-Date: Version 4.16.3 with web performance optimization skill
Major Release: Git Repository Integration for Agents & Skills
π What's New:
- Git Repository Support: Agents and skills now deploy from Git repositories
- 47+ Agents: Comprehensive agent library from curated repositories
- Hundreds of Skills: System skills + Official Anthropic skills automatically deployed
- Hierarchical BASE-AGENT.md: Template inheritance for DRY principles
- Nested Repository Support: Automatic flattening of directory structures
- Immediate Testing: Fail-fast validation when adding repositories
- Two-Phase Progress: Clear visibility during sync and deployment
- ETag Caching: 95%+ bandwidth reduction with intelligent caching
π§ Repository Management:
claude-mpm agent-source add/list/update- Manage agent repositoriesclaude-mpm skill-source add/list/update- Manage skill repositories- Priority-based resolution for multiple sources
- YAML configuration support
π Documentation:
- Complete guides for Git repository integration
- Hierarchical BASE-AGENT.md documentation
- Migration guides for existing installations
- Troubleshooting and best practices
π― Benefits:
- Always up-to-date content from repositories
- Community-driven agent and skill libraries
- Easy sharing of organizational content
- Version control for all templates
See CHANGELOG.md for full history and docs/user/MIGRATION.md for upgrade instructions.
Licensed under the Elastic License 2.0 - free for internal use and commercial products.
Main restriction: Cannot offer as a hosted SaaS service without a commercial license.
π Licensing FAQ | πΌ Commercial licensing: bob@matsuoka.com
# Complete development setup with code formatting and quality tools
make dev-complete
# Or step by step:
make setup-dev # Install in development mode
make setup-pre-commit # Set up automated code formattingThe project uses automated code formatting and quality checks:
- Black for code formatting
- isort for import sorting
- flake8 for linting
- mypy for type checking
- Pre-commit hooks for automatic enforcement
See docs/developer/CODE_FORMATTING.md for details.
Contributions are welcome! Please see our project structure guide and follow the established patterns.
Development Workflow:
- Run
make dev-completeto set up your environment - Code formatting happens automatically on commit
- All code must pass quality checks before merging
See docs/reference/STRUCTURE.md for codebase organization.
- Based on claude-multiagent-pm
- Enhanced for Claude Code (CLI) integration
- Built with β€οΈ by the Claude MPM community