claude-recall 0.23.2 → 0.23.3
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 +14 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,31 +69,38 @@ Both agents use the same database at `~/.claude-recall/claude-recall.db`, scoped
|
|
|
69
69
|
claude-recall upgrade
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
One command. Checks the registry, refreshes the global binary, clears any running MCP servers
|
|
72
|
+
One command. Checks the registry, refreshes the global binary, clears any running MCP servers — Claude Code respawns them on the next tool call, picking up the new version. **No `claude mcp add` re-run needed** — existing registrations point at the `claude-recall` command, not a pinned path.
|
|
73
73
|
|
|
74
74
|
For Pi, run `pi update npm:claude-recall` and restart Pi.
|
|
75
75
|
|
|
76
|
+
> **Seeing `error: unknown command 'upgrade'`?** Your installed version predates 0.23.2 (the release that added the `upgrade` command). Bootstrap once with `npm install -g claude-recall@latest`, then all future upgrades use `claude-recall upgrade`.
|
|
77
|
+
|
|
76
78
|
<details>
|
|
77
|
-
<summary><b>If
|
|
79
|
+
<summary><b>If the install step reports <code>EACCES: permission denied</code></b></summary>
|
|
78
80
|
|
|
79
|
-
Your global npm prefix is root-owned (common
|
|
81
|
+
Your global npm prefix is root-owned (common when node was installed via `apt install nodejs`). Pick one:
|
|
80
82
|
|
|
81
83
|
**Quick** — one-time sudo:
|
|
82
84
|
```bash
|
|
83
|
-
sudo npm install -g claude-recall
|
|
85
|
+
sudo npm install -g claude-recall@latest
|
|
84
86
|
```
|
|
85
87
|
|
|
86
|
-
**Permanent** — move the prefix to a user-owned directory
|
|
88
|
+
**Permanent** — move the prefix to a user-owned directory so no global install ever needs sudo again:
|
|
87
89
|
```bash
|
|
88
90
|
mkdir -p ~/.npm-global
|
|
89
91
|
npm config set prefix ~/.npm-global
|
|
90
92
|
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc
|
|
91
93
|
source ~/.bashrc
|
|
92
94
|
|
|
93
|
-
#
|
|
94
|
-
claude-recall
|
|
95
|
+
# Install claude-recall into the new user-owned prefix:
|
|
96
|
+
npm install -g claude-recall@latest
|
|
97
|
+
|
|
98
|
+
# Verify and you're done:
|
|
99
|
+
claude-recall --version
|
|
95
100
|
```
|
|
96
101
|
|
|
102
|
+
The prefix fix only tells npm *where* to install; it doesn't install anything itself. The explicit `npm install -g` line picks up the new binary into the new prefix so `claude-recall` on your PATH has the `upgrade` command.
|
|
103
|
+
|
|
97
104
|
</details>
|
|
98
105
|
|
|
99
106
|
---
|
package/package.json
CHANGED