claude-recall 0.20.8 → 0.20.9
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 +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,13 +65,16 @@ Both agents use the same database (`~/.claude-recall/claude-recall.db`). Memorie
|
|
|
65
65
|
### Upgrading
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
# Claude Code
|
|
68
|
+
# Claude Code — update binary + re-install hooks in each project
|
|
69
69
|
npm install -g claude-recall
|
|
70
|
+
claude-recall setup --install # run from each project directory
|
|
70
71
|
|
|
71
72
|
# Pi
|
|
72
73
|
pi update claude-recall
|
|
73
74
|
```
|
|
74
75
|
|
|
76
|
+
The MCP server picks up the new version automatically. `setup --install` is needed to update hooks in `.claude/settings.json` (new hook events may have been added).
|
|
77
|
+
|
|
75
78
|
---
|
|
76
79
|
|
|
77
80
|
## What to Expect
|
package/package.json
CHANGED