@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,55 @@
1
+ /**
2
+ * OpenClawSessionDB — OpenClaw-specific extension of SessionDB.
3
+ *
4
+ * Adds session_key mapping (openclaw_session_map table) and session
5
+ * rename support needed for OpenClaw's gateway restart re-keying.
6
+ *
7
+ * The shared SessionDB remains unaware of session_key; all OpenClaw-specific
8
+ * session mapping lives here.
9
+ */
10
+ import { SessionDB } from "../../session/db.js";
11
+ /** Row from the openclaw_session_map table. */
12
+ export interface SessionMapRow {
13
+ session_key: string;
14
+ session_id: string;
15
+ created_at: string;
16
+ }
17
+ export declare class OpenClawSessionDB extends SessionDB {
18
+ /**
19
+ * OpenClaw-specific prepared statements, separate from the parent's
20
+ * private statement cache. Created in prepareStatements() after
21
+ * super.prepareStatements() finishes.
22
+ *
23
+ * `declare` prevents TypeScript from emitting a field initializer
24
+ * that would wipe the value set during the base constructor's
25
+ * prepareStatements() call chain.
26
+ */
27
+ private ocStmts;
28
+ protected initSchema(): void;
29
+ protected prepareStatements(): void;
30
+ /** Shorthand to retrieve an OpenClaw-specific cached statement. */
31
+ private oc;
32
+ /**
33
+ * Ensure a session metadata entry exists with an associated session_key.
34
+ * Calls the parent's 2-param ensureSession and also records the mapping
35
+ * in openclaw_session_map.
36
+ */
37
+ ensureSessionWithKey(sessionId: string, projectDir: string, sessionKey: string): void;
38
+ /**
39
+ * Get the session_id of the most recently mapped session for a given sessionKey.
40
+ * Returns null if no sessions exist for that key.
41
+ */
42
+ getMostRecentSession(sessionKey: string): string | null;
43
+ /**
44
+ * Rename a session ID in-place across all tables (session_meta, session_events,
45
+ * session_resume, openclaw_session_map), preserving all events, metadata,
46
+ * and resume snapshots. Used when OpenClaw re-keys session IDs on gateway
47
+ * restart so accumulated events survive the re-key.
48
+ */
49
+ renameSession(oldId: string, newId: string): void;
50
+ /**
51
+ * Remove a session_key mapping from openclaw_session_map.
52
+ * Called on command:stop to clean up agent session tracking.
53
+ */
54
+ removeSessionKey(sessionKey: string): void;
55
+ }
@@ -0,0 +1,88 @@
1
+ /**
2
+ * OpenClawSessionDB — OpenClaw-specific extension of SessionDB.
3
+ *
4
+ * Adds session_key mapping (openclaw_session_map table) and session
5
+ * rename support needed for OpenClaw's gateway restart re-keying.
6
+ *
7
+ * The shared SessionDB remains unaware of session_key; all OpenClaw-specific
8
+ * session mapping lives here.
9
+ */
10
+ import { SessionDB } from "../../session/db.js";
11
+ // ─────────────────────────────────────────────────────────
12
+ // OpenClawSessionDB
13
+ // ─────────────────────────────────────────────────────────
14
+ export class OpenClawSessionDB extends SessionDB {
15
+ // ── Schema ──
16
+ initSchema() {
17
+ super.initSchema();
18
+ this.db.exec(`
19
+ CREATE TABLE IF NOT EXISTS openclaw_session_map (
20
+ session_key TEXT PRIMARY KEY,
21
+ session_id TEXT NOT NULL,
22
+ created_at TEXT NOT NULL DEFAULT (datetime('now'))
23
+ );
24
+ `);
25
+ }
26
+ prepareStatements() {
27
+ super.prepareStatements();
28
+ this.ocStmts = new Map();
29
+ const p = (key, sql) => {
30
+ this.ocStmts.set(key, this.db.prepare(sql));
31
+ };
32
+ p("getMostRecentSession", `SELECT session_id FROM openclaw_session_map WHERE session_key = ?`);
33
+ p("upsertSessionMap", `INSERT INTO openclaw_session_map (session_key, session_id)
34
+ VALUES (?, ?)
35
+ ON CONFLICT(session_key) DO UPDATE SET
36
+ session_id = excluded.session_id`);
37
+ p("deleteSessionMap", `DELETE FROM openclaw_session_map WHERE session_key = ?`);
38
+ p("renameSessionMeta", `UPDATE session_meta SET session_id = ? WHERE session_id = ?`);
39
+ p("renameSessionEvents", `UPDATE session_events SET session_id = ? WHERE session_id = ?`);
40
+ p("renameSessionResume", `UPDATE session_resume SET session_id = ? WHERE session_id = ?`);
41
+ p("renameSessionMap", `UPDATE openclaw_session_map SET session_id = ? WHERE session_id = ?`);
42
+ }
43
+ /** Shorthand to retrieve an OpenClaw-specific cached statement. */
44
+ oc(key) {
45
+ return this.ocStmts.get(key);
46
+ }
47
+ // ═══════════════════════════════════════════
48
+ // Session key mapping
49
+ // ═══════════════════════════════════════════
50
+ /**
51
+ * Ensure a session metadata entry exists with an associated session_key.
52
+ * Calls the parent's 2-param ensureSession and also records the mapping
53
+ * in openclaw_session_map.
54
+ */
55
+ ensureSessionWithKey(sessionId, projectDir, sessionKey) {
56
+ this.ensureSession(sessionId, projectDir);
57
+ this.oc("upsertSessionMap").run(sessionKey, sessionId);
58
+ }
59
+ /**
60
+ * Get the session_id of the most recently mapped session for a given sessionKey.
61
+ * Returns null if no sessions exist for that key.
62
+ */
63
+ getMostRecentSession(sessionKey) {
64
+ const row = this.oc("getMostRecentSession").get(sessionKey);
65
+ return row?.session_id ?? null;
66
+ }
67
+ /**
68
+ * Rename a session ID in-place across all tables (session_meta, session_events,
69
+ * session_resume, openclaw_session_map), preserving all events, metadata,
70
+ * and resume snapshots. Used when OpenClaw re-keys session IDs on gateway
71
+ * restart so accumulated events survive the re-key.
72
+ */
73
+ renameSession(oldId, newId) {
74
+ this.db.transaction(() => {
75
+ this.oc("renameSessionMeta").run(newId, oldId);
76
+ this.oc("renameSessionEvents").run(newId, oldId);
77
+ this.oc("renameSessionResume").run(newId, oldId);
78
+ this.oc("renameSessionMap").run(newId, oldId);
79
+ })();
80
+ }
81
+ /**
82
+ * Remove a session_key mapping from openclaw_session_map.
83
+ * Called on command:stop to clean up agent session tracking.
84
+ */
85
+ removeSessionKey(sessionKey) {
86
+ this.oc("deleteSessionMap").run(sessionKey);
87
+ }
88
+ }
@@ -0,0 +1,34 @@
1
+ /**
2
+ * adapters/openclaw/usage — per-turn token + cost capture handler.
3
+ *
4
+ * openclaw emits a first-class `model.usage` diagnostic event once per turn
5
+ * (`DiagnosticUsageEvent`, refs/platforms/openclaw/src/infra/diagnostic-events.ts:18-47),
6
+ * carrying the full usage breakdown {input, output, cacheRead, cacheWrite} plus
7
+ * a PRE-COMPUTED `costUsd` (estimateUsageCost, agent-runner.ts:1995). Consumers
8
+ * subscribe via `onDiagnosticEvent(listener)` (diagnostic-events.ts:1156) — the
9
+ * exact bus the first-party diagnostics-otel / diagnostics-prometheus extensions
10
+ * read.
11
+ *
12
+ * This module is the parse→build→insert handler the plugin's diagnostic-event
13
+ * listener invokes. It is deliberately decoupled from the openclaw plugin SDK so
14
+ * it stays unit-testable: the caller passes the raw payload and an `insert`
15
+ * callback (the plugin hands it `db.insertEvent`-bound-to-sessionId). The handler
16
+ * never throws — a usage-capture failure must never break the agent turn.
17
+ *
18
+ * Capture surface: the diagnostic-event bus, NOT the tool-call hook. The native
19
+ * before_tool_call / after_tool_call relay carries only approval/policy data and
20
+ * NO token usage (matrix §4) — so usage cannot be captured from after_tool_call.
21
+ */
22
+ import type { SessionEvent } from "../../session/extract.js";
23
+ /** Minimal event-insert surface the handler needs (satisfied by SessionDB.insertEvent bound to a sessionId). */
24
+ export type OpenClawUsageInsert = (event: SessionEvent) => void;
25
+ /**
26
+ * Handle one openclaw `model.usage` diagnostic payload: parse the per-turn usage
27
+ * (NOT lastCallUsage), build the structured `agent_usage` event with openclaw's
28
+ * native `costUsd` (preferred over the pricing catalog), and insert it.
29
+ *
30
+ * Returns the inserted event (for tests / callers that want to forward) or null
31
+ * when the payload is not a usage event, carries no usage, or sums to zero.
32
+ * Best-effort: swallows any insert failure.
33
+ */
34
+ export declare function handleOpenclawUsageEvent(payload: unknown, insert: OpenClawUsageInsert): SessionEvent | null;
@@ -0,0 +1,52 @@
1
+ /**
2
+ * adapters/openclaw/usage — per-turn token + cost capture handler.
3
+ *
4
+ * openclaw emits a first-class `model.usage` diagnostic event once per turn
5
+ * (`DiagnosticUsageEvent`, refs/platforms/openclaw/src/infra/diagnostic-events.ts:18-47),
6
+ * carrying the full usage breakdown {input, output, cacheRead, cacheWrite} plus
7
+ * a PRE-COMPUTED `costUsd` (estimateUsageCost, agent-runner.ts:1995). Consumers
8
+ * subscribe via `onDiagnosticEvent(listener)` (diagnostic-events.ts:1156) — the
9
+ * exact bus the first-party diagnostics-otel / diagnostics-prometheus extensions
10
+ * read.
11
+ *
12
+ * This module is the parse→build→insert handler the plugin's diagnostic-event
13
+ * listener invokes. It is deliberately decoupled from the openclaw plugin SDK so
14
+ * it stays unit-testable: the caller passes the raw payload and an `insert`
15
+ * callback (the plugin hands it `db.insertEvent`-bound-to-sessionId). The handler
16
+ * never throws — a usage-capture failure must never break the agent turn.
17
+ *
18
+ * Capture surface: the diagnostic-event bus, NOT the tool-call hook. The native
19
+ * before_tool_call / after_tool_call relay carries only approval/policy data and
20
+ * NO token usage (matrix §4) — so usage cannot be captured from after_tool_call.
21
+ */
22
+ import { parseOpenclawUsage, buildAgentUsageEvent } from "../../session/extract.js";
23
+ /**
24
+ * Handle one openclaw `model.usage` diagnostic payload: parse the per-turn usage
25
+ * (NOT lastCallUsage), build the structured `agent_usage` event with openclaw's
26
+ * native `costUsd` (preferred over the pricing catalog), and insert it.
27
+ *
28
+ * Returns the inserted event (for tests / callers that want to forward) or null
29
+ * when the payload is not a usage event, carries no usage, or sums to zero.
30
+ * Best-effort: swallows any insert failure.
31
+ */
32
+ export function handleOpenclawUsageEvent(payload, insert) {
33
+ // parseOpenclawUsage maps cacheWrite→cache_creation_tokens,
34
+ // cacheRead→cache_read_tokens, costUsd→native_cost_usd, and reads ONLY the
35
+ // per-turn `usage` total — never the lastCallUsage delta.
36
+ const counts = parseOpenclawUsage(payload);
37
+ if (!counts)
38
+ return null;
39
+ // native_cost_usd (openclaw's pre-computed costUsd) is preferred over the
40
+ // catalog inside buildAgentUsageEvent.
41
+ const event = buildAgentUsageEvent(counts);
42
+ if (!event)
43
+ return null;
44
+ try {
45
+ insert(event);
46
+ }
47
+ catch {
48
+ // Usage capture must never break the agent turn.
49
+ return null;
50
+ }
51
+ return event;
52
+ }
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Extract the agent workspace path from tool call params.
3
+ * Looks for /openclaw/workspace-<name> patterns in cwd, file_path, and command.
4
+ * Returns the workspace root (e.g. "/openclaw/workspace-trainer") or null.
5
+ */
6
+ export declare function extractWorkspace(params: Record<string, unknown>): string | null;
7
+ /**
8
+ * Maps agent workspaces to sessionIds using sessionKey convention.
9
+ * sessionKey pattern: "agent:<name>:main" → workspace "/openclaw/workspace-<name>"
10
+ *
11
+ * Why this exists alongside per-session closures:
12
+ * Each register() call creates its own closure with its own sessionId, which
13
+ * naturally isolates sessions. The WorkspaceRouter acts as a safety net for
14
+ * after_tool_call events where OpenClaw may deliver the event to the wrong
15
+ * closure (e.g. tool calls interleaving across agents). It resolves the correct
16
+ * sessionId from workspace paths in tool params, falling back to the closure
17
+ * sessionId when no workspace is detected.
18
+ */
19
+ export declare class WorkspaceRouter {
20
+ private map;
21
+ /** Register a session from session_start event. */
22
+ registerSession(sessionKey: string, sessionId: string): void;
23
+ /** Remove a session (e.g. on command:stop). */
24
+ removeSession(sessionKey: string): void;
25
+ /** Resolve sessionId from tool call params. Returns null if no match. */
26
+ resolveSessionId(params: Record<string, unknown>): string | null;
27
+ /** Derive workspace path from sessionKey. */
28
+ private workspaceFromKey;
29
+ }
@@ -0,0 +1,64 @@
1
+ /**
2
+ * Extract the agent workspace path from tool call params.
3
+ * Looks for /openclaw/workspace-<name> patterns in cwd, file_path, and command.
4
+ * Returns the workspace root (e.g. "/openclaw/workspace-trainer") or null.
5
+ */
6
+ export function extractWorkspace(params) {
7
+ // Priority: cwd > file_path > command (most specific first)
8
+ const sources = [
9
+ params.cwd,
10
+ params.file_path,
11
+ params.command,
12
+ ].filter((v) => typeof v === "string");
13
+ for (const src of sources) {
14
+ const match = src.match(/\/openclaw\/workspace-[a-zA-Z0-9_-]+/);
15
+ if (match)
16
+ return match[0];
17
+ }
18
+ return null;
19
+ }
20
+ /**
21
+ * Maps agent workspaces to sessionIds using sessionKey convention.
22
+ * sessionKey pattern: "agent:<name>:main" → workspace "/openclaw/workspace-<name>"
23
+ *
24
+ * Why this exists alongside per-session closures:
25
+ * Each register() call creates its own closure with its own sessionId, which
26
+ * naturally isolates sessions. The WorkspaceRouter acts as a safety net for
27
+ * after_tool_call events where OpenClaw may deliver the event to the wrong
28
+ * closure (e.g. tool calls interleaving across agents). It resolves the correct
29
+ * sessionId from workspace paths in tool params, falling back to the closure
30
+ * sessionId when no workspace is detected.
31
+ */
32
+ export class WorkspaceRouter {
33
+ // workspace path → sessionId
34
+ map = new Map();
35
+ /** Register a session from session_start event. */
36
+ registerSession(sessionKey, sessionId) {
37
+ const workspace = this.workspaceFromKey(sessionKey);
38
+ if (workspace) {
39
+ this.map.set(workspace, sessionId);
40
+ }
41
+ }
42
+ /** Remove a session (e.g. on command:stop). */
43
+ removeSession(sessionKey) {
44
+ const workspace = this.workspaceFromKey(sessionKey);
45
+ if (workspace) {
46
+ this.map.delete(workspace);
47
+ }
48
+ }
49
+ /** Resolve sessionId from tool call params. Returns null if no match. */
50
+ resolveSessionId(params) {
51
+ const workspace = extractWorkspace(params);
52
+ if (!workspace)
53
+ return null;
54
+ return this.map.get(workspace) ?? null;
55
+ }
56
+ /** Derive workspace path from sessionKey. */
57
+ workspaceFromKey(key) {
58
+ // Pattern: "agent:<name>:main" or "agent:<name>:<channel>"
59
+ const match = key.match(/^agent:([^:]+):/);
60
+ if (!match)
61
+ return null;
62
+ return `/openclaw/workspace-${match[1]}`;
63
+ }
64
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * adapters/opencode/config — Thin re-exports from OpenCodeAdapter.
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 { OpenCodeAdapter } from "./index.js";
8
+ export { HOOK_TYPES, REQUIRED_HOOKS, OPTIONAL_HOOKS } from "./hooks.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * adapters/opencode/config — Thin re-exports from OpenCodeAdapter.
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 { OpenCodeAdapter } from "./index.js";
8
+ export { HOOK_TYPES, REQUIRED_HOOKS, OPTIONAL_HOOKS } from "./hooks.js";
@@ -0,0 +1,38 @@
1
+ /**
2
+ * adapters/opencode/hooks — OpenCode hook definitions and validators.
3
+ *
4
+ * Defines the hook types and validation helpers specific to OpenCode's
5
+ * TypeScript plugin paradigm. This module is used by:
6
+ * - CLI setup/upgrade commands (to configure plugin in opencode.json)
7
+ * - Doctor command (to validate plugin configuration)
8
+ *
9
+ * OpenCode hook system reference:
10
+ * - I/O: TS plugin functions (not JSON stdin/stdout)
11
+ * - Hook names: tool.execute.before, tool.execute.after, experimental.session.compacting
12
+ * - Arg modification: output.args mutation
13
+ * - Blocking: throw Error in tool.execute.before
14
+ * - SessionStart: broken (#14808, no hook #5409)
15
+ * - Config: opencode.json plugin array, .opencode/plugins/*.ts
16
+ */
17
+ /** OpenCode hook types (TS plugin event names). */
18
+ export declare const HOOK_TYPES: {
19
+ readonly BEFORE: "tool.execute.before";
20
+ readonly AFTER: "tool.execute.after";
21
+ readonly COMPACTING: "experimental.session.compacting";
22
+ };
23
+ export type HookType = (typeof HOOK_TYPES)[keyof typeof HOOK_TYPES];
24
+ /**
25
+ * Required hooks that must be active for context-mode to function.
26
+ * OpenCode uses TS plugin paradigm — no scripts, just event hooks.
27
+ */
28
+ export declare const REQUIRED_HOOKS: HookType[];
29
+ /**
30
+ * Optional hooks that enhance functionality but aren't critical.
31
+ * experimental.session.compacting is advisory.
32
+ */
33
+ export declare const OPTIONAL_HOOKS: HookType[];
34
+ /**
35
+ * Check if an OpenCode plugin entry is the context-mode plugin.
36
+ * OpenCode plugins are registered as strings in the plugin array.
37
+ */
38
+ export declare function isContextModePlugin(pluginEntry: string): boolean;
@@ -0,0 +1,50 @@
1
+ /**
2
+ * adapters/opencode/hooks — OpenCode hook definitions and validators.
3
+ *
4
+ * Defines the hook types and validation helpers specific to OpenCode's
5
+ * TypeScript plugin paradigm. This module is used by:
6
+ * - CLI setup/upgrade commands (to configure plugin in opencode.json)
7
+ * - Doctor command (to validate plugin configuration)
8
+ *
9
+ * OpenCode hook system reference:
10
+ * - I/O: TS plugin functions (not JSON stdin/stdout)
11
+ * - Hook names: tool.execute.before, tool.execute.after, experimental.session.compacting
12
+ * - Arg modification: output.args mutation
13
+ * - Blocking: throw Error in tool.execute.before
14
+ * - SessionStart: broken (#14808, no hook #5409)
15
+ * - Config: opencode.json plugin array, .opencode/plugins/*.ts
16
+ */
17
+ // ─────────────────────────────────────────────────────────
18
+ // Hook type constants
19
+ // ─────────────────────────────────────────────────────────
20
+ /** OpenCode hook types (TS plugin event names). */
21
+ export const HOOK_TYPES = {
22
+ BEFORE: "tool.execute.before",
23
+ AFTER: "tool.execute.after",
24
+ COMPACTING: "experimental.session.compacting",
25
+ };
26
+ // ─────────────────────────────────────────────────────────
27
+ // Hook validation
28
+ // ─────────────────────────────────────────────────────────
29
+ /**
30
+ * Required hooks that must be active for context-mode to function.
31
+ * OpenCode uses TS plugin paradigm — no scripts, just event hooks.
32
+ */
33
+ export const REQUIRED_HOOKS = [
34
+ HOOK_TYPES.BEFORE,
35
+ HOOK_TYPES.AFTER,
36
+ ];
37
+ /**
38
+ * Optional hooks that enhance functionality but aren't critical.
39
+ * experimental.session.compacting is advisory.
40
+ */
41
+ export const OPTIONAL_HOOKS = [
42
+ HOOK_TYPES.COMPACTING,
43
+ ];
44
+ /**
45
+ * Check if an OpenCode plugin entry is the context-mode plugin.
46
+ * OpenCode plugins are registered as strings in the plugin array.
47
+ */
48
+ export function isContextModePlugin(pluginEntry) {
49
+ return pluginEntry.includes("context-mode");
50
+ }
@@ -0,0 +1,144 @@
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 { BaseAdapter } from "../base.js";
19
+ import type { HookAdapter, HookParadigm, PlatformCapabilities, DiagnosticResult, PreToolUseEvent, PostToolUseEvent, PreCompactEvent, SessionStartEvent, PreToolUseResponse, PostToolUseResponse, PreCompactResponse, SessionStartResponse, HookRegistration, PlatformId } from "../types.js";
20
+ export type AdapterPlatformType = Extract<PlatformId, "opencode" | "kilo">;
21
+ /**
22
+ * Runtime degradation options (opencode v2 compat). The plugin path probes
23
+ * the host at setup time and reports what it ACTUALLY acquired — a degraded
24
+ * capability is reported as unavailable instead of claimed.
25
+ */
26
+ export interface OpenCodeAdapterOptions {
27
+ /**
28
+ * True when the host does not expose a session-context hook (e.g. opencode
29
+ * v2 without a confirmed ctx.session.hook equivalent of the v1
30
+ * experimental.chat.system.transform surrogate). Reports sessionStart /
31
+ * canInjectSessionContext as unavailable instead of claiming them.
32
+ */
33
+ sessionContextDegraded?: boolean;
34
+ /**
35
+ * True when the host does not expose a compaction hook equivalent
36
+ * (experimental.session.compacting is v1-only).
37
+ */
38
+ preCompactDegraded?: boolean;
39
+ }
40
+ export type PluginFlavor = "v1" | "v2";
41
+ export type ActivationEntry = {
42
+ flavor: PluginFlavor;
43
+ claimedAt: number;
44
+ /**
45
+ * Whether the claimant CONFIRMED native ctx_* tool registration at setup
46
+ * time. v1 server() always registers the native tool map → true. v2
47
+ * setup() sets this only after a working native tool surface is acquired;
48
+ * a v2 claimant without confirmed native tools must NOT have the legacy
49
+ * mcp.context-mode removed (it is the only remaining tool provider).
50
+ */
51
+ nativeToolsConfirmed?: boolean;
52
+ };
53
+ export type PluginGlobalState = {
54
+ /** Hybrid-host activation registry, keyed by plugin id + normalized project dir. */
55
+ activations: Map<string, ActivationEntry>;
56
+ /** Keys of one-time (setup/degradation/duplicate) logs already emitted. */
57
+ loggedOnce: Set<string>;
58
+ /** Dedupe map for hook error logs, keyed by hook|code|message → last-logged ms. */
59
+ errorDedupe: Map<string, number>;
60
+ };
61
+ /**
62
+ * Process-global state bag. Stored on globalThis so the guard survives the
63
+ * plugin being loaded twice from different module copies (e.g. build/ and
64
+ * .opencode/plugins/ copies loaded by the same host process). Defined here
65
+ * (plugin.ts already imports this module) so the plugin runtime and the
66
+ * adapter share the SAME registry.
67
+ */
68
+ export declare function getPluginGlobalState(): PluginGlobalState;
69
+ /**
70
+ * Normalize a project directory for the activation registry key:
71
+ * symlink-canonicalized (macOS /var ↔ /private/var — chdir reports the
72
+ * resolved path while hosts may pass the unresolved one) + absolute +
73
+ * case-folded on case-insensitive filesystems (darwin/win32). Dirs that do
74
+ * not exist on disk fall back to lexical resolution.
75
+ */
76
+ export declare function normalizeProjectKey(dir: string): string;
77
+ /**
78
+ * Non-creating peek at the activation registry for a project. Used by the
79
+ * adapter's legacy-MCP-removal policy (configureAllHooks / validateHooks):
80
+ *
81
+ * - undefined → no plugin runtime has initialized in THIS process (e.g.
82
+ * the CLI runs standalone); callers fall back to the config-shape
83
+ * heuristic (v1 `plugin` key → native tools confirmed).
84
+ * - true/false → an in-process claimant exists (or the registry is live
85
+ * with no claimant for this project); its CONFIRMED native-tool state
86
+ * is authoritative — never remove mcp.context-mode on a guess.
87
+ */
88
+ export declare function peekConfirmedNativeTools(projectDir: string): boolean | undefined;
89
+ export declare class OpenCodeAdapter extends BaseAdapter implements HookAdapter {
90
+ get name(): string;
91
+ readonly paradigm: HookParadigm;
92
+ private settingsPath?;
93
+ readonly capabilities: PlatformCapabilities;
94
+ private platform;
95
+ constructor(platform?: AdapterPlatformType, options?: OpenCodeAdapterOptions);
96
+ /**
97
+ * Runtime honesty hook — the plugin path marks a capability unavailable
98
+ * after probing the host (e.g. a v2 session-context registration call
99
+ * failed even though the surface existed). Mirrors the constructor options
100
+ * for state that is only knowable after registration attempts.
101
+ */
102
+ markCapabilityDegraded(cap: "sessionStart" | "canInjectSessionContext" | "preCompact"): void;
103
+ parsePreToolUseInput(raw: unknown): PreToolUseEvent;
104
+ parsePostToolUseInput(raw: unknown): PostToolUseEvent;
105
+ parsePreCompactInput(raw: unknown): PreCompactEvent;
106
+ parseSessionStartInput(raw: unknown): SessionStartEvent;
107
+ formatPreToolUseResponse(response: PreToolUseResponse): unknown;
108
+ formatPostToolUseResponse(response: PostToolUseResponse): unknown;
109
+ formatPreCompactResponse(response: PreCompactResponse): unknown;
110
+ formatSessionStartResponse(response: SessionStartResponse): unknown;
111
+ getSettingsPath(): string;
112
+ private paths;
113
+ getSessionDir(): string;
114
+ /**
115
+ * OpenCode/KiloCode honor XDG_CONFIG_HOME on POSIX and APPDATA on Windows.
116
+ * Falls back to ~/.config/<platform> (or %APPDATA%\<platform>).
117
+ * Always absolute. `_projectDir` is accepted for interface symmetry but
118
+ * unused — config is home/XDG-rooted, never project-scoped.
119
+ */
120
+ getConfigDir(_projectDir?: string): string;
121
+ getInstructionFiles(): string[];
122
+ generateHookConfig(_pluginRoot: string): HookRegistration;
123
+ readSettings(): Record<string, unknown> | null;
124
+ writeSettings(settings: Record<string, unknown>): void;
125
+ validateHooks(_pluginRoot: string): DiagnosticResult[];
126
+ checkPluginRegistration(): DiagnosticResult;
127
+ getInstalledVersion(): string;
128
+ configureAllHooks(_pluginRoot: string): string[];
129
+ backupSettings(): string | null;
130
+ setHookPermissions(_pluginRoot: string): string[];
131
+ updatePluginRegistry(_pluginRoot: string, _version: string): void;
132
+ /**
133
+ * Check whether a settings object has the context-mode plugin registered.
134
+ * Honors both the v1 `plugin` key and the v2 `plugins` key (opencode v2
135
+ * renamed the config key).
136
+ */
137
+ private hasContextModePlugin;
138
+ private hasLegacyContextModeMcp;
139
+ /**
140
+ * Extract session ID from OpenCode hook input.
141
+ * OpenCode uses camelCase sessionID.
142
+ */
143
+ private extractSessionId;
144
+ }