claude-mpm 6.3.17 → 6.4.10
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 +12 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,9 +80,9 @@ Claude MPM transforms Claude Code into a **comprehensive AI development platform
|
|
|
80
80
|
- **Notion** - 7 tools + bulk operations for databases, pages, markdown import
|
|
81
81
|
- **Confluence** - 7 tools + bulk operations for pages, spaces, CQL search
|
|
82
82
|
- **Slack** - User proxy for channels, messages, DMs, search
|
|
83
|
-
- **Semantic Code Search** - AI-powered code discovery via
|
|
83
|
+
- **Semantic Code Search** - AI-powered code discovery via trusty-search
|
|
84
84
|
- **Ticket Management** - GitHub, Linear, Jira integration via mcp-ticketer
|
|
85
|
-
- **
|
|
85
|
+
- **Persistent Memory** - Project knowledge palace via trusty-memory
|
|
86
86
|
|
|
87
87
|
### 📊 Session & Workflow Management
|
|
88
88
|
- **Session Resume** - Continue work with full context preservation
|
|
@@ -197,8 +197,8 @@ claude-mpm auto-configure
|
|
|
197
197
|
|
|
198
198
|
**Recommended Partners**: Install these companion tools for enhanced capabilities:
|
|
199
199
|
```bash
|
|
200
|
-
uv tool install
|
|
201
|
-
uv tool install
|
|
200
|
+
uv tool install trusty-memory --python 3.13
|
|
201
|
+
uv tool install trusty-search --python 3.13
|
|
202
202
|
uv tool install mcp-ticketer --python 3.13
|
|
203
203
|
uv tool install mcp-browser --python 3.13
|
|
204
204
|
```
|
|
@@ -235,7 +235,7 @@ uv tool install mcp-browser --python 3.13
|
|
|
235
235
|
[→ Learn more: Skills Guide](docs/user/skills-guide.md)
|
|
236
236
|
|
|
237
237
|
### 🔍 Semantic Code Search
|
|
238
|
-
- **AI-Powered Discovery** with
|
|
238
|
+
- **AI-Powered Discovery** with trusty-search integration
|
|
239
239
|
- **Find by Intent** not just keywords ("authentication logic" finds relevant code)
|
|
240
240
|
- **Pattern Recognition** for discovering similar implementations
|
|
241
241
|
- **Live Updates** tracking code changes automatically
|
|
@@ -697,8 +697,10 @@ Claude MPM supports multiple integrations for enhanced functionality. See **[Com
|
|
|
697
697
|
|
|
698
698
|
### Core Integrations
|
|
699
699
|
|
|
700
|
-
- **[
|
|
701
|
-
- **[
|
|
700
|
+
- **[trusty-memory](docs/integrations/trusty-memory.md)** - High-performance semantic memory palace for project context (recommended)
|
|
701
|
+
- **[trusty-search](docs/integrations/trusty-search.md)** - High-performance semantic code search and discovery (recommended)
|
|
702
|
+
- **[kuzu-memory](docs/integrations/kuzu-memory.md)** *(deprecated — superseded by trusty-memory)*
|
|
703
|
+
- **[mcp-vector-search](docs/integrations/mcp-vector-search.md)** *(deprecated — superseded by trusty-search)*
|
|
702
704
|
|
|
703
705
|
### External Services
|
|
704
706
|
|
|
@@ -714,8 +716,8 @@ Claude MPM supports multiple integrations for enhanced functionality. See **[Com
|
|
|
714
716
|
claude-mpm setup <integration>
|
|
715
717
|
|
|
716
718
|
# Examples:
|
|
717
|
-
claude-mpm setup
|
|
718
|
-
claude-mpm setup
|
|
719
|
+
claude-mpm setup trusty-memory
|
|
720
|
+
claude-mpm setup trusty-search
|
|
719
721
|
claude-mpm setup gworkspace-mcp # Canonical name (preferred)
|
|
720
722
|
claude-mpm setup google-workspace-mcp # Legacy alias (also works)
|
|
721
723
|
claude-mpm setup slack-mpm
|
|
@@ -723,7 +725,7 @@ claude-mpm setup notion
|
|
|
723
725
|
claude-mpm setup confluence
|
|
724
726
|
|
|
725
727
|
# Setup multiple at once
|
|
726
|
-
claude-mpm setup
|
|
728
|
+
claude-mpm setup trusty-memory trusty-search gworkspace-mcp
|
|
727
729
|
```
|
|
728
730
|
|
|
729
731
|
**Integration Features:**
|
package/package.json
CHANGED