claude-mpm 4.9.0 → 4.12.1
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 +9 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,8 @@ A powerful orchestration framework for **Claude Code (CLI)** that enables multi-
|
|
|
12
12
|
- 🧠 **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention
|
|
13
13
|
- 🔄 **Session Management**: Resume previous sessions with `--resume`
|
|
14
14
|
- 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
|
|
15
|
-
- 🔌 **
|
|
15
|
+
- 🔌 **Smart MCP Services**: Interactive auto-install for mcp-vector-search on first use (pip/pipx choice)
|
|
16
|
+
- 🔍 **Semantic Code Search**: Optional vector search with graceful fallback to grep/glob
|
|
16
17
|
- 📁 **Multi-Project Support**: Per-session working directories with persistent knowledge graphs
|
|
17
18
|
- 🔍 **Git Integration**: View diffs and track changes across projects
|
|
18
19
|
- 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
|
|
@@ -49,7 +50,8 @@ claude-mpm mcp-pipx-config
|
|
|
49
50
|
- `[monitor]` - Full monitoring dashboard with Socket.IO and async web server components
|
|
50
51
|
- **Combine both**: Use `"claude-mpm[mcp,monitor]"` to install all features
|
|
51
52
|
- **Note**: kuzu-memory is now a required dependency, always included with Claude MPM
|
|
52
|
-
-
|
|
53
|
+
- **Auto-Install**: mcp-vector-search offers interactive installation on first use (pip/pipx choice)
|
|
54
|
+
- Without pre-installed MCP dependencies, services install on-demand with user confirmation
|
|
53
55
|
|
|
54
56
|
**🎉 Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:
|
|
55
57
|
- ✅ Socket.IO daemon script path resolution (fixed)
|
|
@@ -68,6 +70,11 @@ claude-mpm
|
|
|
68
70
|
# Start with monitoring dashboard
|
|
69
71
|
claude-mpm run --monitor
|
|
70
72
|
|
|
73
|
+
# Use semantic code search (auto-installs mcp-vector-search on first use)
|
|
74
|
+
claude-mpm search "authentication logic"
|
|
75
|
+
# or inside Claude Code session:
|
|
76
|
+
/mpm-search "authentication logic"
|
|
77
|
+
|
|
71
78
|
# Use MCP Gateway for external tool integration
|
|
72
79
|
claude-mpm mcp
|
|
73
80
|
|
package/package.json
CHANGED