claude-cortex 1.7.1 → 1.7.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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -347,6 +347,23 @@ cd dashboard && npm run dev
|
|
|
347
347
|
| Yellow | Learning |
|
|
348
348
|
| Cyan | Context |
|
|
349
349
|
|
|
350
|
+
## Moltbot / ClawdBot Integration
|
|
351
|
+
|
|
352
|
+
Claude Cortex works with [Moltbot](https://github.com/moltbot/moltbot) (formerly ClawdBot) via [mcporter](https://mcpmarket.com/tools/skills/mcporter). Since Claude Cortex is a standard MCP server, Moltbot can call its tools on-demand:
|
|
353
|
+
|
|
354
|
+
```bash
|
|
355
|
+
# Remember something via Moltbot
|
|
356
|
+
npx mcporter call --stdio "npx -y claude-cortex" memory.remember title:"API uses JWT" content:"The auth system uses JWT tokens with 15-min expiry"
|
|
357
|
+
|
|
358
|
+
# Recall memories
|
|
359
|
+
npx mcporter call --stdio "npx -y claude-cortex" memory.recall query:"authentication"
|
|
360
|
+
|
|
361
|
+
# Get project context
|
|
362
|
+
npx mcporter call --stdio "npx -y claude-cortex" memory.get_context
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
**Shared memory**: Memories created via Moltbot are instantly available in Claude Code sessions and vice versa — both use the same SQLite database at `~/.claude-cortex/memories.db`.
|
|
366
|
+
|
|
350
367
|
## How This Differs from Other Solutions
|
|
351
368
|
|
|
352
369
|
| Feature | Claude Cortex | Other MCP Memory Tools |
|