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 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.14 or higher
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 cache verify
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.14')
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
@@ -233,4 +233,4 @@ socket.on('queue:processed', (message) => {});
233
233
  ```
234
234
 
235
235
  ---
236
- *API Reference v0.2.14 - Last updated: August 2025*
236
+ *API Reference v0.2.15 - Last updated: August 2025*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-recall",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "Persistent memory for Claude Code with automatic capture via hooks and MCP server",
5
5
  "main": "dist/index.js",
6
6
  "bin": {