mr-memory 3.5.0 → 3.5.1
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 +18 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# mr-memory
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**mr-memory OpenClaw plugin** — persistent AI memory that survives compaction and session resets.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
OpenClaw agents forget conversations after compaction. mr-memory fixes that. Every conversation is stored and the most relevant context is automatically injected into every response — not just at session start, but continuously.
|
|
6
|
+
|
|
7
|
+
Powered by [MemoryRouter](https://memoryrouter.ai). 50M tokens free.
|
|
6
8
|
|
|
7
9
|
## Install
|
|
8
10
|
|
|
@@ -38,9 +40,21 @@ openclaw mr upload --brain <dir> # Custom state dir (sessions from another
|
|
|
38
40
|
|
|
39
41
|
## How It Works
|
|
40
42
|
|
|
41
|
-
When enabled, all LLM calls
|
|
43
|
+
When enabled, the **mr-memory OpenClaw plugin** routes all LLM calls through MemoryRouter, which automatically:
|
|
44
|
+
|
|
45
|
+
1. **Retrieves** relevant memories from past conversations before every response
|
|
46
|
+
2. **Injects** that context into the prompt so the agent knows what's happened before
|
|
47
|
+
3. **Stores** new conversations for future recall
|
|
48
|
+
|
|
49
|
+
Your provider API keys pass through untouched (BYOK). Only direct user-to-AI conversation is stored — tool use and subagent work are excluded automatically.
|
|
50
|
+
|
|
51
|
+
## Why mr-memory
|
|
42
52
|
|
|
43
|
-
|
|
53
|
+
- **Survives compaction** — memories persist even when OpenClaw summarizes/compacts conversation history
|
|
54
|
+
- **Survives restarts** — stored externally, not in the session
|
|
55
|
+
- **Full fidelity** — stores raw conversations, not lossy summaries
|
|
56
|
+
- **Continuous** — queries memory on every message, not just session start
|
|
57
|
+
- **Zero config** — one command install, one command setup
|
|
44
58
|
|
|
45
59
|
## Config
|
|
46
60
|
|