agent-recall-mcp 3.3.2 → 3.3.3

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
@@ -15,6 +15,26 @@
15
15
 
16
16
  ---
17
17
 
18
+ ## `/arsave` — Save Everything in One Shot
19
+
20
+ > **Two commands. That's all you need.**
21
+
22
+ | Command | When | What it does |
23
+ |---------|------|-------------|
24
+ | **`/arsave`** | End of session | Write journal + consolidate to palace + update awareness + optional git push |
25
+ | **`/arstart`** | Start of session | Recall cross-project insights + walk palace + load context |
26
+
27
+ Type `/arsave` after a long project session. Everything gets saved. Type `/arstart` next time. Everything loads back.
28
+
29
+ ```bash
30
+ # Install commands (one-time)
31
+ mkdir -p ~/.claude/commands
32
+ curl -o ~/.claude/commands/arsave.md https://raw.githubusercontent.com/Goldentrii/AgentRecall/main/commands/arsave.md
33
+ curl -o ~/.claude/commands/arstart.md https://raw.githubusercontent.com/Goldentrii/AgentRecall/main/commands/arstart.md
34
+ ```
35
+
36
+ ---
37
+
18
38
  ## What Is AgentRecall?
19
39
 
20
40
  AgentRecall is an **MCP server** (Model Context Protocol) that gives AI agents persistent memory, cross-project insight recall, and a self-compounding awareness system. It works with Claude Code, Cursor, VS Code, Windsurf, and any MCP-compatible agent.
@@ -52,6 +72,9 @@ claude mcp add agent-recall -- npx -y agent-recall-mcp
52
72
 
53
73
  # Windsurf — ~/.codeium/windsurf/mcp_config.json
54
74
  { "mcpServers": { "agent-recall": { "command": "npx", "args": ["-y", "agent-recall-mcp"] } } }
75
+
76
+ # Codex — ~/.codex/config.toml (or .codex/config.toml for project-scoped)
77
+ codex mcp add agent-recall -- npx -y agent-recall-mcp
55
78
  ```
56
79
 
57
80
  **Skill (Claude Code only):**
@@ -65,7 +88,7 @@ curl -o ~/.claude/skills/agent-recall/SKILL.md \
65
88
 
66
89
  ## How an Agent Uses AgentRecall
67
90
 
68
- ### Session Start
91
+ ### Session Start (`/arstart`)
69
92
  ```
70
93
  1. recall_insight(context="current task description") → relevant cross-project insights
71
94
  2. palace_walk(depth="active") → project context + awareness
@@ -204,6 +227,7 @@ The gap between human intent and agent understanding is structural — different
204
227
  | Agent | MCP | Skill | Notes |
205
228
  |-------|:---:|:-----:|-------|
206
229
  | Claude Code | ✅ | ✅ | Full support — MCP + SKILL.md |
230
+ | OpenAI Codex | ✅ | — | `codex mcp add` — config.toml |
207
231
  | Cursor | ✅ | ⚡ | MCP via .cursor/mcp.json |
208
232
  | VS Code (Copilot) | ✅ | — | MCP via .vscode/mcp.json |
209
233
  | Windsurf | ✅ | ⚡ | MCP via mcp_config.json |
@@ -243,7 +267,7 @@ Built by [tongwu](https://github.com/Goldentrii).
243
267
 
244
268
  - Issues & feedback: [GitHub Issues](https://github.com/Goldentrii/AgentRecall/issues)
245
269
  - Email: tongwu0824@gmail.com
246
- - Protocol spec: [docs/intelligent-distance-protocol.md](docs/intelligent-distance-protocol.md)
270
+ - Protocol spec: [docs/intelligent-distance-protocol.md](https://github.com/Goldentrii/AgentRecall/blob/main/docs/intelligent-distance-protocol.md)
247
271
 
248
272
  MIT License.
249
273
 
@@ -281,6 +305,9 @@ claude mcp add agent-recall -- npx -y agent-recall-mcp
281
305
 
282
306
  # VS Code — .vscode/mcp.json
283
307
  { "servers": { "agent-recall": { "command": "npx", "args": ["-y", "agent-recall-mcp"] } } }
308
+
309
+ # Codex — ~/.codex/config.toml
310
+ codex mcp add agent-recall -- npx -y agent-recall-mcp
284
311
  ```
285
312
 
286
313
  **Claude Code 技能安装:**
@@ -294,7 +321,7 @@ curl -o ~/.claude/skills/agent-recall/SKILL.md \
294
321
 
295
322
  ## 智能体使用流程
296
323
 
297
- ### 会话开始
324
+ ### 会话开始 (`/arstart`)
298
325
  ```
299
326
  1. recall_insight(context="当前任务描述") → 跨项目相关洞察
300
327
  2. palace_walk(depth="active") → 项目上下文 + 感知摘要
@@ -430,6 +457,6 @@ curl -o ~/.claude/skills/agent-recall/SKILL.md \
430
457
 
431
458
  - Issues & 反馈:[GitHub Issues](https://github.com/Goldentrii/AgentRecall/issues)
432
459
  - 邮箱:tongwu0824@gmail.com
433
- - 协议规范:[docs/intelligent-distance-protocol.md](docs/intelligent-distance-protocol.md)
460
+ - 协议规范:[docs/intelligent-distance-protocol.md](https://github.com/Goldentrii/AgentRecall/blob/main/docs/intelligent-distance-protocol.md)
434
461
 
435
462
  MIT 许可证。
package/dist/types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Shared types, interfaces, and constants for agent-recall-mcp.
3
3
  */
4
- export declare const VERSION = "3.3.2";
4
+ export declare const VERSION = "3.3.3";
5
5
  export declare const JOURNAL_ROOT: string;
6
6
  export declare const LEGACY_ROOT: string;
7
7
  export declare const SECTION_HEADERS: Record<string, string>;
package/dist/types.js CHANGED
@@ -6,7 +6,7 @@ import * as os from "node:os";
6
6
  // ---------------------------------------------------------------------------
7
7
  // Constants
8
8
  // ---------------------------------------------------------------------------
9
- export const VERSION = "3.3.2";
9
+ export const VERSION = "3.3.3";
10
10
  export const JOURNAL_ROOT = process.env.AGENT_RECALL_ROOT || path.join(os.homedir(), ".agent-recall");
11
11
  export const LEGACY_ROOT = path.join(os.homedir(), ".claude", "projects");
12
12
  export const SECTION_HEADERS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-recall-mcp",
3
- "version": "3.3.2",
3
+ "version": "3.3.3",
4
4
  "description": "Memory Palace for AI agents — room-based knowledge organization with fan-out cross-referencing, salience scoring, and Obsidian-compatible output",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",