claude-mpm 4.2.7 โ 4.3.11
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 +47 -27
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -25,11 +25,18 @@ pip install claude-mpm
|
|
|
25
25
|
|
|
26
26
|
Or with pipx (recommended for isolated installation):
|
|
27
27
|
```bash
|
|
28
|
+
# Install with monitor support (recommended)
|
|
29
|
+
pipx install "claude-mpm[monitor]"
|
|
30
|
+
|
|
31
|
+
# Basic installation without monitor
|
|
28
32
|
pipx install claude-mpm
|
|
33
|
+
|
|
29
34
|
# Configure MCP for pipx users:
|
|
30
35
|
claude-mpm mcp-pipx-config
|
|
31
36
|
```
|
|
32
37
|
|
|
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.
|
|
39
|
+
|
|
33
40
|
**๐ Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:
|
|
34
41
|
- โ
Socket.IO daemon script path resolution (fixed)
|
|
35
42
|
- โ
Commands directory access (fixed)
|
|
@@ -60,9 +67,9 @@ claude-mpm cleanup-memory
|
|
|
60
67
|
See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
|
|
61
68
|
|
|
62
69
|
|
|
63
|
-
## Architecture (v4.
|
|
70
|
+
## Architecture (v4.3.3)
|
|
64
71
|
|
|
65
|
-
Following continuous improvements through v4.
|
|
72
|
+
Following continuous improvements through v4.3.3, Claude MPM features:
|
|
66
73
|
|
|
67
74
|
- **Service-Oriented Architecture**: Five specialized service domains with Socket.IO stability improvements
|
|
68
75
|
- **Interface-Based Contracts**: All services implement explicit interfaces
|
|
@@ -136,40 +143,53 @@ The `--monitor` flag opens a web dashboard showing live agent activity, file ope
|
|
|
136
143
|
See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md](docs/developer/11-dashboard/README.md) for details.
|
|
137
144
|
|
|
138
145
|
|
|
139
|
-
## Documentation
|
|
146
|
+
## ๐ Documentation
|
|
147
|
+
|
|
148
|
+
**๐ [Complete Documentation Hub](docs/README.md)** - Start here for all documentation!
|
|
149
|
+
|
|
150
|
+
### Quick Links by User Type
|
|
151
|
+
|
|
152
|
+
#### ๐ฅ For Users
|
|
153
|
+
- **[๐ 5-Minute Quick Start](docs/user/quickstart.md)** - Get running immediately
|
|
154
|
+
- **[๐ฆ Installation Guide](docs/user/installation.md)** - All installation methods
|
|
155
|
+
- **[๐ User Guide](docs/user/README.md)** - Complete user documentation
|
|
156
|
+
- **[โ FAQ](docs/user/faq.md)** - Common questions answered
|
|
157
|
+
|
|
158
|
+
#### ๐ป For Developers
|
|
159
|
+
- **[๐๏ธ Architecture Overview](docs/developer/ARCHITECTURE.md)** - Service-oriented system design
|
|
160
|
+
- **[๐ป Developer Guide](docs/developer/README.md)** - Complete development documentation
|
|
161
|
+
- **[๐งช Contributing](docs/developer/03-development/README.md)** - How to contribute
|
|
162
|
+
- **[๐ API Reference](docs/API.md)** - Complete API documentation
|
|
163
|
+
|
|
164
|
+
#### ๐ค For Agent Creators
|
|
165
|
+
- **[๐ค Agent System](docs/AGENTS.md)** - Complete agent development guide
|
|
166
|
+
- **[๐ Creation Guide](docs/developer/07-agent-system/creation-guide.md)** - Step-by-step tutorials
|
|
167
|
+
- **[๐ Schema Reference](docs/developer/10-schemas/agent_schema_documentation.md)** - Agent format specifications
|
|
140
168
|
|
|
141
|
-
|
|
142
|
-
- **[
|
|
143
|
-
- **[
|
|
144
|
-
- **[
|
|
145
|
-
- **[Memory System](docs/MEMORY.md)** - Agent memory documentation
|
|
146
|
-
- **[Troubleshooting](docs/user/troubleshooting.md)** - Common issues and solutions
|
|
169
|
+
#### ๐ For Operations
|
|
170
|
+
- **[๐ Deployment](docs/DEPLOYMENT.md)** - Release management & versioning
|
|
171
|
+
- **[๐ Monitoring](docs/MONITOR.md)** - Real-time dashboard & metrics
|
|
172
|
+
- **[๐ Troubleshooting](docs/TROUBLESHOOTING.md)** - Diagnostic & problem resolution
|
|
147
173
|
|
|
148
|
-
###
|
|
149
|
-
- **[
|
|
150
|
-
- **
|
|
151
|
-
- **
|
|
152
|
-
- **
|
|
153
|
-
- **[Performance Guide](docs/PERFORMANCE.md)** - Optimization and caching strategies
|
|
154
|
-
- **[Security Guide](docs/SECURITY.md)** - Security framework and best practices
|
|
155
|
-
- **[Testing Guide](docs/TESTING.md)** - Testing patterns and strategies
|
|
156
|
-
- **[Migration Guide](docs/MIGRATION.md)** - Upgrading from previous versions
|
|
157
|
-
- **[Developer Guide](docs/developer/)** - Comprehensive development documentation
|
|
174
|
+
### ๐ฏ Documentation Features
|
|
175
|
+
- **Single Entry Point**: [docs/README.md](docs/README.md) is your navigation hub
|
|
176
|
+
- **Clear User Paths**: Organized by user type and experience level
|
|
177
|
+
- **Cross-Referenced**: Links between related topics and sections
|
|
178
|
+
- **Up-to-Date**: Version 4.3.3 with current information
|
|
158
179
|
|
|
159
|
-
|
|
160
|
-
Comprehensive API documentation is available at [docs/api/](docs/api/) - build with `make html` in that directory.
|
|
180
|
+
## Recent Updates (v4.3.3)
|
|
161
181
|
|
|
162
|
-
|
|
182
|
+
**Enhanced PM Instructions**: PM2 deployment support and mandatory web-qa verification for quality assurance.
|
|
163
183
|
|
|
164
|
-
**
|
|
184
|
+
**Improved Version Management**: Better version comparison logic and agent override warnings for smoother operations.
|
|
165
185
|
|
|
166
|
-
**
|
|
186
|
+
**Code Quality Improvements**: Auto-fix code formatting and import management with enhanced standard tools recognition.
|
|
167
187
|
|
|
168
|
-
**Documentation
|
|
188
|
+
**Documentation Overhaul**: Unified documentation architecture with single entry point and clear navigation paths.
|
|
169
189
|
|
|
170
|
-
**
|
|
190
|
+
**Performance Enhancements**: Continued 50-80% performance improvements through intelligent caching and lazy loading.
|
|
171
191
|
|
|
172
|
-
See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/MIGRATION.md](docs/MIGRATION.md) for upgrade instructions.
|
|
192
|
+
See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/user/MIGRATION.md](docs/user/MIGRATION.md) for upgrade instructions.
|
|
173
193
|
|
|
174
194
|
## Development
|
|
175
195
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-mpm",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.11",
|
|
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,10 +52,19 @@
|
|
|
52
52
|
"registry": "https://registry.npmjs.org/"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
+
"@types/react": "^18.2.0",
|
|
56
|
+
"@types/react-dom": "^18.2.0",
|
|
57
|
+
"@vitejs/plugin-react": "^4.2.0",
|
|
55
58
|
"terser": "^5.24.0",
|
|
59
|
+
"typescript": "^5.3.0",
|
|
56
60
|
"vite": "^5.0.0"
|
|
57
61
|
},
|
|
58
62
|
"dependencies": {
|
|
59
|
-
"playwright": "^1.55.0"
|
|
63
|
+
"playwright": "^1.55.0",
|
|
64
|
+
"react": "^18.2.0",
|
|
65
|
+
"react-dom": "^18.2.0",
|
|
66
|
+
"react-window": "^1.8.8",
|
|
67
|
+
"react-window-infinite-loader": "^1.0.9",
|
|
68
|
+
"socket.io-client": "^4.8.1"
|
|
60
69
|
}
|
|
61
70
|
}
|