claude-mpm 4.0.25 → 4.1.2

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.
package/README.md CHANGED
@@ -7,7 +7,7 @@ A powerful orchestration framework for Claude Code that enables multi-agent work
7
7
  ## Features
8
8
 
9
9
  - 🤖 **Multi-Agent System**: 15 specialized agents for comprehensive project management
10
- - 🧠 **Agent Memory System**: Persistent learning with project-specific knowledge retention
10
+ - 🧠 **Agent Memory System**: Simple list-based persistent learning with JSON response field updates
11
11
  - 🔄 **Session Management**: Resume previous sessions with `--resume`
12
12
  - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
13
13
  - 🔌 **MCP Gateway**: Model Context Protocol integration for extensible tool capabilities
@@ -23,6 +23,13 @@ A powerful orchestration framework for Claude Code that enables multi-agent work
23
23
  pip install claude-mpm
24
24
  ```
25
25
 
26
+ Or with pipx (recommended for isolated installation):
27
+ ```bash
28
+ pipx install claude-mpm
29
+ # Configure MCP for pipx users:
30
+ claude-mpm mcp-pipx-config
31
+ ```
32
+
26
33
  **That's it!** See [QUICKSTART.md](QUICKSTART.md) for immediate usage or [docs/user/installation.md](docs/user/installation.md) for advanced options.
27
34
 
28
35
  ## Quick Usage
@@ -37,6 +44,9 @@ claude-mpm run --monitor
37
44
  # Use MCP Gateway for external tool integration
38
45
  claude-mpm mcp
39
46
 
47
+ # Run health diagnostics
48
+ claude-mpm doctor
49
+
40
50
  # Manage memory for large conversation histories
41
51
  claude-mpm cleanup-memory
42
52
  ```
@@ -44,15 +54,17 @@ claude-mpm cleanup-memory
44
54
  See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
45
55
 
46
56
 
47
- ## Architecture (v3.8.2+)
57
+ ## Architecture (v4.1.0+)
48
58
 
49
- Following the TSK-0053 refactoring, Claude MPM features:
59
+ Following continuous improvements through v4.1.0, Claude MPM features:
50
60
 
51
- - **Service-Oriented Architecture**: Five specialized service domains
61
+ - **Service-Oriented Architecture**: Five specialized service domains with Socket.IO stability improvements
52
62
  - **Interface-Based Contracts**: All services implement explicit interfaces
53
63
  - **Dependency Injection**: Service container with automatic resolution
54
64
  - **50-80% Performance Improvement**: Through lazy loading and intelligent caching
55
65
  - **Enhanced Security**: Comprehensive input validation and sanitization framework
66
+ - **Improved Monitoring**: Enhanced dashboard with hierarchical agent display
67
+ - **Socket.IO Stability**: Major reliability improvements for real-time communication
56
68
 
57
69
  See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for detailed architecture information.
58
70
 
@@ -88,7 +100,7 @@ Claude MPM includes 15 specialized agents:
88
100
  - **Code Analyzer** - Static code analysis with AST and tree-sitter
89
101
 
90
102
  ### Agent Memory System
91
- Agents learn project-specific patterns and remember insights across sessions. Initialize with `claude-mpm memory init`.
103
+ Agents learn project-specific patterns using a simple list format and can update memories via JSON response fields (`remember` for incremental updates, `MEMORIES` for complete replacement). Initialize with `claude-mpm memory init`.
92
104
 
93
105
  ### MCP Gateway (Model Context Protocol)
94
106
 
@@ -141,11 +153,15 @@ See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md]
141
153
  ### API Documentation
142
154
  Comprehensive API documentation is available at [docs/api/](docs/api/) - build with `make html` in that directory.
143
155
 
144
- ## Recent Updates (v3.8.2)
156
+ ## Recent Updates (v4.1.0)
157
+
158
+ **Socket.IO Stability Improvements**: Major reliability enhancements for real-time communication with improved error handling and connection management.
159
+
160
+ **Project Organization**: Comprehensive cleanup and reorganization with structured script directories for better maintainability.
145
161
 
146
- **Major Architecture Refactoring (TSK-0053)**: Complete service-oriented redesign with 50-80% performance improvements, enhanced security, and interface-based design.
162
+ **Documentation Consolidation**: Streamlined documentation structure with consolidated guides and improved navigation.
147
163
 
148
- **Process Management Improvements**: Enhanced hook system reliability with automatic process cleanup, timeout protection, and orphan process monitoring to prevent resource leaks.
164
+ **Agent Hierarchy Display**: Enhanced dashboard with hierarchical agent display showing PM at top level with visual distinction for implied vs explicit nodes.
149
165
 
150
166
  See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/MIGRATION.md](docs/MIGRATION.md) for upgrade instructions.
151
167
 
package/README.npm.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Claude MPM (npm wrapper)
2
2
 
3
- This is the npm wrapper for the **Claude Multi-Agent Project Manager (claude-mpm)**, a Python framework that extends Claude Desktop with multi-agent orchestration capabilities.
3
+ This is the npm wrapper for the **Claude Multi-Agent Project Manager (claude-mpm)**, a Python framework that extends Claude Code with multi-agent orchestration capabilities.
4
4
 
5
5
  ## Requirements
6
6
 
@@ -55,7 +55,7 @@ pip install claude-mpm
55
55
  - **Memory System**: Persistent agent memory and context management
56
56
  - **WebSocket Dashboard**: Real-time monitoring of agent activities
57
57
  - **MCP Gateway**: Model Context Protocol server integration
58
- - **Claude Desktop Integration**: Seamless integration with Anthropic's Claude Desktop
58
+ - **Claude Code Integration**: Seamless integration with Anthropic's Claude Code
59
59
 
60
60
  ## Documentation
61
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mpm",
3
- "version": "4.0.25",
3
+ "version": "4.1.2",
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",
@@ -52,7 +52,10 @@
52
52
  "registry": "https://registry.npmjs.org/"
53
53
  },
54
54
  "devDependencies": {
55
- "vite": "^5.0.0",
56
- "terser": "^5.24.0"
55
+ "terser": "^5.24.0",
56
+ "vite": "^5.0.0"
57
+ },
58
+ "dependencies": {
59
+ "playwright": "^1.55.0"
57
60
  }
58
61
  }