@modusensus/dsh-mneme 0.6.9 → 0.6.11

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.
Files changed (139) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +469 -219
  3. package/{dsh-mneme/cordis.patch.yml → cordis.patch.yml} +15 -15
  4. package/{dsh-mneme/src → lib}/api.js +783 -783
  5. package/{dsh-mneme/lib → lib}/client.js +1754 -1757
  6. package/{dsh-mneme/src → lib}/commands.js +64 -64
  7. package/{dsh-mneme/lib → lib}/config.js +298 -298
  8. package/{dsh-mneme/lib → lib}/dream/clustering.js +118 -118
  9. package/{dsh-mneme/lib → lib}/dream/decisions.js +488 -488
  10. package/{dsh-mneme/lib → lib}/dream/sleep.js +561 -561
  11. package/{dsh-mneme/src → lib}/dream/tag-extractor.js +156 -156
  12. package/{dsh-mneme/lib → lib}/dream.js +958 -958
  13. package/{dsh-mneme/src → lib}/embedding.js +154 -154
  14. package/{dsh-mneme/src → lib}/entities/extractor.js +242 -242
  15. package/{dsh-mneme/lib → lib}/hot-memory.js +53 -53
  16. package/{dsh-mneme/lib → lib}/index.js +361 -361
  17. package/{dsh-mneme/src → lib}/inject.js +208 -208
  18. package/{dsh-mneme/lib → lib}/local-embedder.js +282 -282
  19. package/{dsh-mneme/lib → lib}/mirror.js +170 -170
  20. package/{dsh-mneme/lib → lib}/parser/tag.js +59 -59
  21. package/{dsh-mneme/lib → lib}/parser/wiki-link.js +38 -38
  22. package/{dsh-mneme/src → lib}/quality-filter.js +123 -123
  23. package/{dsh-mneme/lib → lib}/reranker.js +218 -218
  24. package/{dsh-mneme/src → lib}/search/adaptive.js +22 -22
  25. package/{dsh-mneme/src → lib}/search/bm25.js +96 -96
  26. package/{dsh-mneme/src → lib}/search/tag-boost.js +61 -61
  27. package/{dsh-mneme/src → lib}/service.js +1726 -1726
  28. package/{dsh-mneme/lib → lib}/settings.js +172 -172
  29. package/{dsh-mneme/src → lib}/store.js +2238 -2238
  30. package/{dsh-mneme/src → lib}/summarize.js +236 -236
  31. package/{dsh-mneme/src → lib}/tools.js +452 -290
  32. package/{dsh-mneme/lib → lib}/vector-index.js +116 -116
  33. package/package.json +40 -18
  34. package/{dsh-mneme/scripts → scripts}/benchmark-embed.js +201 -201
  35. package/{dsh-mneme/scripts → scripts}/benchmark-recall.js +133 -133
  36. package/{dsh-mneme/scripts → scripts}/benchmark-rerank.js +166 -166
  37. package/{dsh-mneme/scripts → scripts}/e2e-dsh.js +218 -218
  38. package/{dsh-mneme/scripts → scripts}/stress-dsh.js +255 -255
  39. package/{dsh-mneme/scripts → scripts}/sync-lib.js +52 -52
  40. package/{dsh-mneme/lib → src}/api.js +783 -783
  41. package/{dsh-mneme/lib → src}/commands.js +64 -64
  42. package/{dsh-mneme/src → src}/config.js +298 -298
  43. package/{dsh-mneme/src → src}/dream/clustering.js +118 -118
  44. package/{dsh-mneme/src → src}/dream/decisions.js +488 -488
  45. package/{dsh-mneme/src → src}/dream/sleep.js +561 -561
  46. package/{dsh-mneme/lib → src}/dream/tag-extractor.js +156 -156
  47. package/{dsh-mneme/src → src}/dream.js +958 -958
  48. package/{dsh-mneme/lib → src}/embedding.js +154 -154
  49. package/{dsh-mneme/lib → src}/entities/extractor.js +242 -242
  50. package/{dsh-mneme/src → src}/hot-memory.js +53 -53
  51. package/{dsh-mneme/src → src}/index.js +361 -361
  52. package/{dsh-mneme/lib → src}/inject.js +208 -208
  53. package/{dsh-mneme/src → src}/local-embedder.js +282 -282
  54. package/{dsh-mneme/src → src}/mirror.js +170 -170
  55. package/{dsh-mneme/src → src}/parser/tag.js +59 -59
  56. package/{dsh-mneme/src → src}/parser/wiki-link.js +38 -38
  57. package/{dsh-mneme/lib → src}/quality-filter.js +123 -123
  58. package/{dsh-mneme/src → src}/reranker.js +218 -218
  59. package/{dsh-mneme/lib → src}/search/adaptive.js +22 -22
  60. package/{dsh-mneme/lib → src}/search/bm25.js +96 -96
  61. package/{dsh-mneme/lib → src}/search/tag-boost.js +61 -61
  62. package/{dsh-mneme/lib → src}/service.js +1726 -1726
  63. package/{dsh-mneme/src → src}/settings.js +172 -172
  64. package/{dsh-mneme/lib → src}/store.js +2238 -2238
  65. package/{dsh-mneme/lib → src}/summarize.js +236 -236
  66. package/{dsh-mneme/lib → src}/tools.js +452 -290
  67. package/{dsh-mneme/src → src}/vector-index.js +116 -116
  68. package/{dsh-mneme/test → test}/api.test.js +594 -594
  69. package/{dsh-mneme/test → test}/audit.test.js +448 -448
  70. package/{dsh-mneme/test → test}/benchmark.test.js +35 -35
  71. package/{dsh-mneme/test → test}/boundary-v0625.test.js +82 -82
  72. package/{dsh-mneme/test → test}/client.test.js +368 -368
  73. package/{dsh-mneme/test → test}/clustering.test.js +100 -100
  74. package/{dsh-mneme/test → test}/commands.test.js +69 -69
  75. package/{dsh-mneme/test → test}/config.test.js +50 -50
  76. package/{dsh-mneme/test → test}/conflict-freeze.test.js +290 -290
  77. package/{dsh-mneme/test → test}/directory.test.js +134 -134
  78. package/{dsh-mneme/test → test}/dream.test.js +1060 -1060
  79. package/{dsh-mneme/test → test}/entities.test.js +522 -522
  80. package/{dsh-mneme/test → test}/epistemic.test.js +298 -298
  81. package/{dsh-mneme/test → test}/fnew-0112.test.js +311 -311
  82. package/{dsh-mneme/test → test}/fnew-03.test.js +422 -422
  83. package/{dsh-mneme/test → test}/graph-api.test.js +175 -175
  84. package/{dsh-mneme/test → test}/helpers/dream-mock.js +82 -82
  85. package/{dsh-mneme/test → test}/hot-memory.test.js +174 -174
  86. package/{dsh-mneme/test → test}/inject.test.js +103 -103
  87. package/{dsh-mneme/test → test}/llm-audit.test.js +279 -279
  88. package/{dsh-mneme/test → test}/local-embedder.test.js +227 -227
  89. package/{dsh-mneme/test → test}/mirror-dirty.test.js +424 -424
  90. package/{dsh-mneme/test → test}/mirror-edit-digest.test.js +187 -187
  91. package/{dsh-mneme/test → test}/mirror-generation.test.js +499 -499
  92. package/{dsh-mneme/test → test}/mirror.test.js +249 -249
  93. package/{dsh-mneme/test → test}/normalize-decisions.test.js +120 -120
  94. package/{dsh-mneme/test → test}/peer-blockers.test.js +190 -190
  95. package/{dsh-mneme/test → test}/policy-epoch.test.js +259 -259
  96. package/{dsh-mneme/test → test}/provenance.test.js +103 -103
  97. package/{dsh-mneme/test → test}/quality-filter.test.js +118 -118
  98. package/{dsh-mneme/test → test}/reasoning-effort.test.js +199 -199
  99. package/{dsh-mneme/test → test}/recall-evals.test.js +235 -235
  100. package/{dsh-mneme/test → test}/recall-layer.test.js +315 -315
  101. package/{dsh-mneme/test → test}/receipt-chain.test.js +451 -451
  102. package/{dsh-mneme/test → test}/reflection.test.js +226 -226
  103. package/{dsh-mneme/test → test}/reranker.test.js +240 -240
  104. package/{dsh-mneme/test → test}/search-fusion.test.js +90 -90
  105. package/{dsh-mneme/test → test}/semantic.test.js +124 -124
  106. package/{dsh-mneme/test → test}/service-search.test.js +199 -199
  107. package/{dsh-mneme/test → test}/service.test.js +435 -435
  108. package/{dsh-mneme/test → test}/settings.test.js +118 -118
  109. package/{dsh-mneme/test → test}/sleep.test.js +365 -365
  110. package/{dsh-mneme/test → test}/store.test.js +436 -436
  111. package/{dsh-mneme/test → test}/stress.test.js +209 -209
  112. package/{dsh-mneme/test → test}/summarize.test.js +191 -191
  113. package/{dsh-mneme/test → test}/tag-boost.test.js +125 -125
  114. package/{dsh-mneme/test → test}/tag.test.js +312 -312
  115. package/{dsh-mneme/test → test}/tools.test.js +541 -285
  116. package/{dsh-mneme/test → test}/vector-index.test.js +221 -221
  117. package/{dsh-mneme/test → test}/wiki-link.test.js +332 -332
  118. package/.github/workflows/test.yml +0 -32
  119. package/.release-notes-v0.6.9.md +0 -13
  120. package/CHANGELOG.md +0 -89
  121. package/SECURITY.md +0 -544
  122. package/docs/devlog/2026-08-14-dsh-mneme-dev-log.md +0 -247
  123. package/docs/devlog/2026-08-15-dsh-mneme-audit-stress-dev-log.md +0 -145
  124. package/docs/devlog/2026-08-15-dsh-mneme-pipeline-dev-log.md +0 -56
  125. package/docs/devlog/2026-08-15-dsh-mneme-reflection-dev-log.md +0 -77
  126. package/docs/devlog/2026-08-15-dsh-mneme-review-fixes-dev-log.md +0 -64
  127. package/docs/devlog/2026-08-15-dsh-mneme-semantic-dev-log.md +0 -90
  128. package/dsh-mneme/CHANGELOG.md +0 -248
  129. package/dsh-mneme/LICENSE +0 -21
  130. package/dsh-mneme/README.md +0 -465
  131. package/dsh-mneme/docs/AGENT_MEMORY_RESEARCH.md +0 -183
  132. package/dsh-mneme/docs/ENTITIES.md +0 -245
  133. package/dsh-mneme/docs/LOCAL_MODEL.md +0 -141
  134. package/dsh-mneme/docs/MIGRATION.md +0 -127
  135. package/dsh-mneme/docs/SEMANTIC.md +0 -256
  136. package/dsh-mneme/docs/SLEEP.md +0 -163
  137. package/dsh-mneme/package-lock.json +0 -1936
  138. package/dsh-mneme/package.json +0 -80
  139. package//346/250/252/345/271/205.png +0 -0
@@ -1,448 +1,448 @@
1
- import test from "node:test";
2
- import assert from "node:assert/strict";
3
- import { mkdtempSync } from "node:fs";
4
- import { tmpdir } from "node:os";
5
- import { join } from "node:path";
6
- import {
7
- createDreamScheduler,
8
- hashSnapshot,
9
- hashDecisionInput,
10
- buildReceipt,
11
- parseReceipt,
12
- buildOutcome
13
- } from "../src/dream.js";
14
- import { applyDecisions } from "../src/dream/decisions.js";
15
- import { createStore } from "../src/store.js";
16
- import { createService } from "../src/service.js";
17
-
18
- // ---------------------------------------------------------------- helpers
19
-
20
- /**
21
- * Minimal DSH-like ctx whose LLM distinguishes the two dream calls by the user
22
- * prompt shape: consolidation prompts start with "id=…", summary prompts with
23
- * "- title: content". `onConsolidation` receives the raw list text and returns
24
- * a decisions JSON string; `summaryText` (or a throw) drives the summary call.
25
- */
26
- function mockCtx({ onConsolidation, summaryText = "记忆库总览:用户偏好中文。" } = {}) {
27
- return {
28
- logger: { warn: () => {} },
29
- agentDefaultModel: { currentSelection: () => ({ provider: "mock", model: "mock-model" }) },
30
- llm: {
31
- async *stream(options) {
32
- const userText = options.messages.find((m) => m.role === "user")?.content?.[0]?.text ?? "";
33
- if (userText.startsWith("id=")) {
34
- yield { type: "block-start", index: 0, blockType: "text" };
35
- yield { type: "text-delta", index: 0, text: onConsolidation ? onConsolidation(userText) : "[]" };
36
- yield { type: "block-end", index: 0, block: { type: "text" } };
37
- yield { type: "finish", reason: { kind: "stop" } };
38
- return;
39
- }
40
- if (typeof summaryText === "string") {
41
- yield { type: "text-delta", index: 0, text: summaryText };
42
- yield { type: "finish", reason: { kind: "stop" } };
43
- } else {
44
- throw summaryText instanceof Error ? summaryText : new Error(String(summaryText));
45
- }
46
- }
47
- }
48
- };
49
- }
50
-
51
- function setup() {
52
- const store = createStore(":memory:");
53
- const service = createService({ store, mirror: null, config: {} });
54
- const dream = createDreamScheduler({ onRun: () => Promise.resolve({ ok: true, skipped: true }) });
55
- return { store, service, dream };
56
- }
57
-
58
- // ---------------------------------------------------------------- audit rows
59
-
60
- test("successful runDream writes an audit row with receipt, decisions and outcome", async () => {
61
- const { store, service, dream } = setup();
62
- const { memory: a } = service.saveWithDedupe({ type: "project", title: "插件", content: "旧", importance: 3 });
63
- const { memory: b } = service.saveWithDedupe({ type: "project", title: "插件2", content: "新细节", importance: 4 });
64
- const ctx = mockCtx({
65
- onConsolidation: () => JSON.stringify([
66
- { action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "插件总览", content: "合并内容", importance: 4 }
67
- ])
68
- });
69
- const result = await dream.runDream(ctx, service, {});
70
- assert.equal(result.ok, true);
71
- assert.equal(result.applied, 1);
72
-
73
- const runs = store.listDreamRuns();
74
- assert.equal(runs.length, 1);
75
- const run = runs[0];
76
- assert.equal(run.status, "ok");
77
- assert.equal(run.input_count, 2);
78
- assert.equal(run.applied, 1);
79
- assert.equal(run.summary_stored, true);
80
- assert.equal(run.provider, "mock");
81
- assert.match(run.receipt, /^dsh-mneme:run:/);
82
-
83
- // receipt round-trips and correlates with the audit row
84
- const parsed = parseReceipt(run.receipt);
85
- assert.deepEqual(parsed, {
86
- runId: run.id,
87
- status: "ok",
88
- snapshotHash: run.snapshot_hash.slice(0, 12),
89
- inputCount: 2,
90
- applied: 1,
91
- summaryStored: true
92
- });
93
-
94
- // per-id outcome is derived correctly
95
- assert.equal(run.outcome.byId[a.id], "merge-archived");
96
- assert.equal(run.outcome.byId[b.id], "merge-keep");
97
- // raw decisions are stored for replay
98
- assert.equal(run.decisions.length, 1);
99
- assert.equal(run.decisions[0].action, "merge");
100
- // full input snapshot is persisted and its digest matches — the audit row
101
- // alone can rebuild the exact arbitration input offline
102
- assert.equal(run.input.length, 2);
103
- assert.deepEqual(run.input.map((m) => m.title).sort(), ["插件", "插件2"]);
104
- assert.equal(hashSnapshot(run.input), run.snapshot_hash, "input snapshot digest matches stored snapshot_hash");
105
- store.close();
106
- });
107
-
108
- // ---------------------------------------------------------------- per-record receipt chain
109
-
110
- test("hashDecisionInput is deterministic, order-independent and content-addressed", () => {
111
- const mk = (id, title, content = "c") => ({ id, title, content, importance: 3 });
112
- const a = mk("a", "t1");
113
- const b = mk("b", "t2");
114
- assert.equal(hashDecisionInput([a, b]), hashDecisionInput([b, a]), "order independent");
115
- assert.equal(hashDecisionInput([a, b]), hashDecisionInput([{ ...a }, { ...b }]), "clone independent");
116
- assert.notEqual(hashDecisionInput([a, b]), hashDecisionInput([a, { ...b, content: "changed" }]), "content change flips digest");
117
- assert.match(hashDecisionInput([]), /^[0-9a-f]{64}$/, "empty input hashes stably");
118
- });
119
-
120
- test("runDream writes one per-record receipt per committed merge/conflict/update", async () => {
121
- const { store, service, dream } = setup();
122
- const { memory: a } = service.saveWithDedupe({ type: "project", title: "插件", content: "旧", importance: 3 });
123
- const { memory: b } = service.saveWithDedupe({ type: "project", title: "插件2", content: "新细节", importance: 4 });
124
- const { memory: w } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月20日", importance: 4 });
125
- const { memory: l } = service.saveWithDedupe({ type: "decision", title: "截止旧", content: "8月15日", importance: 4 });
126
- const { memory: u } = service.saveWithDedupe({ type: "preference", title: "语言", content: "喜欢 Python" });
127
- const ctx = mockCtx({
128
- onConsolidation: () => JSON.stringify([
129
- { action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "插件总览", content: "合并内容", importance: 4 },
130
- { action: "conflict", winner: w.id, loser: l.id, reason: "更新" },
131
- { action: "update", ids: [u.id], content: "喜欢 Rust" }
132
- ])
133
- });
134
- // Backdate the update target so the update age guard (minAgeHours) sees a
135
- // settled record rather than a sub-second-old one — store.nowIso() can drift
136
- // a few ms ahead of the wall clock when seeds land in the same millisecond.
137
- store.db.prepare("UPDATE memories SET created_at = ? WHERE id = ?")
138
- .run(new Date(Date.now() - 3600000).toISOString(), u.id);
139
- const result = await dream.runDream(ctx, service, { reflectionUpdateMinAgeHours: 0, policyEpoch: 3 });
140
- assert.equal(result.status, "ok");
141
-
142
- const receipts = store.listReceipts({ run_id: result.runId });
143
- assert.equal(receipts.length, 3, "one receipt per mutable verdict, none for keep/archive");
144
-
145
- const byKind = Object.fromEntries(receipts.map((r) => [r.kind, r]));
146
- assert.deepEqual(Object.keys(byKind).sort(), ["conflict", "merge", "update"]);
147
-
148
- const merge = byKind.merge;
149
- assert.equal(merge.run_id, result.runId);
150
- assert.equal(merge.record_id, b.id, "merge receipt keyed on keepSource");
151
- assert.equal(merge.keep_source, b.id);
152
- assert.deepEqual(merge.sources, [a.id, b.id], "merge sources = full id array");
153
- assert.equal(merge.count_before, 2);
154
- assert.equal(merge.count_after, 1);
155
- assert.equal(merge.verdict, "live");
156
- assert.equal(merge.policy_epoch, 3, "policy epoch stamped from config");
157
- assert.equal(merge.input_digest, hashDecisionInput([a, b]), "digest over the pre-apply basis memories");
158
- assert.match(merge.created_at, /^2\d{3}-/, "created_at is an ISO timestamp");
159
-
160
- const conflict = byKind.conflict;
161
- assert.equal(conflict.record_id, w.id, "conflict receipt keyed on winner");
162
- assert.equal(conflict.winner_id, w.id);
163
- assert.equal(conflict.loser_id, l.id);
164
- assert.equal(conflict.keep_source, undefined, "no keep_source on a conflict");
165
- assert.equal(conflict.count_before, 2);
166
- assert.equal(conflict.count_after, 1);
167
- assert.equal(conflict.input_digest, hashDecisionInput([w, l]), "digest over winner+loser");
168
-
169
- const update = byKind.update;
170
- assert.equal(update.record_id, u.id);
171
- assert.equal(update.winner_id, undefined, "no winner/loser on an update");
172
- assert.equal(update.count_before, 1);
173
- assert.equal(update.count_after, 1);
174
- assert.equal(update.input_digest, hashDecisionInput([u]), "digest over the pre-update target");
175
- store.close();
176
- });
177
-
178
- test("a throwing per-record receipt writer never breaks the run (bookkeeping fails safe)", async () => {
179
- const { store, service, dream } = setup();
180
- const { memory: a } = service.saveWithDedupe({ type: "project", title: "甲", content: "A", importance: 3 });
181
- const { memory: b } = service.saveWithDedupe({ type: "project", title: "乙", content: "B", importance: 4 });
182
- service.saveReceipt = () => { throw new Error("receipt store boom"); };
183
- const ctx = mockCtx({
184
- onConsolidation: () => JSON.stringify([
185
- { action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "甲乙", content: "合并", importance: 4 }
186
- ])
187
- });
188
- const result = await dream.runDream(ctx, service, {});
189
- assert.equal(result.ok, true, "consolidation unaffected by receipt failure");
190
- assert.equal(result.applied, 1);
191
- const run = store.listDreamRuns()[0];
192
- assert.equal(run.status, "ok", "audit row still written");
193
- assert.equal(store.getById(b.id).title, "甲乙", "merge still applied");
194
- assert.equal(store.getById(a.id).archived, true, "merge source still archived");
195
- assert.equal(store.listReceipts().length, 0, "no receipts persisted");
196
- store.close();
197
- });
198
-
199
- test("failed runDream records status failed with the error", async () => {
200
- const { store, service, dream } = setup();
201
- service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
202
- const ctx = mockCtx({ onConsolidation: () => "抱歉,我无法处理这个任务" });
203
- const result = await dream.runDream(ctx, service, {});
204
- assert.equal(result.ok, false);
205
- assert.match(result.error, /no json array/);
206
-
207
- const run = store.listDreamRuns()[0];
208
- assert.equal(run.status, "failed");
209
- assert.equal(run.decisions, undefined);
210
- assert.match(run.error, /no json array/);
211
- const parsed = parseReceipt(run.receipt);
212
- assert.equal(parsed.status, "failed");
213
- store.close();
214
- });
215
-
216
- test("summary failure still records the applied decisions for replay", async () => {
217
- const { store, service, dream } = setup();
218
- const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
219
- const ctx = mockCtx({
220
- onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]),
221
- summaryText: new Error("summary boom")
222
- });
223
- const result = await dream.runDream(ctx, service, {});
224
- assert.equal(result.ok, false);
225
- assert.equal(result.error, "llm failed");
226
-
227
- const run = store.listDreamRuns()[0];
228
- assert.equal(run.status, "failed");
229
- assert.equal(run.decisions.length, 1, "decisions captured despite summary failure");
230
- assert.equal(run.outcome.byId[m.id], "keep");
231
- store.close();
232
- });
233
-
234
- test("audit rows persist across store reopen (file-backed)", () => {
235
- const dir = mkdtempSync(join(tmpdir(), "dsh-mneme-audit-"));
236
- const path = join(dir, "memory.db");
237
- const s1 = createStore(path);
238
- s1.saveDreamRun({
239
- id: "run-1", status: "ok", snapshot_hash: "abc", input_count: 1,
240
- decisions: [{ action: "keep", ids: ["x"] }],
241
- outcome: { byId: { x: "keep" } }, applied: 0, summary_stored: false,
242
- receipt: "dsh-mneme:run:run-1:ok:abc:1:0:0"
243
- });
244
- s1.close();
245
- const s2 = createStore(path);
246
- const run = s2.getDreamRun("run-1");
247
- assert.equal(run.status, "ok");
248
- assert.equal(run.decisions[0].action, "keep");
249
- s2.close();
250
- });
251
-
252
- // ---------------------------------------------------------------- hashing & receipts
253
-
254
- test("hashSnapshot is deterministic and order-independent", () => {
255
- const mk = (id, title, content = "c") => ({ id, type: "project", title, content, importance: 3, updated_at: "2026-01-01T00:00:00.000Z" });
256
- const a = mk("a", "t1");
257
- const b = mk("b", "t2");
258
- assert.equal(hashSnapshot([a, b]), hashSnapshot([b, a]), "order independent");
259
- assert.equal(hashSnapshot([a, b]), hashSnapshot([{ ...a }, { ...b }]), "field order / clone independent");
260
- assert.notEqual(hashSnapshot([a, b]), hashSnapshot([a, { ...b, content: "changed" }]), "content change flips hash");
261
- });
262
-
263
- test("receipt round-trips and malformed receipts parse to undefined", () => {
264
- const receipt = buildReceipt({ runId: "r1", status: "ok", snapshotHash: "0123456789abcdef", inputCount: 3, applied: 2, summaryStored: true });
265
- assert.deepEqual(parseReceipt(receipt), { runId: "r1", status: "ok", snapshotHash: "0123456789ab", inputCount: 3, applied: 2, summaryStored: true });
266
- for (const bad of ["nope", "", "dsh-mneme:run:r1", "dsh-mneme:run:r1:weird:abc:1:0:0", "dsh-mneme:run:r1:ok:abc:nan:0:0"]) {
267
- assert.equal(parseReceipt(bad), undefined, `rejects ${JSON.stringify(bad)}`);
268
- }
269
- });
270
-
271
- test("buildOutcome maps every decision action to per-id disposition", () => {
272
- const outcome = buildOutcome([
273
- { action: "keep", ids: ["k"] },
274
- { action: "archive", ids: ["a1", "a2"] },
275
- { action: "merge", ids: ["m1", "m2"], keepSource: "m1" },
276
- { action: "conflict", winner: "w", loser: "l" }
277
- ]);
278
- assert.equal(outcome.byId.k, "keep");
279
- assert.equal(outcome.byId.a1, "archived");
280
- assert.equal(outcome.byId.a2, "archived");
281
- assert.equal(outcome.byId.m1, "merge-keep");
282
- assert.equal(outcome.byId.m2, "merge-archived");
283
- assert.equal(outcome.byId.w, "conflict-winner");
284
- assert.equal(outcome.byId.l, "conflict-archived");
285
- });
286
-
287
- // ---------------------------------------------------------------- replayability
288
-
289
- test("replaying a recorded decision list is idempotent", async () => {
290
- const { store, service, dream } = setup();
291
- const { memory: a } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月15日", importance: 4 });
292
- const { memory: b } = service.saveWithDedupe({ type: "decision", title: "截止新", content: "8月20日", importance: 5 });
293
- const ctx = mockCtx({
294
- onConsolidation: () => JSON.stringify([{ action: "conflict", winner: b.id, loser: a.id, reason: "更新" }])
295
- });
296
- const result = await dream.runDream(ctx, service, {});
297
- assert.equal(result.ok, true);
298
-
299
- const run = store.getDreamRun(result.runId);
300
- assert.equal(run.decisions[0].winner, b.id);
301
- assert.equal(run.outcome.byId[a.id], "conflict-archived");
302
- assert.equal(run.outcome.byId[b.id], "conflict-winner");
303
-
304
- // store already reflects the run
305
- assert.equal(store.getById(a.id).archived, true);
306
- assert.ok(store.getById(b.id).content.includes("已否决旧信息"), "provenance note appended");
307
-
308
- // replay the exact recorded decision list → no-op (idempotent)
309
- const replayed = applyDecisions(run.decisions, service);
310
- assert.equal(replayed.applied, 0, "already-applied decisions re-apply nothing");
311
- assert.equal(store.getById(a.id).archived, true);
312
- assert.equal(store.getById(b.id).content, store.getById(b.id).content);
313
- store.close();
314
- });
315
-
316
- test("re-applying a decision many times has no cumulative side effects", async () => {
317
- const { store, service, dream } = setup();
318
- const { memory: a } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月15日", importance: 4 });
319
- const { memory: b } = service.saveWithDedupe({ type: "decision", title: "截止新", content: "8月20日", importance: 5 });
320
- const { memory: m1 } = service.saveWithDedupe({ type: "project", title: "甲", content: "旧甲", importance: 3 });
321
- const { memory: m2 } = service.saveWithDedupe({ type: "project", title: "乙", content: "旧乙", importance: 4 });
322
- const decisions = [
323
- { action: "conflict", winner: b.id, loser: a.id, reason: "更新" },
324
- { action: "merge", ids: [m1.id, m2.id], keepSource: m2.id, title: "甲乙", content: "合并", importance: 4 }
325
- ];
326
- // apply 3 times (e.g. concurrent/replayed dream runs)
327
- for (let i = 0; i < 3; i++) applyDecisions(decisions, service);
328
-
329
- const winner = store.getById(b.id);
330
- assert.equal(winner.content.split("已否决旧信息").length - 1, 1, "provenance note appended exactly once");
331
- assert.equal(store.getById(a.id).archived, true);
332
- assert.equal(store.getById(m2.id).title, "甲乙", "keeper merged");
333
- assert.equal(store.getById(m1.id).archived, true, "merge source archived once");
334
- store.close();
335
- });
336
-
337
- // ---------------------------------------------------------------- reconcile (item ②)
338
-
339
- test("runDream records status reconcile, not a fake ok, when a target changed during the run", async () => {
340
- const { store, service, dream } = setup();
341
- const { memory: a } = service.saveWithDedupe({ type: "project", title: "旧", content: "A", importance: 3 });
342
- const { memory: b } = service.saveWithDedupe({ type: "project", title: "新", content: "B", importance: 4 });
343
- // The "LLM call" mutates a target while producing the decision list —
344
- // simulating a concurrent human/agent edit inside the run window.
345
- const ctx = mockCtx({
346
- onConsolidation: () => {
347
- service.update(b.id, { content: "并发编辑" });
348
- return JSON.stringify([
349
- { action: "merge", ids: [a.id, b.id], title: "合并", content: "合并内容", importance: 4, keepSource: b.id }
350
- ]);
351
- }
352
- });
353
- const result = await dream.runDream(ctx, service, {});
354
- assert.equal(result.ok, false, "partial commit is not ok");
355
- assert.equal(result.status, "reconcile", "explicit reconcile status");
356
- assert.equal(result.applied, 0, "conflicting merge not applied");
357
-
358
- const run = store.listDreamRuns()[0];
359
- assert.equal(run.status, "reconcile", "audit row records reconcile");
360
- assert.equal(run.applied, 0);
361
- const parsed = parseReceipt(run.receipt);
362
- assert.equal(parsed.status, "reconcile", "receipt records reconcile, never ok");
363
- assert.equal(parsed.applied, 0);
364
- // outcome is derived from what actually committed: the merge is NOT claimed
365
- assert.equal(run.outcome.byId[b.id], undefined, "keeper not claimed as merge-keep");
366
- assert.equal(run.outcome.byId[a.id], undefined, "source not claimed as merge-archived");
367
- assert.equal(run.outcome.conflicts.length, 1, "conflict recorded in the audit row");
368
- // the concurrent edit survived
369
- assert.equal(store.getById(b.id).content, "并发编辑");
370
- store.close();
371
- });
372
-
373
- test("buildOutcome over actually-committed sub-steps never claims a rolled-back merge", () => {
374
- const committed = [
375
- { action: "keep", ids: ["k"] },
376
- { action: "merge", ids: ["m1", "m2"], keepSource: "m1", title: "t", content: "c" }
377
- ];
378
- const outcome = buildOutcome(committed);
379
- assert.equal(outcome.byId.m1, "merge-keep");
380
- assert.equal(outcome.byId.m2, "merge-archived");
381
- assert.equal(outcome.byId.k, "keep");
382
- });
383
-
384
- // ---------------------------------------------------------------- noop & degraded (F-03)
385
-
386
- test("runDream records status noop when all decisions are keep and summary is empty", async () => {
387
- const { store, service, dream } = setup();
388
- const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
389
- const ctx = mockCtx({
390
- onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]),
391
- summaryText: ""
392
- });
393
- const result = await dream.runDream(ctx, service, {});
394
- assert.equal(result.ok, false, "no-change + empty summary is not a success");
395
- assert.equal(result.status, "noop", "explicit noop status");
396
- assert.equal(result.applied, 0);
397
- assert.equal(result.summary, false);
398
-
399
- const run = store.listDreamRuns()[0];
400
- assert.equal(run.status, "noop", "audit row records noop, never ok");
401
- assert.equal(run.applied, 0);
402
- assert.equal(run.summary_stored, false);
403
- const parsed = parseReceipt(run.receipt);
404
- assert.equal(parsed.status, "noop", "receipt records noop");
405
- assert.equal(parsed.applied, 0);
406
- assert.equal(parsed.summaryStored, false);
407
- assert.equal(run.outcome.byId[m.id], "keep", "keep disposition still recorded for replay");
408
- store.close();
409
- });
410
-
411
- test("runDream records status ok when all decisions are keep but a summary was stored", async () => {
412
- const { store, service, dream } = setup();
413
- const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
414
- const ctx = mockCtx({ onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]) });
415
- const result = await dream.runDream(ctx, service, {});
416
- assert.equal(result.status, "ok", "summary refresh is substantive output");
417
- assert.equal(result.ok, true);
418
- assert.equal(result.applied, 0);
419
- assert.equal(result.summary, true);
420
- const run = store.listDreamRuns()[0];
421
- assert.equal(run.status, "ok");
422
- assert.equal(parseReceipt(run.receipt).status, "ok");
423
- assert.equal(parseReceipt(run.receipt).summaryStored, true);
424
- store.close();
425
- });
426
-
427
- test("runDream records status degraded when changes land but the summary is empty", async () => {
428
- const { store, service, dream } = setup();
429
- const { memory: a } = service.saveWithDedupe({ type: "project", title: "旧", content: "A", importance: 3 });
430
- const { memory: b } = service.saveWithDedupe({ type: "project", title: "新", content: "B", importance: 4 });
431
- const ctx = mockCtx({
432
- onConsolidation: () => JSON.stringify([
433
- { action: "merge", ids: [a.id, b.id], title: "合并", content: "合并内容", importance: 4, keepSource: b.id }
434
- ]),
435
- summaryText: ""
436
- });
437
- const result = await dream.runDream(ctx, service, {});
438
- assert.equal(result.status, "degraded", "real changes without a summary are not a clean ok");
439
- assert.equal(result.ok, true, "consolidation landed so the baseline may advance");
440
- assert.equal(result.applied, 1);
441
- assert.equal(result.summary, false, "summary honestly reported missing");
442
- const run = store.listDreamRuns()[0];
443
- assert.equal(run.status, "degraded", "audit row records degraded");
444
- assert.equal(run.summary_stored, false);
445
- assert.equal(parseReceipt(run.receipt).status, "degraded");
446
- assert.equal(parseReceipt(run.receipt).summaryStored, false);
447
- store.close();
448
- });
1
+ import test from "node:test";
2
+ import assert from "node:assert/strict";
3
+ import { mkdtempSync } from "node:fs";
4
+ import { tmpdir } from "node:os";
5
+ import { join } from "node:path";
6
+ import {
7
+ createDreamScheduler,
8
+ hashSnapshot,
9
+ hashDecisionInput,
10
+ buildReceipt,
11
+ parseReceipt,
12
+ buildOutcome
13
+ } from "../src/dream.js";
14
+ import { applyDecisions } from "../src/dream/decisions.js";
15
+ import { createStore } from "../src/store.js";
16
+ import { createService } from "../src/service.js";
17
+
18
+ // ---------------------------------------------------------------- helpers
19
+
20
+ /**
21
+ * Minimal DSH-like ctx whose LLM distinguishes the two dream calls by the user
22
+ * prompt shape: consolidation prompts start with "id=…", summary prompts with
23
+ * "- title: content". `onConsolidation` receives the raw list text and returns
24
+ * a decisions JSON string; `summaryText` (or a throw) drives the summary call.
25
+ */
26
+ function mockCtx({ onConsolidation, summaryText = "记忆库总览:用户偏好中文。" } = {}) {
27
+ return {
28
+ logger: { warn: () => {} },
29
+ agentDefaultModel: { currentSelection: () => ({ provider: "mock", model: "mock-model" }) },
30
+ llm: {
31
+ async *stream(options) {
32
+ const userText = options.messages.find((m) => m.role === "user")?.content?.[0]?.text ?? "";
33
+ if (userText.startsWith("id=")) {
34
+ yield { type: "block-start", index: 0, blockType: "text" };
35
+ yield { type: "text-delta", index: 0, text: onConsolidation ? onConsolidation(userText) : "[]" };
36
+ yield { type: "block-end", index: 0, block: { type: "text" } };
37
+ yield { type: "finish", reason: { kind: "stop" } };
38
+ return;
39
+ }
40
+ if (typeof summaryText === "string") {
41
+ yield { type: "text-delta", index: 0, text: summaryText };
42
+ yield { type: "finish", reason: { kind: "stop" } };
43
+ } else {
44
+ throw summaryText instanceof Error ? summaryText : new Error(String(summaryText));
45
+ }
46
+ }
47
+ }
48
+ };
49
+ }
50
+
51
+ function setup() {
52
+ const store = createStore(":memory:");
53
+ const service = createService({ store, mirror: null, config: {} });
54
+ const dream = createDreamScheduler({ onRun: () => Promise.resolve({ ok: true, skipped: true }) });
55
+ return { store, service, dream };
56
+ }
57
+
58
+ // ---------------------------------------------------------------- audit rows
59
+
60
+ test("successful runDream writes an audit row with receipt, decisions and outcome", async () => {
61
+ const { store, service, dream } = setup();
62
+ const { memory: a } = service.saveWithDedupe({ type: "project", title: "插件", content: "旧", importance: 3 });
63
+ const { memory: b } = service.saveWithDedupe({ type: "project", title: "插件2", content: "新细节", importance: 4 });
64
+ const ctx = mockCtx({
65
+ onConsolidation: () => JSON.stringify([
66
+ { action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "插件总览", content: "合并内容", importance: 4 }
67
+ ])
68
+ });
69
+ const result = await dream.runDream(ctx, service, {});
70
+ assert.equal(result.ok, true);
71
+ assert.equal(result.applied, 1);
72
+
73
+ const runs = store.listDreamRuns();
74
+ assert.equal(runs.length, 1);
75
+ const run = runs[0];
76
+ assert.equal(run.status, "ok");
77
+ assert.equal(run.input_count, 2);
78
+ assert.equal(run.applied, 1);
79
+ assert.equal(run.summary_stored, true);
80
+ assert.equal(run.provider, "mock");
81
+ assert.match(run.receipt, /^dsh-mneme:run:/);
82
+
83
+ // receipt round-trips and correlates with the audit row
84
+ const parsed = parseReceipt(run.receipt);
85
+ assert.deepEqual(parsed, {
86
+ runId: run.id,
87
+ status: "ok",
88
+ snapshotHash: run.snapshot_hash.slice(0, 12),
89
+ inputCount: 2,
90
+ applied: 1,
91
+ summaryStored: true
92
+ });
93
+
94
+ // per-id outcome is derived correctly
95
+ assert.equal(run.outcome.byId[a.id], "merge-archived");
96
+ assert.equal(run.outcome.byId[b.id], "merge-keep");
97
+ // raw decisions are stored for replay
98
+ assert.equal(run.decisions.length, 1);
99
+ assert.equal(run.decisions[0].action, "merge");
100
+ // full input snapshot is persisted and its digest matches — the audit row
101
+ // alone can rebuild the exact arbitration input offline
102
+ assert.equal(run.input.length, 2);
103
+ assert.deepEqual(run.input.map((m) => m.title).sort(), ["插件", "插件2"]);
104
+ assert.equal(hashSnapshot(run.input), run.snapshot_hash, "input snapshot digest matches stored snapshot_hash");
105
+ store.close();
106
+ });
107
+
108
+ // ---------------------------------------------------------------- per-record receipt chain
109
+
110
+ test("hashDecisionInput is deterministic, order-independent and content-addressed", () => {
111
+ const mk = (id, title, content = "c") => ({ id, title, content, importance: 3 });
112
+ const a = mk("a", "t1");
113
+ const b = mk("b", "t2");
114
+ assert.equal(hashDecisionInput([a, b]), hashDecisionInput([b, a]), "order independent");
115
+ assert.equal(hashDecisionInput([a, b]), hashDecisionInput([{ ...a }, { ...b }]), "clone independent");
116
+ assert.notEqual(hashDecisionInput([a, b]), hashDecisionInput([a, { ...b, content: "changed" }]), "content change flips digest");
117
+ assert.match(hashDecisionInput([]), /^[0-9a-f]{64}$/, "empty input hashes stably");
118
+ });
119
+
120
+ test("runDream writes one per-record receipt per committed merge/conflict/update", async () => {
121
+ const { store, service, dream } = setup();
122
+ const { memory: a } = service.saveWithDedupe({ type: "project", title: "插件", content: "旧", importance: 3 });
123
+ const { memory: b } = service.saveWithDedupe({ type: "project", title: "插件2", content: "新细节", importance: 4 });
124
+ const { memory: w } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月20日", importance: 4 });
125
+ const { memory: l } = service.saveWithDedupe({ type: "decision", title: "截止旧", content: "8月15日", importance: 4 });
126
+ const { memory: u } = service.saveWithDedupe({ type: "preference", title: "语言", content: "喜欢 Python" });
127
+ const ctx = mockCtx({
128
+ onConsolidation: () => JSON.stringify([
129
+ { action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "插件总览", content: "合并内容", importance: 4 },
130
+ { action: "conflict", winner: w.id, loser: l.id, reason: "更新" },
131
+ { action: "update", ids: [u.id], content: "喜欢 Rust" }
132
+ ])
133
+ });
134
+ // Backdate the update target so the update age guard (minAgeHours) sees a
135
+ // settled record rather than a sub-second-old one — store.nowIso() can drift
136
+ // a few ms ahead of the wall clock when seeds land in the same millisecond.
137
+ store.db.prepare("UPDATE memories SET created_at = ? WHERE id = ?")
138
+ .run(new Date(Date.now() - 3600000).toISOString(), u.id);
139
+ const result = await dream.runDream(ctx, service, { reflectionUpdateMinAgeHours: 0, policyEpoch: 3 });
140
+ assert.equal(result.status, "ok");
141
+
142
+ const receipts = store.listReceipts({ run_id: result.runId });
143
+ assert.equal(receipts.length, 3, "one receipt per mutable verdict, none for keep/archive");
144
+
145
+ const byKind = Object.fromEntries(receipts.map((r) => [r.kind, r]));
146
+ assert.deepEqual(Object.keys(byKind).sort(), ["conflict", "merge", "update"]);
147
+
148
+ const merge = byKind.merge;
149
+ assert.equal(merge.run_id, result.runId);
150
+ assert.equal(merge.record_id, b.id, "merge receipt keyed on keepSource");
151
+ assert.equal(merge.keep_source, b.id);
152
+ assert.deepEqual(merge.sources, [a.id, b.id], "merge sources = full id array");
153
+ assert.equal(merge.count_before, 2);
154
+ assert.equal(merge.count_after, 1);
155
+ assert.equal(merge.verdict, "live");
156
+ assert.equal(merge.policy_epoch, 3, "policy epoch stamped from config");
157
+ assert.equal(merge.input_digest, hashDecisionInput([a, b]), "digest over the pre-apply basis memories");
158
+ assert.match(merge.created_at, /^2\d{3}-/, "created_at is an ISO timestamp");
159
+
160
+ const conflict = byKind.conflict;
161
+ assert.equal(conflict.record_id, w.id, "conflict receipt keyed on winner");
162
+ assert.equal(conflict.winner_id, w.id);
163
+ assert.equal(conflict.loser_id, l.id);
164
+ assert.equal(conflict.keep_source, undefined, "no keep_source on a conflict");
165
+ assert.equal(conflict.count_before, 2);
166
+ assert.equal(conflict.count_after, 1);
167
+ assert.equal(conflict.input_digest, hashDecisionInput([w, l]), "digest over winner+loser");
168
+
169
+ const update = byKind.update;
170
+ assert.equal(update.record_id, u.id);
171
+ assert.equal(update.winner_id, undefined, "no winner/loser on an update");
172
+ assert.equal(update.count_before, 1);
173
+ assert.equal(update.count_after, 1);
174
+ assert.equal(update.input_digest, hashDecisionInput([u]), "digest over the pre-update target");
175
+ store.close();
176
+ });
177
+
178
+ test("a throwing per-record receipt writer never breaks the run (bookkeeping fails safe)", async () => {
179
+ const { store, service, dream } = setup();
180
+ const { memory: a } = service.saveWithDedupe({ type: "project", title: "甲", content: "A", importance: 3 });
181
+ const { memory: b } = service.saveWithDedupe({ type: "project", title: "乙", content: "B", importance: 4 });
182
+ service.saveReceipt = () => { throw new Error("receipt store boom"); };
183
+ const ctx = mockCtx({
184
+ onConsolidation: () => JSON.stringify([
185
+ { action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "甲乙", content: "合并", importance: 4 }
186
+ ])
187
+ });
188
+ const result = await dream.runDream(ctx, service, {});
189
+ assert.equal(result.ok, true, "consolidation unaffected by receipt failure");
190
+ assert.equal(result.applied, 1);
191
+ const run = store.listDreamRuns()[0];
192
+ assert.equal(run.status, "ok", "audit row still written");
193
+ assert.equal(store.getById(b.id).title, "甲乙", "merge still applied");
194
+ assert.equal(store.getById(a.id).archived, true, "merge source still archived");
195
+ assert.equal(store.listReceipts().length, 0, "no receipts persisted");
196
+ store.close();
197
+ });
198
+
199
+ test("failed runDream records status failed with the error", async () => {
200
+ const { store, service, dream } = setup();
201
+ service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
202
+ const ctx = mockCtx({ onConsolidation: () => "抱歉,我无法处理这个任务" });
203
+ const result = await dream.runDream(ctx, service, {});
204
+ assert.equal(result.ok, false);
205
+ assert.match(result.error, /no json array/);
206
+
207
+ const run = store.listDreamRuns()[0];
208
+ assert.equal(run.status, "failed");
209
+ assert.equal(run.decisions, undefined);
210
+ assert.match(run.error, /no json array/);
211
+ const parsed = parseReceipt(run.receipt);
212
+ assert.equal(parsed.status, "failed");
213
+ store.close();
214
+ });
215
+
216
+ test("summary failure still records the applied decisions for replay", async () => {
217
+ const { store, service, dream } = setup();
218
+ const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
219
+ const ctx = mockCtx({
220
+ onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]),
221
+ summaryText: new Error("summary boom")
222
+ });
223
+ const result = await dream.runDream(ctx, service, {});
224
+ assert.equal(result.ok, false);
225
+ assert.equal(result.error, "llm failed");
226
+
227
+ const run = store.listDreamRuns()[0];
228
+ assert.equal(run.status, "failed");
229
+ assert.equal(run.decisions.length, 1, "decisions captured despite summary failure");
230
+ assert.equal(run.outcome.byId[m.id], "keep");
231
+ store.close();
232
+ });
233
+
234
+ test("audit rows persist across store reopen (file-backed)", () => {
235
+ const dir = mkdtempSync(join(tmpdir(), "dsh-mneme-audit-"));
236
+ const path = join(dir, "memory.db");
237
+ const s1 = createStore(path);
238
+ s1.saveDreamRun({
239
+ id: "run-1", status: "ok", snapshot_hash: "abc", input_count: 1,
240
+ decisions: [{ action: "keep", ids: ["x"] }],
241
+ outcome: { byId: { x: "keep" } }, applied: 0, summary_stored: false,
242
+ receipt: "dsh-mneme:run:run-1:ok:abc:1:0:0"
243
+ });
244
+ s1.close();
245
+ const s2 = createStore(path);
246
+ const run = s2.getDreamRun("run-1");
247
+ assert.equal(run.status, "ok");
248
+ assert.equal(run.decisions[0].action, "keep");
249
+ s2.close();
250
+ });
251
+
252
+ // ---------------------------------------------------------------- hashing & receipts
253
+
254
+ test("hashSnapshot is deterministic and order-independent", () => {
255
+ const mk = (id, title, content = "c") => ({ id, type: "project", title, content, importance: 3, updated_at: "2026-01-01T00:00:00.000Z" });
256
+ const a = mk("a", "t1");
257
+ const b = mk("b", "t2");
258
+ assert.equal(hashSnapshot([a, b]), hashSnapshot([b, a]), "order independent");
259
+ assert.equal(hashSnapshot([a, b]), hashSnapshot([{ ...a }, { ...b }]), "field order / clone independent");
260
+ assert.notEqual(hashSnapshot([a, b]), hashSnapshot([a, { ...b, content: "changed" }]), "content change flips hash");
261
+ });
262
+
263
+ test("receipt round-trips and malformed receipts parse to undefined", () => {
264
+ const receipt = buildReceipt({ runId: "r1", status: "ok", snapshotHash: "0123456789abcdef", inputCount: 3, applied: 2, summaryStored: true });
265
+ assert.deepEqual(parseReceipt(receipt), { runId: "r1", status: "ok", snapshotHash: "0123456789ab", inputCount: 3, applied: 2, summaryStored: true });
266
+ for (const bad of ["nope", "", "dsh-mneme:run:r1", "dsh-mneme:run:r1:weird:abc:1:0:0", "dsh-mneme:run:r1:ok:abc:nan:0:0"]) {
267
+ assert.equal(parseReceipt(bad), undefined, `rejects ${JSON.stringify(bad)}`);
268
+ }
269
+ });
270
+
271
+ test("buildOutcome maps every decision action to per-id disposition", () => {
272
+ const outcome = buildOutcome([
273
+ { action: "keep", ids: ["k"] },
274
+ { action: "archive", ids: ["a1", "a2"] },
275
+ { action: "merge", ids: ["m1", "m2"], keepSource: "m1" },
276
+ { action: "conflict", winner: "w", loser: "l" }
277
+ ]);
278
+ assert.equal(outcome.byId.k, "keep");
279
+ assert.equal(outcome.byId.a1, "archived");
280
+ assert.equal(outcome.byId.a2, "archived");
281
+ assert.equal(outcome.byId.m1, "merge-keep");
282
+ assert.equal(outcome.byId.m2, "merge-archived");
283
+ assert.equal(outcome.byId.w, "conflict-winner");
284
+ assert.equal(outcome.byId.l, "conflict-archived");
285
+ });
286
+
287
+ // ---------------------------------------------------------------- replayability
288
+
289
+ test("replaying a recorded decision list is idempotent", async () => {
290
+ const { store, service, dream } = setup();
291
+ const { memory: a } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月15日", importance: 4 });
292
+ const { memory: b } = service.saveWithDedupe({ type: "decision", title: "截止新", content: "8月20日", importance: 5 });
293
+ const ctx = mockCtx({
294
+ onConsolidation: () => JSON.stringify([{ action: "conflict", winner: b.id, loser: a.id, reason: "更新" }])
295
+ });
296
+ const result = await dream.runDream(ctx, service, {});
297
+ assert.equal(result.ok, true);
298
+
299
+ const run = store.getDreamRun(result.runId);
300
+ assert.equal(run.decisions[0].winner, b.id);
301
+ assert.equal(run.outcome.byId[a.id], "conflict-archived");
302
+ assert.equal(run.outcome.byId[b.id], "conflict-winner");
303
+
304
+ // store already reflects the run
305
+ assert.equal(store.getById(a.id).archived, true);
306
+ assert.ok(store.getById(b.id).content.includes("已否决旧信息"), "provenance note appended");
307
+
308
+ // replay the exact recorded decision list → no-op (idempotent)
309
+ const replayed = applyDecisions(run.decisions, service);
310
+ assert.equal(replayed.applied, 0, "already-applied decisions re-apply nothing");
311
+ assert.equal(store.getById(a.id).archived, true);
312
+ assert.equal(store.getById(b.id).content, store.getById(b.id).content);
313
+ store.close();
314
+ });
315
+
316
+ test("re-applying a decision many times has no cumulative side effects", async () => {
317
+ const { store, service, dream } = setup();
318
+ const { memory: a } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月15日", importance: 4 });
319
+ const { memory: b } = service.saveWithDedupe({ type: "decision", title: "截止新", content: "8月20日", importance: 5 });
320
+ const { memory: m1 } = service.saveWithDedupe({ type: "project", title: "甲", content: "旧甲", importance: 3 });
321
+ const { memory: m2 } = service.saveWithDedupe({ type: "project", title: "乙", content: "旧乙", importance: 4 });
322
+ const decisions = [
323
+ { action: "conflict", winner: b.id, loser: a.id, reason: "更新" },
324
+ { action: "merge", ids: [m1.id, m2.id], keepSource: m2.id, title: "甲乙", content: "合并", importance: 4 }
325
+ ];
326
+ // apply 3 times (e.g. concurrent/replayed dream runs)
327
+ for (let i = 0; i < 3; i++) applyDecisions(decisions, service);
328
+
329
+ const winner = store.getById(b.id);
330
+ assert.equal(winner.content.split("已否决旧信息").length - 1, 1, "provenance note appended exactly once");
331
+ assert.equal(store.getById(a.id).archived, true);
332
+ assert.equal(store.getById(m2.id).title, "甲乙", "keeper merged");
333
+ assert.equal(store.getById(m1.id).archived, true, "merge source archived once");
334
+ store.close();
335
+ });
336
+
337
+ // ---------------------------------------------------------------- reconcile (item ②)
338
+
339
+ test("runDream records status reconcile, not a fake ok, when a target changed during the run", async () => {
340
+ const { store, service, dream } = setup();
341
+ const { memory: a } = service.saveWithDedupe({ type: "project", title: "旧", content: "A", importance: 3 });
342
+ const { memory: b } = service.saveWithDedupe({ type: "project", title: "新", content: "B", importance: 4 });
343
+ // The "LLM call" mutates a target while producing the decision list —
344
+ // simulating a concurrent human/agent edit inside the run window.
345
+ const ctx = mockCtx({
346
+ onConsolidation: () => {
347
+ service.update(b.id, { content: "并发编辑" });
348
+ return JSON.stringify([
349
+ { action: "merge", ids: [a.id, b.id], title: "合并", content: "合并内容", importance: 4, keepSource: b.id }
350
+ ]);
351
+ }
352
+ });
353
+ const result = await dream.runDream(ctx, service, {});
354
+ assert.equal(result.ok, false, "partial commit is not ok");
355
+ assert.equal(result.status, "reconcile", "explicit reconcile status");
356
+ assert.equal(result.applied, 0, "conflicting merge not applied");
357
+
358
+ const run = store.listDreamRuns()[0];
359
+ assert.equal(run.status, "reconcile", "audit row records reconcile");
360
+ assert.equal(run.applied, 0);
361
+ const parsed = parseReceipt(run.receipt);
362
+ assert.equal(parsed.status, "reconcile", "receipt records reconcile, never ok");
363
+ assert.equal(parsed.applied, 0);
364
+ // outcome is derived from what actually committed: the merge is NOT claimed
365
+ assert.equal(run.outcome.byId[b.id], undefined, "keeper not claimed as merge-keep");
366
+ assert.equal(run.outcome.byId[a.id], undefined, "source not claimed as merge-archived");
367
+ assert.equal(run.outcome.conflicts.length, 1, "conflict recorded in the audit row");
368
+ // the concurrent edit survived
369
+ assert.equal(store.getById(b.id).content, "并发编辑");
370
+ store.close();
371
+ });
372
+
373
+ test("buildOutcome over actually-committed sub-steps never claims a rolled-back merge", () => {
374
+ const committed = [
375
+ { action: "keep", ids: ["k"] },
376
+ { action: "merge", ids: ["m1", "m2"], keepSource: "m1", title: "t", content: "c" }
377
+ ];
378
+ const outcome = buildOutcome(committed);
379
+ assert.equal(outcome.byId.m1, "merge-keep");
380
+ assert.equal(outcome.byId.m2, "merge-archived");
381
+ assert.equal(outcome.byId.k, "keep");
382
+ });
383
+
384
+ // ---------------------------------------------------------------- noop & degraded (F-03)
385
+
386
+ test("runDream records status noop when all decisions are keep and summary is empty", async () => {
387
+ const { store, service, dream } = setup();
388
+ const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
389
+ const ctx = mockCtx({
390
+ onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]),
391
+ summaryText: ""
392
+ });
393
+ const result = await dream.runDream(ctx, service, {});
394
+ assert.equal(result.ok, false, "no-change + empty summary is not a success");
395
+ assert.equal(result.status, "noop", "explicit noop status");
396
+ assert.equal(result.applied, 0);
397
+ assert.equal(result.summary, false);
398
+
399
+ const run = store.listDreamRuns()[0];
400
+ assert.equal(run.status, "noop", "audit row records noop, never ok");
401
+ assert.equal(run.applied, 0);
402
+ assert.equal(run.summary_stored, false);
403
+ const parsed = parseReceipt(run.receipt);
404
+ assert.equal(parsed.status, "noop", "receipt records noop");
405
+ assert.equal(parsed.applied, 0);
406
+ assert.equal(parsed.summaryStored, false);
407
+ assert.equal(run.outcome.byId[m.id], "keep", "keep disposition still recorded for replay");
408
+ store.close();
409
+ });
410
+
411
+ test("runDream records status ok when all decisions are keep but a summary was stored", async () => {
412
+ const { store, service, dream } = setup();
413
+ const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
414
+ const ctx = mockCtx({ onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]) });
415
+ const result = await dream.runDream(ctx, service, {});
416
+ assert.equal(result.status, "ok", "summary refresh is substantive output");
417
+ assert.equal(result.ok, true);
418
+ assert.equal(result.applied, 0);
419
+ assert.equal(result.summary, true);
420
+ const run = store.listDreamRuns()[0];
421
+ assert.equal(run.status, "ok");
422
+ assert.equal(parseReceipt(run.receipt).status, "ok");
423
+ assert.equal(parseReceipt(run.receipt).summaryStored, true);
424
+ store.close();
425
+ });
426
+
427
+ test("runDream records status degraded when changes land but the summary is empty", async () => {
428
+ const { store, service, dream } = setup();
429
+ const { memory: a } = service.saveWithDedupe({ type: "project", title: "旧", content: "A", importance: 3 });
430
+ const { memory: b } = service.saveWithDedupe({ type: "project", title: "新", content: "B", importance: 4 });
431
+ const ctx = mockCtx({
432
+ onConsolidation: () => JSON.stringify([
433
+ { action: "merge", ids: [a.id, b.id], title: "合并", content: "合并内容", importance: 4, keepSource: b.id }
434
+ ]),
435
+ summaryText: ""
436
+ });
437
+ const result = await dream.runDream(ctx, service, {});
438
+ assert.equal(result.status, "degraded", "real changes without a summary are not a clean ok");
439
+ assert.equal(result.ok, true, "consolidation landed so the baseline may advance");
440
+ assert.equal(result.applied, 1);
441
+ assert.equal(result.summary, false, "summary honestly reported missing");
442
+ const run = store.listDreamRuns()[0];
443
+ assert.equal(run.status, "degraded", "audit row records degraded");
444
+ assert.equal(run.summary_stored, false);
445
+ assert.equal(parseReceipt(run.receipt).status, "degraded");
446
+ assert.equal(parseReceipt(run.receipt).summaryStored, false);
447
+ store.close();
448
+ });