claude-recall 0.18.4 → 0.18.5
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 +19 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,16 @@ claude mcp add claude-recall -- claude-recall mcp start
|
|
|
55
55
|
|
|
56
56
|
Then restart your Claude Code session.
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
### Adding to another project
|
|
59
|
+
|
|
60
|
+
From the new project directory, only steps 5-6 are needed:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
claude-recall setup --install
|
|
64
|
+
claude mcp add claude-recall -- claude-recall mcp start
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Memories are automatically scoped per project in a shared database (`~/.claude-recall/claude-recall.db`).
|
|
59
68
|
|
|
60
69
|
### Verify
|
|
61
70
|
|
|
@@ -65,7 +74,15 @@ Claude should call `mcp__claude-recall__load_rules`. If it works, you're ready.
|
|
|
65
74
|
|
|
66
75
|
### Upgrading
|
|
67
76
|
|
|
68
|
-
|
|
77
|
+
When a new version is published, update the global binary — no per-project reinstall needed:
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
npm cache clean --force
|
|
81
|
+
npm uninstall -g claude-recall
|
|
82
|
+
npm install -g claude-recall
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Then restart Claude Code sessions in each project to pick up the new version.
|
|
69
86
|
|
|
70
87
|
---
|
|
71
88
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-recall",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.5",
|
|
4
4
|
"description": "Persistent memory for Claude Code with native Skills integration, automatic capture, failure learning, and project scoping via MCP server",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|