@mxalbert/context-mode 2.0.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 (365) hide show
  1. package/.claude-plugin/marketplace.json +33 -0
  2. package/.claude-plugin/plugin.json +31 -0
  3. package/.codex-plugin/hooks.json +65 -0
  4. package/.codex-plugin/mcp.json +13 -0
  5. package/.codex-plugin/plugin.json +31 -0
  6. package/.openclaw-plugin/index.ts +12 -0
  7. package/.openclaw-plugin/openclaw.plugin.json +38 -0
  8. package/.openclaw-plugin/package.json +28 -0
  9. package/LICENSE +94 -0
  10. package/README.md +1619 -0
  11. package/bin/statusline.mjs +378 -0
  12. package/build/adapters/antigravity/index.d.ts +51 -0
  13. package/build/adapters/antigravity/index.js +169 -0
  14. package/build/adapters/antigravity-cli/index.d.ts +51 -0
  15. package/build/adapters/antigravity-cli/index.js +342 -0
  16. package/build/adapters/base.d.ts +92 -0
  17. package/build/adapters/base.js +135 -0
  18. package/build/adapters/claude-code/config.d.ts +8 -0
  19. package/build/adapters/claude-code/config.js +8 -0
  20. package/build/adapters/claude-code/hooks.d.ts +106 -0
  21. package/build/adapters/claude-code/hooks.js +183 -0
  22. package/build/adapters/claude-code/index.d.ts +80 -0
  23. package/build/adapters/claude-code/index.js +569 -0
  24. package/build/adapters/claude-code-base.d.ts +49 -0
  25. package/build/adapters/claude-code-base.js +113 -0
  26. package/build/adapters/client-map.d.ts +10 -0
  27. package/build/adapters/client-map.js +42 -0
  28. package/build/adapters/codex/config.d.ts +8 -0
  29. package/build/adapters/codex/config.js +8 -0
  30. package/build/adapters/codex/hooks.d.ts +55 -0
  31. package/build/adapters/codex/hooks.js +64 -0
  32. package/build/adapters/codex/index.d.ts +87 -0
  33. package/build/adapters/codex/index.js +995 -0
  34. package/build/adapters/codex/paths.d.ts +1 -0
  35. package/build/adapters/codex/paths.js +12 -0
  36. package/build/adapters/codex/usage.d.ts +107 -0
  37. package/build/adapters/codex/usage.js +227 -0
  38. package/build/adapters/copilot-base.d.ts +94 -0
  39. package/build/adapters/copilot-base.js +297 -0
  40. package/build/adapters/copilot-cli/hooks.d.ts +33 -0
  41. package/build/adapters/copilot-cli/hooks.js +64 -0
  42. package/build/adapters/copilot-cli/index.d.ts +48 -0
  43. package/build/adapters/copilot-cli/index.js +341 -0
  44. package/build/adapters/cursor/config.d.ts +4 -0
  45. package/build/adapters/cursor/config.js +4 -0
  46. package/build/adapters/cursor/hooks.d.ts +55 -0
  47. package/build/adapters/cursor/hooks.js +82 -0
  48. package/build/adapters/cursor/index.d.ts +64 -0
  49. package/build/adapters/cursor/index.js +517 -0
  50. package/build/adapters/detect.d.ts +136 -0
  51. package/build/adapters/detect.js +623 -0
  52. package/build/adapters/gemini-cli/config.d.ts +8 -0
  53. package/build/adapters/gemini-cli/config.js +8 -0
  54. package/build/adapters/gemini-cli/hooks.d.ts +83 -0
  55. package/build/adapters/gemini-cli/hooks.js +115 -0
  56. package/build/adapters/gemini-cli/index.d.ts +80 -0
  57. package/build/adapters/gemini-cli/index.js +483 -0
  58. package/build/adapters/jetbrains-copilot/config.d.ts +8 -0
  59. package/build/adapters/jetbrains-copilot/config.js +8 -0
  60. package/build/adapters/jetbrains-copilot/hooks.d.ts +59 -0
  61. package/build/adapters/jetbrains-copilot/hooks.js +87 -0
  62. package/build/adapters/jetbrains-copilot/index.d.ts +31 -0
  63. package/build/adapters/jetbrains-copilot/index.js +131 -0
  64. package/build/adapters/kimi/config.d.ts +8 -0
  65. package/build/adapters/kimi/config.js +8 -0
  66. package/build/adapters/kimi/hooks.d.ts +28 -0
  67. package/build/adapters/kimi/hooks.js +34 -0
  68. package/build/adapters/kimi/index.d.ts +66 -0
  69. package/build/adapters/kimi/index.js +537 -0
  70. package/build/adapters/kimi/paths.d.ts +21 -0
  71. package/build/adapters/kimi/paths.js +52 -0
  72. package/build/adapters/kimi/usage.d.ts +82 -0
  73. package/build/adapters/kimi/usage.js +217 -0
  74. package/build/adapters/kiro/hooks.d.ts +61 -0
  75. package/build/adapters/kiro/hooks.js +94 -0
  76. package/build/adapters/kiro/index.d.ts +61 -0
  77. package/build/adapters/kiro/index.js +301 -0
  78. package/build/adapters/omp/index.d.ts +65 -0
  79. package/build/adapters/omp/index.js +182 -0
  80. package/build/adapters/omp/plugin.d.ts +81 -0
  81. package/build/adapters/omp/plugin.js +331 -0
  82. package/build/adapters/omp/usage.d.ts +49 -0
  83. package/build/adapters/omp/usage.js +110 -0
  84. package/build/adapters/openclaw/config.d.ts +8 -0
  85. package/build/adapters/openclaw/config.js +8 -0
  86. package/build/adapters/openclaw/hooks.d.ts +50 -0
  87. package/build/adapters/openclaw/hooks.js +61 -0
  88. package/build/adapters/openclaw/index.d.ts +74 -0
  89. package/build/adapters/openclaw/index.js +439 -0
  90. package/build/adapters/openclaw/mcp-tools.d.ts +54 -0
  91. package/build/adapters/openclaw/mcp-tools.js +207 -0
  92. package/build/adapters/openclaw/plugin.d.ts +141 -0
  93. package/build/adapters/openclaw/plugin.js +818 -0
  94. package/build/adapters/openclaw/session-db.d.ts +55 -0
  95. package/build/adapters/openclaw/session-db.js +88 -0
  96. package/build/adapters/openclaw/usage.d.ts +34 -0
  97. package/build/adapters/openclaw/usage.js +52 -0
  98. package/build/adapters/openclaw/workspace-router.d.ts +29 -0
  99. package/build/adapters/openclaw/workspace-router.js +64 -0
  100. package/build/adapters/opencode/config.d.ts +8 -0
  101. package/build/adapters/opencode/config.js +8 -0
  102. package/build/adapters/opencode/hooks.d.ts +38 -0
  103. package/build/adapters/opencode/hooks.js +50 -0
  104. package/build/adapters/opencode/index.d.ts +144 -0
  105. package/build/adapters/opencode/index.js +638 -0
  106. package/build/adapters/opencode/plugin.d.ts +249 -0
  107. package/build/adapters/opencode/plugin.js +1536 -0
  108. package/build/adapters/opencode/v2.d.ts +117 -0
  109. package/build/adapters/opencode/v2.js +224 -0
  110. package/build/adapters/opencode/zod3tov4.d.ts +1 -0
  111. package/build/adapters/opencode/zod3tov4.js +132 -0
  112. package/build/adapters/pi/extension.d.ts +81 -0
  113. package/build/adapters/pi/extension.js +861 -0
  114. package/build/adapters/pi/index.d.ts +57 -0
  115. package/build/adapters/pi/index.js +173 -0
  116. package/build/adapters/pi/mcp-bridge.d.ts +268 -0
  117. package/build/adapters/pi/mcp-bridge.js +894 -0
  118. package/build/adapters/qwen-code/hooks.d.ts +26 -0
  119. package/build/adapters/qwen-code/hooks.js +29 -0
  120. package/build/adapters/qwen-code/index.d.ts +40 -0
  121. package/build/adapters/qwen-code/index.js +361 -0
  122. package/build/adapters/qwen-code/usage.d.ts +90 -0
  123. package/build/adapters/qwen-code/usage.js +222 -0
  124. package/build/adapters/types.d.ts +360 -0
  125. package/build/adapters/types.js +118 -0
  126. package/build/adapters/vscode-copilot/config.d.ts +8 -0
  127. package/build/adapters/vscode-copilot/config.js +8 -0
  128. package/build/adapters/vscode-copilot/hooks.d.ts +71 -0
  129. package/build/adapters/vscode-copilot/hooks.js +98 -0
  130. package/build/adapters/vscode-copilot/index.d.ts +32 -0
  131. package/build/adapters/vscode-copilot/index.js +222 -0
  132. package/build/adapters/zed/index.d.ts +40 -0
  133. package/build/adapters/zed/index.js +163 -0
  134. package/build/cli.d.ts +34 -0
  135. package/build/cli.js +1828 -0
  136. package/build/db-base.d.ts +250 -0
  137. package/build/db-base.js +756 -0
  138. package/build/executor.d.ts +72 -0
  139. package/build/executor.js +678 -0
  140. package/build/exit-classify.d.ts +19 -0
  141. package/build/exit-classify.js +12 -0
  142. package/build/fetch/blocks.d.ts +145 -0
  143. package/build/fetch/blocks.js +244 -0
  144. package/build/fetch/extract.d.ts +68 -0
  145. package/build/fetch/extract.js +123 -0
  146. package/build/fetch/page-store.d.ts +66 -0
  147. package/build/fetch/page-store.js +174 -0
  148. package/build/fetch-cache.d.ts +13 -0
  149. package/build/fetch-cache.js +15 -0
  150. package/build/lifecycle.d.ts +124 -0
  151. package/build/lifecycle.js +278 -0
  152. package/build/package-identity.d.ts +26 -0
  153. package/build/package-identity.js +28 -0
  154. package/build/runPool.d.ts +36 -0
  155. package/build/runPool.js +51 -0
  156. package/build/runtime.d.ts +71 -0
  157. package/build/runtime.js +659 -0
  158. package/build/search/auto-memory.d.ts +47 -0
  159. package/build/search/auto-memory.js +170 -0
  160. package/build/search/ctx-search-schema.d.ts +90 -0
  161. package/build/search/ctx-search-schema.js +135 -0
  162. package/build/search/flood-guard.d.ts +57 -0
  163. package/build/search/flood-guard.js +80 -0
  164. package/build/search/unified.d.ts +56 -0
  165. package/build/search/unified.js +104 -0
  166. package/build/security.d.ts +206 -0
  167. package/build/security.js +780 -0
  168. package/build/server.d.ts +240 -0
  169. package/build/server.js +5034 -0
  170. package/build/session/analytics.d.ts +773 -0
  171. package/build/session/analytics.js +2420 -0
  172. package/build/session/db.d.ts +468 -0
  173. package/build/session/db.js +1330 -0
  174. package/build/session/error-classifier.d.ts +87 -0
  175. package/build/session/error-classifier.js +303 -0
  176. package/build/session/event-emit.d.ts +48 -0
  177. package/build/session/event-emit.js +101 -0
  178. package/build/session/extract.d.ts +333 -0
  179. package/build/session/extract.js +2688 -0
  180. package/build/session/model-prices.json +429 -0
  181. package/build/session/persist-tool-calls.d.ts +54 -0
  182. package/build/session/persist-tool-calls.js +105 -0
  183. package/build/session/pricing.d.ts +64 -0
  184. package/build/session/pricing.js +151 -0
  185. package/build/session/project-attribution.d.ts +73 -0
  186. package/build/session/project-attribution.js +245 -0
  187. package/build/session/purge.d.ts +138 -0
  188. package/build/session/purge.js +240 -0
  189. package/build/session/retrieval-marker.d.ts +39 -0
  190. package/build/session/retrieval-marker.js +65 -0
  191. package/build/session/snapshot.d.ts +46 -0
  192. package/build/session/snapshot.js +532 -0
  193. package/build/store-directory.d.ts +56 -0
  194. package/build/store-directory.js +254 -0
  195. package/build/store.d.ts +147 -0
  196. package/build/store.js +1714 -0
  197. package/build/truncate.d.ts +57 -0
  198. package/build/truncate.js +142 -0
  199. package/build/types.d.ts +117 -0
  200. package/build/types.js +20 -0
  201. package/build/util/claude-config.d.ts +32 -0
  202. package/build/util/claude-config.js +84 -0
  203. package/build/util/hook-config.d.ts +27 -0
  204. package/build/util/hook-config.js +76 -0
  205. package/build/util/jsonc.d.ts +14 -0
  206. package/build/util/jsonc.js +104 -0
  207. package/build/util/plugin-cache-integrity.d.ts +51 -0
  208. package/build/util/plugin-cache-integrity.js +146 -0
  209. package/build/util/project-dir.d.ts +149 -0
  210. package/build/util/project-dir.js +340 -0
  211. package/build/util/sibling-mcp.d.ts +79 -0
  212. package/build/util/sibling-mcp.js +181 -0
  213. package/cli.bundle.mjs +1495 -0
  214. package/configs/antigravity/GEMINI.md +68 -0
  215. package/configs/antigravity/mcp_config.json +7 -0
  216. package/configs/antigravity-cli/hooks/hooks.json +37 -0
  217. package/configs/antigravity-cli/hooks.json +37 -0
  218. package/configs/antigravity-cli/mcp_config.json +10 -0
  219. package/configs/antigravity-cli/plugin.json +14 -0
  220. package/configs/antigravity-cli/rules/context-mode.md +77 -0
  221. package/configs/antigravity-cli/skills/context-mode/SKILL.md +77 -0
  222. package/configs/claude-code/CLAUDE.md +91 -0
  223. package/configs/codex/AGENTS.md +99 -0
  224. package/configs/codex/config.toml +8 -0
  225. package/configs/codex/hooks.json +47 -0
  226. package/configs/copilot-cli/.github/plugin/plugin.json +23 -0
  227. package/configs/copilot-cli/.mcp.json +12 -0
  228. package/configs/copilot-cli/README.md +47 -0
  229. package/configs/copilot-cli/hooks.json +41 -0
  230. package/configs/copilot-cli/skills/context-mode/SKILL.md +38 -0
  231. package/configs/cursor/context-mode.mdc +76 -0
  232. package/configs/cursor/hooks.json +21 -0
  233. package/configs/cursor/mcp.json +7 -0
  234. package/configs/gemini-cli/GEMINI.md +88 -0
  235. package/configs/gemini-cli/mcp.json +7 -0
  236. package/configs/gemini-cli/settings.json +60 -0
  237. package/configs/jetbrains-copilot/copilot-instructions.md +80 -0
  238. package/configs/jetbrains-copilot/hooks.json +16 -0
  239. package/configs/jetbrains-copilot/mcp.json +7 -0
  240. package/configs/kilo/AGENTS.md +84 -0
  241. package/configs/kilo/kilo.json +6 -0
  242. package/configs/kimi/hooks.json +54 -0
  243. package/configs/kiro/KIRO.md +84 -0
  244. package/configs/kiro/agent.json +18 -0
  245. package/configs/kiro/mcp.json +7 -0
  246. package/configs/omp/SYSTEM.md +85 -0
  247. package/configs/omp/mcp.json +7 -0
  248. package/configs/openclaw/AGENTS.md +87 -0
  249. package/configs/openclaw/openclaw.json +13 -0
  250. package/configs/opencode/AGENTS.md +84 -0
  251. package/configs/opencode/opencode.json +6 -0
  252. package/configs/pi/AGENTS.md +3 -0
  253. package/configs/qwen-code/QWEN.md +91 -0
  254. package/configs/vscode-copilot/copilot-instructions.md +80 -0
  255. package/configs/vscode-copilot/hooks.json +16 -0
  256. package/configs/vscode-copilot/mcp.json +7 -0
  257. package/configs/zed/AGENTS.md +68 -0
  258. package/hooks/antigravity-cli/payload.mjs +98 -0
  259. package/hooks/antigravity-cli/posttooluse.mjs +138 -0
  260. package/hooks/antigravity-cli/pretooluse.mjs +78 -0
  261. package/hooks/antigravity-cli/stop.mjs +58 -0
  262. package/hooks/auto-injection.mjs +102 -0
  263. package/hooks/cache-heal-utils.mjs +379 -0
  264. package/hooks/codex/platform.mjs +1 -0
  265. package/hooks/codex/posttooluse.mjs +66 -0
  266. package/hooks/codex/precompact.mjs +70 -0
  267. package/hooks/codex/pretooluse.mjs +42 -0
  268. package/hooks/codex/sessionstart.mjs +121 -0
  269. package/hooks/codex/stop.mjs +138 -0
  270. package/hooks/codex/userpromptsubmit.mjs +75 -0
  271. package/hooks/copilot-cli/posttooluse.mjs +79 -0
  272. package/hooks/copilot-cli/precompact.mjs +66 -0
  273. package/hooks/copilot-cli/pretooluse.mjs +41 -0
  274. package/hooks/copilot-cli/sessionstart.mjs +121 -0
  275. package/hooks/copilot-cli/stop.mjs +59 -0
  276. package/hooks/copilot-cli/userpromptsubmit.mjs +77 -0
  277. package/hooks/core/codex-caps.mjs +112 -0
  278. package/hooks/core/formatters.mjs +356 -0
  279. package/hooks/core/mcp-ready.mjs +109 -0
  280. package/hooks/core/platform-detect.mjs +49 -0
  281. package/hooks/core/routing.mjs +1050 -0
  282. package/hooks/core/stdin.mjs +90 -0
  283. package/hooks/core/tool-naming.mjs +57 -0
  284. package/hooks/cursor/afteragentresponse.mjs +74 -0
  285. package/hooks/cursor/hooks.json +31 -0
  286. package/hooks/cursor/posttooluse.mjs +72 -0
  287. package/hooks/cursor/pretooluse.mjs +26 -0
  288. package/hooks/cursor/sessionstart.mjs +97 -0
  289. package/hooks/cursor/stop.mjs +48 -0
  290. package/hooks/ensure-deps.mjs +254 -0
  291. package/hooks/formatters/claude-code.mjs +113 -0
  292. package/hooks/formatters/cursor.mjs +37 -0
  293. package/hooks/formatters/gemini-cli.mjs +55 -0
  294. package/hooks/formatters/vscode-copilot.mjs +55 -0
  295. package/hooks/gemini-cli/aftermodel.mjs +70 -0
  296. package/hooks/gemini-cli/aftertool.mjs +61 -0
  297. package/hooks/gemini-cli/beforeagent.mjs +99 -0
  298. package/hooks/gemini-cli/beforetool.mjs +27 -0
  299. package/hooks/gemini-cli/precompress.mjs +55 -0
  300. package/hooks/gemini-cli/sessionstart.mjs +137 -0
  301. package/hooks/heal-partial-install.mjs +712 -0
  302. package/hooks/hooks.json +143 -0
  303. package/hooks/jetbrains-copilot/posttooluse.mjs +61 -0
  304. package/hooks/jetbrains-copilot/precompact.mjs +55 -0
  305. package/hooks/jetbrains-copilot/pretooluse.mjs +27 -0
  306. package/hooks/jetbrains-copilot/sessionstart.mjs +124 -0
  307. package/hooks/kimi/platform.mjs +1 -0
  308. package/hooks/kimi/posttooluse.mjs +72 -0
  309. package/hooks/kimi/precompact.mjs +80 -0
  310. package/hooks/kimi/pretooluse.mjs +42 -0
  311. package/hooks/kimi/sessionend.mjs +61 -0
  312. package/hooks/kimi/sessionstart.mjs +113 -0
  313. package/hooks/kimi/stop.mjs +132 -0
  314. package/hooks/kimi/userpromptsubmit.mjs +90 -0
  315. package/hooks/kiro/agentspawn.mjs +97 -0
  316. package/hooks/kiro/posttooluse.mjs +51 -0
  317. package/hooks/kiro/pretooluse.mjs +64 -0
  318. package/hooks/kiro/userpromptsubmit.mjs +88 -0
  319. package/hooks/normalize-hooks.mjs +323 -0
  320. package/hooks/platform-bridge.mjs +340 -0
  321. package/hooks/posttooluse.mjs +225 -0
  322. package/hooks/precompact.mjs +100 -0
  323. package/hooks/pretooluse.mjs +227 -0
  324. package/hooks/qwen-code/platform.mjs +1 -0
  325. package/hooks/qwen-code/stop.mjs +168 -0
  326. package/hooks/routing-block.mjs +105 -0
  327. package/hooks/run-hook.mjs +95 -0
  328. package/hooks/security.bundle.mjs +2 -0
  329. package/hooks/session-attribution.bundle.mjs +1 -0
  330. package/hooks/session-db.bundle.mjs +145 -0
  331. package/hooks/session-directive.mjs +520 -0
  332. package/hooks/session-extract.bundle.mjs +3 -0
  333. package/hooks/session-helpers.mjs +428 -0
  334. package/hooks/session-loaders.mjs +448 -0
  335. package/hooks/session-snapshot.bundle.mjs +32 -0
  336. package/hooks/sessionstart.mjs +464 -0
  337. package/hooks/stop.mjs +82 -0
  338. package/hooks/suppress-stderr.mjs +25 -0
  339. package/hooks/userpromptsubmit.mjs +108 -0
  340. package/hooks/vscode-copilot/posttooluse.mjs +61 -0
  341. package/hooks/vscode-copilot/precompact.mjs +55 -0
  342. package/hooks/vscode-copilot/pretooluse.mjs +27 -0
  343. package/hooks/vscode-copilot/sessionstart.mjs +129 -0
  344. package/openclaw.plugin.json +38 -0
  345. package/package.json +132 -0
  346. package/scripts/heal-better-sqlite3.mjs +430 -0
  347. package/scripts/heal-installed-plugins.mjs +635 -0
  348. package/scripts/plugin-cache-integrity.mjs +248 -0
  349. package/scripts/postinstall.mjs +397 -0
  350. package/server.bundle.mjs +1421 -0
  351. package/server.js +5 -0
  352. package/skills/.ignore +7 -0
  353. package/skills/context-mode/SKILL.md +300 -0
  354. package/skills/context-mode/references/anti-patterns.md +283 -0
  355. package/skills/context-mode/references/patterns-javascript.md +298 -0
  356. package/skills/context-mode/references/patterns-python.md +304 -0
  357. package/skills/context-mode/references/patterns-shell.md +277 -0
  358. package/skills/ctx-doctor/SKILL.md +22 -0
  359. package/skills/ctx-index/SKILL.md +46 -0
  360. package/skills/ctx-insight/SKILL.md +24 -0
  361. package/skills/ctx-purge/SKILL.md +49 -0
  362. package/skills/ctx-search/SKILL.md +35 -0
  363. package/skills/ctx-stats/SKILL.md +26 -0
  364. package/skills/ctx-upgrade/SKILL.md +31 -0
  365. package/start.mjs +616 -0
@@ -0,0 +1,254 @@
1
+ /**
2
+ * Shared dependency bootstrap for hooks and start.mjs.
3
+ *
4
+ * Single source of truth — ensures native deps (better-sqlite3) are
5
+ * installed in the plugin cache before any hook or server code runs.
6
+ *
7
+ * Pattern: same as suppress-stderr.mjs — imported at the top of every
8
+ * hook that needs native modules. Fast path: existsSync check (~0.1ms).
9
+ * Slow path: npm install (first run only, ~5-30s).
10
+ *
11
+ * Also handles ABI compatibility (#148, #203): when the current Node.js
12
+ * version differs from the one better-sqlite3 was compiled against,
13
+ * automatically swaps in a cached binary or rebuilds. This protects
14
+ * both the MCP server AND hooks from ABI mismatch crashes when users
15
+ * have multiple Node versions via mise/volta/fnm/nvm.
16
+ *
17
+ * @see https://github.com/mxalbert1996/context-mode/issues/148
18
+ * @see https://github.com/mxalbert1996/context-mode/issues/172
19
+ * @see https://github.com/mxalbert1996/context-mode/issues/203
20
+ */
21
+
22
+ import { existsSync, copyFileSync, renameSync, unlinkSync } from "node:fs";
23
+ import { execSync } from "node:child_process";
24
+ import { resolve, dirname } from "node:path";
25
+ import { fileURLToPath, pathToFileURL } from "node:url";
26
+ import { createRequire } from "node:module";
27
+
28
+ const __dirname = dirname(fileURLToPath(import.meta.url));
29
+ const root = resolve(__dirname, "..");
30
+
31
+ // Shared 3-layer heal helper (also used by scripts/postinstall.mjs).
32
+ // Lazy-loaded via dynamic import so older installs and synthetic test
33
+ // harnesses (e.g. tests/session-hooks-smoke) — which don't ship
34
+ // `scripts/heal-better-sqlite3.mjs` — degrade to a no-op instead of
35
+ // crashing the hook with ERR_MODULE_NOT_FOUND. Best-effort posture
36
+ // matches the rest of this module.
37
+ async function healBetterSqlite3Binding(pkgRoot) {
38
+ try {
39
+ const helperPath = resolve(__dirname, "..", "scripts", "heal-better-sqlite3.mjs");
40
+ if (!existsSync(helperPath)) return { healed: false, reason: "helper-missing" };
41
+ const mod = await import(pathToFileURL(helperPath).href);
42
+ return mod.healBetterSqlite3Binding(pkgRoot);
43
+ } catch {
44
+ return { healed: false, reason: "helper-error" };
45
+ }
46
+ }
47
+
48
+ const NATIVE_DEPS = ["better-sqlite3"];
49
+ const NATIVE_BINARIES = {
50
+ "better-sqlite3": ["build", "Release", "better_sqlite3.node"],
51
+ };
52
+
53
+ /**
54
+ * Check if the current runtime has built-in SQLite support.
55
+ * Bun has bun:sqlite, Node >= 22.5 has node:sqlite.
56
+ *
57
+ * Used to skip the SIGSEGV-prone child-process probe on modern Node (#331),
58
+ * but NOT to skip installing better-sqlite3 — the bundle unconditionally
59
+ * requires it as a fallback on non-Linux platforms (#371).
60
+ */
61
+ function hasModernSqlite() {
62
+ if (typeof globalThis.Bun !== "undefined") return true;
63
+ const [major, minor] = process.versions.node.split(".").map(Number);
64
+ return major > 22 || (major === 22 && minor >= 5);
65
+ }
66
+
67
+ export async function ensureDeps() {
68
+ // Bun ships bun:sqlite and never needs better-sqlite3
69
+ if (typeof globalThis.Bun !== "undefined") return;
70
+ for (const pkg of NATIVE_DEPS) {
71
+ const pkgDir = resolve(root, "node_modules", pkg);
72
+ if (!existsSync(pkgDir)) {
73
+ // Package not installed at all
74
+ try {
75
+ execSync(`${process.platform === "win32" ? "npm.cmd" : "npm"} install ${pkg} --no-package-lock --no-save --silent`, {
76
+ cwd: root,
77
+ stdio: "pipe",
78
+ timeout: 120000,
79
+ shell: true,
80
+ });
81
+ } catch { /* best effort — hook degrades gracefully without DB */ }
82
+ } else if (!existsSync(resolve(pkgDir, ...NATIVE_BINARIES[pkg]))) {
83
+ // Package installed but native binary missing (e.g., npm ignore-scripts=true,
84
+ // or Windows where `npm rebuild` falls through to node-gyp without MSVC — #408).
85
+ // Delegate to the shared 3-layer heal (single source of truth, also used by
86
+ // scripts/postinstall.mjs).
87
+ try { await healBetterSqlite3Binding(root); } catch { /* helper already best-effort */ }
88
+ }
89
+ }
90
+ }
91
+
92
+ /**
93
+ * Probe-load better-sqlite3 in a child process to verify the binary on disk
94
+ * is compatible with the current Node ABI. In-process require() caches native
95
+ * modules at the dlopen level, so it can't detect on-disk binary changes.
96
+ * A child process gets a fresh dlopen cache.
97
+ *
98
+ * Note: require('better-sqlite3') only loads the JS wrapper — the native
99
+ * binary is lazy-loaded when instantiating a Database. We must create an
100
+ * in-memory DB to actually trigger dlopen.
101
+ */
102
+ function probeNativeInChildProcess(pluginRoot) {
103
+ try {
104
+ execSync(`node -e "new (require('better-sqlite3'))(':memory:').close()"`, {
105
+ cwd: pluginRoot,
106
+ stdio: "pipe",
107
+ timeout: 10000,
108
+ });
109
+ return true;
110
+ } catch {
111
+ return false;
112
+ }
113
+ }
114
+
115
+ /**
116
+ * In-process probe — cheap, safe on modern Node (no child spawn, no SIGSEGV path).
117
+ * Returns true if better-sqlite3 loads against the current ABI.
118
+ */
119
+ function probeNativeInProcess(pluginRoot) {
120
+ try {
121
+ const req = createRequire(resolve(pluginRoot, "package.json"));
122
+ const Database = req("better-sqlite3");
123
+ new Database(":memory:").close();
124
+ return true;
125
+ } catch {
126
+ return false;
127
+ }
128
+ }
129
+
130
+ function replaceActiveNativeBinaryFromCache(abiCachePath, binaryPath) {
131
+ const tmpPath = `${binaryPath}.staging-${process.pid}-${Date.now()}`;
132
+ try {
133
+ copyFileSync(abiCachePath, tmpPath);
134
+ codesignBinary(tmpPath);
135
+ renameSync(tmpPath, binaryPath);
136
+ } catch (err) {
137
+ try { unlinkSync(tmpPath); } catch { /* best effort cleanup */ }
138
+ throw err;
139
+ }
140
+ }
141
+
142
+ export function ensureNativeCompat(pluginRoot) {
143
+ // Pre-compute paths regardless of runtime — the Bun branch below uses
144
+ // them to seed the ABI cache (#543) so the next /ctx-upgrade boot (under
145
+ // Node) finds the success marker file. Bun spoofs
146
+ // process.versions.modules to match the Node ABI level (e.g. 137 on
147
+ // Darwin matching Node 24), so a plain file-copy produces the correct
148
+ // filename for any subsequent Node boot at the same ABI.
149
+ const abi = process.versions.modules;
150
+ const nativeDir = resolve(pluginRoot, "node_modules", "better-sqlite3", "build", "Release");
151
+ const binaryPath = resolve(nativeDir, "better_sqlite3.node");
152
+ const abiCachePath = resolve(nativeDir, `better_sqlite3.abi${abi}.node`);
153
+
154
+ // Bun ships bun:sqlite — no native addon needed at RUNTIME. But
155
+ // /ctx-upgrade still verifies the ABI cache file as the success marker,
156
+ // so we seed it from the active binary if it exists. Best-effort:
157
+ // any failure here is silent because Bun never loads better-sqlite3.
158
+ if (typeof globalThis.Bun !== "undefined") {
159
+ try {
160
+ if (existsSync(nativeDir) && existsSync(binaryPath) && !existsSync(abiCachePath)) {
161
+ copyFileSync(binaryPath, abiCachePath);
162
+ }
163
+ } catch { /* best effort — Bun never dlopens this file */ }
164
+ return;
165
+ }
166
+
167
+ // On Node >= 22.5, skip the child-process probe that can cause SIGSEGV (#331).
168
+ // The binary install/rebuild still runs — only the dlopen probe is skipped.
169
+ const skipProbe = hasModernSqlite();
170
+
171
+ try {
172
+ if (!existsSync(nativeDir)) return;
173
+
174
+ // Fast path: cached binary for this ABI already exists — swap in
175
+ if (existsSync(abiCachePath)) {
176
+ replaceActiveNativeBinaryFromCache(abiCachePath, binaryPath);
177
+ if (skipProbe) return; // Trust the cached binary — skip SIGSEGV-prone probe
178
+ // Validate via child process — dlopen cache is per-process, so in-process
179
+ // require() can't detect a swapped binary on disk (#148)
180
+ if (probeNativeInChildProcess(pluginRoot)) {
181
+ return; // Cache hit validated
182
+ }
183
+ // Cached binary is stale/corrupt — fall through to rebuild
184
+ }
185
+
186
+ if (skipProbe) {
187
+ // Seed the ABI cache from a working binary before falling back to rebuild;
188
+ // otherwise a missing cache forces npm rebuild on every hook invocation.
189
+ if (existsSync(binaryPath) && probeNativeInProcess(pluginRoot)) {
190
+ copyFileSync(binaryPath, abiCachePath);
191
+ return;
192
+ }
193
+ execSync(`${process.platform === "win32" ? "npm.cmd" : "npm"} rebuild better-sqlite3 --ignore-scripts=false`, {
194
+ cwd: pluginRoot,
195
+ stdio: "pipe",
196
+ timeout: 60000,
197
+ shell: true,
198
+ });
199
+ codesignBinary(binaryPath);
200
+ if (existsSync(binaryPath)) {
201
+ copyFileSync(binaryPath, abiCachePath);
202
+ }
203
+ return;
204
+ }
205
+
206
+ // Probe: try loading better-sqlite3 with current Node
207
+ if (existsSync(binaryPath) && probeNativeInChildProcess(pluginRoot)) {
208
+ // Load succeeded — cache the working binary for this ABI
209
+ copyFileSync(binaryPath, abiCachePath);
210
+ } else {
211
+ // ABI mismatch or missing native binary — rebuild for current Node version
212
+ execSync(`${process.platform === "win32" ? "npm.cmd" : "npm"} rebuild better-sqlite3 --ignore-scripts=false`, {
213
+ cwd: pluginRoot,
214
+ stdio: "pipe",
215
+ timeout: 60000,
216
+ shell: true,
217
+ });
218
+ codesignBinary(binaryPath);
219
+ if (existsSync(binaryPath) && probeNativeInChildProcess(pluginRoot)) {
220
+ copyFileSync(binaryPath, abiCachePath);
221
+ }
222
+ }
223
+ } catch {
224
+ /* best effort — caller will report the error on first DB access */
225
+ }
226
+ }
227
+
228
+ /**
229
+ * Ad-hoc codesign a native binary on macOS.
230
+ *
231
+ * When a cached .node binary is copied over the active one, macOS hardened
232
+ * runtime (e.g. Zed, VS Code with runtime hardening) will SIGKILL the
233
+ * process on the next dlopen because the code signature is invalidated.
234
+ * SIGKILL is uncatchable — the only fix is to re-sign after the copy.
235
+ *
236
+ * No-op on non-macOS. Swallows errors (codesign may not be available in
237
+ * all environments, e.g. Docker containers).
238
+ */
239
+ export function codesignBinary(binaryPath) {
240
+ if (process.platform === "darwin") {
241
+ try {
242
+ execSync(`codesign --sign - --force "${binaryPath}"`, {
243
+ stdio: "pipe",
244
+ timeout: 10000,
245
+ });
246
+ } catch { /* codesign unavailable — continue without signing */ }
247
+ }
248
+ }
249
+
250
+ // Auto-run on import (like suppress-stderr.mjs).
251
+ // Top-level await ensures the heal completes before the importer's next
252
+ // statement runs (which is typically `new Database(...)`).
253
+ await ensureDeps();
254
+ ensureNativeCompat(root);
@@ -0,0 +1,113 @@
1
+ /**
2
+ * Claude Code formatter — converts routing decisions into Claude Code hook output format.
3
+ *
4
+ * Claude Code expects:
5
+ * { hookSpecificOutput: { hookEventName, permissionDecision?, reason?, updatedInput?, additionalContext? } }
6
+ *
7
+ * Decision shape from routing.mjs:
8
+ * - { action: "deny", reason: string }
9
+ * - { action: "ask" }
10
+ * - { action: "modify", updatedInput: object }
11
+ * - { action: "context", additionalContext: string }
12
+ * - null (passthrough)
13
+ *
14
+ * @param {object | null} decision - Normalized decision from routePreToolUse
15
+ * @returns {object | null} Claude Code hook response, or null for passthrough
16
+ */
17
+
18
+ // In `claude --print` (headless) the CLI has no TTY to surface an "ask" prompt,
19
+ // so the agent stalls forever. Launchers running headless set CLAUDE_CODE_HEADLESS=1;
20
+ // when set, we mirror gemini-cli.mjs and passthrough on ask instead of blocking.
21
+ //
22
+ // We also passthrough on `deny` and `modify` in headless mode — context-mode's
23
+ // purpose is to nudge the agent toward `ctx_*` tools to save context. In a TTY
24
+ // session that nudge is useful: the agent reconsiders or asks the user. In
25
+ // headless `--print` mode the agent has no UI to reconsider; a `deny` aborts
26
+ // the run with no path forward, and `modify` silently swaps a curl for an
27
+ // `echo "use ctx_execute"` line that produces zero stdout — which is exactly
28
+ // what blocked the homelab daily explorer agent (Loki/Prom curl turned into
29
+ // empty echoes, all data-fetch steps reported BLOCKED). In headless launchers,
30
+ // the operator has already accepted the context-budget tradeoff by running
31
+ // raw tools; let those tools through.
32
+ const isHeadless = () => process.env.CLAUDE_CODE_HEADLESS === "1";
33
+
34
+ export function formatDecision(decision) {
35
+ if (!decision) return null;
36
+
37
+ switch (decision.action) {
38
+ case "deny":
39
+ if (isHeadless()) return null;
40
+ return {
41
+ hookSpecificOutput: {
42
+ hookEventName: "PreToolUse",
43
+ permissionDecision: "deny",
44
+ reason: decision.reason ?? "Blocked by context-mode",
45
+ },
46
+ };
47
+
48
+ case "ask":
49
+ if (isHeadless()) return null;
50
+ return {
51
+ hookSpecificOutput: {
52
+ hookEventName: "PreToolUse",
53
+ permissionDecision: "ask",
54
+ },
55
+ };
56
+
57
+ case "modify": {
58
+ if (isHeadless()) return null;
59
+
60
+ // Tool-aware modify handling:
61
+ //
62
+ // - Bash redirect (updatedInput.command): CC v2.1.x ignores
63
+ // `updatedInput.command` substitution under `permissionDecision: "allow"`
64
+ // — original command runs unchanged. Verified via /diagnose Phase 4
65
+ // forced-deny probe: only `permissionDecision: "deny"` is honored for
66
+ // Bash blocking. Emit deny + extract echo payload into
67
+ // `permissionDecisionReason`.
68
+ //
69
+ // - Agent prompt injection (updatedInput.prompt): CC honors allow+updatedInput
70
+ // for the Agent tool — the modified prompt actually reaches the subagent.
71
+ // Keep the original modify shape so subagent routing-block injection works.
72
+ //
73
+ // - Any other shape: pass through as modify (no command, no prompt — let
74
+ // CC decide if the field is honored).
75
+ const ui = decision.updatedInput ?? {};
76
+ const isBashCommandRedirect = "command" in ui;
77
+ if (!isBashCommandRedirect) {
78
+ return {
79
+ hookSpecificOutput: {
80
+ hookEventName: "PreToolUse",
81
+ updatedInput: ui,
82
+ },
83
+ };
84
+ }
85
+ // routing.mjs wraps the redirect guidance in `echo "..."` form.
86
+ // Extract the quoted payload as the deny reason. Fall back to a generic
87
+ // ADR-0003 CASE A message if the shape doesn't match.
88
+ const cmd = ui.command ?? "";
89
+ const m = cmd.match(/^echo\s+"(.+)"$/s);
90
+ const reason = m
91
+ ? m[1]
92
+ : "Redirected to ctx_execute / ctx_fetch_and_index. Call ctx_execute(language, code) to fetch and derive your answer in one round trip, or call ctx_fetch_and_index(url, source) when you want to query the response later via ctx_search. Both have full network access. Retry the same call on a transient DNS error (EAI_AGAIN, ETIMEDOUT, ENETUNREACH).";
93
+ return {
94
+ hookSpecificOutput: {
95
+ hookEventName: "PreToolUse",
96
+ permissionDecision: "deny",
97
+ permissionDecisionReason: reason,
98
+ },
99
+ };
100
+ }
101
+
102
+ case "context":
103
+ return {
104
+ hookSpecificOutput: {
105
+ hookEventName: "PreToolUse",
106
+ additionalContext: decision.additionalContext ?? "",
107
+ },
108
+ };
109
+
110
+ default:
111
+ return null;
112
+ }
113
+ }
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Cursor formatter — converts routing decisions into native Cursor hook output.
3
+ *
4
+ * Cursor expects flat response objects:
5
+ * { permission: "deny" | "ask", user_message?: string }
6
+ * { updated_input: { ... } }
7
+ * { agent_message: "..." }
8
+ */
9
+ export function formatDecision(decision) {
10
+ if (!decision) return null;
11
+
12
+ switch (decision.action) {
13
+ case "deny":
14
+ return {
15
+ permission: "deny",
16
+ user_message: decision.reason ?? "Blocked by context-mode",
17
+ };
18
+
19
+ case "ask":
20
+ return {
21
+ permission: "ask",
22
+ };
23
+
24
+ case "modify":
25
+ return {
26
+ updated_input: decision.updatedInput,
27
+ };
28
+
29
+ case "context":
30
+ return {
31
+ agent_message: decision.additionalContext ?? "",
32
+ };
33
+
34
+ default:
35
+ return null;
36
+ }
37
+ }
@@ -0,0 +1,55 @@
1
+ /**
2
+ * Gemini CLI formatter — converts routing decisions into Gemini CLI hook output format.
3
+ *
4
+ * Gemini CLI expects:
5
+ * { hookSpecificOutput: { decision?, reason?, tool_input?, additionalContext? } }
6
+ *
7
+ * Key differences from Claude Code:
8
+ * - Uses "decision" instead of "permissionDecision"
9
+ * - Uses "tool_input" instead of "updatedInput"
10
+ * - No "ask" concept — Gemini CLI only supports deny/allow
11
+ *
12
+ * Decision shape from routing.mjs:
13
+ * - { action: "deny", reason: string }
14
+ * - { action: "ask" }
15
+ * - { action: "modify", updatedInput: object }
16
+ * - { action: "context", additionalContext: string }
17
+ * - null (passthrough)
18
+ *
19
+ * @param {object | null} decision - Normalized decision from routePreToolUse
20
+ * @returns {object | null} Gemini CLI hook response, or null for passthrough
21
+ */
22
+ export function formatDecision(decision) {
23
+ if (!decision) return null;
24
+
25
+ switch (decision.action) {
26
+ case "deny":
27
+ return {
28
+ hookSpecificOutput: {
29
+ decision: "deny",
30
+ reason: decision.reason ?? "Blocked by context-mode",
31
+ },
32
+ };
33
+
34
+ case "ask":
35
+ // Gemini CLI has no "ask" concept — return null (passthrough)
36
+ return null;
37
+
38
+ case "modify":
39
+ return {
40
+ hookSpecificOutput: {
41
+ tool_input: decision.updatedInput,
42
+ },
43
+ };
44
+
45
+ case "context":
46
+ return {
47
+ hookSpecificOutput: {
48
+ additionalContext: decision.additionalContext ?? "",
49
+ },
50
+ };
51
+
52
+ default:
53
+ return null;
54
+ }
55
+ }
@@ -0,0 +1,55 @@
1
+ /**
2
+ * VS Code Copilot formatter — converts routing decisions into VS Code Copilot hook output format.
3
+ *
4
+ * VS Code Copilot expects a flat structure for deny/ask, nested for modify/context:
5
+ * { permissionDecision: "deny", reason: "..." } — deny
6
+ * { permissionDecision: "ask" } — ask
7
+ * { hookSpecificOutput: { ... }, hookEventName: "PreToolUse" } — modify/context
8
+ *
9
+ * Key differences from Claude Code:
10
+ * - deny/ask are flat (not wrapped in hookSpecificOutput)
11
+ * - modify/context include hookEventName at top level alongside hookSpecificOutput
12
+ *
13
+ * Decision shape from routing.mjs:
14
+ * - { action: "deny", reason: string }
15
+ * - { action: "ask" }
16
+ * - { action: "modify", updatedInput: object }
17
+ * - { action: "context", additionalContext: string }
18
+ * - null (passthrough)
19
+ *
20
+ * @param {object | null} decision - Normalized decision from routePreToolUse
21
+ * @returns {object | null} VS Code Copilot hook response, or null for passthrough
22
+ */
23
+ export function formatDecision(decision) {
24
+ if (!decision) return null;
25
+
26
+ switch (decision.action) {
27
+ case "deny":
28
+ return {
29
+ permissionDecision: "deny",
30
+ reason: decision.reason ?? "Blocked by context-mode",
31
+ };
32
+
33
+ case "ask":
34
+ return {
35
+ permissionDecision: "ask",
36
+ };
37
+
38
+ case "modify":
39
+ return {
40
+ hookSpecificOutput: decision.updatedInput,
41
+ hookEventName: "PreToolUse",
42
+ };
43
+
44
+ case "context":
45
+ return {
46
+ hookSpecificOutput: {
47
+ additionalContext: decision.additionalContext ?? "",
48
+ },
49
+ hookEventName: "PreToolUse",
50
+ };
51
+
52
+ default:
53
+ return null;
54
+ }
55
+ }
@@ -0,0 +1,70 @@
1
+ #!/usr/bin/env node
2
+ import "../suppress-stderr.mjs";
3
+ import "../ensure-deps.mjs";
4
+ /**
5
+ * Gemini CLI AfterModel hook — per-turn token / cost capture.
6
+ *
7
+ * AfterModel fires per model call inside gemini-cli's stream loop
8
+ * (packages/core/src/core/geminiChat.ts:1213). The hook payload carries
9
+ * `llm_request` + `llm_response` (hooks/types.ts:692-695); the real Gemini
10
+ * `usageMetadata` (promptTokenCount, candidatesTokenCount, +cachedContent/
11
+ * thoughts when present) and resolved model live on `llm_response`
12
+ * (hookTranslator.ts:60-64, loggingContentGenerator.ts:405,553).
13
+ *
14
+ * parseGeminiUsage maps that into a builder `agent_usage` event; cost_usd is
15
+ * derived from the pricing catalog (gemini exposes no native cost). The event
16
+ * is forwarded via attributeAndInsertEvents — same path as hooks/stop.mjs.
17
+ *
18
+ * One AfterModel call = one billed model round-trip = one priced event.
19
+ * Per-userPromptId summation into a single per-turn total is deferred; emitting
20
+ * per-call never double-counts (each call's usageMetadata is authoritative).
21
+ *
22
+ * Must be fast (<20ms). No network, no LLM, just a parse + SQLite write.
23
+ * AfterModel is non-blocking — no stdout output.
24
+ */
25
+
26
+ import { readStdin, parseStdin, getSessionId, getSessionDBPath, getInputProjectDir, GEMINI_OPTS } from "../session-helpers.mjs";
27
+ import { createSessionLoaders, attributeAndInsertEvents } from "../session-loaders.mjs";
28
+ import { appendFileSync } from "node:fs";
29
+ import { join, dirname } from "node:path";
30
+ import { homedir } from "node:os";
31
+ import { fileURLToPath } from "node:url";
32
+
33
+ const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
34
+ const { loadSessionDB, loadExtract, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
35
+ const OPTS = GEMINI_OPTS;
36
+ const DEBUG_LOG = join(homedir(), ".gemini", "context-mode", "aftermodel-debug.log");
37
+
38
+ try {
39
+ const raw = await readStdin();
40
+ const input = parseStdin(raw);
41
+ const projectDir = getInputProjectDir(input, OPTS);
42
+
43
+ const { parseGeminiUsage } = await loadExtract();
44
+ const event = parseGeminiUsage(input);
45
+
46
+ if (event) {
47
+ const { resolveProjectAttributions } = await loadProjectAttribution();
48
+ const { SessionDB } = await loadSessionDB();
49
+
50
+ const dbPath = getSessionDBPath(OPTS, projectDir);
51
+ const db = new SessionDB({ dbPath });
52
+ const sessionId = getSessionId(input, OPTS);
53
+ db.ensureSession(sessionId, projectDir);
54
+
55
+ // attributeAndInsertEvents both INSERTS locally and FORWARDS to the
56
+ // platform (gated on ~/.context-mode/platform.json) — same as stop.mjs.
57
+ attributeAndInsertEvents(db, sessionId, [event], input, projectDir, "AfterModel", resolveProjectAttributions);
58
+ db.close();
59
+
60
+ try {
61
+ appendFileSync(DEBUG_LOG, `[${new Date().toISOString()}] OK: ${event.model_id ?? "?"} in:${event.input_tokens ?? 0} out:${event.output_tokens ?? 0}\n`);
62
+ } catch { /* silent */ }
63
+ }
64
+ } catch (err) {
65
+ try {
66
+ appendFileSync(DEBUG_LOG, `[${new Date().toISOString()}] ERR: ${err?.message || err}\n`);
67
+ } catch { /* silent */ }
68
+ }
69
+
70
+ // AfterModel is non-blocking — no stdout output
@@ -0,0 +1,61 @@
1
+ #!/usr/bin/env node
2
+ import "../suppress-stderr.mjs";
3
+ import "../ensure-deps.mjs";
4
+ /**
5
+ * Gemini CLI AfterTool hook — session event capture.
6
+ *
7
+ * Captures session events from tool calls (13 categories) and stores
8
+ * them in the per-project SessionDB for later resume snapshot building.
9
+ *
10
+ * Must be fast (<20ms). No network, no LLM, just SQLite writes.
11
+ */
12
+
13
+ import { readStdin, parseStdin, getSessionId, getSessionDBPath, getInputProjectDir, GEMINI_OPTS } from "../session-helpers.mjs";
14
+ import { createSessionLoaders, attributeAndInsertEvents } from "../session-loaders.mjs";
15
+ import { appendFileSync } from "node:fs";
16
+ import { join, dirname } from "node:path";
17
+ import { homedir } from "node:os";
18
+ import { fileURLToPath } from "node:url";
19
+
20
+ const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
21
+ const { loadSessionDB, loadExtract, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
22
+ const OPTS = GEMINI_OPTS;
23
+ const DEBUG_LOG = join(homedir(), ".gemini", "context-mode", "aftertool-debug.log");
24
+
25
+ try {
26
+ const raw = await readStdin();
27
+ const input = parseStdin(raw);
28
+ const projectDir = getInputProjectDir(input, OPTS);
29
+
30
+ appendFileSync(DEBUG_LOG, `[${new Date().toISOString()}] CALL: ${input.tool_name}\n`);
31
+
32
+ const { extractEvents } = await loadExtract();
33
+ const { resolveProjectAttributions } = await loadProjectAttribution();
34
+ const { SessionDB } = await loadSessionDB();
35
+
36
+ const dbPath = getSessionDBPath(OPTS, projectDir);
37
+ const db = new SessionDB({ dbPath });
38
+ const sessionId = getSessionId(input, OPTS);
39
+
40
+ db.ensureSession(sessionId, projectDir);
41
+
42
+ const events = extractEvents({
43
+ tool_name: input.tool_name,
44
+ tool_input: input.tool_input ?? {},
45
+ tool_response: typeof input.tool_response === "string"
46
+ ? input.tool_response
47
+ : JSON.stringify(input.tool_response ?? ""),
48
+ tool_output: input.tool_output,
49
+ });
50
+
51
+ attributeAndInsertEvents(db, sessionId, events, input, projectDir, "AfterTool", resolveProjectAttributions);
52
+
53
+ appendFileSync(DEBUG_LOG, `[${new Date().toISOString()}] OK: ${input.tool_name} → ${events.length} events\n`);
54
+ db.close();
55
+ } catch (err) {
56
+ try {
57
+ appendFileSync(DEBUG_LOG, `[${new Date().toISOString()}] ERR: ${err?.message || err}\n`);
58
+ } catch { /* silent */ }
59
+ }
60
+
61
+ // AfterTool is non-blocking — no stdout output