claude-mpm 4.3.16 → 4.6.0

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 +55 -21
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,41 +1,54 @@
1
1
  # Claude MPM - Multi-Agent Project Manager
2
2
 
3
- A powerful orchestration framework for Claude Code that enables multi-agent workflows, session management, and real-time monitoring through an intuitive interface.
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.
4
+
5
+ > **⚠️ Important**: Claude MPM extends **Claude Code (CLI)**, not Claude Desktop (app). All MCP integrations work with Claude Code's CLI interface only.
4
6
 
5
7
  > **Quick Start**: See [QUICKSTART.md](QUICKSTART.md) to get running in 5 minutes!
6
8
 
7
9
  ## Features
8
10
 
9
11
  - 🤖 **Multi-Agent System**: 15 specialized agents for comprehensive project management
10
- - 🧠 **Agent Memory System**: Simple list-based persistent learning with JSON response field updates
11
- - 🔄 **Session Management**: Resume previous sessions with `--resume`
12
+ - 🧠 **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention
13
+ - 🔄 **Session Management**: Resume previous sessions with `--resume`
12
14
  - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
13
- - 🔌 **MCP Gateway**: Model Context Protocol integration for extensible tool capabilities
14
- - 📁 **Multi-Project Support**: Per-session working directories
15
+ - 🔌 **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation
16
+ - 📁 **Multi-Project Support**: Per-session working directories with persistent knowledge graphs
15
17
  - 🔍 **Git Integration**: View diffs and track changes across projects
16
18
  - 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
17
- - ⚡ **50-80% Performance Improvement**: Through intelligent caching and lazy loading
19
+ - ⚡ **Simplified Architecture**: ~3,700 lines removed for better performance and maintainability
18
20
  - 🔒 **Enhanced Security**: Comprehensive input validation and sanitization framework
19
21
 
20
22
  ## Quick Installation
21
23
 
22
24
  ```bash
25
+ # Basic installation
23
26
  pip install claude-mpm
27
+
28
+ # Install with optional MCP services (recommended)
29
+ pip install "claude-mpm[mcp]"
24
30
  ```
25
31
 
26
32
  Or with pipx (recommended for isolated installation):
27
33
  ```bash
28
- # Install with monitor support (recommended)
29
- pipx install "claude-mpm[monitor]"
30
-
31
- # Basic installation without monitor
34
+ # Basic installation
32
35
  pipx install claude-mpm
33
36
 
37
+ # Install with optional MCP services (recommended)
38
+ pipx install "claude-mpm[mcp]"
39
+
40
+ # Install with all features
41
+ pipx install "claude-mpm[mcp,monitor]"
42
+
34
43
  # Configure MCP for pipx users:
35
44
  claude-mpm mcp-pipx-config
36
45
  ```
37
46
 
38
- **💡 Pipx Tip**: Use `"claude-mpm[monitor]"` to get full monitoring dashboard functionality! The `[monitor]` optional dependency includes Socket.IO and async web server components needed for real-time agent monitoring.
47
+ **💡 Optional Dependencies**:
48
+ - `[mcp]` - Include MCP services (mcp-vector-search, mcp-browser, mcp-ticketer, kuzu-memory)
49
+ - `[monitor]` - Full monitoring dashboard with Socket.IO and async web server components
50
+ - **Combine both**: Use `"claude-mpm[mcp,monitor]"` to install all features
51
+ - Without optional dependencies, MCP services auto-install on first use via pipx
39
52
 
40
53
  **🎉 Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:
41
54
  - ✅ Socket.IO daemon script path resolution (fixed)
@@ -57,9 +70,30 @@ claude-mpm run --monitor
57
70
  # Use MCP Gateway for external tool integration
58
71
  claude-mpm mcp
59
72
 
60
- # Run health diagnostics
73
+ # Run comprehensive health diagnostics
61
74
  claude-mpm doctor
62
75
 
76
+ # Generate detailed diagnostic report with MCP service analysis
77
+ claude-mpm doctor --verbose --output-file doctor-report.md
78
+
79
+ # Run specific diagnostic checks including MCP services
80
+ claude-mpm doctor --checks installation configuration agents mcp
81
+
82
+ # Check MCP service status specifically
83
+ claude-mpm doctor --checks mcp --verbose
84
+
85
+ # Verify MCP services installation and configuration
86
+ claude-mpm verify
87
+
88
+ # Auto-fix MCP service issues
89
+ claude-mpm verify --fix
90
+
91
+ # Verify specific service
92
+ claude-mpm verify --service kuzu-memory
93
+
94
+ # Get JSON output for automation
95
+ claude-mpm verify --json
96
+
63
97
  # Manage memory for large conversation histories
64
98
  claude-mpm cleanup-memory
65
99
  ```
@@ -67,17 +101,17 @@ claude-mpm cleanup-memory
67
101
  See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
68
102
 
69
103
 
70
- ## Architecture (v4.3.3)
104
+ ## Architecture (v4.4.1)
71
105
 
72
- Following continuous improvements through v4.3.3, Claude MPM features:
106
+ Following Phase 3 architectural simplification in v4.4.1, Claude MPM features:
73
107
 
74
- - **Service-Oriented Architecture**: Five specialized service domains with Socket.IO stability improvements
108
+ - **Streamlined Rich Interface**: Removed complex TUI system (~2,500 lines) for cleaner user experience
109
+ - **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation
110
+ - **Persistent Knowledge System**: Project-specific kuzu-memory databases with intelligent prompt enrichment
111
+ - **Service-Oriented Architecture**: Simplified five specialized service domains
75
112
  - **Interface-Based Contracts**: All services implement explicit interfaces
76
- - **Dependency Injection**: Service container with automatic resolution
77
- - **50-80% Performance Improvement**: Through lazy loading and intelligent caching
113
+ - **Enhanced Performance**: ~3,700 lines removed for better startup time and maintainability
78
114
  - **Enhanced Security**: Comprehensive input validation and sanitization framework
79
- - **Improved Monitoring**: Enhanced dashboard with hierarchical agent display
80
- - **Socket.IO Stability**: Major reliability improvements for real-time communication
81
115
 
82
116
  See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for detailed architecture information.
83
117
 
@@ -169,7 +203,7 @@ See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md]
169
203
  #### 🚀 For Operations
170
204
  - **[🚀 Deployment](docs/DEPLOYMENT.md)** - Release management & versioning
171
205
  - **[📊 Monitoring](docs/MONITOR.md)** - Real-time dashboard & metrics
172
- - **[🐛 Troubleshooting](docs/TROUBLESHOOTING.md)** - Diagnostic & problem resolution
206
+ - **[🐛 Troubleshooting](docs/TROUBLESHOOTING.md)** - Enhanced `doctor` command with detailed reports and auto-fix capabilities
173
207
 
174
208
  ### 🎯 Documentation Features
175
209
  - **Single Entry Point**: [docs/README.md](docs/README.md) is your navigation hub
@@ -230,5 +264,5 @@ MIT License - see [LICENSE](LICENSE) file.
230
264
  ## Credits
231
265
 
232
266
  - Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
233
- - Enhanced for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) integration
267
+ - Enhanced for [Claude Code (CLI)](https://docs.anthropic.com/en/docs/claude-code) integration
234
268
  - Built with ❤️ by the Claude MPM community
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mpm",
3
- "version": "4.3.16",
3
+ "version": "4.6.0",
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",