@modusensus/dsh-mneme 0.6.7 → 0.6.8

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 (117) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +463 -463
  3. package/cordis.patch.yml +15 -15
  4. package/lib/api.js +783 -783
  5. package/lib/client.js +1757 -1757
  6. package/lib/commands.js +64 -64
  7. package/lib/config.js +288 -288
  8. package/lib/dream/clustering.js +118 -118
  9. package/lib/dream/decisions.js +439 -439
  10. package/lib/dream/sleep.js +561 -554
  11. package/lib/dream/tag-extractor.js +156 -156
  12. package/lib/dream.js +935 -929
  13. package/lib/embedding.js +154 -154
  14. package/lib/entities/extractor.js +242 -242
  15. package/lib/hot-memory.js +53 -53
  16. package/lib/index.js +361 -361
  17. package/lib/inject.js +208 -208
  18. package/lib/local-embedder.js +282 -282
  19. package/lib/mirror.js +170 -170
  20. package/lib/parser/tag.js +59 -59
  21. package/lib/parser/wiki-link.js +38 -38
  22. package/lib/quality-filter.js +123 -123
  23. package/lib/reranker.js +218 -218
  24. package/lib/search/adaptive.js +22 -22
  25. package/lib/search/bm25.js +96 -96
  26. package/lib/search/tag-boost.js +61 -61
  27. package/lib/service.js +1726 -1726
  28. package/lib/settings.js +172 -172
  29. package/lib/store.js +2238 -2238
  30. package/lib/summarize.js +236 -236
  31. package/lib/tools.js +290 -290
  32. package/lib/vector-index.js +116 -116
  33. package/package.json +80 -80
  34. package/scripts/benchmark-embed.js +201 -201
  35. package/scripts/benchmark-recall.js +133 -133
  36. package/scripts/benchmark-rerank.js +166 -166
  37. package/scripts/e2e-dsh.js +218 -218
  38. package/scripts/stress-dsh.js +255 -255
  39. package/scripts/sync-lib.js +52 -52
  40. package/src/api.js +783 -783
  41. package/src/commands.js +64 -64
  42. package/src/config.js +288 -288
  43. package/src/dream/clustering.js +118 -118
  44. package/src/dream/decisions.js +439 -439
  45. package/src/dream/sleep.js +561 -554
  46. package/src/dream/tag-extractor.js +156 -156
  47. package/src/dream.js +935 -929
  48. package/src/embedding.js +154 -154
  49. package/src/entities/extractor.js +242 -242
  50. package/src/hot-memory.js +53 -53
  51. package/src/index.js +361 -361
  52. package/src/inject.js +208 -208
  53. package/src/local-embedder.js +282 -282
  54. package/src/mirror.js +170 -170
  55. package/src/parser/tag.js +59 -59
  56. package/src/parser/wiki-link.js +38 -38
  57. package/src/quality-filter.js +123 -123
  58. package/src/reranker.js +218 -218
  59. package/src/search/adaptive.js +22 -22
  60. package/src/search/bm25.js +96 -96
  61. package/src/search/tag-boost.js +61 -61
  62. package/src/service.js +1726 -1726
  63. package/src/settings.js +172 -172
  64. package/src/store.js +2238 -2238
  65. package/src/summarize.js +236 -236
  66. package/src/tools.js +290 -290
  67. package/src/vector-index.js +116 -116
  68. package/test/api.test.js +594 -594
  69. package/test/audit.test.js +448 -448
  70. package/test/benchmark.test.js +35 -35
  71. package/test/boundary-v0625.test.js +82 -82
  72. package/test/client.test.js +368 -368
  73. package/test/clustering.test.js +100 -100
  74. package/test/commands.test.js +69 -69
  75. package/test/config.test.js +50 -50
  76. package/test/conflict-freeze.test.js +290 -290
  77. package/test/directory.test.js +134 -134
  78. package/test/dream.test.js +903 -901
  79. package/test/entities.test.js +522 -522
  80. package/test/epistemic.test.js +298 -298
  81. package/test/fnew-0112.test.js +311 -311
  82. package/test/fnew-03.test.js +422 -422
  83. package/test/graph-api.test.js +175 -175
  84. package/test/helpers/dream-mock.js +82 -82
  85. package/test/hot-memory.test.js +174 -174
  86. package/test/inject.test.js +103 -103
  87. package/test/llm-audit.test.js +279 -279
  88. package/test/local-embedder.test.js +227 -227
  89. package/test/mirror-dirty.test.js +424 -424
  90. package/test/mirror-edit-digest.test.js +187 -187
  91. package/test/mirror-generation.test.js +499 -499
  92. package/test/mirror.test.js +249 -249
  93. package/test/normalize-decisions.test.js +120 -120
  94. package/test/peer-blockers.test.js +190 -190
  95. package/test/policy-epoch.test.js +259 -259
  96. package/test/provenance.test.js +103 -103
  97. package/test/quality-filter.test.js +118 -118
  98. package/test/reasoning-effort.test.js +199 -199
  99. package/test/recall-evals.test.js +235 -235
  100. package/test/recall-layer.test.js +315 -315
  101. package/test/receipt-chain.test.js +451 -451
  102. package/test/reflection.test.js +226 -226
  103. package/test/reranker.test.js +240 -240
  104. package/test/search-fusion.test.js +90 -90
  105. package/test/semantic.test.js +124 -124
  106. package/test/service-search.test.js +199 -199
  107. package/test/service.test.js +435 -435
  108. package/test/settings.test.js +118 -118
  109. package/test/sleep.test.js +365 -365
  110. package/test/store.test.js +436 -436
  111. package/test/stress.test.js +209 -209
  112. package/test/summarize.test.js +191 -191
  113. package/test/tag-boost.test.js +125 -125
  114. package/test/tag.test.js +312 -312
  115. package/test/tools.test.js +285 -285
  116. package/test/vector-index.test.js +221 -221
  117. package/test/wiki-link.test.js +332 -332
@@ -1,134 +1,134 @@
1
- // v0.6.3 目录视图测试。
2
- // 覆盖:store.getDirectory 按 tag 分组 / 组排序(tag 字典序)/
3
- // 组内成员排序(importance DESC → updated_at DESC)/
4
- // 无 tag 记忆进 untagged / disposed·archived·forgotten 过滤 /
5
- // 多 tag 记忆出现在每个 tag 文件夹 / service.getDirectory 输出 wire DTO。
6
- import test from "node:test";
7
- import assert from "node:assert/strict";
8
- import { createStore } from "../src/store.js";
9
- import { createService } from "../src/service.js";
10
-
11
- function setup() {
12
- const store = createStore(":memory:");
13
- const service = createService({ store, mirror: null, config: {} });
14
- return { store, service };
15
- }
16
-
17
- function seed(store, title, { importance = 3, type = "preference", tags, session_id } = {}) {
18
- const mem = store.save({ type, title, content: `content of ${title}`, importance, session_id });
19
- if (tags && tags.length) store.setMemoryTags(mem.id, tags);
20
- return mem;
21
- }
22
-
23
- // Bump a row's updated_at directly so ordering assertions are deterministic
24
- // (nowIso() has ~ms resolution and a same-ms save loses the tiebreaker to the
25
- // random id).
26
- function setUpdatedAt(store, id, iso) {
27
- store.db.prepare("UPDATE memories SET updated_at = ? WHERE id = ?").run(iso, id);
28
- }
29
-
30
- // ============================================================ grouping
31
-
32
- test("getDirectory groups live memories by their live tag set", () => {
33
- const { store } = setup();
34
- const a = seed(store, "Linux 笔记", { tags: ["linux"] });
35
- const b = seed(store, "考研计划", { tags: ["考研"] });
36
- const dir = store.getDirectory();
37
- assert.equal(dir.groups.length, 2);
38
- const linux = dir.groups.find((g) => g.tag === "linux");
39
- const exam = dir.groups.find((g) => g.tag === "考研");
40
- assert.deepEqual(linux.memories.map((m) => m.id), [a.id]);
41
- assert.deepEqual(exam.memories.map((m) => m.id), [b.id]);
42
- assert.deepEqual(dir.untagged, []);
43
- store.close();
44
- });
45
-
46
- test("getDirectory sorts groups by tag (locale-aware)", () => {
47
- const { store } = setup();
48
- seed(store, "B", { tags: ["zebra"] });
49
- seed(store, "A", { tags: ["alpha"] });
50
- seed(store, "C", { tags: ["æon"] });
51
- const dir = store.getDirectory();
52
- const tags = dir.groups.map((g) => g.tag);
53
- const sorted = [...tags].sort((x, y) => x.localeCompare(y));
54
- assert.deepEqual(tags, sorted, "groups must come back tag-sorted");
55
- store.close();
56
- });
57
-
58
- test("getDirectory orders group members by importance DESC then updated_at DESC", () => {
59
- const { store } = setup();
60
- // same importance → updated_at decides
61
- const older = seed(store, "older", { tags: ["linux"], importance: 2 });
62
- const newer = seed(store, "newer", { tags: ["linux"], importance: 2 });
63
- setUpdatedAt(store, older.id, "2026-01-01T00:00:00.000Z");
64
- setUpdatedAt(store, newer.id, "2026-08-01T00:00:00.000Z");
65
- // higher importance wins regardless of age
66
- const important = seed(store, "important", { tags: ["linux"], importance: 5 });
67
- setUpdatedAt(store, important.id, "2025-01-01T00:00:00.000Z");
68
- const dir = store.getDirectory();
69
- const linux = dir.groups.find((g) => g.tag === "linux");
70
- assert.deepEqual(
71
- linux.memories.map((m) => m.id),
72
- [important.id, newer.id, older.id],
73
- "importance DESC primary, updated_at DESC secondary"
74
- );
75
- store.close();
76
- });
77
-
78
- test("getDirectory collects untagged memories and orders them identically", () => {
79
- const { store } = setup();
80
- const a = seed(store, "untagged one", { importance: 1 });
81
- const b = seed(store, "untagged two", { importance: 4 });
82
- seed(store, "tagged", { tags: ["linux"], importance: 3 });
83
- const dir = store.getDirectory();
84
- assert.deepEqual(dir.untagged.map((m) => m.id), [b.id, a.id], "importance DESC inside untagged");
85
- assert.equal(dir.groups.some((g) => g.tag === "linux"), true);
86
- store.close();
87
- });
88
-
89
- test("getDirectory excludes forgotten, archived and session-disposed memories", () => {
90
- const { store } = setup();
91
- const forgotten = seed(store, "forgotten", { tags: ["linux"] });
92
- const archived = seed(store, "archived", { tags: ["linux"] });
93
- const disposed = seed(store, "disposed", { tags: ["linux"], type: "summary", session_id: "sess-disposed" });
94
- const keep = seed(store, "keep", { tags: ["linux"] });
95
- store.setForget(forgotten.id, true);
96
- store.setArchived(archived.id, true);
97
- store.setDisposedBySession(disposed.session_id, true);
98
- const dir = store.getDirectory();
99
- const linux = dir.groups.find((g) => g.tag === "linux");
100
- assert.deepEqual(linux.memories.map((m) => m.id), [keep.id], "only the live row survives");
101
- assert.deepEqual(dir.untagged, []);
102
- store.close();
103
- });
104
-
105
- test("getDirectory lists a multi-tag memory under every tag folder once each", () => {
106
- const { store } = setup();
107
- const multi = seed(store, "multi", { tags: ["linux", "bash"] });
108
- const single = seed(store, "single", { tags: ["linux"] });
109
- const dir = store.getDirectory();
110
- const linux = dir.groups.find((g) => g.tag === "linux");
111
- const bash = dir.groups.find((g) => g.tag === "bash");
112
- // `single` is written second → newer updated_at → ranks before `multi`.
113
- assert.deepEqual(linux.memories.map((m) => m.id), [single.id, multi.id]);
114
- assert.deepEqual(bash.memories.map((m) => m.id), [multi.id]);
115
- assert.equal(dir.untagged.length, 0);
116
- store.close();
117
- });
118
-
119
- // ============================================================ service
120
-
121
- test("service.getDirectory returns the wire DTO shape with tags preserved", () => {
122
- const { store, service } = setup();
123
- const mem = seed(store, "笔记", { tags: ["linux"] });
124
- seed(store, "裸条目", { importance: 2 });
125
- const dir = service.getDirectory();
126
- assert.deepEqual(Object.keys(dir).sort(), ["groups", "untagged"]);
127
- const linux = dir.groups.find((g) => g.tag === "linux");
128
- assert.equal(linux.memories[0].id, mem.id);
129
- assert.equal(linux.memories[0].title, "笔记");
130
- assert.equal(typeof linux.memories[0].updated_at, "string", "DTO carries updated_at for the entry row");
131
- assert.equal(dir.untagged.length, 1);
132
- assert.equal(dir.untagged[0].title, "裸条目");
133
- store.close();
134
- });
1
+ // v0.6.3 目录视图测试。
2
+ // 覆盖:store.getDirectory 按 tag 分组 / 组排序(tag 字典序)/
3
+ // 组内成员排序(importance DESC → updated_at DESC)/
4
+ // 无 tag 记忆进 untagged / disposed·archived·forgotten 过滤 /
5
+ // 多 tag 记忆出现在每个 tag 文件夹 / service.getDirectory 输出 wire DTO。
6
+ import test from "node:test";
7
+ import assert from "node:assert/strict";
8
+ import { createStore } from "../src/store.js";
9
+ import { createService } from "../src/service.js";
10
+
11
+ function setup() {
12
+ const store = createStore(":memory:");
13
+ const service = createService({ store, mirror: null, config: {} });
14
+ return { store, service };
15
+ }
16
+
17
+ function seed(store, title, { importance = 3, type = "preference", tags, session_id } = {}) {
18
+ const mem = store.save({ type, title, content: `content of ${title}`, importance, session_id });
19
+ if (tags && tags.length) store.setMemoryTags(mem.id, tags);
20
+ return mem;
21
+ }
22
+
23
+ // Bump a row's updated_at directly so ordering assertions are deterministic
24
+ // (nowIso() has ~ms resolution and a same-ms save loses the tiebreaker to the
25
+ // random id).
26
+ function setUpdatedAt(store, id, iso) {
27
+ store.db.prepare("UPDATE memories SET updated_at = ? WHERE id = ?").run(iso, id);
28
+ }
29
+
30
+ // ============================================================ grouping
31
+
32
+ test("getDirectory groups live memories by their live tag set", () => {
33
+ const { store } = setup();
34
+ const a = seed(store, "Linux 笔记", { tags: ["linux"] });
35
+ const b = seed(store, "考研计划", { tags: ["考研"] });
36
+ const dir = store.getDirectory();
37
+ assert.equal(dir.groups.length, 2);
38
+ const linux = dir.groups.find((g) => g.tag === "linux");
39
+ const exam = dir.groups.find((g) => g.tag === "考研");
40
+ assert.deepEqual(linux.memories.map((m) => m.id), [a.id]);
41
+ assert.deepEqual(exam.memories.map((m) => m.id), [b.id]);
42
+ assert.deepEqual(dir.untagged, []);
43
+ store.close();
44
+ });
45
+
46
+ test("getDirectory sorts groups by tag (locale-aware)", () => {
47
+ const { store } = setup();
48
+ seed(store, "B", { tags: ["zebra"] });
49
+ seed(store, "A", { tags: ["alpha"] });
50
+ seed(store, "C", { tags: ["æon"] });
51
+ const dir = store.getDirectory();
52
+ const tags = dir.groups.map((g) => g.tag);
53
+ const sorted = [...tags].sort((x, y) => x.localeCompare(y));
54
+ assert.deepEqual(tags, sorted, "groups must come back tag-sorted");
55
+ store.close();
56
+ });
57
+
58
+ test("getDirectory orders group members by importance DESC then updated_at DESC", () => {
59
+ const { store } = setup();
60
+ // same importance → updated_at decides
61
+ const older = seed(store, "older", { tags: ["linux"], importance: 2 });
62
+ const newer = seed(store, "newer", { tags: ["linux"], importance: 2 });
63
+ setUpdatedAt(store, older.id, "2026-01-01T00:00:00.000Z");
64
+ setUpdatedAt(store, newer.id, "2026-08-01T00:00:00.000Z");
65
+ // higher importance wins regardless of age
66
+ const important = seed(store, "important", { tags: ["linux"], importance: 5 });
67
+ setUpdatedAt(store, important.id, "2025-01-01T00:00:00.000Z");
68
+ const dir = store.getDirectory();
69
+ const linux = dir.groups.find((g) => g.tag === "linux");
70
+ assert.deepEqual(
71
+ linux.memories.map((m) => m.id),
72
+ [important.id, newer.id, older.id],
73
+ "importance DESC primary, updated_at DESC secondary"
74
+ );
75
+ store.close();
76
+ });
77
+
78
+ test("getDirectory collects untagged memories and orders them identically", () => {
79
+ const { store } = setup();
80
+ const a = seed(store, "untagged one", { importance: 1 });
81
+ const b = seed(store, "untagged two", { importance: 4 });
82
+ seed(store, "tagged", { tags: ["linux"], importance: 3 });
83
+ const dir = store.getDirectory();
84
+ assert.deepEqual(dir.untagged.map((m) => m.id), [b.id, a.id], "importance DESC inside untagged");
85
+ assert.equal(dir.groups.some((g) => g.tag === "linux"), true);
86
+ store.close();
87
+ });
88
+
89
+ test("getDirectory excludes forgotten, archived and session-disposed memories", () => {
90
+ const { store } = setup();
91
+ const forgotten = seed(store, "forgotten", { tags: ["linux"] });
92
+ const archived = seed(store, "archived", { tags: ["linux"] });
93
+ const disposed = seed(store, "disposed", { tags: ["linux"], type: "summary", session_id: "sess-disposed" });
94
+ const keep = seed(store, "keep", { tags: ["linux"] });
95
+ store.setForget(forgotten.id, true);
96
+ store.setArchived(archived.id, true);
97
+ store.setDisposedBySession(disposed.session_id, true);
98
+ const dir = store.getDirectory();
99
+ const linux = dir.groups.find((g) => g.tag === "linux");
100
+ assert.deepEqual(linux.memories.map((m) => m.id), [keep.id], "only the live row survives");
101
+ assert.deepEqual(dir.untagged, []);
102
+ store.close();
103
+ });
104
+
105
+ test("getDirectory lists a multi-tag memory under every tag folder once each", () => {
106
+ const { store } = setup();
107
+ const multi = seed(store, "multi", { tags: ["linux", "bash"] });
108
+ const single = seed(store, "single", { tags: ["linux"] });
109
+ const dir = store.getDirectory();
110
+ const linux = dir.groups.find((g) => g.tag === "linux");
111
+ const bash = dir.groups.find((g) => g.tag === "bash");
112
+ // `single` is written second → newer updated_at → ranks before `multi`.
113
+ assert.deepEqual(linux.memories.map((m) => m.id), [single.id, multi.id]);
114
+ assert.deepEqual(bash.memories.map((m) => m.id), [multi.id]);
115
+ assert.equal(dir.untagged.length, 0);
116
+ store.close();
117
+ });
118
+
119
+ // ============================================================ service
120
+
121
+ test("service.getDirectory returns the wire DTO shape with tags preserved", () => {
122
+ const { store, service } = setup();
123
+ const mem = seed(store, "笔记", { tags: ["linux"] });
124
+ seed(store, "裸条目", { importance: 2 });
125
+ const dir = service.getDirectory();
126
+ assert.deepEqual(Object.keys(dir).sort(), ["groups", "untagged"]);
127
+ const linux = dir.groups.find((g) => g.tag === "linux");
128
+ assert.equal(linux.memories[0].id, mem.id);
129
+ assert.equal(linux.memories[0].title, "笔记");
130
+ assert.equal(typeof linux.memories[0].updated_at, "string", "DTO carries updated_at for the entry row");
131
+ assert.equal(dir.untagged.length, 1);
132
+ assert.equal(dir.untagged[0].title, "裸条目");
133
+ store.close();
134
+ });