@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,483 @@
1
+ /**
2
+ * adapters/gemini-cli — Gemini CLI platform adapter.
3
+ *
4
+ * Implements HookAdapter for Gemini CLI's JSON stdin/stdout hook paradigm.
5
+ *
6
+ * Gemini CLI hook specifics:
7
+ * - I/O: JSON on stdin, JSON on stdout (same paradigm as Claude Code)
8
+ * - Hook names: BeforeTool, AfterTool, PreCompress, SessionStart
9
+ * - Arg modification: `hookSpecificOutput.tool_input` (merged with original)
10
+ * - Blocking: `decision: "deny"` in response (NOT permissionDecision)
11
+ * - Output modification: `decision: "deny"` + reason replaces output,
12
+ * `hookSpecificOutput.additionalContext` appends
13
+ * - PreCompress: advisory only (async, cannot block)
14
+ * - No `decision: "ask"` support
15
+ * - Hooks don't fire for subagents yet
16
+ * - Config: ~/.gemini/settings.json (user), .gemini/settings.json (project)
17
+ * - Session ID: session_id field
18
+ * - Project dir env: GEMINI_PROJECT_DIR (also CLAUDE_PROJECT_DIR alias)
19
+ * - Session dir: ~/.gemini/context-mode/sessions/
20
+ */
21
+ import { readFileSync, writeFileSync, mkdirSync, accessSync, chmodSync, existsSync, constants, } from "node:fs";
22
+ import { resolve, join } from "node:path";
23
+ import { homedir } from "node:os";
24
+ import { BaseAdapter } from "../base.js";
25
+ // ─────────────────────────────────────────────────────────
26
+ // Hook constants (re-exported from hooks.ts)
27
+ // ─────────────────────────────────────────────────────────
28
+ import { HOOK_TYPES as GEMINI_HOOK_NAMES, HOOK_SCRIPTS as GEMINI_HOOK_SCRIPTS, buildHookCommand as buildGeminiHookCommand, EXTERNAL_MCP_MATCHER_PATTERN, } from "./hooks.js";
29
+ // ─────────────────────────────────────────────────────────
30
+ // Adapter implementation
31
+ // ─────────────────────────────────────────────────────────
32
+ export class GeminiCLIAdapter extends BaseAdapter {
33
+ constructor() {
34
+ super([".gemini"]);
35
+ }
36
+ name = "Gemini CLI";
37
+ paradigm = "json-stdio";
38
+ capabilities = {
39
+ preToolUse: true,
40
+ postToolUse: true,
41
+ preCompact: true,
42
+ sessionStart: true,
43
+ canModifyArgs: true,
44
+ canModifyOutput: true,
45
+ canInjectSessionContext: true,
46
+ };
47
+ // ── Input parsing ──────────────────────────────────────
48
+ parsePreToolUseInput(raw) {
49
+ const input = raw;
50
+ return {
51
+ toolName: input.tool_name ?? "",
52
+ toolInput: input.tool_input ?? {},
53
+ sessionId: this.extractSessionId(input),
54
+ projectDir: this.getProjectDir(input),
55
+ raw,
56
+ };
57
+ }
58
+ parsePostToolUseInput(raw) {
59
+ const input = raw;
60
+ return {
61
+ toolName: input.tool_name ?? "",
62
+ toolInput: input.tool_input ?? {},
63
+ toolOutput: input.tool_output,
64
+ isError: input.is_error,
65
+ sessionId: this.extractSessionId(input),
66
+ projectDir: this.getProjectDir(input),
67
+ raw,
68
+ };
69
+ }
70
+ parsePreCompactInput(raw) {
71
+ const input = raw;
72
+ return {
73
+ sessionId: this.extractSessionId(input),
74
+ projectDir: this.getProjectDir(input),
75
+ raw,
76
+ };
77
+ }
78
+ parseSessionStartInput(raw) {
79
+ const input = raw;
80
+ const rawSource = input.source ?? "startup";
81
+ let source;
82
+ switch (rawSource) {
83
+ case "compact":
84
+ source = "compact";
85
+ break;
86
+ case "resume":
87
+ source = "resume";
88
+ break;
89
+ case "clear":
90
+ source = "clear";
91
+ break;
92
+ default:
93
+ source = "startup";
94
+ }
95
+ return {
96
+ sessionId: this.extractSessionId(input),
97
+ source,
98
+ projectDir: this.getProjectDir(input),
99
+ raw,
100
+ };
101
+ }
102
+ // ── Response formatting ────────────────────────────────
103
+ formatPreToolUseResponse(response) {
104
+ if (response.decision === "deny") {
105
+ return {
106
+ decision: "deny",
107
+ reason: response.reason ?? "Blocked by context-mode hook",
108
+ };
109
+ }
110
+ if (response.decision === "modify" && response.updatedInput) {
111
+ return {
112
+ hookSpecificOutput: {
113
+ tool_input: response.updatedInput,
114
+ },
115
+ };
116
+ }
117
+ if (response.decision === "context" && response.additionalContext) {
118
+ // Gemini CLI: inject additionalContext via hookSpecificOutput
119
+ return {
120
+ hookSpecificOutput: {
121
+ additionalContext: response.additionalContext,
122
+ },
123
+ };
124
+ }
125
+ if (response.decision === "ask") {
126
+ // Gemini CLI: no native "ask" — deny to be safe
127
+ return {
128
+ decision: "deny",
129
+ reason: response.reason ?? "Action requires user confirmation (security policy)",
130
+ };
131
+ }
132
+ // "allow" — return undefined for passthrough
133
+ return undefined;
134
+ }
135
+ formatPostToolUseResponse(response) {
136
+ if (response.updatedOutput) {
137
+ // Gemini CLI: decision "deny" + reason replaces output
138
+ return {
139
+ decision: "deny",
140
+ reason: response.updatedOutput,
141
+ };
142
+ }
143
+ if (response.additionalContext) {
144
+ return {
145
+ hookSpecificOutput: {
146
+ additionalContext: response.additionalContext,
147
+ },
148
+ };
149
+ }
150
+ return undefined;
151
+ }
152
+ formatPreCompactResponse(response) {
153
+ // PreCompress is advisory only (async), but we can still return context
154
+ return response.context ?? "";
155
+ }
156
+ formatSessionStartResponse(response) {
157
+ return response.context ?? "";
158
+ }
159
+ // ── Configuration ──────────────────────────────────────
160
+ getSettingsPath() {
161
+ return resolve(homedir(), ".gemini", "settings.json");
162
+ }
163
+ getInstructionFiles() {
164
+ return ["GEMINI.md"];
165
+ }
166
+ generateHookConfig(pluginRoot) {
167
+ return {
168
+ [GEMINI_HOOK_NAMES.BEFORE_AGENT]: [
169
+ {
170
+ matcher: "",
171
+ hooks: [
172
+ {
173
+ type: "command",
174
+ command: buildGeminiHookCommand(GEMINI_HOOK_NAMES.BEFORE_AGENT, pluginRoot),
175
+ },
176
+ ],
177
+ },
178
+ ],
179
+ [GEMINI_HOOK_NAMES.BEFORE_TOOL]: [
180
+ {
181
+ // Gemini native tools + context-mode own MCP (both canonical and Claude
182
+ // shim prefixes) + external MCP catch-all (#529).
183
+ matcher: `run_shell_command|read_file|read_many_files|grep_search|search_file_content|web_fetch|activate_skill|mcp__plugin_context-mode|mcp__context-mode|${EXTERNAL_MCP_MATCHER_PATTERN}`,
184
+ hooks: [
185
+ {
186
+ type: "command",
187
+ command: buildGeminiHookCommand(GEMINI_HOOK_NAMES.BEFORE_TOOL, pluginRoot),
188
+ },
189
+ ],
190
+ },
191
+ ],
192
+ [GEMINI_HOOK_NAMES.AFTER_TOOL]: [
193
+ {
194
+ matcher: "",
195
+ hooks: [
196
+ {
197
+ type: "command",
198
+ command: buildGeminiHookCommand(GEMINI_HOOK_NAMES.AFTER_TOOL, pluginRoot),
199
+ },
200
+ ],
201
+ },
202
+ ],
203
+ [GEMINI_HOOK_NAMES.AFTER_MODEL]: [
204
+ {
205
+ matcher: "",
206
+ hooks: [
207
+ {
208
+ type: "command",
209
+ command: buildGeminiHookCommand(GEMINI_HOOK_NAMES.AFTER_MODEL, pluginRoot),
210
+ },
211
+ ],
212
+ },
213
+ ],
214
+ [GEMINI_HOOK_NAMES.PRE_COMPRESS]: [
215
+ {
216
+ matcher: "",
217
+ hooks: [
218
+ {
219
+ type: "command",
220
+ command: buildGeminiHookCommand(GEMINI_HOOK_NAMES.PRE_COMPRESS, pluginRoot),
221
+ },
222
+ ],
223
+ },
224
+ ],
225
+ [GEMINI_HOOK_NAMES.SESSION_START]: [
226
+ {
227
+ matcher: "",
228
+ hooks: [
229
+ {
230
+ type: "command",
231
+ command: buildGeminiHookCommand(GEMINI_HOOK_NAMES.SESSION_START, pluginRoot),
232
+ },
233
+ ],
234
+ },
235
+ ],
236
+ };
237
+ }
238
+ readSettings() {
239
+ try {
240
+ const raw = readFileSync(this.getSettingsPath(), "utf-8");
241
+ return JSON.parse(raw);
242
+ }
243
+ catch {
244
+ return null;
245
+ }
246
+ }
247
+ writeSettings(settings) {
248
+ const dir = resolve(homedir(), ".gemini");
249
+ mkdirSync(dir, { recursive: true });
250
+ writeFileSync(this.getSettingsPath(), JSON.stringify(settings, null, 2) + "\n", "utf-8");
251
+ }
252
+ // ── Diagnostics (doctor) ─────────────────────────────────
253
+ validateHooks(pluginRoot) {
254
+ const results = [];
255
+ const settings = this.readSettings();
256
+ if (!settings) {
257
+ results.push({
258
+ check: "BeforeTool hook",
259
+ status: "fail",
260
+ message: "Could not read ~/.gemini/settings.json",
261
+ fix: "context-mode upgrade",
262
+ });
263
+ return results;
264
+ }
265
+ const hooks = settings.hooks;
266
+ // Check BeforeTool
267
+ const beforeTool = hooks?.[GEMINI_HOOK_NAMES.BEFORE_TOOL];
268
+ if (beforeTool && beforeTool.length > 0) {
269
+ const hasHook = beforeTool.some((entry) => entry.hooks?.some((h) => h.command?.includes("context-mode")));
270
+ results.push({
271
+ check: "BeforeTool hook",
272
+ status: hasHook ? "pass" : "fail",
273
+ message: hasHook
274
+ ? "BeforeTool hook configured"
275
+ : "BeforeTool exists but does not point to context-mode",
276
+ fix: hasHook ? undefined : "context-mode upgrade",
277
+ });
278
+ }
279
+ else {
280
+ results.push({
281
+ check: "BeforeTool hook",
282
+ status: "fail",
283
+ message: "No BeforeTool hooks found",
284
+ fix: "context-mode upgrade",
285
+ });
286
+ }
287
+ // Check SessionStart
288
+ const sessionStart = hooks?.[GEMINI_HOOK_NAMES.SESSION_START];
289
+ if (sessionStart && sessionStart.length > 0) {
290
+ const hasHook = sessionStart.some((entry) => entry.hooks?.some((h) => h.command?.includes("context-mode")));
291
+ results.push({
292
+ check: "SessionStart hook",
293
+ status: hasHook ? "pass" : "fail",
294
+ message: hasHook
295
+ ? "SessionStart hook configured"
296
+ : "SessionStart exists but does not point to context-mode",
297
+ fix: hasHook ? undefined : "context-mode upgrade",
298
+ });
299
+ }
300
+ else {
301
+ results.push({
302
+ check: "SessionStart hook",
303
+ status: "fail",
304
+ message: "No SessionStart hooks found",
305
+ fix: "context-mode upgrade",
306
+ });
307
+ }
308
+ return results;
309
+ }
310
+ /**
311
+ * Adapter-defined health checks (Algo-D1) — mirrors claude-code's override
312
+ * at src/adapters/claude-code/index.ts:275.
313
+ *
314
+ * Issue #712 motivation: gemini-cli's hook scripts ship under
315
+ * `<pluginRoot>/hooks/gemini-cli/<scriptName>` (see HOOK_MAP in
316
+ * src/cli.ts and `setHookPermissions` in this file). The legacy doctor
317
+ * path (`getHookScriptPaths` -> `extractHookScriptPath`) round-trips
318
+ * through `buildHookCommand` -> command-string parsing, so a missing
319
+ * platform subdir in the emit was invisible to the doctor until a user
320
+ * installed globally and observed FAIL lines. This override drops the
321
+ * round-trip: HOOK_SCRIPTS is the single source of truth and we probe
322
+ * `existsSync(join(pluginRoot, "hooks", "gemini-cli", scriptName))`
323
+ * directly, so a future regression in the command emit cannot make the
324
+ * doctor lie about hook health.
325
+ *
326
+ * Adding a new hook event in HOOK_SCRIPTS auto-extends doctor coverage
327
+ * here — no parallel hardcoded list to maintain.
328
+ */
329
+ getHealthChecks(pluginRoot) {
330
+ return Object.entries(GEMINI_HOOK_SCRIPTS).map(([hookType, scriptName]) => {
331
+ const absolutePath = join(pluginRoot, "hooks", "gemini-cli", scriptName);
332
+ return {
333
+ name: `Hook script: ${hookType} (${scriptName})`,
334
+ check: () => {
335
+ if (existsSync(absolutePath)) {
336
+ return { status: "OK", detail: absolutePath };
337
+ }
338
+ return {
339
+ status: "FAIL",
340
+ detail: `not found at ${absolutePath}`,
341
+ };
342
+ },
343
+ };
344
+ });
345
+ }
346
+ checkPluginRegistration() {
347
+ const settings = this.readSettings();
348
+ if (!settings) {
349
+ return {
350
+ check: "Plugin registration",
351
+ status: "warn",
352
+ message: "Could not read ~/.gemini/settings.json",
353
+ };
354
+ }
355
+ // Check in extensions or settings for context-mode
356
+ const extensions = settings.extensions;
357
+ if (extensions) {
358
+ const hasPlugin = Array.isArray(extensions)
359
+ ? extensions.some((e) => typeof e === "string" && e.includes("context-mode"))
360
+ : Object.keys(extensions).some((k) => k.includes("context-mode"));
361
+ if (hasPlugin) {
362
+ return {
363
+ check: "Plugin registration",
364
+ status: "pass",
365
+ message: "context-mode found in extensions",
366
+ };
367
+ }
368
+ }
369
+ return {
370
+ check: "Plugin registration",
371
+ status: "warn",
372
+ message: "context-mode not found in extensions (might be using standalone MCP mode)",
373
+ };
374
+ }
375
+ getInstalledVersion() {
376
+ // Check ~/.gemini/ extension cache for context-mode
377
+ try {
378
+ const cachePath = resolve(homedir(), ".gemini", "extensions", "context-mode", "package.json");
379
+ const pkg = JSON.parse(readFileSync(cachePath, "utf-8"));
380
+ if (typeof pkg.version === "string")
381
+ return pkg.version;
382
+ }
383
+ catch {
384
+ /* not found */
385
+ }
386
+ return "not installed";
387
+ }
388
+ // ── Upgrade ────────────────────────────────────────────
389
+ configureAllHooks(pluginRoot) {
390
+ const settings = this.readSettings() ?? {};
391
+ const hooks = (settings.hooks ?? {});
392
+ const changes = [];
393
+ const hookConfigs = [
394
+ { name: GEMINI_HOOK_NAMES.BEFORE_AGENT },
395
+ { name: GEMINI_HOOK_NAMES.BEFORE_TOOL },
396
+ { name: GEMINI_HOOK_NAMES.SESSION_START },
397
+ ];
398
+ for (const config of hookConfigs) {
399
+ const command = buildGeminiHookCommand(config.name, pluginRoot);
400
+ const entry = {
401
+ matcher: "",
402
+ hooks: [{ type: "command", command }],
403
+ };
404
+ const existing = hooks[config.name];
405
+ if (existing && Array.isArray(existing)) {
406
+ const idx = existing.findIndex((e) => {
407
+ const entryHooks = e.hooks;
408
+ return entryHooks?.some((h) => h.command?.includes("context-mode"));
409
+ });
410
+ if (idx >= 0) {
411
+ existing[idx] = entry;
412
+ changes.push(`Updated existing ${config.name} hook entry`);
413
+ }
414
+ else {
415
+ existing.push(entry);
416
+ changes.push(`Added ${config.name} hook entry`);
417
+ }
418
+ hooks[config.name] = existing;
419
+ }
420
+ else {
421
+ hooks[config.name] = [entry];
422
+ changes.push(`Created ${config.name} hooks section`);
423
+ }
424
+ }
425
+ settings.hooks = hooks;
426
+ this.writeSettings(settings);
427
+ return changes;
428
+ }
429
+ setHookPermissions(pluginRoot) {
430
+ const set = [];
431
+ const hooksDir = join(pluginRoot, "hooks", "gemini-cli");
432
+ for (const scriptName of Object.values(GEMINI_HOOK_SCRIPTS)) {
433
+ const scriptPath = resolve(hooksDir, scriptName);
434
+ try {
435
+ accessSync(scriptPath, constants.R_OK);
436
+ chmodSync(scriptPath, 0o755);
437
+ set.push(scriptPath);
438
+ }
439
+ catch {
440
+ /* skip missing scripts */
441
+ }
442
+ }
443
+ return set;
444
+ }
445
+ updatePluginRegistry(pluginRoot, version) {
446
+ // Gemini CLI doesn't have a formal plugin registry like Claude Code.
447
+ // Update the extension cache package.json if it exists.
448
+ try {
449
+ const pkgPath = resolve(homedir(), ".gemini", "extensions", "context-mode", "package.json");
450
+ const pkg = JSON.parse(readFileSync(pkgPath, "utf-8"));
451
+ pkg.version = version;
452
+ pkg.installPath = pluginRoot;
453
+ pkg.lastUpdated = new Date().toISOString();
454
+ writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + "\n", "utf-8");
455
+ }
456
+ catch {
457
+ /* best effort */
458
+ }
459
+ }
460
+ // ── Internal helpers ───────────────────────────────────
461
+ /**
462
+ * Resolve the project directory for a Gemini CLI hook input.
463
+ * Priority: input.cwd > GEMINI_PROJECT_DIR > CLAUDE_PROJECT_DIR > process.cwd().
464
+ * Mirrors the cursor / opencode pattern so downstream hooks always
465
+ * receive a defined projectDir even when the platform omits cwd
466
+ * from the wire payload (e.g. under worktrees).
467
+ */
468
+ getProjectDir(input) {
469
+ return (input.cwd
470
+ ?? process.env.GEMINI_PROJECT_DIR
471
+ ?? process.env.CLAUDE_PROJECT_DIR
472
+ ?? process.cwd());
473
+ }
474
+ /**
475
+ * Extract session ID from Gemini CLI hook input.
476
+ * Priority: session_id field > env fallback > ppid fallback.
477
+ */
478
+ extractSessionId(input) {
479
+ if (input.session_id)
480
+ return input.session_id;
481
+ return `pid-${process.ppid}`;
482
+ }
483
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * adapters/jetbrains-copilot/config — Thin re-exports from JetBrainsCopilotAdapter.
3
+ *
4
+ * This module exists for backward compatibility. All logic lives in the
5
+ * adapter class (index.ts). New code should use getAdapter() from detect.ts.
6
+ */
7
+ export { JetBrainsCopilotAdapter } from "./index.js";
8
+ export { HOOK_TYPES, HOOK_SCRIPTS, REQUIRED_HOOKS, OPTIONAL_HOOKS } from "./hooks.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * adapters/jetbrains-copilot/config — Thin re-exports from JetBrainsCopilotAdapter.
3
+ *
4
+ * This module exists for backward compatibility. All logic lives in the
5
+ * adapter class (index.ts). New code should use getAdapter() from detect.ts.
6
+ */
7
+ export { JetBrainsCopilotAdapter } from "./index.js";
8
+ export { HOOK_TYPES, HOOK_SCRIPTS, REQUIRED_HOOKS, OPTIONAL_HOOKS } from "./hooks.js";
@@ -0,0 +1,59 @@
1
+ /**
2
+ * adapters/jetbrains-copilot/hooks — JetBrains Copilot hook definitions and matchers.
3
+ *
4
+ * Defines the hook types, matchers, and registration format specific to
5
+ * JetBrains Copilot's hook system. This module is used by:
6
+ * - CLI setup/upgrade commands (to configure hooks)
7
+ * - Doctor command (to validate hook configuration)
8
+ * - Hook config generation
9
+ *
10
+ * JetBrains Copilot hook system reference:
11
+ * - Hooks are registered in .github/hooks/*.json
12
+ * - Hook names: PreToolUse, PostToolUse, PreCompact, SessionStart (PascalCase)
13
+ * - Additional hooks: Stop, SubagentStart, SubagentStop
14
+ * - CRITICAL: matchers are parsed but IGNORED (all hooks fire on all tools)
15
+ * - Input: JSON on stdin
16
+ * - Output: JSON on stdout (or empty for passthrough)
17
+ * - JetBrains Copilot shares the same hook paradigm as VS Code Copilot
18
+ */
19
+ /** JetBrains Copilot hook types. */
20
+ export declare const HOOK_TYPES: {
21
+ readonly PRE_TOOL_USE: "PreToolUse";
22
+ readonly POST_TOOL_USE: "PostToolUse";
23
+ readonly PRE_COMPACT: "PreCompact";
24
+ readonly SESSION_START: "SessionStart";
25
+ readonly STOP: "Stop";
26
+ readonly SUBAGENT_START: "SubagentStart";
27
+ readonly SUBAGENT_STOP: "SubagentStop";
28
+ };
29
+ export type HookType = (typeof HOOK_TYPES)[keyof typeof HOOK_TYPES];
30
+ /** Map of hook types to their script file names. */
31
+ export declare const HOOK_SCRIPTS: Record<string, string>;
32
+ /** Required hooks that must be configured for context-mode to function. */
33
+ export declare const REQUIRED_HOOKS: HookType[];
34
+ /** Optional hooks that enhance functionality but aren't critical. */
35
+ export declare const OPTIONAL_HOOKS: HookType[];
36
+ /**
37
+ * Check if a hook entry points to a context-mode hook script.
38
+ * Matches both legacy format (node .../pretooluse.mjs) and
39
+ * CLI dispatcher format (context-mode hook jetbrains-copilot pretooluse).
40
+ */
41
+ export declare function isContextModeHook(entry: {
42
+ hooks?: Array<{
43
+ command?: string;
44
+ }>;
45
+ }, hookType: HookType): boolean;
46
+ /**
47
+ * Build the hook command string for a given hook type.
48
+ *
49
+ * Always emits the CLI dispatcher form
50
+ * (`context-mode hook jetbrains-copilot <event>`) — the `pluginRoot`
51
+ * argument is accepted for API compatibility but intentionally ignored.
52
+ *
53
+ * Same Tier C contract as VS Code Copilot (Issue #613):
54
+ * `.github/hooks/context-mode.json` is workspace-committed (team-shared
55
+ * via git). Embedding `process.execPath` or absolute pluginRoot paths
56
+ * leaks PII and breaks cross-machine portability. See
57
+ * src/adapters/vscode-copilot/hooks.ts for the full archaeology.
58
+ */
59
+ export declare function buildHookCommand(hookType: HookType, _pluginRoot?: string): string;
@@ -0,0 +1,87 @@
1
+ /**
2
+ * adapters/jetbrains-copilot/hooks — JetBrains Copilot hook definitions and matchers.
3
+ *
4
+ * Defines the hook types, matchers, and registration format specific to
5
+ * JetBrains Copilot's hook system. This module is used by:
6
+ * - CLI setup/upgrade commands (to configure hooks)
7
+ * - Doctor command (to validate hook configuration)
8
+ * - Hook config generation
9
+ *
10
+ * JetBrains Copilot hook system reference:
11
+ * - Hooks are registered in .github/hooks/*.json
12
+ * - Hook names: PreToolUse, PostToolUse, PreCompact, SessionStart (PascalCase)
13
+ * - Additional hooks: Stop, SubagentStart, SubagentStop
14
+ * - CRITICAL: matchers are parsed but IGNORED (all hooks fire on all tools)
15
+ * - Input: JSON on stdin
16
+ * - Output: JSON on stdout (or empty for passthrough)
17
+ * - JetBrains Copilot shares the same hook paradigm as VS Code Copilot
18
+ */
19
+ // ─────────────────────────────────────────────────────────
20
+ // Hook type constants
21
+ // ─────────────────────────────────────────────────────────
22
+ /** JetBrains Copilot hook types. */
23
+ export const HOOK_TYPES = {
24
+ PRE_TOOL_USE: "PreToolUse",
25
+ POST_TOOL_USE: "PostToolUse",
26
+ PRE_COMPACT: "PreCompact",
27
+ SESSION_START: "SessionStart",
28
+ // Additional hooks (shared with VS Code Copilot)
29
+ STOP: "Stop",
30
+ SUBAGENT_START: "SubagentStart",
31
+ SUBAGENT_STOP: "SubagentStop",
32
+ };
33
+ // ─────────────────────────────────────────────────────────
34
+ // Hook script file names
35
+ // ─────────────────────────────────────────────────────────
36
+ /** Map of hook types to their script file names. */
37
+ export const HOOK_SCRIPTS = {
38
+ [HOOK_TYPES.PRE_TOOL_USE]: "pretooluse.mjs",
39
+ [HOOK_TYPES.POST_TOOL_USE]: "posttooluse.mjs",
40
+ [HOOK_TYPES.PRE_COMPACT]: "precompact.mjs",
41
+ [HOOK_TYPES.SESSION_START]: "sessionstart.mjs",
42
+ };
43
+ // ─────────────────────────────────────────────────────────
44
+ // Hook validation
45
+ // ─────────────────────────────────────────────────────────
46
+ /** Required hooks that must be configured for context-mode to function. */
47
+ export const REQUIRED_HOOKS = [
48
+ HOOK_TYPES.PRE_TOOL_USE,
49
+ HOOK_TYPES.SESSION_START,
50
+ ];
51
+ /** Optional hooks that enhance functionality but aren't critical. */
52
+ export const OPTIONAL_HOOKS = [
53
+ HOOK_TYPES.POST_TOOL_USE,
54
+ HOOK_TYPES.PRE_COMPACT,
55
+ ];
56
+ /**
57
+ * Check if a hook entry points to a context-mode hook script.
58
+ * Matches both legacy format (node .../pretooluse.mjs) and
59
+ * CLI dispatcher format (context-mode hook jetbrains-copilot pretooluse).
60
+ */
61
+ export function isContextModeHook(entry, hookType) {
62
+ const scriptName = HOOK_SCRIPTS[hookType];
63
+ if (!scriptName)
64
+ return false;
65
+ const cliCommand = buildHookCommand(hookType);
66
+ return (entry.hooks?.some((h) => h.command?.includes(scriptName) || h.command?.includes(cliCommand)) ?? false);
67
+ }
68
+ /**
69
+ * Build the hook command string for a given hook type.
70
+ *
71
+ * Always emits the CLI dispatcher form
72
+ * (`context-mode hook jetbrains-copilot <event>`) — the `pluginRoot`
73
+ * argument is accepted for API compatibility but intentionally ignored.
74
+ *
75
+ * Same Tier C contract as VS Code Copilot (Issue #613):
76
+ * `.github/hooks/context-mode.json` is workspace-committed (team-shared
77
+ * via git). Embedding `process.execPath` or absolute pluginRoot paths
78
+ * leaks PII and breaks cross-machine portability. See
79
+ * src/adapters/vscode-copilot/hooks.ts for the full archaeology.
80
+ */
81
+ export function buildHookCommand(hookType, _pluginRoot) {
82
+ const scriptName = HOOK_SCRIPTS[hookType];
83
+ if (!scriptName) {
84
+ throw new Error(`No script defined for hook type: ${hookType}`);
85
+ }
86
+ return `context-mode hook jetbrains-copilot ${hookType.toLowerCase()}`;
87
+ }
@@ -0,0 +1,31 @@
1
+ /**
2
+ * adapters/jetbrains-copilot — JetBrains Copilot platform adapter.
3
+ *
4
+ * Extends CopilotBaseAdapter with JetBrains-specific logic:
5
+ * - extractSessionId: JETBRAINS_CLIENT_ID / IDEA_HOME fallbacks
6
+ * - getProjectDir: IDEA_INITIAL_DIRECTORY
7
+ * - checkPluginRegistration: WARN (IDE Settings UI, not CLI-inspectable)
8
+ * - getInstalledVersion: checks hook config existence
9
+ * - validateHooks: JetBrains-specific warnings
10
+ */
11
+ import { CopilotBaseAdapter } from "../copilot-base.js";
12
+ import type { CopilotHookInput, CopilotHookModule } from "../copilot-base.js";
13
+ import type { DiagnosticResult } from "../types.js";
14
+ export declare class JetBrainsCopilotAdapter extends CopilotBaseAdapter {
15
+ constructor();
16
+ readonly name = "JetBrains Copilot";
17
+ protected readonly hookModule: CopilotHookModule;
18
+ protected readonly hookSubdir = "jetbrains-copilot";
19
+ protected extractSessionId(input: CopilotHookInput): string;
20
+ protected getProjectDir(): string;
21
+ /**
22
+ * JetBrains Copilot honors .github/copilot-instructions.md per project.
23
+ * Always returned absolute, resolved against the supplied `projectDir`,
24
+ * the JetBrains-specific project env vars, or `process.cwd()`.
25
+ */
26
+ getConfigDir(projectDir?: string): string;
27
+ getInstructionFiles(): string[];
28
+ validateHooks(pluginRoot: string): DiagnosticResult[];
29
+ checkPluginRegistration(): DiagnosticResult;
30
+ getInstalledVersion(): string;
31
+ }