@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,638 @@
1
+ /**
2
+ * adapters/opencode — OpenCode platform adapter.
3
+ *
4
+ * Implements HookAdapter for OpenCode's TypeScript plugin paradigm.
5
+ *
6
+ * OpenCode hook specifics:
7
+ * - I/O: TS plugin functions (not JSON stdin/stdout)
8
+ * - Hook names: tool.execute.before, tool.execute.after, experimental.session.compacting
9
+ * - Arg modification: output.args mutation
10
+ * - Blocking: throw Error in tool.execute.before
11
+ * - Output modification: output.output mutation (TUI bug for bash #13575)
12
+ * - SessionStart: broken (#14808, no hook #5409)
13
+ * - Session ID: input.sessionID (camelCase!)
14
+ * - Project dir: ctx.directory in plugin init (no env var)
15
+ * - Config: opencode.json plugin array, .opencode/plugins/*.ts
16
+ * - Session dir: ~/.config/opencode/context-mode/sessions/
17
+ */
18
+ import { readFileSync, writeFileSync, mkdirSync, copyFileSync, accessSync, existsSync, constants, realpathSync, } from "node:fs";
19
+ import { resolve, join } from "node:path";
20
+ import { homedir } from "node:os";
21
+ import { BaseAdapter, resolveContextModeDataRoot } from "../base.js";
22
+ import { PACKAGE_NAME } from "../../package-identity.js";
23
+ import { stripJsonComments } from "../../util/jsonc.js";
24
+ // ─────────────────────────────────────────────────────────
25
+ // Hook constants (re-exported from hooks.ts)
26
+ // ─────────────────────────────────────────────────────────
27
+ import { HOOK_TYPES as OPENCODE_HOOK_NAMES } from "./hooks.js";
28
+ /**
29
+ * Whether a plugin array (the v1 `plugin` key or the v2 `plugins` key)
30
+ * contains a context-mode entry.
31
+ */
32
+ function pluginEntriesIncludeContextMode(value) {
33
+ return (Array.isArray(value) &&
34
+ value.some((p) => typeof p === "string" && p.includes("context-mode")));
35
+ }
36
+ const PLUGIN_STATE_KEY = "__contextModePluginState";
37
+ /**
38
+ * Process-global state bag. Stored on globalThis so the guard survives the
39
+ * plugin being loaded twice from different module copies (e.g. build/ and
40
+ * .opencode/plugins/ copies loaded by the same host process). Defined here
41
+ * (plugin.ts already imports this module) so the plugin runtime and the
42
+ * adapter share the SAME registry.
43
+ */
44
+ export function getPluginGlobalState() {
45
+ const g = globalThis;
46
+ if (!g[PLUGIN_STATE_KEY]) {
47
+ g[PLUGIN_STATE_KEY] = {
48
+ activations: new Map(),
49
+ loggedOnce: new Set(),
50
+ errorDedupe: new Map(),
51
+ };
52
+ }
53
+ return g[PLUGIN_STATE_KEY];
54
+ }
55
+ /**
56
+ * Normalize a project directory for the activation registry key:
57
+ * symlink-canonicalized (macOS /var ↔ /private/var — chdir reports the
58
+ * resolved path while hosts may pass the unresolved one) + absolute +
59
+ * case-folded on case-insensitive filesystems (darwin/win32). Dirs that do
60
+ * not exist on disk fall back to lexical resolution.
61
+ */
62
+ export function normalizeProjectKey(dir) {
63
+ let abs;
64
+ try {
65
+ abs = realpathSync(dir);
66
+ }
67
+ catch {
68
+ abs = resolve(dir);
69
+ }
70
+ return process.platform === "win32" || process.platform === "darwin"
71
+ ? abs.toLowerCase()
72
+ : abs;
73
+ }
74
+ /**
75
+ * Non-creating peek at the activation registry for a project. Used by the
76
+ * adapter's legacy-MCP-removal policy (configureAllHooks / validateHooks):
77
+ *
78
+ * - undefined → no plugin runtime has initialized in THIS process (e.g.
79
+ * the CLI runs standalone); callers fall back to the config-shape
80
+ * heuristic (v1 `plugin` key → native tools confirmed).
81
+ * - true/false → an in-process claimant exists (or the registry is live
82
+ * with no claimant for this project); its CONFIRMED native-tool state
83
+ * is authoritative — never remove mcp.context-mode on a guess.
84
+ */
85
+ export function peekConfirmedNativeTools(projectDir) {
86
+ const g = globalThis;
87
+ const state = g[PLUGIN_STATE_KEY]; // deliberately does NOT create the state
88
+ if (!state)
89
+ return undefined;
90
+ const entry = state.activations.get(normalizeProjectKey(projectDir));
91
+ if (!entry)
92
+ return false;
93
+ return entry.nativeToolsConfirmed === true;
94
+ }
95
+ /**
96
+ * Whether the plugin's native ctx_* tools are CONFIRMED available — the
97
+ * precondition for removing the legacy mcp.context-mode block.
98
+ *
99
+ * 1. In-process confirmation via the plugin activation registry (above):
100
+ * an active claimant for this project reports whether it actually
101
+ * registered native tools. A v1 claimant always did; a v2 claimant only
102
+ * when its full mandatory surface succeeded. This is authoritative —
103
+ * a v2 claimant with UNCONFIRMED native tools must keep mcp.context-mode
104
+ * even when the v1 `plugin` key is present in config (otherwise a
105
+ * hybrid host could end up with NO ctx_* tool provider at all).
106
+ * 2. No plugin runtime in this process (standalone CLI doctor/upgrade):
107
+ * fall back to the config-shape heuristic — a context-mode entry under
108
+ * the v1 `plugin` key confirms availability (v1 server() always
109
+ * registers the native tool map). Keeps current v1 behavior.
110
+ */
111
+ function nativeToolsConfirmedForRemoval(settings) {
112
+ const inProcess = peekConfirmedNativeTools(process.cwd());
113
+ if (inProcess !== undefined)
114
+ return inProcess;
115
+ return pluginEntriesIncludeContextMode(settings.plugin);
116
+ }
117
+ export class OpenCodeAdapter extends BaseAdapter {
118
+ get name() {
119
+ return this.platform === "kilo" ? "KiloCode" : "OpenCode";
120
+ }
121
+ paradigm = "ts-plugin";
122
+ settingsPath;
123
+ capabilities;
124
+ platform;
125
+ constructor(platform = "opencode", options) {
126
+ // sessionDirSegments unused — opencode overrides getSessionDir()
127
+ // with XDG_CONFIG_HOME / APPDATA logic
128
+ super([".config", platform]);
129
+ this.platform = platform;
130
+ // Capability honesty (v2 compat): defaults keep the v1 claims unchanged.
131
+ // Degradation options flip the affected claims to false so callers
132
+ // (doctor, hybrid activation checks) never see a capability that the
133
+ // runtime could not actually acquire.
134
+ const sessionContextAvailable = options?.sessionContextDegraded !== true;
135
+ const preCompactAvailable = options?.preCompactDegraded !== true;
136
+ this.capabilities = {
137
+ preToolUse: true,
138
+ postToolUse: true,
139
+ preCompact: preCompactAvailable,
140
+ sessionStart: sessionContextAvailable,
141
+ canModifyArgs: true,
142
+ canModifyOutput: true, // with TUI bug caveat for bash (#13575)
143
+ canInjectSessionContext: sessionContextAvailable,
144
+ };
145
+ }
146
+ /**
147
+ * Runtime honesty hook — the plugin path marks a capability unavailable
148
+ * after probing the host (e.g. a v2 session-context registration call
149
+ * failed even though the surface existed). Mirrors the constructor options
150
+ * for state that is only knowable after registration attempts.
151
+ */
152
+ markCapabilityDegraded(cap) {
153
+ if (cap === "sessionStart")
154
+ this.capabilities.sessionStart = false;
155
+ else if (cap === "canInjectSessionContext")
156
+ this.capabilities.canInjectSessionContext = false;
157
+ else
158
+ this.capabilities.preCompact = false;
159
+ }
160
+ // ── Input parsing ──────────────────────────────────────
161
+ parsePreToolUseInput(raw) {
162
+ const input = raw;
163
+ return {
164
+ toolName: input.tool ?? "",
165
+ toolInput: input.args ?? {},
166
+ sessionId: this.extractSessionId(input),
167
+ projectDir: process.env.OPENCODE_PROJECT_DIR || process.cwd(),
168
+ raw,
169
+ };
170
+ }
171
+ parsePostToolUseInput(raw) {
172
+ const input = raw;
173
+ return {
174
+ toolName: input.tool ?? "",
175
+ toolInput: input.args ?? {},
176
+ toolOutput: input.output,
177
+ isError: undefined, // OpenCode doesn't provide isError
178
+ sessionId: this.extractSessionId(input),
179
+ projectDir: process.env.OPENCODE_PROJECT_DIR || process.cwd(),
180
+ raw,
181
+ };
182
+ }
183
+ parsePreCompactInput(raw) {
184
+ const input = raw;
185
+ return {
186
+ sessionId: this.extractSessionId(input),
187
+ projectDir: process.env.OPENCODE_PROJECT_DIR || process.cwd(),
188
+ raw,
189
+ };
190
+ }
191
+ parseSessionStartInput(raw) {
192
+ const input = raw;
193
+ const rawSource = input.source ?? "startup";
194
+ let source;
195
+ switch (rawSource) {
196
+ case "compact":
197
+ source = "compact";
198
+ break;
199
+ case "resume":
200
+ source = "resume";
201
+ break;
202
+ case "clear":
203
+ source = "clear";
204
+ break;
205
+ default:
206
+ source = "startup";
207
+ }
208
+ return {
209
+ sessionId: this.extractSessionId(input),
210
+ source,
211
+ projectDir: process.env.OPENCODE_PROJECT_DIR || process.cwd(),
212
+ raw,
213
+ };
214
+ }
215
+ // ── Response formatting ────────────────────────────────
216
+ formatPreToolUseResponse(response) {
217
+ if (response.decision === "deny") {
218
+ // OpenCode TS plugin paradigm: throw Error to block
219
+ throw new Error(response.reason ?? "Blocked by context-mode hook");
220
+ }
221
+ if (response.decision === "modify" && response.updatedInput) {
222
+ // OpenCode: output.args mutation
223
+ return { args: response.updatedInput };
224
+ }
225
+ if (response.decision === "ask") {
226
+ // OpenCode: no native "ask" mechanism — throw to be safe
227
+ throw new Error(response.reason ?? "Action requires user confirmation (security policy)");
228
+ }
229
+ // "context" — OpenCode's tool.execute.before cannot inject additionalContext
230
+ // in PreToolUse (platform limitation). The guidance is delivered via
231
+ // CLAUDE.md/AGENTS.md routing instructions instead. Passthrough.
232
+ // "allow" — passthrough
233
+ return undefined;
234
+ }
235
+ formatPostToolUseResponse(response) {
236
+ const result = {};
237
+ if (response.updatedOutput) {
238
+ // OpenCode: output.output mutation (TUI bug for bash #13575)
239
+ result.output = response.updatedOutput;
240
+ }
241
+ if (response.additionalContext) {
242
+ result.additionalContext = response.additionalContext;
243
+ }
244
+ return Object.keys(result).length > 0 ? result : undefined;
245
+ }
246
+ formatPreCompactResponse(response) {
247
+ // experimental.session.compacting — return context string
248
+ return response.context ?? "";
249
+ }
250
+ formatSessionStartResponse(response) {
251
+ return response.context ?? "";
252
+ }
253
+ // ── Configuration ──────────────────────────────────────
254
+ getSettingsPath() {
255
+ if (this.settingsPath)
256
+ return this.settingsPath;
257
+ // Edge case (#849): writeSettings() called without a prior readSettings()
258
+ // (which is what populates this.settingsPath). Never create a `.json` that
259
+ // would shadow an existing `.jsonc` — OpenCode merges the project-root
260
+ // `.jsonc` LAST, so it is the authoritative config
261
+ // (refs/platforms/opencode/packages/opencode/src/config/config.ts:406-408
262
+ // + paths.ts:15-22). Prefer the existing `.jsonc` as the write target.
263
+ const jsoncPath = resolve(`${this.platform}.jsonc`);
264
+ if (existsSync(jsoncPath))
265
+ return jsoncPath;
266
+ return resolve(`${this.platform}.json`);
267
+ }
268
+ paths() {
269
+ // `.jsonc` is listed BEFORE `.json` so it is selected as the write target
270
+ // when both exist (#849). OpenCode loads the project-root `.json` then
271
+ // `.jsonc` and merges `.jsonc` last — scalars override-last, arrays concat
272
+ // (refs/platforms/opencode/packages/opencode/src/config/config.ts:406-408,
273
+ // 258-260 + paths.ts:15-22). The `.jsonc` is therefore the authoritative
274
+ // file holding the user's real config; a `.json` is often an empty/auto-
275
+ // generated placeholder. Writing into the placeholder would create a
276
+ // file that shadows the user's real `.jsonc`. Preferring `.jsonc` for the
277
+ // write target avoids that silent config destruction. Read order is
278
+ // irrelevant for the plugin early-return (hasContextModePlugin) path.
279
+ if (this.platform === "kilo") {
280
+ // Kilo runtime accepts `.kilo/`, `.kilocode/`, and `.opencode/` as
281
+ // project config dirs (refs/platforms/kilo/packages/opencode/src/
282
+ // kilocode/config/config.ts:50,408). Mirror that here so context-mode
283
+ // discovers config regardless of which suffix the user adopted.
284
+ return [
285
+ resolve("kilo.jsonc"),
286
+ resolve("kilo.json"),
287
+ resolve(".kilo", "kilo.jsonc"),
288
+ resolve(".kilo", "kilo.json"),
289
+ resolve(".kilocode", "kilo.jsonc"),
290
+ resolve(".kilocode", "kilo.json"),
291
+ join(homedir(), ".config", "kilo", "kilo.jsonc"),
292
+ join(homedir(), ".config", "kilo", "kilo.json"),
293
+ ];
294
+ }
295
+ return [
296
+ resolve("opencode.jsonc"),
297
+ resolve("opencode.json"),
298
+ resolve(".opencode", "opencode.jsonc"),
299
+ resolve(".opencode", "opencode.json"),
300
+ join(homedir(), ".config", "opencode", "opencode.jsonc"),
301
+ join(homedir(), ".config", "opencode", "opencode.json"),
302
+ ];
303
+ }
304
+ getSessionDir() {
305
+ // Issue #649: honor CONTEXT_MODE_DATA_DIR universal storage override
306
+ // ahead of OpenCode/Kilo's XDG-rooted default. opencode.json + plugin
307
+ // discovery stay under getConfigDir() so OpenCode itself sees its own
308
+ // config in the expected location.
309
+ const override = resolveContextModeDataRoot();
310
+ const dir = override
311
+ ? join(override, "context-mode", "sessions")
312
+ : join(this.getConfigDir(), "context-mode", "sessions");
313
+ mkdirSync(dir, { recursive: true });
314
+ return dir;
315
+ }
316
+ /**
317
+ * OpenCode/KiloCode honor XDG_CONFIG_HOME on POSIX and APPDATA on Windows.
318
+ * Falls back to ~/.config/<platform> (or %APPDATA%\<platform>).
319
+ * Always absolute. `_projectDir` is accepted for interface symmetry but
320
+ * unused — config is home/XDG-rooted, never project-scoped.
321
+ */
322
+ getConfigDir(_projectDir) {
323
+ let root;
324
+ if (process.platform === "win32") {
325
+ root = process.env.APPDATA || join(homedir(), "AppData", "Roaming");
326
+ }
327
+ else {
328
+ root = process.env.XDG_CONFIG_HOME || join(homedir(), ".config");
329
+ }
330
+ return join(root, this.platform);
331
+ }
332
+ getInstructionFiles() {
333
+ return ["AGENTS.md"];
334
+ }
335
+ generateHookConfig(_pluginRoot) {
336
+ // OpenCode uses TS plugin paradigm — hooks are registered via plugin array
337
+ // in opencode.json, not via command-based hook entries.
338
+ // Return the hook name mapping for documentation purposes.
339
+ return {
340
+ [OPENCODE_HOOK_NAMES.BEFORE]: [
341
+ {
342
+ matcher: "",
343
+ hooks: [
344
+ {
345
+ type: "plugin",
346
+ command: PACKAGE_NAME,
347
+ },
348
+ ],
349
+ },
350
+ ],
351
+ [OPENCODE_HOOK_NAMES.AFTER]: [
352
+ {
353
+ matcher: "",
354
+ hooks: [
355
+ {
356
+ type: "plugin",
357
+ command: PACKAGE_NAME,
358
+ },
359
+ ],
360
+ },
361
+ ],
362
+ [OPENCODE_HOOK_NAMES.COMPACTING]: [
363
+ {
364
+ matcher: "",
365
+ hooks: [
366
+ {
367
+ type: "plugin",
368
+ command: PACKAGE_NAME,
369
+ },
370
+ ],
371
+ },
372
+ ],
373
+ };
374
+ }
375
+ readSettings() {
376
+ this.settingsPath = undefined;
377
+ const configPaths = this.paths();
378
+ const globalPaths = new Set(configPaths.filter(p => p.includes(homedir())));
379
+ let firstValidSettings = null;
380
+ let firstValidPath;
381
+ for (const configPath of configPaths) {
382
+ try {
383
+ const raw = readFileSync(configPath, "utf-8");
384
+ const text = configPath.endsWith(".jsonc") ? stripJsonComments(raw) : raw;
385
+ const settings = JSON.parse(text);
386
+ if (!firstValidSettings) {
387
+ firstValidSettings = settings;
388
+ firstValidPath = configPath;
389
+ }
390
+ const isGlobalConfig = globalPaths.has(configPath);
391
+ if (this.hasContextModePlugin(settings) || isGlobalConfig) {
392
+ this.settingsPath = configPath;
393
+ return settings;
394
+ }
395
+ }
396
+ catch {
397
+ continue;
398
+ }
399
+ }
400
+ if (firstValidSettings) {
401
+ this.settingsPath = firstValidPath;
402
+ return firstValidSettings;
403
+ }
404
+ return null;
405
+ }
406
+ writeSettings(settings) {
407
+ // Write to opencode.json(c)/kilo.json(c) in current directory
408
+ writeFileSync(this.getSettingsPath(), JSON.stringify(settings, null, 2) + "\n", "utf-8");
409
+ }
410
+ // ── Diagnostics (doctor) ─────────────────────────────────
411
+ validateHooks(_pluginRoot) {
412
+ const results = [];
413
+ const settings = this.readSettings();
414
+ if (!settings) {
415
+ results.push({
416
+ check: "Plugin configuration",
417
+ status: "fail",
418
+ message: `Could not read ${this.platform}.json or ${this.platform}.jsonc`,
419
+ fix: "context-mode upgrade",
420
+ });
421
+ return results;
422
+ }
423
+ // Check for "context-mode" in the plugin array — the v1 `plugin` key and
424
+ // the v2 `plugins` key are both honored (opencode v2 renamed the key).
425
+ const hasPlugin = this.hasContextModePlugin(settings);
426
+ if (Array.isArray(settings.plugin) || Array.isArray(settings.plugins)) {
427
+ results.push({
428
+ check: "Plugin registration",
429
+ status: hasPlugin ? "pass" : "fail",
430
+ message: hasPlugin
431
+ ? "context-mode found in plugin array"
432
+ : "context-mode not found in plugin array",
433
+ fix: hasPlugin
434
+ ? undefined
435
+ : "context-mode upgrade",
436
+ });
437
+ }
438
+ else {
439
+ results.push({
440
+ check: "Plugin registration",
441
+ status: "fail",
442
+ message: `No plugin array found in ${this.platform}.json or ${this.platform}.jsonc`,
443
+ fix: "context-mode upgrade",
444
+ });
445
+ }
446
+ // Legacy mcp.context-mode removal policy (v2 compat): only remove when
447
+ // plugin-native ctx_* tools are CONFIRMED available — via the plugin
448
+ // activation registry when a claimant is live in this process, otherwise
449
+ // via the config-shape heuristic (v1 `plugin` key). A v2 claimant whose
450
+ // native tool registration did NOT succeed must keep the MCP entry: it
451
+ // is the only remaining tool provider.
452
+ if (this.hasLegacyContextModeMcp(settings)) {
453
+ if (nativeToolsConfirmedForRemoval(settings)) {
454
+ results.push({
455
+ check: "Legacy MCP registration",
456
+ status: "warn",
457
+ message: "mcp.context-mode is redundant: ctx_* tools are now provided by the plugin",
458
+ fix: "context-mode upgrade (removes only mcp.context-mode; preserves other MCP servers)",
459
+ });
460
+ }
461
+ else {
462
+ results.push({
463
+ check: "Legacy MCP registration",
464
+ status: "pass",
465
+ message: "mcp.context-mode retained as tool fallback: v2 plugin native tool registration unconfirmed",
466
+ });
467
+ }
468
+ }
469
+ // Note: SessionStart handled via experimental.chat.system.transform surrogate
470
+ // — claim it only when the session-context capability was actually acquired
471
+ // (v2-degraded hosts report it as unavailable instead).
472
+ if (this.capabilities.sessionStart) {
473
+ results.push({
474
+ check: "SessionStart hook",
475
+ status: "pass",
476
+ message: `SessionStart via experimental.chat.system.transform surrogate (native hook pending #14808, #5409)`,
477
+ });
478
+ }
479
+ else {
480
+ results.push({
481
+ check: "SessionStart hook",
482
+ status: "warn",
483
+ message: "SessionStart surrogate unavailable: session-context hook not confirmed on this host (v2 degraded) — resume snapshot injection inactive",
484
+ });
485
+ }
486
+ return results;
487
+ }
488
+ checkPluginRegistration() {
489
+ const settings = this.readSettings();
490
+ if (!settings) {
491
+ return {
492
+ check: "Plugin registration",
493
+ status: "warn",
494
+ message: `Could not read ${this.platform}.json or ${this.platform}.jsonc`,
495
+ };
496
+ }
497
+ if (this.hasContextModePlugin(settings)) {
498
+ return {
499
+ check: "Plugin registration",
500
+ status: "pass",
501
+ message: "context-mode found in plugin array",
502
+ };
503
+ }
504
+ return {
505
+ check: "Plugin registration",
506
+ status: "fail",
507
+ message: `context-mode not found in ${this.platform}.json plugin array`,
508
+ fix: "context-mode upgrade",
509
+ };
510
+ }
511
+ getInstalledVersion() {
512
+ // Check ~/.cache/opencode/node_modules/ for context-mode
513
+ try {
514
+ const pkgPath = resolve(homedir(), ".cache", this.platform, "node_modules", "context-mode", "package.json");
515
+ const pkg = JSON.parse(readFileSync(pkgPath, "utf-8"));
516
+ if (typeof pkg.version === "string")
517
+ return pkg.version;
518
+ }
519
+ catch {
520
+ /* not found */
521
+ }
522
+ return "not installed";
523
+ }
524
+ // ── Upgrade ────────────────────────────────────────────
525
+ configureAllHooks(_pluginRoot) {
526
+ const settings = this.readSettings() ?? {};
527
+ const changes = [];
528
+ // Config compat (opencode v1 → v2): the v1 key is `plugin`, the v2 key is
529
+ // `plugins`. Both are honored on READ and kept in sync on WRITE when they
530
+ // exist, so whichever host flavor loads picks up the plugin. When NEITHER
531
+ // key exists, write the v1 key (v1-shaped hosts read `plugin`; hosts
532
+ // ≥1.17.10 that boot the v2 core also load via server()).
533
+ const v1KeyPresent = Array.isArray(settings.plugin);
534
+ const v2KeyPresent = Array.isArray(settings.plugins);
535
+ if (v1KeyPresent) {
536
+ const plugins = [...settings.plugin];
537
+ if (pluginEntriesIncludeContextMode(plugins)) {
538
+ changes.push("context-mode already in plugin array");
539
+ }
540
+ else {
541
+ plugins.push(PACKAGE_NAME);
542
+ changes.push("Added context-mode to plugin array");
543
+ }
544
+ settings.plugin = plugins;
545
+ }
546
+ if (v2KeyPresent) {
547
+ const plugins = [...settings.plugins];
548
+ if (pluginEntriesIncludeContextMode(plugins)) {
549
+ changes.push("context-mode already in plugins array");
550
+ }
551
+ else {
552
+ plugins.push(PACKAGE_NAME);
553
+ changes.push("Added context-mode to plugins array");
554
+ }
555
+ settings.plugins = plugins;
556
+ }
557
+ if (!v1KeyPresent && !v2KeyPresent) {
558
+ settings.plugin = [PACKAGE_NAME];
559
+ changes.push("Added context-mode to plugin array");
560
+ }
561
+ // Legacy mcp.context-mode removal policy (v2 compat): only remove when
562
+ // plugin-native ctx_* tools are CONFIRMED available — via the plugin
563
+ // activation registry when a claimant is live in this process, otherwise
564
+ // via the config-shape heuristic (v1 `plugin` key). A v2 claimant whose
565
+ // native tool registration did NOT succeed must keep the MCP entry: it
566
+ // is the only remaining tool provider.
567
+ const nativeToolsConfirmed = nativeToolsConfirmedForRemoval(settings);
568
+ const mcp = settings.mcp;
569
+ if (mcp && typeof mcp === "object" && !Array.isArray(mcp)) {
570
+ const servers = mcp;
571
+ if (Object.prototype.hasOwnProperty.call(servers, "context-mode")) {
572
+ if (nativeToolsConfirmed) {
573
+ delete servers["context-mode"];
574
+ changes.push("Removed legacy context-mode MCP block (plugin-native tools)");
575
+ }
576
+ else {
577
+ changes.push("Kept legacy context-mode MCP block (v2 native tool registration unconfirmed)");
578
+ }
579
+ }
580
+ if (Object.keys(servers).length === 0)
581
+ delete settings.mcp;
582
+ }
583
+ this.writeSettings(settings);
584
+ return changes;
585
+ }
586
+ backupSettings() {
587
+ const check = this.checkPluginRegistration();
588
+ if (!this.settingsPath)
589
+ return null;
590
+ if (check.status === "pass") {
591
+ return this.settingsPath;
592
+ }
593
+ else {
594
+ try {
595
+ accessSync(this.settingsPath, constants.R_OK);
596
+ const backupPath = this.settingsPath + ".bak";
597
+ copyFileSync(this.settingsPath, backupPath);
598
+ return backupPath;
599
+ }
600
+ catch {
601
+ return null;
602
+ }
603
+ }
604
+ }
605
+ setHookPermissions(_pluginRoot) {
606
+ // OpenCode uses TS plugin paradigm — no shell scripts to chmod
607
+ return [];
608
+ }
609
+ updatePluginRegistry(_pluginRoot, _version) {
610
+ // OpenCode manages plugins through npm/opencode.json — no separate registry
611
+ }
612
+ // ── Internal helpers ───────────────────────────────────
613
+ /**
614
+ * Check whether a settings object has the context-mode plugin registered.
615
+ * Honors both the v1 `plugin` key and the v2 `plugins` key (opencode v2
616
+ * renamed the config key).
617
+ */
618
+ hasContextModePlugin(settings) {
619
+ return (pluginEntriesIncludeContextMode(settings.plugin) ||
620
+ pluginEntriesIncludeContextMode(settings.plugins));
621
+ }
622
+ hasLegacyContextModeMcp(settings) {
623
+ const mcp = settings.mcp;
624
+ return !!(mcp &&
625
+ typeof mcp === "object" &&
626
+ !Array.isArray(mcp) &&
627
+ Object.prototype.hasOwnProperty.call(mcp, "context-mode"));
628
+ }
629
+ /**
630
+ * Extract session ID from OpenCode hook input.
631
+ * OpenCode uses camelCase sessionID.
632
+ */
633
+ extractSessionId(input) {
634
+ if (input.sessionID)
635
+ return input.sessionID;
636
+ return `pid-${process.ppid}`;
637
+ }
638
+ }