claude-recall 0.15.0 ā 0.15.2
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 +3 -21
- package/dist/cli/claude-recall-cli.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,35 +36,17 @@ Your preferences, project structure, workflows, corrections, and coding style ar
|
|
|
36
36
|
| Node.js | **20+** | required for better-sqlite3 |
|
|
37
37
|
| OS | macOS / Linux / Windows | WSL supported |
|
|
38
38
|
|
|
39
|
-
### Install
|
|
39
|
+
### Install & Activate
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
cd your-project
|
|
43
43
|
npm install claude-recall
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
npx claude-recall --version
|
|
47
|
-
|
|
48
|
-
# Show activation instructions:
|
|
49
|
-
npx claude-recall setup
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
### Activate
|
|
53
|
-
|
|
54
|
-
Register MCP server with Claude Code:
|
|
55
|
-
|
|
56
|
-
```bash
|
|
57
|
-
claude mcp add claude-recall -- npx -y claude-recall@latest mcp start
|
|
44
|
+
claude mcp remove claude-recall 2>/dev/null; claude mcp add claude-recall -- npx -y claude-recall@latest mcp start
|
|
45
|
+
npx claude-recall setup --install
|
|
58
46
|
```
|
|
59
47
|
|
|
60
48
|
Then restart your terminal or Claude Code session.
|
|
61
49
|
|
|
62
|
-
Already registered? Remove first:
|
|
63
|
-
|
|
64
|
-
```bash
|
|
65
|
-
claude mcp remove claude-recall
|
|
66
|
-
```
|
|
67
|
-
|
|
68
50
|
### Verify
|
|
69
51
|
|
|
70
52
|
In Claude Code, ask: *"Load my rules"*
|
|
@@ -511,11 +511,11 @@ async function main() {
|
|
|
511
511
|
}
|
|
512
512
|
}
|
|
513
513
|
}
|
|
514
|
-
// Install skills + minimal enforcement hook
|
|
514
|
+
// Install skills + minimal enforcement hook
|
|
515
515
|
function installSkillsAndHook(force = false) {
|
|
516
516
|
const cwd = process.cwd();
|
|
517
517
|
const projectName = path.basename(cwd);
|
|
518
|
-
console.log('\nš¦ Claude Recall
|
|
518
|
+
console.log('\nš¦ Claude Recall Setup\n');
|
|
519
519
|
console.log(`š Project: ${projectName}`);
|
|
520
520
|
console.log(`š Directory: ${cwd}\n`);
|
|
521
521
|
// Find the package directory (where claude-recall is installed)
|
|
@@ -633,7 +633,7 @@ async function main() {
|
|
|
633
633
|
console.log(`ā ļø Skills not found at: ${packageSkillsDir}`);
|
|
634
634
|
}
|
|
635
635
|
console.log('\nā
Setup complete!\n');
|
|
636
|
-
console.log('ā¹ļø
|
|
636
|
+
console.log('ā¹ļø Uses Skills (guidance) + hooks (auto-capture with LLM classification).');
|
|
637
637
|
console.log('Restart Claude Code to activate.\n');
|
|
638
638
|
}
|
|
639
639
|
// Setup command - shows activation instructions or installs skills
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-recall",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.2",
|
|
4
4
|
"description": "Persistent memory for Claude Code with native Skills integration, automatic capture, failure learning, and project scoping via MCP server",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|