nlm-memory 0.4.0

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 (472) hide show
  1. package/.agents/plugins/marketplace.json +20 -0
  2. package/.github/workflows/ci.yml +30 -0
  3. package/LICENSE +151 -0
  4. package/README.md +119 -0
  5. package/dist/cli/classify-parity.d.ts +48 -0
  6. package/dist/cli/classify-parity.js +182 -0
  7. package/dist/cli/classify-parity.js.map +1 -0
  8. package/dist/cli/launchctl-helpers.d.ts +26 -0
  9. package/dist/cli/launchctl-helpers.js +42 -0
  10. package/dist/cli/launchctl-helpers.js.map +1 -0
  11. package/dist/cli/nlm.d.ts +25 -0
  12. package/dist/cli/nlm.js +832 -0
  13. package/dist/cli/nlm.js.map +1 -0
  14. package/dist/core/actions/actions-log.d.ts +40 -0
  15. package/dist/core/actions/actions-log.js +72 -0
  16. package/dist/core/actions/actions-log.js.map +1 -0
  17. package/dist/core/actions/overlay.d.ts +30 -0
  18. package/dist/core/actions/overlay.js +101 -0
  19. package/dist/core/actions/overlay.js.map +1 -0
  20. package/dist/core/adapters/aider.d.ts +33 -0
  21. package/dist/core/adapters/aider.js +167 -0
  22. package/dist/core/adapters/aider.js.map +1 -0
  23. package/dist/core/adapters/claude-code.d.ts +32 -0
  24. package/dist/core/adapters/claude-code.js +270 -0
  25. package/dist/core/adapters/claude-code.js.map +1 -0
  26. package/dist/core/adapters/common.d.ts +20 -0
  27. package/dist/core/adapters/common.js +60 -0
  28. package/dist/core/adapters/common.js.map +1 -0
  29. package/dist/core/adapters/from-source.d.ts +11 -0
  30. package/dist/core/adapters/from-source.js +55 -0
  31. package/dist/core/adapters/from-source.js.map +1 -0
  32. package/dist/core/adapters/hermes-agent.d.ts +34 -0
  33. package/dist/core/adapters/hermes-agent.js +192 -0
  34. package/dist/core/adapters/hermes-agent.js.map +1 -0
  35. package/dist/core/adapters/hermes.d.ts +31 -0
  36. package/dist/core/adapters/hermes.js +247 -0
  37. package/dist/core/adapters/hermes.js.map +1 -0
  38. package/dist/core/adapters/jsonl-generic.d.ts +56 -0
  39. package/dist/core/adapters/jsonl-generic.js +185 -0
  40. package/dist/core/adapters/jsonl-generic.js.map +1 -0
  41. package/dist/core/adapters/opencode.d.ts +36 -0
  42. package/dist/core/adapters/opencode.js +213 -0
  43. package/dist/core/adapters/opencode.js.map +1 -0
  44. package/dist/core/adapters/pi.d.ts +32 -0
  45. package/dist/core/adapters/pi.js +233 -0
  46. package/dist/core/adapters/pi.js.map +1 -0
  47. package/dist/core/classifier/prompt.d.ts +60 -0
  48. package/dist/core/classifier/prompt.js +178 -0
  49. package/dist/core/classifier/prompt.js.map +1 -0
  50. package/dist/core/dataset/build-dataset.d.ts +87 -0
  51. package/dist/core/dataset/build-dataset.js +335 -0
  52. package/dist/core/dataset/build-dataset.js.map +1 -0
  53. package/dist/core/embedding/chunk-body.d.ts +30 -0
  54. package/dist/core/embedding/chunk-body.js +60 -0
  55. package/dist/core/embedding/chunk-body.js.map +1 -0
  56. package/dist/core/embedding/embed-backfill.d.ts +36 -0
  57. package/dist/core/embedding/embed-backfill.js +168 -0
  58. package/dist/core/embedding/embed-backfill.js.map +1 -0
  59. package/dist/core/embedding/embed-normalize.d.ts +28 -0
  60. package/dist/core/embedding/embed-normalize.js +98 -0
  61. package/dist/core/embedding/embed-normalize.js.map +1 -0
  62. package/dist/core/facts/backfill-facts.d.ts +58 -0
  63. package/dist/core/facts/backfill-facts.js +169 -0
  64. package/dist/core/facts/backfill-facts.js.map +1 -0
  65. package/dist/core/facts/extract-facts.d.ts +20 -0
  66. package/dist/core/facts/extract-facts.js +37 -0
  67. package/dist/core/facts/extract-facts.js.map +1 -0
  68. package/dist/core/hook/citation-detect.d.ts +32 -0
  69. package/dist/core/hook/citation-detect.js +105 -0
  70. package/dist/core/hook/citation-detect.js.map +1 -0
  71. package/dist/core/hook/cite-memo.d.ts +20 -0
  72. package/dist/core/hook/cite-memo.js +68 -0
  73. package/dist/core/hook/cite-memo.js.map +1 -0
  74. package/dist/core/hook/claude-settings.d.ts +34 -0
  75. package/dist/core/hook/claude-settings.js +117 -0
  76. package/dist/core/hook/claude-settings.js.map +1 -0
  77. package/dist/core/hook/gate.d.ts +11 -0
  78. package/dist/core/hook/gate.js +19 -0
  79. package/dist/core/hook/gate.js.map +1 -0
  80. package/dist/core/hook/hook-log.d.ts +25 -0
  81. package/dist/core/hook/hook-log.js +28 -0
  82. package/dist/core/hook/hook-log.js.map +1 -0
  83. package/dist/core/hook/memo-sweep.d.ts +55 -0
  84. package/dist/core/hook/memo-sweep.js +134 -0
  85. package/dist/core/hook/memo-sweep.js.map +1 -0
  86. package/dist/core/hook/memo.d.ts +20 -0
  87. package/dist/core/hook/memo.js +66 -0
  88. package/dist/core/hook/memo.js.map +1 -0
  89. package/dist/core/hook/pointer-block.d.ts +14 -0
  90. package/dist/core/hook/pointer-block.js +19 -0
  91. package/dist/core/hook/pointer-block.js.map +1 -0
  92. package/dist/core/hook/select.d.ts +21 -0
  93. package/dist/core/hook/select.js +15 -0
  94. package/dist/core/hook/select.js.map +1 -0
  95. package/dist/core/hook/transcript.d.ts +31 -0
  96. package/dist/core/hook/transcript.js +103 -0
  97. package/dist/core/hook/transcript.js.map +1 -0
  98. package/dist/core/ingest/ingest-session.d.ts +40 -0
  99. package/dist/core/ingest/ingest-session.js +71 -0
  100. package/dist/core/ingest/ingest-session.js.map +1 -0
  101. package/dist/core/providers/provider-models.d.ts +24 -0
  102. package/dist/core/providers/provider-models.js +72 -0
  103. package/dist/core/providers/provider-models.js.map +1 -0
  104. package/dist/core/providers/provider-registry.d.ts +62 -0
  105. package/dist/core/providers/provider-registry.js +143 -0
  106. package/dist/core/providers/provider-registry.js.map +1 -0
  107. package/dist/core/recall/citation-log.d.ts +28 -0
  108. package/dist/core/recall/citation-log.js +90 -0
  109. package/dist/core/recall/citation-log.js.map +1 -0
  110. package/dist/core/recall/filter.d.ts +11 -0
  111. package/dist/core/recall/filter.js +20 -0
  112. package/dist/core/recall/filter.js.map +1 -0
  113. package/dist/core/recall/index.d.ts +6 -0
  114. package/dist/core/recall/index.js +5 -0
  115. package/dist/core/recall/index.js.map +1 -0
  116. package/dist/core/recall/match-fields.d.ts +10 -0
  117. package/dist/core/recall/match-fields.js +37 -0
  118. package/dist/core/recall/match-fields.js.map +1 -0
  119. package/dist/core/recall/query-log.d.ts +36 -0
  120. package/dist/core/recall/query-log.js +112 -0
  121. package/dist/core/recall/query-log.js.map +1 -0
  122. package/dist/core/recall/query-shape.d.ts +22 -0
  123. package/dist/core/recall/query-shape.js +64 -0
  124. package/dist/core/recall/query-shape.js.map +1 -0
  125. package/dist/core/recall/recall-service.d.ts +19 -0
  126. package/dist/core/recall/recall-service.js +252 -0
  127. package/dist/core/recall/recall-service.js.map +1 -0
  128. package/dist/core/recall/recent-log.d.ts +16 -0
  129. package/dist/core/recall/recent-log.js +46 -0
  130. package/dist/core/recall/recent-log.js.map +1 -0
  131. package/dist/core/recall/tokenize.d.ts +7 -0
  132. package/dist/core/recall/tokenize.js +18 -0
  133. package/dist/core/recall/tokenize.js.map +1 -0
  134. package/dist/core/recall/useful-scan.d.ts +52 -0
  135. package/dist/core/recall/useful-scan.js +300 -0
  136. package/dist/core/recall/useful-scan.js.map +1 -0
  137. package/dist/core/recall-facts/fact-query-log.d.ts +42 -0
  138. package/dist/core/recall-facts/fact-query-log.js +115 -0
  139. package/dist/core/recall-facts/fact-query-log.js.map +1 -0
  140. package/dist/core/recall-facts/fact-recall-service.d.ts +34 -0
  141. package/dist/core/recall-facts/fact-recall-service.js +246 -0
  142. package/dist/core/recall-facts/fact-recall-service.js.map +1 -0
  143. package/dist/core/scheduler/scan-once.d.ts +32 -0
  144. package/dist/core/scheduler/scan-once.js +100 -0
  145. package/dist/core/scheduler/scan-once.js.map +1 -0
  146. package/dist/core/scheduler/scheduler.d.ts +59 -0
  147. package/dist/core/scheduler/scheduler.js +158 -0
  148. package/dist/core/scheduler/scheduler.js.map +1 -0
  149. package/dist/core/sources/source-registry.d.ts +68 -0
  150. package/dist/core/sources/source-registry.js +208 -0
  151. package/dist/core/sources/source-registry.js.map +1 -0
  152. package/dist/core/storage/db-restore.d.ts +53 -0
  153. package/dist/core/storage/db-restore.js +113 -0
  154. package/dist/core/storage/db-restore.js.map +1 -0
  155. package/dist/core/storage/live-status.d.ts +15 -0
  156. package/dist/core/storage/live-status.js +43 -0
  157. package/dist/core/storage/live-status.js.map +1 -0
  158. package/dist/core/storage/migrate.d.ts +14 -0
  159. package/dist/core/storage/migrate.js +52 -0
  160. package/dist/core/storage/migrate.js.map +1 -0
  161. package/dist/core/storage/sqlite-fact-store.d.ts +50 -0
  162. package/dist/core/storage/sqlite-fact-store.js +256 -0
  163. package/dist/core/storage/sqlite-fact-store.js.map +1 -0
  164. package/dist/core/storage/sqlite-session-store.d.ts +152 -0
  165. package/dist/core/storage/sqlite-session-store.js +587 -0
  166. package/dist/core/storage/sqlite-session-store.js.map +1 -0
  167. package/dist/hook/pre-compact-hook.d.ts +26 -0
  168. package/dist/hook/pre-compact-hook.js +94 -0
  169. package/dist/hook/pre-compact-hook.js.map +1 -0
  170. package/dist/hook/prompt-recall-hook.d.ts +23 -0
  171. package/dist/hook/prompt-recall-hook.js +141 -0
  172. package/dist/hook/prompt-recall-hook.js.map +1 -0
  173. package/dist/hook/session-end-hook.d.ts +18 -0
  174. package/dist/hook/session-end-hook.js +67 -0
  175. package/dist/hook/session-end-hook.js.map +1 -0
  176. package/dist/hook/session-start-hook.d.ts +25 -0
  177. package/dist/hook/session-start-hook.js +129 -0
  178. package/dist/hook/session-start-hook.js.map +1 -0
  179. package/dist/hook/stop-hook.d.ts +38 -0
  180. package/dist/hook/stop-hook.js +171 -0
  181. package/dist/hook/stop-hook.js.map +1 -0
  182. package/dist/hook/subagent-start-hook.d.ts +30 -0
  183. package/dist/hook/subagent-start-hook.js +108 -0
  184. package/dist/hook/subagent-start-hook.js.map +1 -0
  185. package/dist/http/app.d.ts +65 -0
  186. package/dist/http/app.js +1009 -0
  187. package/dist/http/app.js.map +1 -0
  188. package/dist/install/claude-code.d.ts +57 -0
  189. package/dist/install/claude-code.js +76 -0
  190. package/dist/install/claude-code.js.map +1 -0
  191. package/dist/install/codex.d.ts +82 -0
  192. package/dist/install/codex.js +277 -0
  193. package/dist/install/codex.js.map +1 -0
  194. package/dist/install/hermes-agent.d.ts +35 -0
  195. package/dist/install/hermes-agent.js +48 -0
  196. package/dist/install/hermes-agent.js.map +1 -0
  197. package/dist/install/hermes.d.ts +29 -0
  198. package/dist/install/hermes.js +52 -0
  199. package/dist/install/hermes.js.map +1 -0
  200. package/dist/install/ollama.d.ts +54 -0
  201. package/dist/install/ollama.js +178 -0
  202. package/dist/install/ollama.js.map +1 -0
  203. package/dist/install/setup.d.ts +37 -0
  204. package/dist/install/setup.js +339 -0
  205. package/dist/install/setup.js.map +1 -0
  206. package/dist/llm/classifier-box.d.ts +29 -0
  207. package/dist/llm/classifier-box.js +43 -0
  208. package/dist/llm/classifier-box.js.map +1 -0
  209. package/dist/llm/deepseek-client.d.ts +40 -0
  210. package/dist/llm/deepseek-client.js +114 -0
  211. package/dist/llm/deepseek-client.js.map +1 -0
  212. package/dist/llm/env-autoload.d.ts +8 -0
  213. package/dist/llm/env-autoload.js +54 -0
  214. package/dist/llm/env-autoload.js.map +1 -0
  215. package/dist/llm/ollama-client.d.ts +47 -0
  216. package/dist/llm/ollama-client.js +156 -0
  217. package/dist/llm/ollama-client.js.map +1 -0
  218. package/dist/mcp/server.d.ts +64 -0
  219. package/dist/mcp/server.js +430 -0
  220. package/dist/mcp/server.js.map +1 -0
  221. package/dist/ports/fact-store.d.ts +82 -0
  222. package/dist/ports/fact-store.js +16 -0
  223. package/dist/ports/fact-store.js.map +1 -0
  224. package/dist/ports/llm-client.d.ts +42 -0
  225. package/dist/ports/llm-client.js +14 -0
  226. package/dist/ports/llm-client.js.map +1 -0
  227. package/dist/ports/logger.d.ts +13 -0
  228. package/dist/ports/logger.js +8 -0
  229. package/dist/ports/logger.js.map +1 -0
  230. package/dist/ports/session-store.d.ts +29 -0
  231. package/dist/ports/session-store.js +9 -0
  232. package/dist/ports/session-store.js.map +1 -0
  233. package/dist/ports/transcript-adapter.d.ts +48 -0
  234. package/dist/ports/transcript-adapter.js +15 -0
  235. package/dist/ports/transcript-adapter.js.map +1 -0
  236. package/dist/shared/types.d.ts +129 -0
  237. package/dist/shared/types.js +6 -0
  238. package/dist/shared/types.js.map +1 -0
  239. package/dist/ui/assets/index-BA6IpU8g.css +1 -0
  240. package/dist/ui/assets/index-B_qIVV0k.js +69 -0
  241. package/dist/ui/index.html +13 -0
  242. package/docs/methodology/re-derivation-rate.md +112 -0
  243. package/docs/methodology/useful-hit-rate.md +79 -0
  244. package/docs/plans/2026-05-20-fts5-lexical-recall.md +1088 -0
  245. package/docs/plans/2026-05-20-recall-daemon-wedge-fix.md +662 -0
  246. package/docs/plans/2026-05-20-recall-hook-design.md +131 -0
  247. package/docs/plans/2026-05-20-recall-hook-implementation.md +1222 -0
  248. package/docs/plans/desktop-product.md +69 -0
  249. package/docs/plans/factstore-design.md +236 -0
  250. package/logs/CHANGELOG/CHANGELOG-2026.md +1389 -0
  251. package/logs/CHANGELOG/CHANGELOG.md +320 -0
  252. package/migrations/000_initial_schema.sql +174 -0
  253. package/migrations/001_entity_type_rename.sql +17 -0
  254. package/migrations/002_adapter_state_extend.sql +12 -0
  255. package/migrations/003_session_embeddings.sql +11 -0
  256. package/migrations/004_facts.sql +46 -0
  257. package/migrations/005_sources.sql +31 -0
  258. package/migrations/006_providers.sql +33 -0
  259. package/migrations/007_source_tokens.sql +17 -0
  260. package/migrations/008_fts_rebuild.sql +9 -0
  261. package/migrations/009_session_embedding_chunks.sql +46 -0
  262. package/migrations/010_sources_opencode.sql +30 -0
  263. package/migrations/011_sources_hermes_agent.sql +30 -0
  264. package/migrations/012_sources_aider.sql +30 -0
  265. package/migrations/013_adapter_state_failure_count.sql +12 -0
  266. package/package.json +56 -0
  267. package/plugin/.codex-plugin/plugin.json +22 -0
  268. package/plugin/.mcp.json +8 -0
  269. package/plugin/README.md +51 -0
  270. package/plugin/hooks/hooks.json +25 -0
  271. package/plugin/scripts/prompt-recall-hook.mjs +202 -0
  272. package/plugin/scripts/stop-hook.mjs +306 -0
  273. package/plugin-hermes-agent/README.md +49 -0
  274. package/plugin-hermes-agent/__init__.py +75 -0
  275. package/plugin-hermes-agent/plugin.yaml +15 -0
  276. package/scripts/backfill-citations.mjs +0 -0
  277. package/scripts/build-codex-plugin.mjs +61 -0
  278. package/scripts/deepseek-probe.mjs +67 -0
  279. package/scripts/extract-triples.mjs +207 -0
  280. package/scripts/longmemeval/embedding-cache.ts +77 -0
  281. package/scripts/longmemeval/fetch-dataset.sh +25 -0
  282. package/scripts/longmemeval/run-harness.ts +315 -0
  283. package/scripts/longmemeval/scorer.ts +99 -0
  284. package/scripts/longmemeval/tsconfig.json +9 -0
  285. package/scripts/longmemeval/types.ts +35 -0
  286. package/scripts/nlm-daily-digest.py +239 -0
  287. package/scripts/nlm-daily-digest.sh +28 -0
  288. package/src/cli/classify-parity.ts +257 -0
  289. package/src/cli/launchctl-helpers.ts +49 -0
  290. package/src/cli/nlm.ts +885 -0
  291. package/src/core/actions/actions-log.ts +118 -0
  292. package/src/core/actions/overlay.ts +117 -0
  293. package/src/core/adapters/aider.ts +205 -0
  294. package/src/core/adapters/claude-code.ts +293 -0
  295. package/src/core/adapters/common.ts +54 -0
  296. package/src/core/adapters/from-source.ts +57 -0
  297. package/src/core/adapters/hermes-agent.ts +240 -0
  298. package/src/core/adapters/hermes.ts +277 -0
  299. package/src/core/adapters/jsonl-generic.ts +208 -0
  300. package/src/core/adapters/opencode.ts +281 -0
  301. package/src/core/adapters/pi.ts +264 -0
  302. package/src/core/classifier/prompt.ts +200 -0
  303. package/src/core/dataset/build-dataset.ts +463 -0
  304. package/src/core/embedding/chunk-body.ts +76 -0
  305. package/src/core/embedding/embed-backfill.ts +210 -0
  306. package/src/core/embedding/embed-normalize.ts +135 -0
  307. package/src/core/facts/backfill-facts.ts +254 -0
  308. package/src/core/facts/extract-facts.ts +50 -0
  309. package/src/core/hook/citation-detect.ts +124 -0
  310. package/src/core/hook/cite-memo.ts +68 -0
  311. package/src/core/hook/claude-settings.ts +166 -0
  312. package/src/core/hook/gate.ts +25 -0
  313. package/src/core/hook/hook-log.ts +41 -0
  314. package/src/core/hook/memo-sweep.ts +164 -0
  315. package/src/core/hook/memo.ts +67 -0
  316. package/src/core/hook/pointer-block.ts +26 -0
  317. package/src/core/hook/select.ts +32 -0
  318. package/src/core/hook/transcript.ts +121 -0
  319. package/src/core/ingest/ingest-session.ts +111 -0
  320. package/src/core/providers/provider-models.ts +100 -0
  321. package/src/core/providers/provider-registry.ts +196 -0
  322. package/src/core/recall/citation-log.ts +108 -0
  323. package/src/core/recall/filter.ts +27 -0
  324. package/src/core/recall/index.ts +6 -0
  325. package/src/core/recall/match-fields.ts +40 -0
  326. package/src/core/recall/query-log.ts +149 -0
  327. package/src/core/recall/query-shape.ts +66 -0
  328. package/src/core/recall/recall-service.ts +320 -0
  329. package/src/core/recall/recent-log.ts +59 -0
  330. package/src/core/recall/tokenize.ts +18 -0
  331. package/src/core/recall/useful-scan.ts +336 -0
  332. package/src/core/recall-facts/fact-query-log.ts +150 -0
  333. package/src/core/recall-facts/fact-recall-service.ts +327 -0
  334. package/src/core/scheduler/scan-once.ts +142 -0
  335. package/src/core/scheduler/scheduler.ts +225 -0
  336. package/src/core/sources/source-registry.ts +260 -0
  337. package/src/core/storage/db-restore.ts +133 -0
  338. package/src/core/storage/live-status.ts +45 -0
  339. package/src/core/storage/migrate.ts +72 -0
  340. package/src/core/storage/sqlite-fact-store.ts +304 -0
  341. package/src/core/storage/sqlite-session-store.ts +765 -0
  342. package/src/hook/prompt-recall-hook.ts +174 -0
  343. package/src/hook/session-end-hook.ts +81 -0
  344. package/src/hook/session-start-hook.ts +165 -0
  345. package/src/hook/stop-hook.ts +236 -0
  346. package/src/http/app.ts +1114 -0
  347. package/src/install/claude-code.ts +128 -0
  348. package/src/install/codex.ts +367 -0
  349. package/src/install/hermes-agent.ts +76 -0
  350. package/src/install/hermes.ts +78 -0
  351. package/src/install/ollama.ts +208 -0
  352. package/src/install/setup.ts +368 -0
  353. package/src/llm/classifier-box.ts +64 -0
  354. package/src/llm/deepseek-client.ts +150 -0
  355. package/src/llm/env-autoload.ts +55 -0
  356. package/src/llm/ollama-client.ts +189 -0
  357. package/src/mcp/server.ts +534 -0
  358. package/src/ports/fact-store.ts +102 -0
  359. package/src/ports/llm-client.ts +52 -0
  360. package/src/ports/logger.ts +16 -0
  361. package/src/ports/session-store.ts +45 -0
  362. package/src/ports/transcript-adapter.ts +55 -0
  363. package/src/shared/types.ts +145 -0
  364. package/src/ui/App.tsx +58 -0
  365. package/src/ui/components/PromoteOpenButton.tsx +65 -0
  366. package/src/ui/components/SessionDrawer.tsx +136 -0
  367. package/src/ui/components/SideNav.tsx +162 -0
  368. package/src/ui/components/Skeleton.tsx +107 -0
  369. package/src/ui/index.html +13 -0
  370. package/src/ui/lib/actions.ts +30 -0
  371. package/src/ui/lib/api.ts +92 -0
  372. package/src/ui/lib/dataset.ts +141 -0
  373. package/src/ui/lib/registries.ts +155 -0
  374. package/src/ui/lib/view-settings.ts +41 -0
  375. package/src/ui/main.tsx +15 -0
  376. package/src/ui/pages/Live.tsx +229 -0
  377. package/src/ui/pages/Pulse.tsx +415 -0
  378. package/src/ui/pages/Recall.tsx +190 -0
  379. package/src/ui/pages/River.tsx +308 -0
  380. package/src/ui/pages/Search.tsx +93 -0
  381. package/src/ui/pages/Stub.tsx +9 -0
  382. package/src/ui/pages/Thread.tsx +262 -0
  383. package/src/ui/pages/settings/Classifier.tsx +227 -0
  384. package/src/ui/pages/settings/Data.tsx +190 -0
  385. package/src/ui/pages/settings/Index.tsx +65 -0
  386. package/src/ui/pages/settings/Labels.tsx +224 -0
  387. package/src/ui/pages/settings/Providers.tsx +305 -0
  388. package/src/ui/pages/settings/SettingsSubnav.tsx +28 -0
  389. package/src/ui/pages/settings/Sources.tsx +326 -0
  390. package/src/ui/pages/settings/Views.tsx +96 -0
  391. package/src/ui/styles.css +1766 -0
  392. package/src/ui/tsconfig.json +21 -0
  393. package/src/ui/vite.config.ts +19 -0
  394. package/tests/fixtures/claude_code/short_session.jsonl +2 -0
  395. package/tests/fixtures/claude_code/standard_iso.jsonl +4 -0
  396. package/tests/fixtures/claude_code/tool_heavy.jsonl +8 -0
  397. package/tests/fixtures/claude_code/with_subagent.jsonl +7 -0
  398. package/tests/fixtures/facts.ts +17 -0
  399. package/tests/fixtures/golden-corpus.ts +85 -0
  400. package/tests/fixtures/hermes/paired_request_dump.json +24 -0
  401. package/tests/fixtures/hermes/paired_session.json +23 -0
  402. package/tests/fixtures/hermes/request_dump.json +28 -0
  403. package/tests/fixtures/hermes/session_iso.json +38 -0
  404. package/tests/fixtures/hermes/session_unix.json +38 -0
  405. package/tests/fixtures/hermes/system_only.json +18 -0
  406. package/tests/fixtures/pi/error-connection-abort.jsonl +8 -0
  407. package/tests/fixtures/pi/short-successful.jsonl +5 -0
  408. package/tests/fixtures/pi/with-custom-message.jsonl +6 -0
  409. package/tests/fixtures/sessions.ts +22 -0
  410. package/tests/integration/backfill-facts.test.ts +362 -0
  411. package/tests/integration/citation-explicit.test.ts +111 -0
  412. package/tests/integration/cite-event.test.ts +169 -0
  413. package/tests/integration/cite-memo.test.ts +87 -0
  414. package/tests/integration/db-restore.test.ts +153 -0
  415. package/tests/integration/embed-backfill.test.ts +176 -0
  416. package/tests/integration/fact-supersedence.test.ts +313 -0
  417. package/tests/integration/fts-index.test.ts +60 -0
  418. package/tests/integration/getbyids-sqlite.test.ts +60 -0
  419. package/tests/integration/hermes-agent-hooks.test.ts +248 -0
  420. package/tests/integration/hook-claude-settings.test.ts +205 -0
  421. package/tests/integration/hook-log.test.ts +54 -0
  422. package/tests/integration/hook-memo.test.ts +68 -0
  423. package/tests/integration/hook-pre-compact.test.ts +105 -0
  424. package/tests/integration/hook-subagent-start.test.ts +102 -0
  425. package/tests/integration/http.test.ts +401 -0
  426. package/tests/integration/keyword-search-fts.test.ts +66 -0
  427. package/tests/integration/mcp-recall-logging.test.ts +88 -0
  428. package/tests/integration/mcp.test.ts +248 -0
  429. package/tests/integration/memo-sweep.test.ts +91 -0
  430. package/tests/integration/prompt-recall-hook.test.ts +88 -0
  431. package/tests/integration/provider-registry.test.ts +107 -0
  432. package/tests/integration/recall-golden.test.ts +59 -0
  433. package/tests/integration/recall-sqlite.test.ts +169 -0
  434. package/tests/integration/scheduler.test.ts +391 -0
  435. package/tests/integration/session-end-hook.test.ts +48 -0
  436. package/tests/integration/session-start-hook.test.ts +126 -0
  437. package/tests/integration/source-registry.test.ts +120 -0
  438. package/tests/integration/sqlite-fact-store.test.ts +346 -0
  439. package/tests/integration/stop-hook.test.ts +560 -0
  440. package/tests/integration/wal-checkpoint.test.ts +49 -0
  441. package/tests/unit/cli/launchctl-helpers.test.ts +60 -0
  442. package/tests/unit/core/adapters/aider.test.ts +230 -0
  443. package/tests/unit/core/adapters/claude-code.test.ts +118 -0
  444. package/tests/unit/core/adapters/hermes-agent.test.ts +329 -0
  445. package/tests/unit/core/adapters/hermes.test.ts +81 -0
  446. package/tests/unit/core/adapters/jsonl-generic.test.ts +142 -0
  447. package/tests/unit/core/adapters/opencode.test.ts +354 -0
  448. package/tests/unit/core/adapters/pi.test.ts +110 -0
  449. package/tests/unit/core/classifier/prompt.test.ts +126 -0
  450. package/tests/unit/core/embedding/chunk-body.test.ts +100 -0
  451. package/tests/unit/core/facts/extract-facts.test.ts +117 -0
  452. package/tests/unit/core/filter.test.ts +40 -0
  453. package/tests/unit/core/hook/citation-detect-cite-session.test.ts +96 -0
  454. package/tests/unit/core/hook/citation-detect.test.ts +124 -0
  455. package/tests/unit/core/hook/gate.test.ts +29 -0
  456. package/tests/unit/core/hook/pointer-block.test.ts +22 -0
  457. package/tests/unit/core/hook/select.test.ts +66 -0
  458. package/tests/unit/core/match-fields.test.ts +39 -0
  459. package/tests/unit/core/mcp-cite-session.test.ts +51 -0
  460. package/tests/unit/core/providers/provider-models.test.ts +101 -0
  461. package/tests/unit/core/query-shape.test.ts +92 -0
  462. package/tests/unit/core/recall-facts/fact-recall-service.test.ts +258 -0
  463. package/tests/unit/core/recall-service.test.ts +200 -0
  464. package/tests/unit/core/storage/live-status.test.ts +54 -0
  465. package/tests/unit/core/tokenize.test.ts +32 -0
  466. package/tests/unit/core/useful-scan.test.ts +537 -0
  467. package/tests/unit/llm/embed.test.ts +93 -0
  468. package/tests/unit/llm/ollama-client.test.ts +124 -0
  469. package/tests/unit/scripts/longmemeval-scorer.test.ts +114 -0
  470. package/tsconfig.json +31 -0
  471. package/tsconfig.test.json +11 -0
  472. package/vitest.config.ts +22 -0
@@ -0,0 +1,174 @@
1
+ /**
2
+ * Claude Code UserPromptSubmit hook entrypoint for NLM recall.
3
+ *
4
+ * runHook is the testable orchestration; main() is the thin process wrapper
5
+ * (stdin / stdout / fetch / env). Every path is fail-open: any error yields
6
+ * no output and a clean exit, so the hook can never block or fail a prompt.
7
+ *
8
+ * Mode is read from NLM_HOOK_MODE (default "shadow"). In shadow mode the
9
+ * hook logs what it would inject and emits nothing; in live mode it emits a
10
+ * pointer block and records the per-conversation memo.
11
+ */
12
+
13
+ import { pathToFileURL } from "node:url";
14
+ import { classifyPrompt } from "@core/hook/gate.js";
15
+ import { appendHookLog } from "@core/hook/hook-log.js";
16
+ import { loadSurfaced, recordSurfaced } from "@core/hook/memo.js";
17
+ import { formatPointerBlock } from "@core/hook/pointer-block.js";
18
+ import { selectHits, type RecallHitInput } from "@core/hook/select.js";
19
+
20
+ // Keyword recall returns raw BM25 scores (unbounded, not the 0..1 hybrid
21
+ // scale). FTS5 MATCH already gates relevance — only lexically-matching
22
+ // sessions come back — so the floor starts at 0 and a real cutoff is
23
+ // calibrated from the shadow log's score distribution.
24
+ const SCORE_THRESHOLD = 0;
25
+ const PER_FIRE_CAP = 3;
26
+ const PER_CONVERSATION_CAP = 10;
27
+ const RECALL_LIMIT = 5; // fetch more than PER_FIRE_CAP to absorb score-filter + dedup
28
+ const RECALL_TIMEOUT_MS = 2000; // keyword recall is ~400ms warm, ~1.4s cold
29
+ const PROMPT_PREVIEW_CHARS = 200;
30
+
31
+ export type HookMode = "shadow" | "live";
32
+
33
+ export interface HookInput {
34
+ readonly prompt: string;
35
+ readonly conversationId: string;
36
+ }
37
+
38
+ export interface RunHookDeps {
39
+ readonly mode: HookMode;
40
+ readonly recall: (prompt: string) => Promise<ReadonlyArray<RecallHitInput>>;
41
+ }
42
+
43
+ /** Orchestration. Returns the text to emit on stdout ("" for nothing). */
44
+ export async function runHook(input: HookInput, deps: RunHookDeps): Promise<string> {
45
+ const gate = classifyPrompt(input.prompt);
46
+ const preview = input.prompt.slice(0, PROMPT_PREVIEW_CHARS);
47
+
48
+ if (gate === "generative") {
49
+ appendHookLog({
50
+ ts: new Date().toISOString(),
51
+ conversationId: input.conversationId,
52
+ promptPreview: preview,
53
+ gate,
54
+ hits: [],
55
+ wouldInject: [],
56
+ estTokens: 0,
57
+ mode: deps.mode,
58
+ });
59
+ return "";
60
+ }
61
+
62
+ let hits: ReadonlyArray<RecallHitInput> = [];
63
+ try {
64
+ hits = await deps.recall(input.prompt);
65
+ } catch {
66
+ hits = [];
67
+ }
68
+
69
+ const surfaced = loadSurfaced(input.conversationId);
70
+ const selected = selectHits({
71
+ hits,
72
+ surfaced,
73
+ scoreThreshold: SCORE_THRESHOLD,
74
+ perFireCap: PER_FIRE_CAP,
75
+ perConversationCap: PER_CONVERSATION_CAP,
76
+ });
77
+ const block = formatPointerBlock(selected);
78
+ const estTokens = Math.ceil(block.length / 4);
79
+
80
+ appendHookLog({
81
+ ts: new Date().toISOString(),
82
+ conversationId: input.conversationId,
83
+ promptPreview: preview,
84
+ gate,
85
+ hits: hits.map((h) => ({ id: h.id, score: h.matchScore })),
86
+ wouldInject: selected.map((h) => h.id),
87
+ estTokens,
88
+ mode: deps.mode,
89
+ });
90
+
91
+ if (deps.mode === "live" && selected.length > 0) {
92
+ recordSurfaced(input.conversationId, selected.map((h) => h.id));
93
+ return block;
94
+ }
95
+ return "";
96
+ }
97
+
98
+ function readStdin(): Promise<string> {
99
+ return new Promise((resolve) => {
100
+ let data = "";
101
+ process.stdin.setEncoding("utf8");
102
+ process.stdin.on("data", (chunk) => (data += chunk));
103
+ process.stdin.on("end", () => resolve(data));
104
+ process.stdin.on("error", () => resolve(data));
105
+ });
106
+ }
107
+
108
+ async function recallOverHttp(prompt: string): Promise<ReadonlyArray<RecallHitInput>> {
109
+ const portValue = process.env["NLM_PORT"] ?? "3940";
110
+ // keyword (FTS5) not hybrid: hybrid's Ollama embedding round-trip takes
111
+ // ~5s, far too slow for a hook that blocks prompt submission.
112
+ const url =
113
+ `http://localhost:${portValue}/api/recall` +
114
+ `?q=${encodeURIComponent(prompt)}&mode=keyword&limit=${RECALL_LIMIT}`;
115
+ const controller = new AbortController();
116
+ const timer = setTimeout(() => controller.abort(), RECALL_TIMEOUT_MS);
117
+ try {
118
+ const res = await fetch(url, {
119
+ headers: { "x-recall-source": "hook" },
120
+ signal: controller.signal,
121
+ });
122
+ if (!res.ok) return [];
123
+ type RecallBody = {
124
+ results?: ReadonlyArray<{
125
+ id: string;
126
+ label: string;
127
+ startedAt: string;
128
+ matchScore: number;
129
+ }>;
130
+ };
131
+ let body: RecallBody;
132
+ try {
133
+ body = (await res.json()) as RecallBody;
134
+ } catch {
135
+ return [];
136
+ }
137
+ return (body.results ?? []).map((r) => ({
138
+ id: r.id,
139
+ label: r.label,
140
+ startedAt: r.startedAt,
141
+ matchScore: r.matchScore,
142
+ }));
143
+ } finally {
144
+ clearTimeout(timer);
145
+ }
146
+ }
147
+
148
+ async function main(): Promise<void> {
149
+ try {
150
+ const raw = await readStdin();
151
+ const payload = JSON.parse(raw) as {
152
+ prompt?: unknown;
153
+ session_id?: unknown;
154
+ };
155
+ const prompt = typeof payload.prompt === "string" ? payload.prompt : "";
156
+ const conversationId =
157
+ typeof payload.session_id === "string" ? payload.session_id : "unknown";
158
+ if (!prompt) return;
159
+
160
+ const mode: HookMode = process.env["NLM_HOOK_MODE"] === "live" ? "live" : "shadow";
161
+ const out = await runHook(
162
+ { prompt, conversationId },
163
+ { mode, recall: recallOverHttp },
164
+ );
165
+ if (out) process.stdout.write(out);
166
+ } catch {
167
+ // Fail open — never block or fail a prompt.
168
+ }
169
+ }
170
+
171
+ // Run main() only when invoked directly as a script, not when imported by tests.
172
+ if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
173
+ void main();
174
+ }
@@ -0,0 +1,81 @@
1
+ /**
2
+ * Claude Code SessionEnd hook entrypoint for NLM.
3
+ *
4
+ * Fires when a Claude Code session closes. Deletes the per-conversation
5
+ * memo file written during the session so memo files don't accumulate
6
+ * indefinitely under ~/.nlm/hook-state/.
7
+ *
8
+ * Logs one JSON line per invocation to ~/.nlm/hook-log.jsonl with
9
+ * `kind: "session-end"` so the daily-digest liveness check can correlate
10
+ * Claude Code session closes against hook fires the same way it does for
11
+ * UserPromptSubmit. Fail-open by design: any error yields a clean exit
12
+ * with no output, so the hook can never block Claude Code shutdown.
13
+ */
14
+
15
+ import { pathToFileURL } from "node:url";
16
+ import { appendFileSync, mkdirSync } from "node:fs";
17
+ import { homedir } from "node:os";
18
+ import { dirname, join } from "node:path";
19
+ import { clearSurfaced } from "@core/hook/memo.js";
20
+ import { clearCited } from "@core/hook/cite-memo.js";
21
+
22
+ export interface SessionEndResult {
23
+ readonly conversationId: string;
24
+ readonly cleared: boolean;
25
+ }
26
+
27
+ export function runSessionEnd(conversationId: string): SessionEndResult {
28
+ const surfacedCleared = clearSurfaced(conversationId);
29
+ const citedCleared = clearCited(conversationId);
30
+ return { conversationId, cleared: surfacedCleared || citedCleared };
31
+ }
32
+
33
+ function readStdin(): Promise<string> {
34
+ return new Promise((resolve) => {
35
+ let data = "";
36
+ process.stdin.setEncoding("utf8");
37
+ process.stdin.on("data", (chunk) => (data += chunk));
38
+ process.stdin.on("end", () => resolve(data));
39
+ process.stdin.on("error", () => resolve(data));
40
+ });
41
+ }
42
+
43
+ function logPath(): string {
44
+ return process.env["NLM_HOOK_LOG"] ?? join(homedir(), ".nlm", "hook-log.jsonl");
45
+ }
46
+
47
+ function logSessionEnd(result: SessionEndResult): void {
48
+ try {
49
+ const path = logPath();
50
+ mkdirSync(dirname(path), { recursive: true });
51
+ appendFileSync(
52
+ path,
53
+ `${JSON.stringify({
54
+ ts: new Date().toISOString(),
55
+ kind: "session-end",
56
+ conversationId: result.conversationId,
57
+ cleared: result.cleared,
58
+ mode: process.env["NLM_HOOK_MODE"] === "live" ? "live" : "shadow",
59
+ })}\n`,
60
+ "utf8",
61
+ );
62
+ } catch {
63
+ // Telemetry failure must never break the hook.
64
+ }
65
+ }
66
+
67
+ async function main(): Promise<void> {
68
+ try {
69
+ const raw = await readStdin();
70
+ const payload = JSON.parse(raw) as { session_id?: unknown };
71
+ const conversationId =
72
+ typeof payload.session_id === "string" ? payload.session_id : "unknown";
73
+ logSessionEnd(runSessionEnd(conversationId));
74
+ } catch {
75
+ // Fail open — never block Claude Code shutdown.
76
+ }
77
+ }
78
+
79
+ if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
80
+ void main();
81
+ }
@@ -0,0 +1,165 @@
1
+ /**
2
+ * Claude Code SessionStart hook entrypoint for NLM recall.
3
+ *
4
+ * Fires before any prompt in a new session (including cron-fired and background
5
+ * agents that never trigger UserPromptSubmit). Surfaces relevant prior context
6
+ * proactively so cold-start agents aren't recall-blind.
7
+ *
8
+ * Query is derived from working_directory + project_name since no user prompt
9
+ * exists yet — intentionally weaker than prompt-recall, best-effort only.
10
+ *
11
+ * Mirrors prompt-recall-hook.ts shape exactly: same pointer-block format, same
12
+ * memo writes, same NLM_HOOK_MODE semantics.
13
+ */
14
+
15
+ import { pathToFileURL } from "node:url";
16
+ import { appendHookLog } from "@core/hook/hook-log.js";
17
+ import { loadSurfaced, recordSurfaced } from "@core/hook/memo.js";
18
+ import { formatPointerBlock } from "@core/hook/pointer-block.js";
19
+ import { selectHits, type RecallHitInput } from "@core/hook/select.js";
20
+
21
+ const SCORE_THRESHOLD = 0;
22
+ const PER_FIRE_CAP = 3;
23
+ const PER_CONVERSATION_CAP = 10;
24
+ const RECALL_LIMIT = 5;
25
+ const RECALL_TIMEOUT_MS = 2000;
26
+
27
+ export type HookMode = "shadow" | "live";
28
+
29
+ export interface SessionStartInput {
30
+ readonly conversationId: string;
31
+ readonly query: string;
32
+ }
33
+
34
+ export interface RunSessionStartDeps {
35
+ readonly mode: HookMode;
36
+ readonly recall: (query: string) => Promise<ReadonlyArray<RecallHitInput>>;
37
+ }
38
+
39
+ /** Orchestration. Returns the text to emit on stdout ("" for nothing). */
40
+ export async function runHook(
41
+ input: SessionStartInput,
42
+ deps: RunSessionStartDeps,
43
+ ): Promise<string> {
44
+ let hits: ReadonlyArray<RecallHitInput> = [];
45
+ try {
46
+ hits = await deps.recall(input.query);
47
+ } catch {
48
+ hits = [];
49
+ }
50
+
51
+ const surfaced = loadSurfaced(input.conversationId);
52
+ const selected = selectHits({
53
+ hits,
54
+ surfaced,
55
+ scoreThreshold: SCORE_THRESHOLD,
56
+ perFireCap: PER_FIRE_CAP,
57
+ perConversationCap: PER_CONVERSATION_CAP,
58
+ });
59
+ const block = formatPointerBlock(selected);
60
+ const estTokens = Math.ceil(block.length / 4);
61
+
62
+ appendHookLog({
63
+ ts: new Date().toISOString(),
64
+ conversationId: input.conversationId,
65
+ promptPreview: input.query,
66
+ gate: "evaluate",
67
+ hits: hits.map((h) => ({ id: h.id, score: h.matchScore })),
68
+ wouldInject: selected.map((h) => h.id),
69
+ estTokens,
70
+ mode: deps.mode,
71
+ });
72
+
73
+ if (deps.mode === "live" && selected.length > 0) {
74
+ recordSurfaced(input.conversationId, selected.map((h) => h.id));
75
+ return block;
76
+ }
77
+ return "";
78
+ }
79
+
80
+ /** Derive a best-effort query from SessionStart payload fields. */
81
+ function buildQuery(workingDirectory: string, projectName: string): string {
82
+ const dirTail = workingDirectory.split("/").filter(Boolean).at(-1) ?? "";
83
+ const parts = [dirTail, projectName].filter(Boolean);
84
+ return parts.join(" ").trim() || "session start";
85
+ }
86
+
87
+ function readStdin(): Promise<string> {
88
+ return new Promise((resolve) => {
89
+ let data = "";
90
+ process.stdin.setEncoding("utf8");
91
+ process.stdin.on("data", (chunk) => (data += chunk));
92
+ process.stdin.on("end", () => resolve(data));
93
+ process.stdin.on("error", () => resolve(data));
94
+ });
95
+ }
96
+
97
+ async function recallOverHttp(query: string): Promise<ReadonlyArray<RecallHitInput>> {
98
+ const portValue = process.env["NLM_PORT"] ?? "3940";
99
+ const url =
100
+ `http://localhost:${portValue}/api/recall` +
101
+ `?q=${encodeURIComponent(query)}&mode=hybrid&limit=${RECALL_LIMIT}`;
102
+ const controller = new AbortController();
103
+ const timer = setTimeout(() => controller.abort(), RECALL_TIMEOUT_MS);
104
+ try {
105
+ const res = await fetch(url, {
106
+ headers: { "x-recall-source": "session-start-hook" },
107
+ signal: controller.signal,
108
+ });
109
+ if (!res.ok) return [];
110
+ type RecallBody = {
111
+ results?: ReadonlyArray<{
112
+ id: string;
113
+ label: string;
114
+ startedAt: string;
115
+ matchScore: number;
116
+ }>;
117
+ };
118
+ let body: RecallBody;
119
+ try {
120
+ body = (await res.json()) as RecallBody;
121
+ } catch {
122
+ return [];
123
+ }
124
+ return (body.results ?? []).map((r) => ({
125
+ id: r.id,
126
+ label: r.label,
127
+ startedAt: r.startedAt,
128
+ matchScore: r.matchScore,
129
+ }));
130
+ } finally {
131
+ clearTimeout(timer);
132
+ }
133
+ }
134
+
135
+ async function main(): Promise<void> {
136
+ try {
137
+ const raw = await readStdin();
138
+ const payload = JSON.parse(raw) as {
139
+ session_id?: unknown;
140
+ cwd?: unknown;
141
+ working_directory?: unknown;
142
+ project_name?: unknown;
143
+ };
144
+ const conversationId =
145
+ typeof payload.session_id === "string" ? payload.session_id : "unknown";
146
+ const workingDirectory =
147
+ typeof payload.cwd === "string"
148
+ ? payload.cwd
149
+ : typeof payload.working_directory === "string"
150
+ ? payload.working_directory
151
+ : "";
152
+ const projectName =
153
+ typeof payload.project_name === "string" ? payload.project_name : "";
154
+ const query = buildQuery(workingDirectory, projectName);
155
+ const mode: HookMode = process.env["NLM_HOOK_MODE"] === "live" ? "live" : "shadow";
156
+ const out = await runHook({ conversationId, query }, { mode, recall: recallOverHttp });
157
+ if (out) process.stdout.write(out);
158
+ } catch {
159
+ // Fail open — never block or fail a session start.
160
+ }
161
+ }
162
+
163
+ if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
164
+ void main();
165
+ }
@@ -0,0 +1,236 @@
1
+ /**
2
+ * Claude Code Stop hook entrypoint for NLM.
3
+ *
4
+ * Fires after the model finishes a response. Scans the last assistant message
5
+ * in the transcript for substrings matching any session ID the recall hook
6
+ * surfaced this conversation (via the dedup memo). Each match becomes a
7
+ * citation event posted to the daemon at POST /api/recall/cite-event.
8
+ *
9
+ * Double duty:
10
+ * - Per-recall useful_hit_rate metric (was the returned ID actually used?)
11
+ * - Training-data substrate for a learned reranker (was_cited per query)
12
+ *
13
+ * Fail-open by design: any error yields a clean exit with no output. The
14
+ * Stop hook can never block Claude Code's response. The smoke test path
15
+ * succeeds even with missing transcript_path because the hook always logs
16
+ * a `kind:"stop"` line.
17
+ */
18
+
19
+ import { pathToFileURL } from "node:url";
20
+ import { appendFileSync, mkdirSync } from "node:fs";
21
+ import { homedir } from "node:os";
22
+ import { dirname, join } from "node:path";
23
+ import {
24
+ detectCitations,
25
+ type CitationKind,
26
+ } from "@core/hook/citation-detect.js";
27
+ import { loadSurfaced } from "@core/hook/memo.js";
28
+ import { loadCited, recordCited } from "@core/hook/cite-memo.js";
29
+ import {
30
+ readAllAssistantTurns,
31
+ type ToolUseBlock,
32
+ } from "@core/hook/transcript.js";
33
+
34
+ const RESPONSE_PREVIEW_CHARS = 200;
35
+ const POST_TIMEOUT_MS = 1500;
36
+
37
+ export interface StopHookInput {
38
+ readonly conversationId: string;
39
+ readonly transcriptPath: string;
40
+ readonly stopHookActive: boolean;
41
+ }
42
+
43
+ export interface CitationEvent {
44
+ readonly id: string;
45
+ readonly kind: CitationKind;
46
+ }
47
+
48
+ export interface StopHookResult {
49
+ readonly conversationId: string;
50
+ readonly surfacedCount: number;
51
+ readonly citations: ReadonlyArray<CitationEvent>;
52
+ readonly responsePreview: string;
53
+ readonly skipped: boolean;
54
+ }
55
+
56
+ export interface RunStopHookDeps {
57
+ readonly postCitation: (
58
+ conversationId: string,
59
+ citedId: string,
60
+ kind: CitationKind,
61
+ responsePreview: string,
62
+ ) => Promise<void>;
63
+ }
64
+
65
+ export async function runStopHook(
66
+ input: StopHookInput,
67
+ deps: RunStopHookDeps,
68
+ ): Promise<StopHookResult> {
69
+ // stop_hook_active=true means Stop is firing again because a prior Stop
70
+ // hook returned control to the model. Skip to avoid double-counting.
71
+ if (input.stopHookActive) {
72
+ return {
73
+ conversationId: input.conversationId,
74
+ surfacedCount: 0,
75
+ citations: [],
76
+ responsePreview: "",
77
+ skipped: true,
78
+ };
79
+ }
80
+
81
+ const surfaced = loadSurfaced(input.conversationId);
82
+ if (surfaced.size === 0) {
83
+ return {
84
+ conversationId: input.conversationId,
85
+ surfacedCount: 0,
86
+ citations: [],
87
+ responsePreview: "",
88
+ skipped: false,
89
+ };
90
+ }
91
+
92
+ const turns = readAllAssistantTurns(input.transcriptPath);
93
+ if (turns.length === 0) {
94
+ return {
95
+ conversationId: input.conversationId,
96
+ surfacedCount: surfaced.size,
97
+ citations: [],
98
+ responsePreview: "",
99
+ skipped: false,
100
+ };
101
+ }
102
+
103
+ const allToolUses: ToolUseBlock[] = [];
104
+ const textParts: string[] = [];
105
+ for (const turn of turns) {
106
+ if (turn.text) textParts.push(turn.text);
107
+ for (const tu of turn.toolUses) allToolUses.push(tu);
108
+ }
109
+ const unionText = textParts.join("\n");
110
+
111
+ const detected = detectCitations({
112
+ responseText: unionText,
113
+ toolUses: allToolUses,
114
+ surfacedIds: surfaced,
115
+ });
116
+ const alreadyCited = loadCited(input.conversationId);
117
+ const fresh = detected.filter((c) => !alreadyCited.has(c.id));
118
+
119
+ // Preview is the LAST turn's prose — that's what Edward saw when Stop
120
+ // fired. Stable substrate for the citation log even when detection
121
+ // ranges across earlier turns.
122
+ const lastText = turns[turns.length - 1]?.text ?? "";
123
+ const preview = lastText.slice(0, RESPONSE_PREVIEW_CHARS);
124
+
125
+ for (const c of fresh) {
126
+ try {
127
+ await deps.postCitation(input.conversationId, c.id, c.kind, preview);
128
+ } catch {
129
+ // Daemon down or HTTP error — local memo update below still records
130
+ // the citation so we don't repost on the next Stop fire.
131
+ }
132
+ }
133
+ if (fresh.length > 0) {
134
+ recordCited(input.conversationId, fresh.map((c) => c.id));
135
+ }
136
+
137
+ return {
138
+ conversationId: input.conversationId,
139
+ surfacedCount: surfaced.size,
140
+ citations: fresh,
141
+ responsePreview: preview,
142
+ skipped: false,
143
+ };
144
+ }
145
+
146
+ function logPath(): string {
147
+ return process.env["NLM_HOOK_LOG"] ?? join(homedir(), ".nlm", "hook-log.jsonl");
148
+ }
149
+
150
+ function logStopResult(result: StopHookResult): void {
151
+ try {
152
+ const path = logPath();
153
+ mkdirSync(dirname(path), { recursive: true });
154
+ appendFileSync(
155
+ path,
156
+ `${JSON.stringify({
157
+ ts: new Date().toISOString(),
158
+ kind: "stop",
159
+ conversationId: result.conversationId,
160
+ surfacedCount: result.surfacedCount,
161
+ citedIds: result.citations.map((c) => c.id),
162
+ citationKinds: result.citations.map((c) => c.kind),
163
+ skipped: result.skipped,
164
+ mode: process.env["NLM_HOOK_MODE"] === "live" ? "live" : "shadow",
165
+ })}\n`,
166
+ "utf8",
167
+ );
168
+ } catch {
169
+ // Telemetry failure must never break the hook.
170
+ }
171
+ }
172
+
173
+ function readStdin(): Promise<string> {
174
+ return new Promise((resolve) => {
175
+ let data = "";
176
+ process.stdin.setEncoding("utf8");
177
+ process.stdin.on("data", (chunk) => (data += chunk));
178
+ process.stdin.on("end", () => resolve(data));
179
+ process.stdin.on("error", () => resolve(data));
180
+ });
181
+ }
182
+
183
+ async function postCitationOverHttp(
184
+ conversationId: string,
185
+ citedId: string,
186
+ kind: CitationKind,
187
+ responsePreview: string,
188
+ ): Promise<void> {
189
+ const port = process.env["NLM_PORT"] ?? "3940";
190
+ const url = `http://localhost:${port}/api/recall/cite-event`;
191
+ const controller = new AbortController();
192
+ const timer = setTimeout(() => controller.abort(), POST_TIMEOUT_MS);
193
+ try {
194
+ await fetch(url, {
195
+ method: "POST",
196
+ headers: { "content-type": "application/json" },
197
+ body: JSON.stringify({
198
+ conversation_id: conversationId,
199
+ cited_id: citedId,
200
+ kind,
201
+ response_preview: responsePreview,
202
+ }),
203
+ signal: controller.signal,
204
+ });
205
+ } finally {
206
+ clearTimeout(timer);
207
+ }
208
+ }
209
+
210
+ async function main(): Promise<void> {
211
+ try {
212
+ const raw = await readStdin();
213
+ const payload = JSON.parse(raw) as {
214
+ session_id?: unknown;
215
+ transcript_path?: unknown;
216
+ stop_hook_active?: unknown;
217
+ };
218
+ const conversationId =
219
+ typeof payload.session_id === "string" ? payload.session_id : "unknown";
220
+ const transcriptPath =
221
+ typeof payload.transcript_path === "string" ? payload.transcript_path : "";
222
+ const stopHookActive = payload.stop_hook_active === true;
223
+
224
+ const result = await runStopHook(
225
+ { conversationId, transcriptPath, stopHookActive },
226
+ { postCitation: postCitationOverHttp },
227
+ );
228
+ logStopResult(result);
229
+ } catch {
230
+ // Fail open — never block Claude Code's response.
231
+ }
232
+ }
233
+
234
+ if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
235
+ void main();
236
+ }