agent-recall-mcp 3.2.0 → 3.2.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 CHANGED
@@ -21,6 +21,33 @@
21
21
 
22
22
  ---
23
23
 
24
+ ## The Core Idea: Intelligent Distance
25
+
26
+ > *"The gap between human intelligence and AI intelligence is structural and permanent — not a temporary technology problem."*
27
+
28
+ Humans and AI think differently. Not better or worse — **differently**. Humans are born (embodied experience), machines are made (rules), AI is trained (statistical patterns). This gap — **Intelligent Distance** — means:
29
+
30
+ - When a human says "click all," the agent hears "click the main things"
31
+ - When a human says "done means identical," the agent thinks "close enough"
32
+ - When a human gives scattered instructions, the agent picks one and ignores the rest
33
+
34
+ **AgentRecall doesn't try to close this gap. It builds a protocol to navigate it.**
35
+
36
+ Every tool in AgentRecall serves this purpose:
37
+
38
+ | Gap | Tool | How it helps |
39
+ |-----|------|-------------|
40
+ | Agent forgets what human said yesterday | `journal_read` + `journal_cold_start` | Persistent memory across sessions |
41
+ | Agent misunderstands human intent | `alignment_check` | Records confidence + assumptions → human corrects before work starts |
42
+ | Agent contradicts a prior decision | `nudge` | Detects contradiction → surfaces it before damage is done |
43
+ | Agent says "done" but human disagrees | Think-Execute-Reflect loop | Structured quality scoring with COUNTS, not feelings |
44
+ | Agent builds from imagination, not data | `journal_state` (JSON) | Transfers structured state agent-to-agent — no prose interpretation |
45
+ | Agent repeats the same mistake | Failures section + `context_synthesize` | Patterns detected across sessions → promoted to permanent memory |
46
+
47
+ **Memory solves forgetting. AgentRecall solves misunderstanding.**
48
+
49
+ ---
50
+
24
51
  ## Why AgentRecall?
25
52
 
26
53
  | Problem | How AgentRecall Solves It |
@@ -304,11 +331,19 @@ claude mcp add agent-recall -- npx -y agent-recall-mcp
304
331
 
305
332
  ---
306
333
 
307
- ## 核心理念
334
+ ## 核心理念:智能距离(Intelligent Distance)
308
335
 
309
- **记忆解决遗忘,AgentRecall 解决误解。**
336
+ > *「人类智能与 AI 智能之间的差距是结构性的、永久的 — 不是一个临时的技术问题。」*
310
337
 
311
- 人类和 AI 之间的理解差距是结构性的 — 人类说话前后矛盾、碎片化、含糊不清;AI 则以完美的自信构建错误的东西。AgentRecall 通过对齐检测、矛盾提醒和跨会话合成来弥合这个「智能距离」。
338
+ 人类是「生出来的」(具身经验)、机器是「造出来的」(规则驱动)、AI 是「训练出来的」(统计共现)。三种不同的认知基底,产生三种不同的理解方式。这个差距就是**智能距离**。
339
+
340
+ AgentRecall 不试图缩小这个差距,而是构建一个**协议**来最小化信息损失:
341
+ - `alignment_check` — 在开始工作前记录理解和假设,让人类纠正
342
+ - `nudge` — 检测到矛盾时主动提问,而不是默默构建错误的东西
343
+ - Think-Execute-Reflect — 用数字而非感觉评估质量(「建了 11 页 35 个标签」而非「做得不错」)
344
+ - `journal_state` (JSON) — agent 间用结构化数据交接,不靠散文解析
345
+
346
+ **记忆解决遗忘,AgentRecall 解决误解。**
312
347
 
313
348
  ---
314
349
 
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ const execFileAsync = promisify(execFile);
11
11
  // ---------------------------------------------------------------------------
12
12
  // Constants
13
13
  // ---------------------------------------------------------------------------
14
- const VERSION = "3.2.0";
14
+ const VERSION = "3.2.1";
15
15
  const JOURNAL_ROOT = process.env.AGENT_RECALL_ROOT ||
16
16
  path.join(os.homedir(), ".agent-recall");
17
17
  const LEGACY_ROOT = path.join(os.homedir(), ".claude", "projects");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-recall-mcp",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "AI session memory with Think-Execute-Reflect quality loops — give your agent a brain that survives every session",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",