claude-mpm 4.0.34 → 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.
Files changed (2) hide show
  1. package/README.md +19 -6
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -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
@@ -47,15 +54,17 @@ claude-mpm cleanup-memory
47
54
  See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
48
55
 
49
56
 
50
- ## Architecture (v3.8.2+)
57
+ ## Architecture (v4.1.0+)
51
58
 
52
- Following the TSK-0053 refactoring, Claude MPM features:
59
+ Following continuous improvements through v4.1.0, Claude MPM features:
53
60
 
54
- - **Service-Oriented Architecture**: Five specialized service domains
61
+ - **Service-Oriented Architecture**: Five specialized service domains with Socket.IO stability improvements
55
62
  - **Interface-Based Contracts**: All services implement explicit interfaces
56
63
  - **Dependency Injection**: Service container with automatic resolution
57
64
  - **50-80% Performance Improvement**: Through lazy loading and intelligent caching
58
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
59
68
 
60
69
  See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for detailed architecture information.
61
70
 
@@ -144,11 +153,15 @@ See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md]
144
153
  ### API Documentation
145
154
  Comprehensive API documentation is available at [docs/api/](docs/api/) - build with `make html` in that directory.
146
155
 
147
- ## 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.
148
161
 
149
- **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.
150
163
 
151
- **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.
152
165
 
153
166
  See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/MIGRATION.md](docs/MIGRATION.md) for upgrade instructions.
154
167
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mpm",
3
- "version": "4.0.34",
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
  }