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,174 +0,0 @@
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
- }
@@ -1,81 +0,0 @@
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
- }
@@ -1,165 +0,0 @@
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
- }
@@ -1,236 +0,0 @@
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
- }