@modusensus/dsh-mneme 0.6.7 → 0.6.9

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/.github/workflows/test.yml +32 -0
  2. package/.release-notes-v0.6.9.md +13 -0
  3. package/CHANGELOG.md +89 -0
  4. package/LICENSE +21 -21
  5. package/README.md +219 -463
  6. package/SECURITY.md +544 -0
  7. package/docs/devlog/2026-08-14-dsh-mneme-dev-log.md +247 -0
  8. package/docs/devlog/2026-08-15-dsh-mneme-audit-stress-dev-log.md +145 -0
  9. package/docs/devlog/2026-08-15-dsh-mneme-pipeline-dev-log.md +56 -0
  10. package/docs/devlog/2026-08-15-dsh-mneme-reflection-dev-log.md +77 -0
  11. package/docs/devlog/2026-08-15-dsh-mneme-review-fixes-dev-log.md +64 -0
  12. package/docs/devlog/2026-08-15-dsh-mneme-semantic-dev-log.md +90 -0
  13. package/dsh-mneme/CHANGELOG.md +248 -0
  14. package/dsh-mneme/LICENSE +21 -0
  15. package/dsh-mneme/README.md +465 -0
  16. package/{cordis.patch.yml → dsh-mneme/cordis.patch.yml} +15 -15
  17. package/dsh-mneme/docs/AGENT_MEMORY_RESEARCH.md +183 -0
  18. package/dsh-mneme/docs/ENTITIES.md +245 -0
  19. package/dsh-mneme/docs/LOCAL_MODEL.md +141 -0
  20. package/dsh-mneme/docs/MIGRATION.md +127 -0
  21. package/dsh-mneme/docs/SEMANTIC.md +256 -0
  22. package/dsh-mneme/docs/SLEEP.md +163 -0
  23. package/{lib → dsh-mneme/lib}/api.js +783 -783
  24. package/{lib → dsh-mneme/lib}/client.js +1757 -1757
  25. package/{src → dsh-mneme/lib}/commands.js +64 -64
  26. package/{lib → dsh-mneme/lib}/config.js +298 -288
  27. package/{lib → dsh-mneme/lib}/dream/clustering.js +118 -118
  28. package/{src → dsh-mneme/lib}/dream/decisions.js +488 -439
  29. package/{lib → dsh-mneme/lib}/dream/sleep.js +561 -554
  30. package/{src → dsh-mneme/lib}/dream/tag-extractor.js +156 -156
  31. package/{lib → dsh-mneme/lib}/dream.js +958 -929
  32. package/{src → dsh-mneme/lib}/embedding.js +154 -154
  33. package/{src → dsh-mneme/lib}/entities/extractor.js +242 -242
  34. package/{src → dsh-mneme/lib}/hot-memory.js +53 -53
  35. package/{lib → dsh-mneme/lib}/index.js +361 -361
  36. package/{src → dsh-mneme/lib}/inject.js +208 -208
  37. package/{lib → dsh-mneme/lib}/local-embedder.js +282 -282
  38. package/{lib → dsh-mneme/lib}/mirror.js +170 -170
  39. package/{lib → dsh-mneme/lib}/parser/tag.js +59 -59
  40. package/{lib → dsh-mneme/lib}/parser/wiki-link.js +38 -38
  41. package/{src → dsh-mneme/lib}/quality-filter.js +123 -123
  42. package/{lib → dsh-mneme/lib}/reranker.js +218 -218
  43. package/{lib → dsh-mneme/lib}/search/adaptive.js +22 -22
  44. package/{lib → dsh-mneme/lib}/search/bm25.js +96 -96
  45. package/{src → dsh-mneme/lib}/search/tag-boost.js +61 -61
  46. package/{src → dsh-mneme/lib}/service.js +1726 -1726
  47. package/{lib → dsh-mneme/lib}/settings.js +172 -172
  48. package/{lib → dsh-mneme/lib}/store.js +2238 -2238
  49. package/{lib → dsh-mneme/lib}/summarize.js +236 -236
  50. package/{lib → dsh-mneme/lib}/tools.js +290 -290
  51. package/{lib → dsh-mneme/lib}/vector-index.js +116 -116
  52. package/dsh-mneme/package-lock.json +1936 -0
  53. package/dsh-mneme/package.json +80 -0
  54. package/{scripts → dsh-mneme/scripts}/benchmark-embed.js +201 -201
  55. package/{scripts → dsh-mneme/scripts}/benchmark-recall.js +133 -133
  56. package/{scripts → dsh-mneme/scripts}/benchmark-rerank.js +166 -166
  57. package/{scripts → dsh-mneme/scripts}/e2e-dsh.js +218 -218
  58. package/{scripts → dsh-mneme/scripts}/stress-dsh.js +255 -255
  59. package/{scripts → dsh-mneme/scripts}/sync-lib.js +52 -52
  60. package/{src → dsh-mneme/src}/api.js +783 -783
  61. package/{lib → dsh-mneme/src}/commands.js +64 -64
  62. package/{src → dsh-mneme/src}/config.js +298 -288
  63. package/{src → dsh-mneme/src}/dream/clustering.js +118 -118
  64. package/{lib → dsh-mneme/src}/dream/decisions.js +488 -439
  65. package/{src → dsh-mneme/src}/dream/sleep.js +561 -554
  66. package/{lib → dsh-mneme/src}/dream/tag-extractor.js +156 -156
  67. package/{src → dsh-mneme/src}/dream.js +958 -929
  68. package/{lib → dsh-mneme/src}/embedding.js +154 -154
  69. package/{lib → dsh-mneme/src}/entities/extractor.js +242 -242
  70. package/{lib → dsh-mneme/src}/hot-memory.js +53 -53
  71. package/{src → dsh-mneme/src}/index.js +361 -361
  72. package/{lib → dsh-mneme/src}/inject.js +208 -208
  73. package/{src → dsh-mneme/src}/local-embedder.js +282 -282
  74. package/{src → dsh-mneme/src}/mirror.js +170 -170
  75. package/{src → dsh-mneme/src}/parser/tag.js +59 -59
  76. package/{src → dsh-mneme/src}/parser/wiki-link.js +38 -38
  77. package/{lib → dsh-mneme/src}/quality-filter.js +123 -123
  78. package/{src → dsh-mneme/src}/reranker.js +218 -218
  79. package/{src → dsh-mneme/src}/search/adaptive.js +22 -22
  80. package/{src → dsh-mneme/src}/search/bm25.js +96 -96
  81. package/{lib → dsh-mneme/src}/search/tag-boost.js +61 -61
  82. package/{lib → dsh-mneme/src}/service.js +1726 -1726
  83. package/{src → dsh-mneme/src}/settings.js +172 -172
  84. package/{src → dsh-mneme/src}/store.js +2238 -2238
  85. package/{src → dsh-mneme/src}/summarize.js +236 -236
  86. package/{src → dsh-mneme/src}/tools.js +290 -290
  87. package/{src → dsh-mneme/src}/vector-index.js +116 -116
  88. package/{test → dsh-mneme/test}/api.test.js +594 -594
  89. package/{test → dsh-mneme/test}/audit.test.js +448 -448
  90. package/{test → dsh-mneme/test}/benchmark.test.js +35 -35
  91. package/{test → dsh-mneme/test}/boundary-v0625.test.js +82 -82
  92. package/{test → dsh-mneme/test}/client.test.js +368 -368
  93. package/{test → dsh-mneme/test}/clustering.test.js +100 -100
  94. package/{test → dsh-mneme/test}/commands.test.js +69 -69
  95. package/{test → dsh-mneme/test}/config.test.js +50 -50
  96. package/{test → dsh-mneme/test}/conflict-freeze.test.js +290 -290
  97. package/{test → dsh-mneme/test}/directory.test.js +134 -134
  98. package/{test → dsh-mneme/test}/dream.test.js +1060 -901
  99. package/{test → dsh-mneme/test}/entities.test.js +522 -522
  100. package/{test → dsh-mneme/test}/epistemic.test.js +298 -298
  101. package/{test → dsh-mneme/test}/fnew-0112.test.js +311 -311
  102. package/{test → dsh-mneme/test}/fnew-03.test.js +422 -422
  103. package/{test → dsh-mneme/test}/graph-api.test.js +175 -175
  104. package/{test → dsh-mneme/test}/helpers/dream-mock.js +82 -82
  105. package/{test → dsh-mneme/test}/hot-memory.test.js +174 -174
  106. package/{test → dsh-mneme/test}/inject.test.js +103 -103
  107. package/{test → dsh-mneme/test}/llm-audit.test.js +279 -279
  108. package/{test → dsh-mneme/test}/local-embedder.test.js +227 -227
  109. package/{test → dsh-mneme/test}/mirror-dirty.test.js +424 -424
  110. package/{test → dsh-mneme/test}/mirror-edit-digest.test.js +187 -187
  111. package/{test → dsh-mneme/test}/mirror-generation.test.js +499 -499
  112. package/{test → dsh-mneme/test}/mirror.test.js +249 -249
  113. package/{test → dsh-mneme/test}/normalize-decisions.test.js +120 -120
  114. package/{test → dsh-mneme/test}/peer-blockers.test.js +190 -190
  115. package/{test → dsh-mneme/test}/policy-epoch.test.js +259 -259
  116. package/{test → dsh-mneme/test}/provenance.test.js +103 -103
  117. package/{test → dsh-mneme/test}/quality-filter.test.js +118 -118
  118. package/{test → dsh-mneme/test}/reasoning-effort.test.js +199 -199
  119. package/{test → dsh-mneme/test}/recall-evals.test.js +235 -235
  120. package/{test → dsh-mneme/test}/recall-layer.test.js +315 -315
  121. package/{test → dsh-mneme/test}/receipt-chain.test.js +451 -451
  122. package/{test → dsh-mneme/test}/reflection.test.js +226 -226
  123. package/{test → dsh-mneme/test}/reranker.test.js +240 -240
  124. package/{test → dsh-mneme/test}/search-fusion.test.js +90 -90
  125. package/{test → dsh-mneme/test}/semantic.test.js +124 -124
  126. package/{test → dsh-mneme/test}/service-search.test.js +199 -199
  127. package/{test → dsh-mneme/test}/service.test.js +435 -435
  128. package/{test → dsh-mneme/test}/settings.test.js +118 -118
  129. package/{test → dsh-mneme/test}/sleep.test.js +365 -365
  130. package/{test → dsh-mneme/test}/store.test.js +436 -436
  131. package/{test → dsh-mneme/test}/stress.test.js +209 -209
  132. package/{test → dsh-mneme/test}/summarize.test.js +191 -191
  133. package/{test → dsh-mneme/test}/tag-boost.test.js +125 -125
  134. package/{test → dsh-mneme/test}/tag.test.js +312 -312
  135. package/{test → dsh-mneme/test}/tools.test.js +285 -285
  136. package/{test → dsh-mneme/test}/vector-index.test.js +221 -221
  137. package/{test → dsh-mneme/test}/wiki-link.test.js +332 -332
  138. package/package.json +18 -40
  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
+ });