claude-recall 0.2.14 → 0.2.15
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 +2 -4
- package/dist/cli/claude-recall-cli.js +1 -1
- package/docs/API_REFERENCE.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ npm install -g claude-recall@latest
|
|
|
35
35
|
|
|
36
36
|
### 2. Verify Installation
|
|
37
37
|
```bash
|
|
38
|
-
claude-recall --version # Should show 0.2.
|
|
38
|
+
claude-recall --version # Should show 0.2.15 or higher
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### 3. Start Using Claude
|
|
@@ -171,11 +171,9 @@ export CLAUDE_RECALL_RETAIN_TOOL_USE=2000 # Keep more tool usage history
|
|
|
171
171
|
### Installation shows old version?
|
|
172
172
|
Clear npm cache and reinstall:
|
|
173
173
|
```bash
|
|
174
|
-
npm uninstall -g claude-recall
|
|
175
174
|
npm cache clean --force
|
|
176
|
-
npm
|
|
175
|
+
npm uninstall -g claude-recall
|
|
177
176
|
npm install -g claude-recall@latest
|
|
178
|
-
claude-recall --version
|
|
179
177
|
```
|
|
180
178
|
|
|
181
179
|
### Performance issues?
|
|
@@ -265,7 +265,7 @@ async function main() {
|
|
|
265
265
|
program
|
|
266
266
|
.name('claude-recall')
|
|
267
267
|
.description('Memory-enhanced Claude Code via MCP')
|
|
268
|
-
.version('0.2.
|
|
268
|
+
.version('0.2.15')
|
|
269
269
|
.option('--verbose', 'Enable verbose logging')
|
|
270
270
|
.option('--config <path>', 'Path to custom config file');
|
|
271
271
|
// MCP command
|
package/docs/API_REFERENCE.md
CHANGED