agent-recall-mcp 3.3.5 → 3.3.6
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 +25 -18
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -35,6 +35,31 @@
|
|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
|
38
|
+
<p align="center">
|
|
39
|
+
<a href="#arsave-and-arstart"><img src="https://img.shields.io/badge/%2Farsave-Save_Session-FF6B6B?style=for-the-badge" alt="/arsave"></a>
|
|
40
|
+
<a href="#arsave-and-arstart"><img src="https://img.shields.io/badge/%2Farstart-Load_Context-4ECDC4?style=for-the-badge" alt="/arstart"></a>
|
|
41
|
+
</p>
|
|
42
|
+
|
|
43
|
+
## `/arsave` and `/arstart`
|
|
44
|
+
|
|
45
|
+
> **Two commands. That's all you need.**
|
|
46
|
+
|
|
47
|
+
| Command | When | What it does |
|
|
48
|
+
|---------|------|-------------|
|
|
49
|
+
| **`/arsave`** | End of session | Write journal + consolidate to palace + update awareness + optional git push |
|
|
50
|
+
| **`/arstart`** | Start of session | Recall cross-project insights + walk palace + load context |
|
|
51
|
+
|
|
52
|
+
Type `/arsave` after a long project session. Everything gets saved. Type `/arstart` next time. Everything loads back.
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Install commands (one-time, Claude Code only)
|
|
56
|
+
mkdir -p ~/.claude/commands
|
|
57
|
+
curl -o ~/.claude/commands/arsave.md https://raw.githubusercontent.com/Goldentrii/AgentRecall/main/commands/arsave.md
|
|
58
|
+
curl -o ~/.claude/commands/arstart.md https://raw.githubusercontent.com/Goldentrii/AgentRecall/main/commands/arstart.md
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
38
63
|
## Why Choose AgentRecall
|
|
39
64
|
|
|
40
65
|
**Your agents forget everything between sessions.** Decisions evaporate. Mistakes repeat. Context rebuilds from scratch every time. AgentRecall fixes this with persistent memory that compounds — getting smarter, not bigger.
|
|
@@ -177,24 +202,6 @@ ar rollup --min-age-days 14
|
|
|
177
202
|
|
|
178
203
|
---
|
|
179
204
|
|
|
180
|
-
## `/arsave` and `/arstart`
|
|
181
|
-
|
|
182
|
-
> **Two commands. That's all you need for session management.**
|
|
183
|
-
|
|
184
|
-
| Command | When | What it does |
|
|
185
|
-
|---------|------|-------------|
|
|
186
|
-
| **`/arsave`** | End of session | Write journal + consolidate to palace + update awareness + optional git push |
|
|
187
|
-
| **`/arstart`** | Start of session | Recall cross-project insights + walk palace + load context |
|
|
188
|
-
|
|
189
|
-
```bash
|
|
190
|
-
# Install commands (one-time, Claude Code only)
|
|
191
|
-
mkdir -p ~/.claude/commands
|
|
192
|
-
curl -o ~/.claude/commands/arsave.md https://raw.githubusercontent.com/Goldentrii/AgentRecall/main/commands/arsave.md
|
|
193
|
-
curl -o ~/.claude/commands/arstart.md https://raw.githubusercontent.com/Goldentrii/AgentRecall/main/commands/arstart.md
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
---
|
|
197
|
-
|
|
198
205
|
## How an Agent Uses AgentRecall
|
|
199
206
|
|
|
200
207
|
### Session Start (`/arstart`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-recall-mcp",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.6",
|
|
4
4
|
"description": "Memory Palace MCP server for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"test": "node --test test/*.test.mjs"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"agent-recall-core": "^3.3.
|
|
14
|
+
"agent-recall-core": "^3.3.6",
|
|
15
15
|
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
16
16
|
"zod": "^3.24.0"
|
|
17
17
|
},
|