claude-recall 0.8.4 → 0.8.5
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/docs/faq.md +3 -0
- package/docs/installation.md +4 -0
- package/docs/project-scoping.md +11 -0
- package/package.json +1 -1
package/docs/faq.md
CHANGED
|
@@ -221,6 +221,9 @@ Project-specific keys ensure:
|
|
|
221
221
|
- no cross-project leakage
|
|
222
222
|
- clean agent shutdown
|
|
223
223
|
|
|
224
|
+
**Recommended**: Create your own free keys for production:
|
|
225
|
+
[Create PubNub Keys](https://www.pubnub.com/how-to/admin-portal-create-keys/)
|
|
226
|
+
|
|
224
227
|
---
|
|
225
228
|
|
|
226
229
|
## What if I want to reset everything?
|
package/docs/installation.md
CHANGED
|
@@ -37,6 +37,10 @@ Then restart **Claude Code**.
|
|
|
37
37
|
|
|
38
38
|
Claude will automatically detect the MCP server and begin using persistent memory.
|
|
39
39
|
|
|
40
|
+
Installation creates `.claude/skills/memory-management/` with:
|
|
41
|
+
- SKILL.md (main skill definition)
|
|
42
|
+
- references/ (examples, patterns, troubleshooting)
|
|
43
|
+
|
|
40
44
|
---
|
|
41
45
|
|
|
42
46
|
## Global Install (Not Recommended)
|
package/docs/project-scoping.md
CHANGED
|
@@ -19,6 +19,17 @@ This enables:
|
|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
|
22
|
+
## Automatic Memory Scoping
|
|
23
|
+
|
|
24
|
+
Claude Recall automatically manages memory scope:
|
|
25
|
+
- **Universal memories** (coding style, tool preferences) → reused across all projects
|
|
26
|
+
- **Project memories** (database configs, APIs) → isolated per project
|
|
27
|
+
|
|
28
|
+
System auto-detects from language ("remember everywhere" vs "for this project").
|
|
29
|
+
No user configuration needed.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
22
33
|
## Presence Channel
|
|
23
34
|
|
|
24
35
|
Memory Agent publishes heartbeats:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-recall",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5",
|
|
4
4
|
"description": "Persistent memory for Claude Code with fire-and-forget PubNub architecture, automatic capture, failure learning, and project scoping via MCP server",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|