claude-recall 0.7.9 → 0.7.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 +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -129,6 +129,30 @@ cp $(npm root -g)/claude-recall/.claude/settings.json .claude/settings.json
|
|
|
129
129
|
|
|
130
130
|
This manual approach loses automatic setup and team sharing via `package.json`.
|
|
131
131
|
|
|
132
|
+
### Node.js Version Requirement
|
|
133
|
+
|
|
134
|
+
Claude Recall requires **Node.js 20+** due to native dependencies (better-sqlite3). If you're on Node 18 or older:
|
|
135
|
+
|
|
136
|
+
**Install Node 20 using nvm:**
|
|
137
|
+
```bash
|
|
138
|
+
# Install nvm (if not already installed)
|
|
139
|
+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
|
|
140
|
+
source ~/.bashrc
|
|
141
|
+
|
|
142
|
+
# Install Node 20
|
|
143
|
+
nvm install 20
|
|
144
|
+
nvm use 20
|
|
145
|
+
node --version # Should show v20.x.x
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
**Reinstall claude-recall with Node 20:**
|
|
149
|
+
```bash
|
|
150
|
+
cd ~/path-to-project-dir
|
|
151
|
+
rm -rf node_modules package-lock.json
|
|
152
|
+
npm install claude-recall
|
|
153
|
+
npx claude-recall --version
|
|
154
|
+
```
|
|
155
|
+
|
|
132
156
|
## Updating Claude Recall
|
|
133
157
|
|
|
134
158
|
**For local installations (recommended):**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-recall",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.10",
|
|
4
4
|
"description": "Persistent memory for Claude Code with automatic capture, failure learning, sophistication tracking, project scoping, project registry, automatic schema migration, noise reduction, and enforced pre-action memory search via MCP server and hooks",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|