nlm-memory 0.4.2 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (285) hide show
  1. package/README.md +72 -34
  2. package/dist/cli/nlm.js +223 -33
  3. package/dist/cli/nlm.js.map +1 -1
  4. package/dist/core/adapters/cursor.d.ts +45 -0
  5. package/dist/core/adapters/cursor.js +397 -0
  6. package/dist/core/adapters/cursor.js.map +1 -0
  7. package/dist/core/adapters/from-source.js +10 -0
  8. package/dist/core/adapters/from-source.js.map +1 -1
  9. package/dist/core/adapters/windsurf.d.ts +44 -0
  10. package/dist/core/adapters/windsurf.js +299 -0
  11. package/dist/core/adapters/windsurf.js.map +1 -0
  12. package/dist/core/hook/claude-settings.d.ts +12 -5
  13. package/dist/core/hook/claude-settings.js +21 -6
  14. package/dist/core/hook/claude-settings.js.map +1 -1
  15. package/dist/core/sources/source-registry.d.ts +1 -1
  16. package/dist/core/sources/source-registry.js +18 -0
  17. package/dist/core/sources/source-registry.js.map +1 -1
  18. package/dist/core/storage/sqlite-session-store.d.ts +2 -0
  19. package/dist/core/storage/sqlite-session-store.js +38 -2
  20. package/dist/core/storage/sqlite-session-store.js.map +1 -1
  21. package/dist/hook/hook-auth.d.ts +13 -0
  22. package/dist/hook/hook-auth.js +19 -0
  23. package/dist/hook/hook-auth.js.map +1 -0
  24. package/dist/hook/prompt-recall-hook.js +7 -1
  25. package/dist/hook/prompt-recall-hook.js.map +1 -1
  26. package/dist/hook/session-start-hook.js +4 -1
  27. package/dist/hook/session-start-hook.js.map +1 -1
  28. package/dist/hook/stop-hook.js +4 -1
  29. package/dist/hook/stop-hook.js.map +1 -1
  30. package/dist/http/app.d.ts +2 -0
  31. package/dist/http/app.js +76 -1
  32. package/dist/http/app.js.map +1 -1
  33. package/dist/install/claude-code.js +1 -1
  34. package/dist/install/claude-code.js.map +1 -1
  35. package/dist/install/cursor.d.ts +25 -0
  36. package/dist/install/cursor.js +43 -0
  37. package/dist/install/cursor.js.map +1 -0
  38. package/dist/install/nlm-dir-perms.d.ts +19 -0
  39. package/dist/install/nlm-dir-perms.js +43 -0
  40. package/dist/install/nlm-dir-perms.js.map +1 -0
  41. package/dist/install/ollama.d.ts +18 -1
  42. package/dist/install/ollama.js +62 -7
  43. package/dist/install/ollama.js.map +1 -1
  44. package/dist/install/setup.d.ts +4 -0
  45. package/dist/install/setup.js +141 -18
  46. package/dist/install/setup.js.map +1 -1
  47. package/dist/install/windsurf.d.ts +25 -0
  48. package/dist/install/windsurf.js +43 -0
  49. package/dist/install/windsurf.js.map +1 -0
  50. package/dist/mcp/server.js +20 -1
  51. package/dist/mcp/server.js.map +1 -1
  52. package/dist/shared/types.d.ts +4 -0
  53. package/dist/ui/assets/{index-BA6IpU8g.css → index-Beo8psd-.css} +1 -1
  54. package/dist/ui/assets/index-CSPTTeeM.js +69 -0
  55. package/dist/ui/index.html +2 -2
  56. package/package.json +26 -1
  57. package/plugin/scripts/prompt-recall-hook.mjs +55 -4
  58. package/plugin/scripts/stop-hook.mjs +57 -6
  59. package/.agents/plugins/marketplace.json +0 -20
  60. package/.github/workflows/ci.yml +0 -30
  61. package/dist/ui/assets/index-B_qIVV0k.js +0 -69
  62. package/docs/methodology/re-derivation-rate.md +0 -112
  63. package/docs/methodology/useful-hit-rate.md +0 -79
  64. package/docs/plans/2026-05-20-fts5-lexical-recall.md +0 -1088
  65. package/docs/plans/2026-05-20-recall-daemon-wedge-fix.md +0 -662
  66. package/docs/plans/2026-05-20-recall-hook-design.md +0 -131
  67. package/docs/plans/2026-05-20-recall-hook-implementation.md +0 -1222
  68. package/docs/plans/desktop-product.md +0 -69
  69. package/docs/plans/factstore-design.md +0 -236
  70. package/logs/CHANGELOG/CHANGELOG-2026.md +0 -1389
  71. package/logs/CHANGELOG/CHANGELOG.md +0 -337
  72. package/migrations/000_initial_schema.sql +0 -174
  73. package/migrations/001_entity_type_rename.sql +0 -17
  74. package/migrations/002_adapter_state_extend.sql +0 -12
  75. package/migrations/003_session_embeddings.sql +0 -11
  76. package/migrations/004_facts.sql +0 -46
  77. package/migrations/005_sources.sql +0 -31
  78. package/migrations/006_providers.sql +0 -33
  79. package/migrations/007_source_tokens.sql +0 -17
  80. package/migrations/008_fts_rebuild.sql +0 -9
  81. package/migrations/009_session_embedding_chunks.sql +0 -46
  82. package/migrations/010_sources_opencode.sql +0 -30
  83. package/migrations/011_sources_hermes_agent.sql +0 -30
  84. package/migrations/012_sources_aider.sql +0 -30
  85. package/migrations/013_adapter_state_failure_count.sql +0 -12
  86. package/plugin-hermes-agent/README.md +0 -49
  87. package/plugin-hermes-agent/__init__.py +0 -75
  88. package/plugin-hermes-agent/plugin.yaml +0 -15
  89. package/scripts/backfill-citations.mjs +0 -0
  90. package/scripts/build-codex-plugin.mjs +0 -61
  91. package/scripts/deepseek-probe.mjs +0 -67
  92. package/scripts/extract-triples.mjs +0 -207
  93. package/scripts/longmemeval/embedding-cache.ts +0 -77
  94. package/scripts/longmemeval/fetch-dataset.sh +0 -25
  95. package/scripts/longmemeval/run-harness.ts +0 -315
  96. package/scripts/longmemeval/scorer.ts +0 -99
  97. package/scripts/longmemeval/tsconfig.json +0 -9
  98. package/scripts/longmemeval/types.ts +0 -35
  99. package/scripts/nlm-daily-digest.py +0 -239
  100. package/scripts/nlm-daily-digest.sh +0 -28
  101. package/src/cli/classify-parity.ts +0 -257
  102. package/src/cli/launchctl-helpers.ts +0 -49
  103. package/src/cli/nlm.ts +0 -885
  104. package/src/core/actions/actions-log.ts +0 -118
  105. package/src/core/actions/overlay.ts +0 -117
  106. package/src/core/adapters/aider.ts +0 -205
  107. package/src/core/adapters/claude-code.ts +0 -293
  108. package/src/core/adapters/common.ts +0 -54
  109. package/src/core/adapters/from-source.ts +0 -57
  110. package/src/core/adapters/hermes-agent.ts +0 -240
  111. package/src/core/adapters/hermes.ts +0 -277
  112. package/src/core/adapters/jsonl-generic.ts +0 -208
  113. package/src/core/adapters/opencode.ts +0 -281
  114. package/src/core/adapters/pi.ts +0 -264
  115. package/src/core/classifier/prompt.ts +0 -200
  116. package/src/core/dataset/build-dataset.ts +0 -463
  117. package/src/core/embedding/chunk-body.ts +0 -76
  118. package/src/core/embedding/embed-backfill.ts +0 -210
  119. package/src/core/embedding/embed-normalize.ts +0 -135
  120. package/src/core/facts/backfill-facts.ts +0 -254
  121. package/src/core/facts/extract-facts.ts +0 -50
  122. package/src/core/hook/citation-detect.ts +0 -124
  123. package/src/core/hook/cite-memo.ts +0 -68
  124. package/src/core/hook/claude-settings.ts +0 -166
  125. package/src/core/hook/gate.ts +0 -25
  126. package/src/core/hook/hook-log.ts +0 -41
  127. package/src/core/hook/memo-sweep.ts +0 -164
  128. package/src/core/hook/memo.ts +0 -67
  129. package/src/core/hook/pointer-block.ts +0 -26
  130. package/src/core/hook/select.ts +0 -32
  131. package/src/core/hook/transcript.ts +0 -121
  132. package/src/core/ingest/ingest-session.ts +0 -111
  133. package/src/core/providers/provider-models.ts +0 -100
  134. package/src/core/providers/provider-registry.ts +0 -196
  135. package/src/core/recall/citation-log.ts +0 -108
  136. package/src/core/recall/filter.ts +0 -27
  137. package/src/core/recall/index.ts +0 -6
  138. package/src/core/recall/match-fields.ts +0 -40
  139. package/src/core/recall/query-log.ts +0 -149
  140. package/src/core/recall/query-shape.ts +0 -66
  141. package/src/core/recall/recall-service.ts +0 -320
  142. package/src/core/recall/recent-log.ts +0 -59
  143. package/src/core/recall/tokenize.ts +0 -18
  144. package/src/core/recall/useful-scan.ts +0 -336
  145. package/src/core/recall-facts/fact-query-log.ts +0 -150
  146. package/src/core/recall-facts/fact-recall-service.ts +0 -327
  147. package/src/core/scheduler/scan-once.ts +0 -142
  148. package/src/core/scheduler/scheduler.ts +0 -225
  149. package/src/core/sources/source-registry.ts +0 -260
  150. package/src/core/storage/db-restore.ts +0 -133
  151. package/src/core/storage/live-status.ts +0 -45
  152. package/src/core/storage/migrate.ts +0 -72
  153. package/src/core/storage/sqlite-fact-store.ts +0 -304
  154. package/src/core/storage/sqlite-session-store.ts +0 -765
  155. package/src/hook/prompt-recall-hook.ts +0 -174
  156. package/src/hook/session-end-hook.ts +0 -81
  157. package/src/hook/session-start-hook.ts +0 -165
  158. package/src/hook/stop-hook.ts +0 -236
  159. package/src/http/app.ts +0 -1137
  160. package/src/install/claude-code.ts +0 -128
  161. package/src/install/codex.ts +0 -367
  162. package/src/install/hermes-agent.ts +0 -76
  163. package/src/install/hermes.ts +0 -78
  164. package/src/install/ollama.ts +0 -211
  165. package/src/install/setup.ts +0 -368
  166. package/src/llm/classifier-box.ts +0 -64
  167. package/src/llm/deepseek-client.ts +0 -150
  168. package/src/llm/env-autoload.ts +0 -55
  169. package/src/llm/ollama-client.ts +0 -189
  170. package/src/mcp/server.ts +0 -534
  171. package/src/ports/fact-store.ts +0 -102
  172. package/src/ports/llm-client.ts +0 -52
  173. package/src/ports/logger.ts +0 -16
  174. package/src/ports/session-store.ts +0 -45
  175. package/src/ports/transcript-adapter.ts +0 -55
  176. package/src/shared/types.ts +0 -145
  177. package/src/ui/App.tsx +0 -58
  178. package/src/ui/components/PromoteOpenButton.tsx +0 -65
  179. package/src/ui/components/SessionDrawer.tsx +0 -136
  180. package/src/ui/components/SideNav.tsx +0 -162
  181. package/src/ui/components/Skeleton.tsx +0 -107
  182. package/src/ui/index.html +0 -13
  183. package/src/ui/lib/actions.ts +0 -30
  184. package/src/ui/lib/api.ts +0 -92
  185. package/src/ui/lib/dataset.ts +0 -141
  186. package/src/ui/lib/registries.ts +0 -155
  187. package/src/ui/lib/view-settings.ts +0 -41
  188. package/src/ui/main.tsx +0 -15
  189. package/src/ui/pages/Live.tsx +0 -229
  190. package/src/ui/pages/Pulse.tsx +0 -415
  191. package/src/ui/pages/Recall.tsx +0 -190
  192. package/src/ui/pages/River.tsx +0 -308
  193. package/src/ui/pages/Search.tsx +0 -93
  194. package/src/ui/pages/Stub.tsx +0 -9
  195. package/src/ui/pages/Thread.tsx +0 -262
  196. package/src/ui/pages/settings/Classifier.tsx +0 -227
  197. package/src/ui/pages/settings/Data.tsx +0 -190
  198. package/src/ui/pages/settings/Index.tsx +0 -65
  199. package/src/ui/pages/settings/Labels.tsx +0 -224
  200. package/src/ui/pages/settings/Providers.tsx +0 -305
  201. package/src/ui/pages/settings/SettingsSubnav.tsx +0 -28
  202. package/src/ui/pages/settings/Sources.tsx +0 -326
  203. package/src/ui/pages/settings/Views.tsx +0 -96
  204. package/src/ui/styles.css +0 -1766
  205. package/src/ui/tsconfig.json +0 -21
  206. package/src/ui/vite.config.ts +0 -19
  207. package/tests/fixtures/claude_code/short_session.jsonl +0 -2
  208. package/tests/fixtures/claude_code/standard_iso.jsonl +0 -4
  209. package/tests/fixtures/claude_code/tool_heavy.jsonl +0 -8
  210. package/tests/fixtures/claude_code/with_subagent.jsonl +0 -7
  211. package/tests/fixtures/facts.ts +0 -17
  212. package/tests/fixtures/golden-corpus.ts +0 -85
  213. package/tests/fixtures/hermes/paired_request_dump.json +0 -24
  214. package/tests/fixtures/hermes/paired_session.json +0 -23
  215. package/tests/fixtures/hermes/request_dump.json +0 -28
  216. package/tests/fixtures/hermes/session_iso.json +0 -38
  217. package/tests/fixtures/hermes/session_unix.json +0 -38
  218. package/tests/fixtures/hermes/system_only.json +0 -18
  219. package/tests/fixtures/pi/error-connection-abort.jsonl +0 -8
  220. package/tests/fixtures/pi/short-successful.jsonl +0 -5
  221. package/tests/fixtures/pi/with-custom-message.jsonl +0 -6
  222. package/tests/fixtures/sessions.ts +0 -22
  223. package/tests/integration/backfill-facts.test.ts +0 -362
  224. package/tests/integration/citation-explicit.test.ts +0 -111
  225. package/tests/integration/cite-event.test.ts +0 -169
  226. package/tests/integration/cite-memo.test.ts +0 -87
  227. package/tests/integration/db-restore.test.ts +0 -153
  228. package/tests/integration/embed-backfill.test.ts +0 -176
  229. package/tests/integration/fact-supersedence.test.ts +0 -313
  230. package/tests/integration/fts-index.test.ts +0 -60
  231. package/tests/integration/getbyids-sqlite.test.ts +0 -60
  232. package/tests/integration/hermes-agent-hooks.test.ts +0 -248
  233. package/tests/integration/hook-claude-settings.test.ts +0 -205
  234. package/tests/integration/hook-log.test.ts +0 -54
  235. package/tests/integration/hook-memo.test.ts +0 -68
  236. package/tests/integration/hook-pre-compact.test.ts +0 -105
  237. package/tests/integration/hook-subagent-start.test.ts +0 -102
  238. package/tests/integration/http.test.ts +0 -401
  239. package/tests/integration/keyword-search-fts.test.ts +0 -66
  240. package/tests/integration/mcp-recall-logging.test.ts +0 -88
  241. package/tests/integration/mcp.test.ts +0 -248
  242. package/tests/integration/memo-sweep.test.ts +0 -91
  243. package/tests/integration/prompt-recall-hook.test.ts +0 -88
  244. package/tests/integration/provider-registry.test.ts +0 -107
  245. package/tests/integration/recall-golden.test.ts +0 -59
  246. package/tests/integration/recall-sqlite.test.ts +0 -169
  247. package/tests/integration/scheduler.test.ts +0 -391
  248. package/tests/integration/session-end-hook.test.ts +0 -48
  249. package/tests/integration/session-start-hook.test.ts +0 -126
  250. package/tests/integration/source-registry.test.ts +0 -120
  251. package/tests/integration/sqlite-fact-store.test.ts +0 -346
  252. package/tests/integration/stop-hook.test.ts +0 -560
  253. package/tests/integration/wal-checkpoint.test.ts +0 -49
  254. package/tests/unit/cli/launchctl-helpers.test.ts +0 -60
  255. package/tests/unit/core/adapters/aider.test.ts +0 -230
  256. package/tests/unit/core/adapters/claude-code.test.ts +0 -118
  257. package/tests/unit/core/adapters/hermes-agent.test.ts +0 -329
  258. package/tests/unit/core/adapters/hermes.test.ts +0 -81
  259. package/tests/unit/core/adapters/jsonl-generic.test.ts +0 -142
  260. package/tests/unit/core/adapters/opencode.test.ts +0 -354
  261. package/tests/unit/core/adapters/pi.test.ts +0 -110
  262. package/tests/unit/core/classifier/prompt.test.ts +0 -126
  263. package/tests/unit/core/embedding/chunk-body.test.ts +0 -100
  264. package/tests/unit/core/facts/extract-facts.test.ts +0 -117
  265. package/tests/unit/core/filter.test.ts +0 -40
  266. package/tests/unit/core/hook/citation-detect-cite-session.test.ts +0 -96
  267. package/tests/unit/core/hook/citation-detect.test.ts +0 -124
  268. package/tests/unit/core/hook/gate.test.ts +0 -29
  269. package/tests/unit/core/hook/pointer-block.test.ts +0 -22
  270. package/tests/unit/core/hook/select.test.ts +0 -66
  271. package/tests/unit/core/match-fields.test.ts +0 -39
  272. package/tests/unit/core/mcp-cite-session.test.ts +0 -51
  273. package/tests/unit/core/providers/provider-models.test.ts +0 -101
  274. package/tests/unit/core/query-shape.test.ts +0 -92
  275. package/tests/unit/core/recall-facts/fact-recall-service.test.ts +0 -258
  276. package/tests/unit/core/recall-service.test.ts +0 -200
  277. package/tests/unit/core/storage/live-status.test.ts +0 -54
  278. package/tests/unit/core/tokenize.test.ts +0 -32
  279. package/tests/unit/core/useful-scan.test.ts +0 -537
  280. package/tests/unit/llm/embed.test.ts +0 -93
  281. package/tests/unit/llm/ollama-client.test.ts +0 -124
  282. package/tests/unit/scripts/longmemeval-scorer.test.ts +0 -114
  283. package/tsconfig.json +0 -31
  284. package/tsconfig.test.json +0 -11
  285. package/vitest.config.ts +0 -22
@@ -1,313 +0,0 @@
1
- /**
2
- * Phase B.4 — deterministic supersedence on (subject, predicate) collision.
3
- *
4
- * Drives SqliteSessionStore.insertSession with factSink wired and verifies
5
- * that prior non-superseded facts get marked superseded_by = newFactId
6
- * atomically with the session ingest. Tests live at the integration layer
7
- * because the behavior is inside a SQL transaction.
8
- */
9
-
10
- import { mkdtempSync, rmSync } from "node:fs";
11
- import { tmpdir } from "node:os";
12
- import { join, resolve } from "node:path";
13
- import { afterEach, beforeEach, describe, expect, it } from "vitest";
14
- import { SqliteFactStore } from "../../src/core/storage/sqlite-fact-store.js";
15
- import {
16
- type IngestRecord,
17
- SqliteSessionStore,
18
- } from "../../src/core/storage/sqlite-session-store.js";
19
- import type { Fact } from "../../src/shared/types.js";
20
- import { makeFact } from "../fixtures/facts.js";
21
-
22
- const MIGRATIONS_DIR = resolve(__dirname, "../../migrations");
23
-
24
- function makeRecord(overrides: Partial<IngestRecord> = {}): IngestRecord {
25
- return {
26
- id: "sess_test",
27
- runtime: "claude-code",
28
- runtimeSessionId: "test-1",
29
- startedAt: "2026-05-19T10:00:00Z",
30
- endedAt: "2026-05-19T10:30:00Z",
31
- durationMin: 30,
32
- label: "L",
33
- summary: "S",
34
- body: "",
35
- status: "closed",
36
- transcriptKind: "claude-code-jsonl",
37
- transcriptPath: null,
38
- transcriptOffset: null,
39
- transcriptLength: null,
40
- entities: [],
41
- decisions: [],
42
- openQuestions: [],
43
- ...overrides,
44
- };
45
- }
46
-
47
- function fact(overrides: Partial<Fact>): Fact {
48
- return makeFact({
49
- id: `fact_${Math.random().toString(36).slice(2, 10)}`,
50
- confidence: 0.9,
51
- ...overrides,
52
- });
53
- }
54
-
55
- describe("Phase B.4 — supersedence-on-ingest", () => {
56
- let tmp: string;
57
- let store: SqliteSessionStore;
58
- let factStore: SqliteFactStore;
59
-
60
- beforeEach(() => {
61
- tmp = mkdtempSync(join(tmpdir(), "nlm-b4-"));
62
- store = new SqliteSessionStore({
63
- dbPath: join(tmp, "canonical.sqlite"),
64
- migrationsDir: MIGRATIONS_DIR,
65
- });
66
- factStore = new SqliteFactStore(store.rawDb());
67
- });
68
-
69
- afterEach(() => {
70
- store.close();
71
- rmSync(tmp, { recursive: true, force: true });
72
- });
73
-
74
- it("cross-session collision: new fact supersedes prior current fact for the same (s, p)", async () => {
75
- // Session A asserts framework=Fastify
76
- const factA = fact({
77
- id: "f_A",
78
- subject: "nlm-memory-ts",
79
- predicate: "framework",
80
- value: "Fastify",
81
- sourceSessionId: "sess_A",
82
- createdAt: "2026-05-18T10:00:00Z",
83
- });
84
- await store.insertSession(
85
- makeRecord({ id: "sess_A", startedAt: "2026-05-18T10:00:00Z" }),
86
- null,
87
- null,
88
- { factStore, facts: [factA] },
89
- );
90
-
91
- // Session B asserts framework=Hono
92
- const factB = fact({
93
- id: "f_B",
94
- subject: "nlm-memory-ts",
95
- predicate: "framework",
96
- value: "Hono",
97
- sourceSessionId: "sess_B",
98
- createdAt: "2026-05-19T10:00:00Z",
99
- });
100
- await store.insertSession(
101
- makeRecord({ id: "sess_B" }),
102
- null,
103
- null,
104
- { factStore, facts: [factB] },
105
- );
106
-
107
- const fetchedA = await factStore.getById("f_A");
108
- const fetchedB = await factStore.getById("f_B");
109
- expect(fetchedA?.supersededBy).toBe("f_B");
110
- expect(fetchedB?.supersededBy).toBeNull();
111
-
112
- const current = await factStore.findCurrent("nlm-memory-ts", "framework");
113
- expect(current?.id).toBe("f_B");
114
- expect(current?.value).toBe("Hono");
115
- });
116
-
117
- it("no collision when subject differs", async () => {
118
- await store.insertSession(
119
- makeRecord({ id: "sess_A" }),
120
- null, null,
121
- {
122
- factStore,
123
- facts: [fact({ id: "fA", subject: "alpha", predicate: "framework", value: "v", sourceSessionId: "sess_A" })],
124
- },
125
- );
126
- await store.insertSession(
127
- makeRecord({ id: "sess_B" }),
128
- null, null,
129
- {
130
- factStore,
131
- facts: [fact({ id: "fB", subject: "beta", predicate: "framework", value: "v", sourceSessionId: "sess_B" })],
132
- },
133
- );
134
- expect((await factStore.getById("fA"))?.supersededBy).toBeNull();
135
- expect((await factStore.getById("fB"))?.supersededBy).toBeNull();
136
- });
137
-
138
- it("no collision when predicate differs", async () => {
139
- await store.insertSession(
140
- makeRecord({ id: "sess_A" }),
141
- null, null,
142
- {
143
- factStore,
144
- facts: [fact({ id: "fA", subject: "x", predicate: "framework", value: "v", sourceSessionId: "sess_A" })],
145
- },
146
- );
147
- await store.insertSession(
148
- makeRecord({ id: "sess_B" }),
149
- null, null,
150
- {
151
- factStore,
152
- facts: [fact({ id: "fB", subject: "x", predicate: "endpoint", value: "v", sourceSessionId: "sess_B" })],
153
- },
154
- );
155
- expect((await factStore.getById("fA"))?.supersededBy).toBeNull();
156
- expect((await factStore.getById("fB"))?.supersededBy).toBeNull();
157
- });
158
-
159
- it("always-supersede policy: same value from a new session still supersedes (provenance changes)", async () => {
160
- const factA = fact({
161
- id: "f_A", subject: "x", predicate: "framework", value: "Hono",
162
- sourceSessionId: "sess_A", createdAt: "2026-05-18T10:00:00Z",
163
- });
164
- await store.insertSession(makeRecord({ id: "sess_A", startedAt: "2026-05-18T10:00:00Z" }), null, null,
165
- { factStore, facts: [factA] });
166
-
167
- const factB = fact({
168
- id: "f_B", subject: "x", predicate: "framework", value: "Hono",
169
- sourceSessionId: "sess_B", createdAt: "2026-05-19T10:00:00Z",
170
- });
171
- await store.insertSession(makeRecord({ id: "sess_B" }), null, null,
172
- { factStore, facts: [factB] });
173
-
174
- expect((await factStore.getById("f_A"))?.supersededBy).toBe("f_B");
175
- expect((await factStore.getById("f_B"))?.supersededBy).toBeNull();
176
- });
177
-
178
- it("three-deep chain: A → B → C, only the immediate predecessor gets re-linked per ingest", async () => {
179
- const factA = fact({ id: "f_A", subject: "x", predicate: "framework", value: "Fastify", sourceSessionId: "sess_A", createdAt: "2026-05-17T10:00:00Z" });
180
- const factB = fact({ id: "f_B", subject: "x", predicate: "framework", value: "Hono", sourceSessionId: "sess_B", createdAt: "2026-05-18T10:00:00Z" });
181
- const factC = fact({ id: "f_C", subject: "x", predicate: "framework", value: "Elysia", sourceSessionId: "sess_C", createdAt: "2026-05-19T10:00:00Z" });
182
-
183
- await store.insertSession(makeRecord({ id: "sess_A", startedAt: "2026-05-17T10:00:00Z" }), null, null, { factStore, facts: [factA] });
184
- await store.insertSession(makeRecord({ id: "sess_B", startedAt: "2026-05-18T10:00:00Z" }), null, null, { factStore, facts: [factB] });
185
- await store.insertSession(makeRecord({ id: "sess_C", startedAt: "2026-05-19T10:00:00Z" }), null, null, { factStore, facts: [factC] });
186
-
187
- expect((await factStore.getById("f_A"))?.supersededBy).toBe("f_B");
188
- expect((await factStore.getById("f_B"))?.supersededBy).toBe("f_C");
189
- expect((await factStore.getById("f_C"))?.supersededBy).toBeNull();
190
-
191
- // History walks newest → oldest
192
- const chains = await factStore.getHistory("x", "framework");
193
- expect(chains[0]?.history.map((f) => f.id)).toEqual(["f_C", "f_B", "f_A"]);
194
- });
195
-
196
- it("re-ingest of same session re-establishes the chain (CASCADE-SET-NULL on the old self-fact)", async () => {
197
- // First, an old session asserts framework=v1
198
- const oldFact = fact({
199
- id: "f_old", subject: "x", predicate: "framework", value: "v1",
200
- sourceSessionId: "sess_old", createdAt: "2026-05-17T10:00:00Z",
201
- });
202
- await store.insertSession(
203
- makeRecord({ id: "sess_old", startedAt: "2026-05-17T10:00:00Z" }),
204
- null, null, { factStore, facts: [oldFact] },
205
- );
206
-
207
- // Self session asserts framework=v2 — supersedes f_old
208
- const selfFactV1 = fact({
209
- id: "f_self_v1", subject: "x", predicate: "framework", value: "v2",
210
- sourceSessionId: "sess_self", createdAt: "2026-05-18T10:00:00Z",
211
- });
212
- await store.insertSession(
213
- makeRecord({ id: "sess_self", startedAt: "2026-05-18T10:00:00Z" }),
214
- null, null, { factStore, facts: [selfFactV1] },
215
- );
216
- expect((await factStore.getById("f_old"))?.supersededBy).toBe("f_self_v1");
217
-
218
- // Re-ingest sess_self with a refreshed fact (e.g. classifier produced a
219
- // new id on a re-classification). The old self fact is wiped via DELETE;
220
- // ON DELETE SET NULL releases f_old; then the new self fact picks up
221
- // the collision and re-supersedes f_old.
222
- const selfFactV2 = fact({
223
- id: "f_self_v2", subject: "x", predicate: "framework", value: "v2",
224
- sourceSessionId: "sess_self", createdAt: "2026-05-18T11:00:00Z",
225
- });
226
- await store.insertSession(
227
- makeRecord({ id: "sess_self", startedAt: "2026-05-18T10:00:00Z" }),
228
- null, null, { factStore, facts: [selfFactV2] },
229
- );
230
-
231
- expect(await factStore.getById("f_self_v1")).toBeNull(); // deleted
232
- expect((await factStore.getById("f_old"))?.supersededBy).toBe("f_self_v2");
233
- expect((await factStore.getById("f_self_v2"))?.supersededBy).toBeNull();
234
-
235
- const current = await factStore.findCurrent("x", "framework");
236
- expect(current?.id).toBe("f_self_v2");
237
- });
238
-
239
- it("does not supersede when factSink is omitted", async () => {
240
- // Pre-seed a fact via the direct factStore API (no session txn route)
241
- store.insertSessionForTest({
242
- id: "sess_seed",
243
- runtime: "claude-code",
244
- runtimeSessionId: "seed",
245
- startedAt: "2026-05-18T00:00:00Z",
246
- endedAt: null,
247
- durationMin: null,
248
- label: "seed",
249
- summary: "",
250
- status: "closed",
251
- transcriptKind: "claude-code-jsonl",
252
- transcriptPath: null,
253
- body: "",
254
- entities: [],
255
- decisions: [],
256
- open: [],
257
- });
258
- await factStore.insert(
259
- fact({ id: "f_seed", subject: "x", predicate: "framework", value: "v1", sourceSessionId: "sess_seed" }),
260
- );
261
-
262
- // Insert a session with NO factSink. The seed fact stays current.
263
- await store.insertSession(makeRecord({ id: "sess_nofacts" }));
264
- expect((await factStore.getById("f_seed"))?.supersededBy).toBeNull();
265
- });
266
-
267
- it("multi-fact ingest: each new fact supersedes its own (s, p) predecessor independently", async () => {
268
- // Two prior facts, different (s, p) pairs
269
- const sessFirst = "sess_first";
270
- await store.insertSession(
271
- makeRecord({ id: sessFirst, startedAt: "2026-05-18T10:00:00Z" }),
272
- null, null,
273
- {
274
- factStore,
275
- facts: [
276
- fact({ id: "p1", subject: "a", predicate: "framework", value: "Fastify", sourceSessionId: sessFirst, createdAt: "2026-05-18T10:00:00Z" }),
277
- fact({ id: "p2", subject: "b", predicate: "endpoint", value: ":8080", sourceSessionId: sessFirst, createdAt: "2026-05-18T10:00:00Z" }),
278
- ],
279
- },
280
- );
281
-
282
- // One ingest delivering supersedents to both
283
- await store.insertSession(
284
- makeRecord({ id: "sess_multi", startedAt: "2026-05-19T10:00:00Z" }),
285
- null, null,
286
- {
287
- factStore,
288
- facts: [
289
- fact({ id: "n1", subject: "a", predicate: "framework", value: "Hono", sourceSessionId: "sess_multi", createdAt: "2026-05-19T10:00:00Z" }),
290
- fact({ id: "n2", subject: "b", predicate: "endpoint", value: ":3940", sourceSessionId: "sess_multi", createdAt: "2026-05-19T10:00:00Z" }),
291
- ],
292
- },
293
- );
294
-
295
- expect((await factStore.getById("p1"))?.supersededBy).toBe("n1");
296
- expect((await factStore.getById("p2"))?.supersededBy).toBe("n2");
297
- expect((await factStore.getById("n1"))?.supersededBy).toBeNull();
298
- expect((await factStore.getById("n2"))?.supersededBy).toBeNull();
299
- });
300
-
301
- it("FactRecallService default minConfidence respects supersedence — only current shows", async () => {
302
- const factA = fact({ id: "f_old", subject: "x", predicate: "framework", value: "Fastify", sourceSessionId: "sess_A", createdAt: "2026-05-17T10:00:00Z" });
303
- const factB = fact({ id: "f_new", subject: "x", predicate: "framework", value: "Hono", sourceSessionId: "sess_B", createdAt: "2026-05-19T10:00:00Z" });
304
- await store.insertSession(makeRecord({ id: "sess_A", startedAt: "2026-05-17T10:00:00Z" }), null, null, { factStore, facts: [factA] });
305
- await store.insertSession(makeRecord({ id: "sess_B", startedAt: "2026-05-19T10:00:00Z" }), null, null, { factStore, facts: [factB] });
306
-
307
- const current = await factStore.list({ subject: "x", predicate: "framework" });
308
- expect(current.map((f) => f.id)).toEqual(["f_new"]);
309
-
310
- const all = await factStore.list({ subject: "x", predicate: "framework", includeSuperseded: true });
311
- expect(all.map((f) => f.id).sort()).toEqual(["f_new", "f_old"]);
312
- });
313
- });
@@ -1,60 +0,0 @@
1
- /**
2
- * Verifies the sessions_fts FTS5 index is present and kept in sync with the
3
- * sessions table after migrations run and rows are inserted.
4
- */
5
-
6
- import { mkdtempSync, rmSync } from "node:fs";
7
- import { tmpdir } from "node:os";
8
- import { join, resolve } from "node:path";
9
- import { afterEach, beforeEach, describe, expect, it } from "vitest";
10
- import { SqliteSessionStore } from "../../src/core/storage/sqlite-session-store.js";
11
- import { makeSession } from "../fixtures/sessions.js";
12
-
13
- const MIGRATIONS_DIR = resolve(__dirname, "../../migrations");
14
-
15
- describe("sessions_fts index", () => {
16
- let tmp: string;
17
- let store: SqliteSessionStore;
18
-
19
- beforeEach(() => {
20
- tmp = mkdtempSync(join(tmpdir(), "nlm-fts-"));
21
- store = new SqliteSessionStore({
22
- dbPath: join(tmp, "canonical.sqlite"),
23
- migrationsDir: MIGRATIONS_DIR,
24
- });
25
- });
26
-
27
- afterEach(() => {
28
- store.close();
29
- rmSync(tmp, { recursive: true, force: true });
30
- });
31
-
32
- it("populates sessions_fts via triggers on insert", () => {
33
- store.insertSessionForTest(makeSession({ id: "s1", label: "alpha", body: "beta" }));
34
- store.insertSessionForTest(makeSession({ id: "s2", label: "gamma", body: "delta" }));
35
- const db = store.rawDb();
36
- const fts = db.prepare<[], { n: number }>("SELECT count(*) AS n FROM sessions_fts").get();
37
- const rows = db.prepare<[], { n: number }>("SELECT count(*) AS n FROM sessions").get();
38
- expect(fts?.n).toBe(rows?.n);
39
- expect(fts?.n).toBe(2);
40
- });
41
-
42
- it("records the 008 fts_rebuild migration as applied", () => {
43
- const db = store.rawDb();
44
- const row = db
45
- .prepare<[number], { name: string }>("SELECT name FROM schema_migrations WHERE version = ?")
46
- .get(8);
47
- expect(row?.name).toBe("fts_rebuild");
48
- });
49
-
50
- it("answers a raw FTS5 MATCH query", () => {
51
- store.insertSessionForTest(makeSession({ id: "s1", label: "pgvector plan", body: "" }));
52
- const db = store.rawDb();
53
- const hit = db
54
- .prepare<[string], { id: string }>(
55
- "SELECT s.id FROM sessions_fts JOIN sessions s ON s.rowid = sessions_fts.rowid WHERE sessions_fts MATCH ?",
56
- )
57
- .get('"pgvector"');
58
- expect(hit?.id).toBe("s1");
59
- });
60
- });
@@ -1,60 +0,0 @@
1
- /**
2
- * SqliteSessionStore.getByIds — batched, body-free session fetch used by
3
- * the recall path so it never loads the full corpus.
4
- */
5
-
6
- import { mkdtempSync, rmSync } from "node:fs";
7
- import { tmpdir } from "node:os";
8
- import { join, resolve } from "node:path";
9
- import { afterEach, beforeEach, describe, expect, it } from "vitest";
10
- import { SqliteSessionStore } from "../../src/core/storage/sqlite-session-store.js";
11
- import { makeSession } from "../fixtures/sessions.js";
12
-
13
- const MIGRATIONS_DIR = resolve(__dirname, "../../migrations");
14
-
15
- describe("SqliteSessionStore.getByIds", () => {
16
- let tmp: string;
17
- let store: SqliteSessionStore;
18
-
19
- beforeEach(() => {
20
- tmp = mkdtempSync(join(tmpdir(), "nlm-getbyids-"));
21
- store = new SqliteSessionStore({
22
- dbPath: join(tmp, "canonical.sqlite"),
23
- migrationsDir: MIGRATIONS_DIR,
24
- });
25
- store.insertSessionForTest(
26
- makeSession({ id: "s1", label: "alpha", body: "BODY ONE", entities: ["NLM"], decisions: ["d1"] }),
27
- );
28
- store.insertSessionForTest(
29
- makeSession({ id: "s2", label: "beta", body: "BODY TWO", open: ["q1"] }),
30
- );
31
- store.insertSessionForTest(makeSession({ id: "s3", label: "gamma" }));
32
- });
33
-
34
- afterEach(() => {
35
- store.close();
36
- rmSync(tmp, { recursive: true, force: true });
37
- });
38
-
39
- it("returns only the requested sessions", async () => {
40
- const got = await store.getByIds(["s1", "s3"]);
41
- expect(got.map((s) => s.id).sort()).toEqual(["s1", "s3"]);
42
- });
43
-
44
- it("returns an empty array for an empty id list", async () => {
45
- expect(await store.getByIds([])).toEqual([]);
46
- });
47
-
48
- it("ignores ids that do not exist", async () => {
49
- const got = await store.getByIds(["s2", "missing"]);
50
- expect(got.map((s) => s.id)).toEqual(["s2"]);
51
- });
52
-
53
- it("populates entities and markers but omits body (body is empty)", async () => {
54
- const got = await store.getByIds(["s1"]);
55
- const s1 = got[0];
56
- expect(s1?.entities).toEqual(["NLM"]);
57
- expect(s1?.decisions).toEqual(["d1"]);
58
- expect(s1?.body).toBe("");
59
- });
60
- });
@@ -1,248 +0,0 @@
1
- /**
2
- * NousResearch Hermes Agent hook endpoints — integration tests.
3
- *
4
- * All three hermes-agent endpoints are tested against a real
5
- * SqliteSessionStore + RecallService running in-process (no network, no
6
- * TTY required). This mirrors the approach used in http.test.ts and
7
- * hook-pre-compact.test.ts.
8
- */
9
-
10
- import { existsSync, mkdtempSync, rmSync } from "node:fs";
11
- import { tmpdir } from "node:os";
12
- import { join, resolve } from "node:path";
13
- import { afterEach, beforeEach, describe, expect, it } from "vitest";
14
- import type { Hono } from "hono";
15
- import { RecallService } from "../../src/core/recall/recall-service.js";
16
- import { SqliteSessionStore } from "../../src/core/storage/sqlite-session-store.js";
17
- import { createApp } from "../../src/http/app.js";
18
- import type { EmbedResult, LLMClient } from "../../src/ports/llm-client.js";
19
- import { makeSession } from "../fixtures/sessions.js";
20
-
21
- const MIGRATIONS_DIR = resolve(__dirname, "../../migrations");
22
-
23
- class NoopEmbedder implements LLMClient {
24
- async embed(): Promise<EmbedResult> {
25
- return { vector: new Float32Array(768), model: "noop" };
26
- }
27
- async classify(): Promise<never> {
28
- throw new Error("not used");
29
- }
30
- }
31
-
32
- describe("hermes-agent hook endpoints", () => {
33
- let tmp: string;
34
- let store: SqliteSessionStore;
35
- let app: Hono;
36
- let citationLogPath: string;
37
-
38
- beforeEach(() => {
39
- tmp = mkdtempSync(join(tmpdir(), "nlm-hermes-agent-"));
40
- process.env["NLM_HOOK_STATE_DIR"] = join(tmp, "hook-state");
41
- process.env["NLM_HOOK_LOG"] = join(tmp, "hook-log.jsonl");
42
- citationLogPath = join(tmp, "citation-log.jsonl");
43
-
44
- store = new SqliteSessionStore({
45
- dbPath: join(tmp, "canonical.sqlite"),
46
- migrationsDir: MIGRATIONS_DIR,
47
- });
48
- store.insertSessionForTest(
49
- makeSession({ id: "sess_a", label: "recall hook design", body: "recall hook design work" }),
50
- );
51
- store.insertSessionForTest(
52
- makeSession({ id: "sess_b", label: "sqlite migration plan", body: "database migration" }),
53
- );
54
-
55
- const recall = new RecallService({ store, llm: new NoopEmbedder() });
56
- app = createApp({ recall, store, citationLogPath });
57
- });
58
-
59
- afterEach(() => {
60
- delete process.env["NLM_HOOK_STATE_DIR"];
61
- delete process.env["NLM_HOOK_LOG"];
62
- rmSync(tmp, { recursive: true, force: true });
63
- });
64
-
65
- // ── pre-turn ──────────────────────────────────────────────────────────────
66
-
67
- it("pre-turn returns context for a matching query", async () => {
68
- const res = await app.request("/api/hook/hermes-agent/pre-turn", {
69
- method: "POST",
70
- headers: { "Content-Type": "application/json" },
71
- body: JSON.stringify({ session_id: "sess_hermes_1", user_message: "recall hook" }),
72
- });
73
- expect(res.status).toBe(200);
74
- const body = (await res.json()) as Record<string, unknown>;
75
- expect(typeof body["context"]).toBe("string");
76
- expect((body["context"] as string).length).toBeGreaterThan(0);
77
- expect(body["context"]).toContain("sess_a");
78
- });
79
-
80
- it("pre-turn returns null context for a generative prompt", async () => {
81
- const res = await app.request("/api/hook/hermes-agent/pre-turn", {
82
- method: "POST",
83
- headers: { "Content-Type": "application/json" },
84
- body: JSON.stringify({ session_id: "sess_hermes_2", user_message: "write a poem about autumn" }),
85
- });
86
- expect(res.status).toBe(200);
87
- const body = (await res.json()) as Record<string, unknown>;
88
- expect(body["context"]).toBeNull();
89
- });
90
-
91
- it("pre-turn returns null context for empty DB query", async () => {
92
- const res = await app.request("/api/hook/hermes-agent/pre-turn", {
93
- method: "POST",
94
- headers: { "Content-Type": "application/json" },
95
- body: JSON.stringify({ session_id: "sess_hermes_3", user_message: "xyzzy completely unrelated" }),
96
- });
97
- expect(res.status).toBe(200);
98
- const body = (await res.json()) as Record<string, unknown>;
99
- expect(body["context"]).toBeNull();
100
- });
101
-
102
- it("pre-turn deduplicates: same session not re-surfaced on second fire", async () => {
103
- const payload = { session_id: "sess_hermes_4", user_message: "recall hook" };
104
- const first = await app.request("/api/hook/hermes-agent/pre-turn", {
105
- method: "POST",
106
- headers: { "Content-Type": "application/json" },
107
- body: JSON.stringify(payload),
108
- });
109
- expect(first.status).toBe(200);
110
- const firstBody = (await first.json()) as Record<string, unknown>;
111
- expect(firstBody["context"]).toBeTruthy();
112
-
113
- const second = await app.request("/api/hook/hermes-agent/pre-turn", {
114
- method: "POST",
115
- headers: { "Content-Type": "application/json" },
116
- body: JSON.stringify(payload),
117
- });
118
- expect(second.status).toBe(200);
119
- const secondBody = (await second.json()) as Record<string, unknown>;
120
- expect(secondBody["context"]).toBeNull();
121
- });
122
-
123
- it("pre-turn returns 400 when session_id is missing", async () => {
124
- const res = await app.request("/api/hook/hermes-agent/pre-turn", {
125
- method: "POST",
126
- headers: { "Content-Type": "application/json" },
127
- body: JSON.stringify({ user_message: "recall hook" }),
128
- });
129
- expect(res.status).toBe(400);
130
- });
131
-
132
- // ── post-turn ─────────────────────────────────────────────────────────────
133
-
134
- it("post-turn detects and logs a cited session ID", async () => {
135
- // Prime the memo so sess_a is in the surfaced set.
136
- await app.request("/api/hook/hermes-agent/pre-turn", {
137
- method: "POST",
138
- headers: { "Content-Type": "application/json" },
139
- body: JSON.stringify({ session_id: "sess_hermes_5", user_message: "recall hook" }),
140
- });
141
-
142
- const res = await app.request("/api/hook/hermes-agent/post-turn", {
143
- method: "POST",
144
- headers: { "Content-Type": "application/json" },
145
- body: JSON.stringify({
146
- session_id: "sess_hermes_5",
147
- assistant_response: "Based on sess_a, here is the answer.",
148
- }),
149
- });
150
- expect(res.status).toBe(200);
151
- const body = (await res.json()) as Record<string, unknown>;
152
- expect(body["ok"]).toBe(true);
153
- expect(body["cited"]).toBe(1);
154
- expect(existsSync(citationLogPath)).toBe(true);
155
- });
156
-
157
- it("post-turn returns cited=0 when no surfaced IDs appear in response", async () => {
158
- const res = await app.request("/api/hook/hermes-agent/post-turn", {
159
- method: "POST",
160
- headers: { "Content-Type": "application/json" },
161
- body: JSON.stringify({
162
- session_id: "sess_hermes_6",
163
- assistant_response: "No session references here.",
164
- }),
165
- });
166
- expect(res.status).toBe(200);
167
- const body = (await res.json()) as Record<string, unknown>;
168
- expect(body["cited"]).toBe(0);
169
- });
170
-
171
- it("post-turn returns 400 when session_id is missing", async () => {
172
- const res = await app.request("/api/hook/hermes-agent/post-turn", {
173
- method: "POST",
174
- headers: { "Content-Type": "application/json" },
175
- body: JSON.stringify({ assistant_response: "some response" }),
176
- });
177
- expect(res.status).toBe(400);
178
- });
179
-
180
- // ── session-lifecycle ─────────────────────────────────────────────────────
181
-
182
- it("session-lifecycle start is accepted without session_id requirement", async () => {
183
- const res = await app.request("/api/hook/hermes-agent/session-lifecycle", {
184
- method: "POST",
185
- headers: { "Content-Type": "application/json" },
186
- body: JSON.stringify({ event: "start", session_id: "sess_hermes_7" }),
187
- });
188
- expect(res.status).toBe(200);
189
- const body = (await res.json()) as Record<string, unknown>;
190
- expect(body["ok"]).toBe(true);
191
- expect(body["event"]).toBe("start");
192
- });
193
-
194
- it("session-lifecycle end clears the surfaced-ID memo", async () => {
195
- // Prime memo.
196
- await app.request("/api/hook/hermes-agent/pre-turn", {
197
- method: "POST",
198
- headers: { "Content-Type": "application/json" },
199
- body: JSON.stringify({ session_id: "sess_hermes_8", user_message: "recall hook" }),
200
- });
201
- const memoPath = join(tmp, "hook-state", "sess_hermes_8.json");
202
- expect(existsSync(memoPath)).toBe(true);
203
-
204
- await app.request("/api/hook/hermes-agent/session-lifecycle", {
205
- method: "POST",
206
- headers: { "Content-Type": "application/json" },
207
- body: JSON.stringify({ event: "end", session_id: "sess_hermes_8" }),
208
- });
209
- expect(existsSync(memoPath)).toBe(false);
210
- });
211
-
212
- it("session-lifecycle finalize clears the memo", async () => {
213
- await app.request("/api/hook/hermes-agent/pre-turn", {
214
- method: "POST",
215
- headers: { "Content-Type": "application/json" },
216
- body: JSON.stringify({ session_id: "sess_hermes_9", user_message: "recall hook" }),
217
- });
218
- await app.request("/api/hook/hermes-agent/session-lifecycle", {
219
- method: "POST",
220
- headers: { "Content-Type": "application/json" },
221
- body: JSON.stringify({ event: "finalize", session_id: "sess_hermes_9" }),
222
- });
223
- expect(existsSync(join(tmp, "hook-state", "sess_hermes_9.json"))).toBe(false);
224
- });
225
-
226
- it("session-lifecycle reset clears the memo", async () => {
227
- await app.request("/api/hook/hermes-agent/pre-turn", {
228
- method: "POST",
229
- headers: { "Content-Type": "application/json" },
230
- body: JSON.stringify({ session_id: "sess_hermes_10", user_message: "recall hook" }),
231
- });
232
- await app.request("/api/hook/hermes-agent/session-lifecycle", {
233
- method: "POST",
234
- headers: { "Content-Type": "application/json" },
235
- body: JSON.stringify({ event: "reset", session_id: "sess_hermes_10" }),
236
- });
237
- expect(existsSync(join(tmp, "hook-state", "sess_hermes_10.json"))).toBe(false);
238
- });
239
-
240
- it("session-lifecycle returns 400 for an unknown event", async () => {
241
- const res = await app.request("/api/hook/hermes-agent/session-lifecycle", {
242
- method: "POST",
243
- headers: { "Content-Type": "application/json" },
244
- body: JSON.stringify({ event: "unknown", session_id: "sess_hermes_x" }),
245
- });
246
- expect(res.status).toBe(400);
247
- });
248
- });