claude-mpm 5.6.88 → 5.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +98 -32
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Claude MPM - Multi-Agent Project Manager
2
2
 
3
- 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.
3
+ [![PyPI version](https://badge.fury.io/py/claude-mpm.svg)](https://badge.fury.io/py/claude-mpm)
4
+ [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
5
+ [![License: Elastic-2.0](https://img.shields.io/badge/License-Elastic_2.0-blue.svg)](LICENSE)
6
+ [![Code style: ruff](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)
7
+
8
+ **A comprehensive workflow and agent management framework for Claude Code** that transforms your AI coding assistant into a full-featured development platform with multi-agent orchestration, skills system, MCP integration, session management, and semantic code search.
4
9
 
5
10
  > **⚠️ Important**: Claude MPM **requires Claude Code CLI** (v2.1.3+), not Claude Desktop (app). All MCP integrations work with Claude Code's CLI interface only.
6
11
  >
@@ -20,14 +25,35 @@ A powerful orchestration framework for **Claude Code (CLI)** that enables multi-
20
25
 
21
26
  ## What is Claude MPM?
22
27
 
23
- Claude MPM transforms Claude Code into a **multi-agent orchestration platform** with:
28
+ Claude MPM transforms Claude Code into a **comprehensive AI development platform** with:
29
+
30
+ ### 🤖 Multi-Agent System
31
+ - **47+ Specialized Agents** - Python, TypeScript, Rust, Go, Java, Ruby, PHP, QA, Security, DevOps, and more
32
+ - **Intelligent PM Orchestration** - Automatic task routing to specialist agents
33
+ - **Agent Sources** - Deploy agents from Git repositories with ETag-based caching
34
+
35
+ ### 🎯 Skills Framework
36
+ - **44+ Bundled Skills** - TDD, debugging, Docker, API design, security scanning, Git workflows
37
+ - **Progressive Disclosure** - Skills load on-demand to optimize context usage
38
+ - **Three-Tier Organization** - Bundled → User → Project priority resolution
24
39
 
25
- - **47+ Specialized Agents** - From Git repositories (Python, Rust, QA, Security, Ops, etc.)
26
- - **Intelligent Task Routing** - PM agent delegates work to specialist agents
27
- - **Session Management** - Resume previous sessions with full context preservation
28
- - **Semantic Code Search** - AI-powered discovery of existing code and patterns
29
- - **Real-Time Monitoring** - Live dashboard showing agent activity and performance
30
- - **Git Repository Integration** - Always up-to-date agents and skills from curated repositories
40
+ ### 🔌 MCP Integration (Model Context Protocol)
41
+ - **Google Workspace MCP** - 34 tools for Gmail, Calendar, Drive, Docs, Tasks
42
+ - **Semantic Code Search** - AI-powered code discovery via mcp-vector-search
43
+ - **Ticket Management** - GitHub, Linear, Jira integration via mcp-ticketer
44
+ - **Graph Memory** - Persistent project knowledge via kuzu-memory
45
+
46
+ ### 📊 Session & Workflow Management
47
+ - **Session Resume** - Continue work with full context preservation
48
+ - **Auto-Pause** - Automatic context summaries at 70%/85%/95% thresholds
49
+ - **Real-Time Dashboard** - Live monitoring of agent activity
50
+ - **Hooks System** - 15+ event hooks for custom workflows
51
+
52
+ ### 🔐 Enterprise Features
53
+ - **OAuth 2.0 Integration** - Secure Google Workspace authentication
54
+ - **Encrypted Token Storage** - Fernet encryption with system keychain
55
+ - **100+ CLI Commands** - Comprehensive management interface
56
+ - **60+ Services** - Service-oriented architecture with event bus
31
57
 
32
58
  ---
33
59
 
@@ -35,10 +61,14 @@ Claude MPM transforms Claude Code into a **multi-agent orchestration platform**
35
61
 
36
62
  ### Prerequisites
37
63
 
38
- 1. **Python 3.11+** (required - older versions will install outdated claude-mpm)
64
+ 1. **Python 3.11-3.13** (Python 3.13 recommended; 3.14 NOT yet supported)
39
65
  2. **Claude Code CLI v2.1.3+** (required!)
66
+ 3. **GitHub Token** (recommended for skill sources)
40
67
 
41
- > ⚠️ **Python Version Note**: Claude MPM requires Python 3.11 or higher. If you have Python 3.9 or 3.10, you'll get an old version (4.x) that lacks current features. Check with `python3 --version` before installing.
68
+ > **Python Version Warning**:
69
+ > - macOS default Python 3.9 is **too old** - use `--python 3.13` flag
70
+ > - Python 3.13 is **recommended** and fully tested
71
+ > - Python 3.14 is **NOT yet supported** - installation will fail
42
72
 
43
73
  ```bash
44
74
  # Verify Claude Code is installed
@@ -46,52 +76,81 @@ claude --version
46
76
 
47
77
  # If not installed, get it from:
48
78
  # https://docs.anthropic.com/en/docs/claude-code
79
+
80
+ # Set GitHub token (recommended - avoids rate limits)
81
+ export GITHUB_TOKEN=your_github_token
49
82
  ```
50
83
 
51
84
  ### Install Claude MPM
52
85
 
86
+ **IMPORTANT**: Install from your **home directory**, NOT from within a cloned git repository.
87
+
88
+ **uv (recommended):**
89
+ ```bash
90
+ # From home directory (IMPORTANT!)
91
+ cd ~
92
+
93
+ # Install with Python 3.13 (not 3.9 or 3.14)
94
+ uv tool install claude-mpm[monitor,data-processing] --python 3.13
95
+ ```
96
+
53
97
  **Homebrew (macOS):**
54
98
  ```bash
55
- brew install claude-mpm --with-monitor
99
+ brew tap bobmatnyc/tools
100
+ brew install claude-mpm
56
101
  ```
57
102
 
58
- **pipx/uv (recommended):**
103
+ **pipx:**
59
104
  ```bash
60
- # With pipx
105
+ cd ~
61
106
  pipx install "claude-mpm[monitor]"
62
-
63
- # Or with uv
64
- uv tool install "claude-mpm[monitor]"
65
107
  ```
66
108
 
67
- **pip:**
109
+ ### Post-Installation Setup (Required)
110
+
111
+ These steps must be completed **before** running `claude-mpm doctor`:
112
+
68
113
  ```bash
69
- pip install "claude-mpm[monitor]"
114
+ # Create required directories
115
+ mkdir -p ~/.claude/{responses,memory,logs}
116
+
117
+ # Deploy agents
118
+ claude-mpm agents deploy
119
+
120
+ # Add skill source (recommended)
121
+ claude-mpm skill-source add https://github.com/bobmatnyc/claude-mpm-skills
70
122
  ```
71
123
 
72
124
  ### Verify Installation
73
125
 
74
126
  ```bash
127
+ # Run diagnostics (after completing setup above)
128
+ claude-mpm doctor --verbose
129
+
75
130
  # Check versions
76
131
  claude-mpm --version
77
132
  claude --version
78
133
 
79
- # Run diagnostics
80
- claude-mpm doctor
81
-
82
- # Verify agents deployed
83
- ls ~/.claude/agents/ # Should show 47+ agents
134
+ # Auto-configure your project
135
+ cd ~/your-project
136
+ claude-mpm auto-configure
84
137
  ```
85
138
 
86
139
  **What You Should See:**
87
- - 47+ agents deployed to `~/.claude/agents/`
88
- - 17 bundled skills (in Python package)
89
- - Agent sources configured
90
- - Progress bars showing sync and deployment
140
+ - 47+ agents deployed to `~/.claude/agents/`
141
+ - 44+ bundled skills (in Python package)
142
+ - Agent sources configured
143
+ - All doctor checks passing
91
144
 
92
- **💡 Recommended Partners**: Install [kuzu-memory](https://github.com/bobmatnyc/kuzu-memory) (persistent context) and [mcp-vector-search](https://github.com/bobmatnyc/mcp-vector-search) (semantic search) for enhanced capabilities.
145
+ **Recommended Partners**: Install these companion tools for enhanced capabilities:
146
+ ```bash
147
+ uv tool install kuzu-memory --python 3.13
148
+ uv tool install mcp-vector-search --python 3.13
149
+ uv tool install mcp-ticketer --python 3.13
150
+ uv tool install mcp-browser --python 3.13
151
+ ```
93
152
 
94
- **💡 Tool Version Management**: Use [ASDF version manager](docs/guides/asdf-tool-versions.md) to avoid Python/uv version conflicts across projects.
153
+ **Tool Version Management**: Use [ASDF version manager](docs/guides/asdf-tool-versions.md) to avoid Python/uv version conflicts across projects.
95
154
 
96
155
  ---
97
156
 
@@ -114,9 +173,10 @@ ls ~/.claude/agents/ # Should show 47+ agents
114
173
  [→ Learn more: Agent Sources](docs/user/agent-sources.md)
115
174
 
116
175
  ### 🎯 Skills System
117
- - **17 Bundled Skills** covering Git, TDD, Docker, API docs, testing, and more
176
+ - **44+ Bundled Skills** covering Git, TDD, Docker, API design, security, debugging, and more
118
177
  - **Three-Tier Organization**: Bundled/user/project with priority resolution
119
178
  - **Auto-Linking** to relevant agents based on roles
179
+ - **Progressive Disclosure** - Skills load on-demand to optimize context
120
180
  - **Custom Skills** via `.claude/skills/` or skill repositories
121
181
 
122
182
  [→ Learn more: Skills Guide](docs/user/skills-guide.md)
@@ -141,15 +201,21 @@ ls ~/.claude/agents/ # Should show 47+ agents
141
201
 
142
202
  ### 🔌 Advanced Integration
143
203
  - **MCP Integration** with full Model Context Protocol support
204
+ - **MCP Session Server** (`mpm-session-server`) for programmatic session management
144
205
  - **Real-Time Monitoring** via `--monitor` flag and web dashboard
145
206
  - **Multi-Project Support** with per-session working directories
146
207
  - **Git Integration** with diff viewing and change tracking
147
208
 
148
- [→ Learn more: MCP Gateway](docs/developer/13-mcp-gateway/README.md)
209
+ [→ Learn more: MCP Gateway](docs/developer/13-mcp-gateway/README.md) | [→ MCP Session Server](docs/mcp-session-server.md)
149
210
 
150
211
  ### 🔐 OAuth & Google Workspace Integration
151
212
  - **Browser-Based OAuth** for secure authentication with MCP services
152
- - **Google Workspace MCP** built-in server for Gmail, Calendar, and Drive
213
+ - **Google Workspace MCP** built-in server with **34 tools** for:
214
+ - **Gmail** (5 tools): Search, read, send, draft, reply
215
+ - **Calendar** (6 tools): List, get, create, update, delete events
216
+ - **Drive** (7 tools): Search, read, create folders, upload, delete, move files
217
+ - **Docs** (4 tools): Create, read, append, markdown-to-doc conversion
218
+ - **Tasks** (12 tools): Full task and task list management
153
219
  - **Encrypted Token Storage** using Fernet encryption with system keychain
154
220
  - **Automatic Token Refresh** handles expiration seamlessly
155
221
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mpm",
3
- "version": "5.6.88",
3
+ "version": "5.7.7",
4
4
  "description": "NPM wrapper for claude-mpm Python package - Requires Python 3.8+. Orchestrate Claude with agent delegation and ticket tracking",
5
5
  "keywords": [
6
6
  "claude",