@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,82 @@
1
+ /**
2
+ * Kimi Code (kimi-code) per-turn token usage capture.
3
+ *
4
+ * Ground truth: context-mode-platform/docs/prds/2026-06-paid-observability/
5
+ * adapter-matrix/kimi.md (+ cited refs/platforms/kimi-code/...).
6
+ *
7
+ * Kimi Code emits REAL per-turn token usage + model, but ONLY on the
8
+ * `wire.jsonl` records stream — NOT through any hook stdin payload. Each usage
9
+ * line is an AgentRecord of `type: "usage.record"` carrying a normalized
10
+ * four-field Moonshot/OpenAI-compatible `TokenUsage` plus the model id:
11
+ *
12
+ * refs/platforms/kimi-code/packages/agent-core/src/agent/usage/index.ts:27-32
13
+ * — this.agent.records.logRecord({ type: 'usage.record', model, usage, usageScope })
14
+ * refs/platforms/kimi-code/packages/agent-core/src/agent/records/types.ts:59-63
15
+ * — record shape { model: string; usage: TokenUsage; usageScope?: UsageRecordScope }
16
+ * refs/platforms/kimi-code/packages/agent-core/src/agent/index.ts:142
17
+ * — new FileSystemAgentRecordPersistence(join(options.homedir, 'wire.jsonl'), ...)
18
+ * => the persisted file is <sessionDir>/wire.jsonl.
19
+ *
20
+ * Normalized TokenUsage (kosong/src/usage.ts:7-13; parsed by
21
+ * kosong/src/providers/openai-common.ts:213-241):
22
+ * { inputOther, output, inputCacheRead, inputCacheCreation }
23
+ *
24
+ * Mapping → buildAgentUsageEvent input shape:
25
+ * inputOther → input_tokens (prompt - cached)
26
+ * output → output_tokens
27
+ * inputCacheRead → cache_read_tokens
28
+ * inputCacheCreation → cache_creation_tokens
29
+ * record.model → model_id
30
+ *
31
+ * INCREMENTAL: usage.record lines are per-step deltas (summed via addUsage;
32
+ * usage/index.ts:34,37). The cumulative total exists only in-memory, never on
33
+ * disk — so cost capture sums the NEW delta lines per model since a cursor.
34
+ *
35
+ * Native cost: kimi-code's TokenUsage carries NO USD cost field (verified
36
+ * against the matrix doc field list — only token counts). So native_cost_usd
37
+ * is left null and buildAgentUsageEvent falls back to the pricing catalog.
38
+ *
39
+ * Pure, null-safe, algorithmic — NO regex.
40
+ */
41
+ import { type AgentUsageCounts, type SessionEvent } from "../../session/extract.js";
42
+ /**
43
+ * Parse ONE kimi-code `usage.record` line object into the buildAgentUsageEvent
44
+ * input shape, or null when it is not a usage record / carries no usage /
45
+ * every token bucket is zero.
46
+ *
47
+ * Accepts the parsed AgentRecord object (NOT the raw JSONL string). Tolerant of
48
+ * the record being passed either as the full stamped record `{ type, model,
49
+ * usage, ... }` or a bare `{ model, usage }`.
50
+ */
51
+ export declare function parseKimiUsage(record: unknown): AgentUsageCounts | null;
52
+ /**
53
+ * Cursor-aware wire.jsonl reader for the Stop / SessionEnd hook.
54
+ *
55
+ * `wire.jsonl` is an append-only records stream that grows every turn; the
56
+ * forward loop forwards ALL passed events unconditionally, so re-summing the
57
+ * whole file each hook fire would double-count every prior turn. This sums only
58
+ * the `usage.record` lines NEW since the last fire, keyed by a per-session
59
+ * high-water cursor (a 1-based count of usage.record lines consumed so far,
60
+ * serialized as a decimal string in session_meta.usage_cursor).
61
+ *
62
+ * - cursor null/empty/unparseable → process ALL usage.record lines.
63
+ * - cursor = N (>= total) → nothing new; no events, cursor unchanged.
64
+ * - cursor = N (< total) → process usage.record lines AFTER index N.
65
+ * - BOUNDED COMPACTION FALLBACK: if the file SHRANK below the cursor (the
66
+ * stream was truncated/rotated, so prior lines are gone), the cursor has
67
+ * fallen off the front — process ONLY the LAST usage.record line so we
68
+ * never re-emit the whole history. Mirrors extractTranscriptUsageSince.
69
+ *
70
+ * `cursor` returns the decimal string count of TOTAL usage.record lines seen,
71
+ * so the next fire resumes exactly past it.
72
+ *
73
+ * Per-model summation: lines are bucketed by model_id and each bucket emits one
74
+ * agent_usage event (incremental deltas are additive — addUsage semantics).
75
+ *
76
+ * Char-algorithmic JSONL parse (split on "\n", JSON.parse each line, skip
77
+ * blanks/unparseable). NO regex.
78
+ */
79
+ export declare function extractKimiUsageSince(wireJsonlText: string, cursor: string | null): {
80
+ events: SessionEvent[];
81
+ cursor: string | null;
82
+ };
@@ -0,0 +1,217 @@
1
+ /**
2
+ * Kimi Code (kimi-code) per-turn token usage capture.
3
+ *
4
+ * Ground truth: context-mode-platform/docs/prds/2026-06-paid-observability/
5
+ * adapter-matrix/kimi.md (+ cited refs/platforms/kimi-code/...).
6
+ *
7
+ * Kimi Code emits REAL per-turn token usage + model, but ONLY on the
8
+ * `wire.jsonl` records stream — NOT through any hook stdin payload. Each usage
9
+ * line is an AgentRecord of `type: "usage.record"` carrying a normalized
10
+ * four-field Moonshot/OpenAI-compatible `TokenUsage` plus the model id:
11
+ *
12
+ * refs/platforms/kimi-code/packages/agent-core/src/agent/usage/index.ts:27-32
13
+ * — this.agent.records.logRecord({ type: 'usage.record', model, usage, usageScope })
14
+ * refs/platforms/kimi-code/packages/agent-core/src/agent/records/types.ts:59-63
15
+ * — record shape { model: string; usage: TokenUsage; usageScope?: UsageRecordScope }
16
+ * refs/platforms/kimi-code/packages/agent-core/src/agent/index.ts:142
17
+ * — new FileSystemAgentRecordPersistence(join(options.homedir, 'wire.jsonl'), ...)
18
+ * => the persisted file is <sessionDir>/wire.jsonl.
19
+ *
20
+ * Normalized TokenUsage (kosong/src/usage.ts:7-13; parsed by
21
+ * kosong/src/providers/openai-common.ts:213-241):
22
+ * { inputOther, output, inputCacheRead, inputCacheCreation }
23
+ *
24
+ * Mapping → buildAgentUsageEvent input shape:
25
+ * inputOther → input_tokens (prompt - cached)
26
+ * output → output_tokens
27
+ * inputCacheRead → cache_read_tokens
28
+ * inputCacheCreation → cache_creation_tokens
29
+ * record.model → model_id
30
+ *
31
+ * INCREMENTAL: usage.record lines are per-step deltas (summed via addUsage;
32
+ * usage/index.ts:34,37). The cumulative total exists only in-memory, never on
33
+ * disk — so cost capture sums the NEW delta lines per model since a cursor.
34
+ *
35
+ * Native cost: kimi-code's TokenUsage carries NO USD cost field (verified
36
+ * against the matrix doc field list — only token counts). So native_cost_usd
37
+ * is left null and buildAgentUsageEvent falls back to the pricing catalog.
38
+ *
39
+ * Pure, null-safe, algorithmic — NO regex.
40
+ */
41
+ import { buildAgentUsageEvent } from "../../session/extract.js";
42
+ /** Non-negative finite number, else 0. */
43
+ function num(v) {
44
+ return typeof v === "number" && Number.isFinite(v) && v > 0 ? v : 0;
45
+ }
46
+ /**
47
+ * Parse ONE kimi-code `usage.record` line object into the buildAgentUsageEvent
48
+ * input shape, or null when it is not a usage record / carries no usage /
49
+ * every token bucket is zero.
50
+ *
51
+ * Accepts the parsed AgentRecord object (NOT the raw JSONL string). Tolerant of
52
+ * the record being passed either as the full stamped record `{ type, model,
53
+ * usage, ... }` or a bare `{ model, usage }`.
54
+ */
55
+ export function parseKimiUsage(record) {
56
+ if (!record || typeof record !== "object")
57
+ return null;
58
+ const rec = record;
59
+ // When a `type` discriminator is present it MUST be the usage record kind.
60
+ // Absent type → tolerate (caller may have already narrowed), but a wrong
61
+ // explicit type is rejected so non-usage records never produce cost events.
62
+ if (typeof rec.type === "string" && rec.type !== "usage.record")
63
+ return null;
64
+ const usageRaw = rec.usage;
65
+ if (!usageRaw || typeof usageRaw !== "object")
66
+ return null;
67
+ const usage = usageRaw;
68
+ const input_tokens = num(usage.inputOther);
69
+ const output_tokens = num(usage.output);
70
+ const cache_read_tokens = num(usage.inputCacheRead);
71
+ const cache_creation_tokens = num(usage.inputCacheCreation);
72
+ // Zero-everything record → null (mirrors buildAgentUsageEvent's zero->null
73
+ // contract; keeps the DB free of no-op cost events).
74
+ if (input_tokens <= 0 &&
75
+ output_tokens <= 0 &&
76
+ cache_read_tokens <= 0 &&
77
+ cache_creation_tokens <= 0) {
78
+ return null;
79
+ }
80
+ const model_id = typeof rec.model === "string" ? rec.model : "";
81
+ return {
82
+ model_id,
83
+ input_tokens,
84
+ output_tokens,
85
+ cache_creation_tokens,
86
+ cache_read_tokens,
87
+ // kimi-code TokenUsage carries no native USD field — defer to the catalog.
88
+ native_cost_usd: null,
89
+ };
90
+ }
91
+ /**
92
+ * Cursor-aware wire.jsonl reader for the Stop / SessionEnd hook.
93
+ *
94
+ * `wire.jsonl` is an append-only records stream that grows every turn; the
95
+ * forward loop forwards ALL passed events unconditionally, so re-summing the
96
+ * whole file each hook fire would double-count every prior turn. This sums only
97
+ * the `usage.record` lines NEW since the last fire, keyed by a per-session
98
+ * high-water cursor (a 1-based count of usage.record lines consumed so far,
99
+ * serialized as a decimal string in session_meta.usage_cursor).
100
+ *
101
+ * - cursor null/empty/unparseable → process ALL usage.record lines.
102
+ * - cursor = N (>= total) → nothing new; no events, cursor unchanged.
103
+ * - cursor = N (< total) → process usage.record lines AFTER index N.
104
+ * - BOUNDED COMPACTION FALLBACK: if the file SHRANK below the cursor (the
105
+ * stream was truncated/rotated, so prior lines are gone), the cursor has
106
+ * fallen off the front — process ONLY the LAST usage.record line so we
107
+ * never re-emit the whole history. Mirrors extractTranscriptUsageSince.
108
+ *
109
+ * `cursor` returns the decimal string count of TOTAL usage.record lines seen,
110
+ * so the next fire resumes exactly past it.
111
+ *
112
+ * Per-model summation: lines are bucketed by model_id and each bucket emits one
113
+ * agent_usage event (incremental deltas are additive — addUsage semantics).
114
+ *
115
+ * Char-algorithmic JSONL parse (split on "\n", JSON.parse each line, skip
116
+ * blanks/unparseable). NO regex.
117
+ */
118
+ export function extractKimiUsageSince(wireJsonlText, cursor) {
119
+ const inputCursor = parseCursor(cursor);
120
+ if (typeof wireJsonlText !== "string" || wireJsonlText.length === 0) {
121
+ // Empty/missing wire file: nothing to process, cursor unchanged.
122
+ return { events: [], cursor: cursor ?? null };
123
+ }
124
+ // Pass 1: materialize the ordered usage.record parse results (one linear
125
+ // walk). We keep the AgentUsageCounts for each usage.record line so the
126
+ // cursor counts ONLY usage records (not unrelated wire lines), making the
127
+ // high-water mark stable against interleaved non-usage records.
128
+ const records = [];
129
+ const lines = wireJsonlText.split("\n");
130
+ for (const line of lines) {
131
+ const trimmed = line.trim();
132
+ if (trimmed.length === 0)
133
+ continue;
134
+ let obj;
135
+ try {
136
+ obj = JSON.parse(trimmed);
137
+ }
138
+ catch {
139
+ continue; // partial/corrupt trailing line — skip.
140
+ }
141
+ if (!obj || typeof obj !== "object")
142
+ continue;
143
+ if (obj.type !== "usage.record")
144
+ continue;
145
+ const parsed = parseKimiUsage(obj);
146
+ // A usage.record that sums to zero still ADVANCES the cursor (it was seen)
147
+ // but contributes no tokens. Push a zero-counts placeholder so the index
148
+ // accounting stays aligned with the on-disk usage.record ordinal.
149
+ records.push(parsed ?? {
150
+ model_id: "",
151
+ input_tokens: 0,
152
+ output_tokens: 0,
153
+ cache_creation_tokens: 0,
154
+ cache_read_tokens: 0,
155
+ native_cost_usd: null,
156
+ });
157
+ }
158
+ const total = records.length;
159
+ if (total === 0) {
160
+ // No usage records at all → nothing to emit, cursor unchanged.
161
+ return { events: [], cursor: cursor ?? null };
162
+ }
163
+ // Select the slice to sum.
164
+ let slice;
165
+ if (inputCursor === null || inputCursor <= 0) {
166
+ slice = records; // all usage records
167
+ }
168
+ else if (inputCursor >= total) {
169
+ if (inputCursor === total) {
170
+ // Caught up exactly — nothing new.
171
+ slice = [];
172
+ }
173
+ else {
174
+ // Cursor exceeds the on-disk count → the stream shrank (compaction /
175
+ // rotation). Bounded fallback: last usage record only.
176
+ slice = records.slice(total - 1);
177
+ }
178
+ }
179
+ else {
180
+ slice = records.slice(inputCursor); // strictly after the cursor index
181
+ }
182
+ // Sum the selected records per model and emit via the shared event builder.
183
+ const sums = new Map();
184
+ for (const r of slice) {
185
+ const cur = sums.get(r.model_id) ?? { input: 0, output: 0, cacheCreate: 0, cacheRead: 0 };
186
+ cur.input += r.input_tokens;
187
+ cur.output += r.output_tokens;
188
+ cur.cacheCreate += r.cache_creation_tokens;
189
+ cur.cacheRead += r.cache_read_tokens;
190
+ sums.set(r.model_id, cur);
191
+ }
192
+ const events = [];
193
+ for (const [model, s] of sums) {
194
+ const ev = buildAgentUsageEvent({
195
+ model_id: model,
196
+ input_tokens: s.input,
197
+ output_tokens: s.output,
198
+ cache_creation_tokens: s.cacheCreate,
199
+ cache_read_tokens: s.cacheRead,
200
+ });
201
+ if (ev)
202
+ events.push(ev);
203
+ }
204
+ // Cursor always advances to the total usage.record count seen, so the next
205
+ // fire resumes past it. Even when the slice produced no events (all-zero or
206
+ // already caught up), the high-water mark moves forward.
207
+ return { events, cursor: String(total) };
208
+ }
209
+ /** Decimal-string cursor → non-negative integer count, or null when absent/invalid. */
210
+ function parseCursor(cursor) {
211
+ if (typeof cursor !== "string" || cursor.length === 0)
212
+ return null;
213
+ const n = Number.parseInt(cursor, 10);
214
+ if (!Number.isFinite(n) || n < 0)
215
+ return null;
216
+ return n;
217
+ }
@@ -0,0 +1,61 @@
1
+ /**
2
+ * adapters/kiro/hooks — Kiro CLI hook definitions and matchers.
3
+ *
4
+ * Kiro CLI hook system reference:
5
+ * - Hooks are in agent config files (~/.kiro/agents/<name>.json) under "hooks" key
6
+ * - Each hook type maps to an array of { matcher, command } entries
7
+ * - Hook names: preToolUse, postToolUse, agentSpawn, userPromptSubmit
8
+ * - Input: JSON on stdin
9
+ * - Output: exit codes (0=allow, 2=block) + stdout/stderr
10
+ *
11
+ * Source: https://kiro.dev/docs/cli/custom-agents/configuration-reference#hooks-field
12
+ */
13
+ export declare const HOOK_TYPES: {
14
+ readonly PRE_TOOL_USE: "preToolUse";
15
+ readonly POST_TOOL_USE: "postToolUse";
16
+ readonly AGENT_SPAWN: "agentSpawn";
17
+ readonly USER_PROMPT_SUBMIT: "userPromptSubmit";
18
+ };
19
+ export type HookType = (typeof HOOK_TYPES)[keyof typeof HOOK_TYPES];
20
+ export declare const HOOK_SCRIPTS: Record<string, string>;
21
+ /**
22
+ * Negative-lookahead matcher for external MCP tool namespaces on Kiro (#529).
23
+ *
24
+ * Kiro MCP wire shape: `@<server>/<tool>` (verified in
25
+ * hooks/core/tool-naming.mjs — context-mode's own tools surface as
26
+ * `@context-mode/<tool>`). This pattern fires PreToolUse for any external
27
+ * `@<server>/<tool>` whose server segment is NOT `context-mode`. Without it,
28
+ * large payloads from slack / telegram / gdrive / notion-style MCPs bypass
29
+ * the routing nudge and flood the model's context window — PostToolUse runs
30
+ * too late to keep the raw data out.
31
+ *
32
+ * Routing.mjs `isExternalMcpTool` is extended to recognise the `@<server>/`
33
+ * prefix shape so the routing branch returns external-MCP guidance.
34
+ */
35
+ export declare const EXTERNAL_MCP_MATCHER_PATTERN = "@(?!context-mode/)";
36
+ /**
37
+ * Tools that context-mode's PreToolUse hook intercepts on Kiro.
38
+ *
39
+ * Kiro native tool names (from TOOL_ALIASES in routing.mjs):
40
+ * execute_bash → Bash, fs_read → Read, fs_write → Write
41
+ *
42
+ * MCP tools surface as @context-mode/ctx_* in Kiro.
43
+ */
44
+ export declare const PRE_TOOL_USE_MATCHERS: readonly ["execute_bash", "fs_read", "@context-mode/ctx_execute", "@context-mode/ctx_execute_file", "@context-mode/ctx_batch_execute", "@(?!context-mode/)"];
45
+ /**
46
+ * Combined matcher pattern for Kiro hook config (pipe-separated).
47
+ * Used by generateHookConfig and configureAllHooks.
48
+ */
49
+ export declare const PRE_TOOL_USE_MATCHER_PATTERN: string;
50
+ export declare const REQUIRED_HOOKS: string[];
51
+ export declare const OPTIONAL_HOOKS: string[];
52
+ /**
53
+ * Check if a hook entry points to a context-mode hook script.
54
+ */
55
+ export declare function isContextModeHook(entry: {
56
+ command?: string;
57
+ }, hookType: string): boolean;
58
+ /**
59
+ * Build the hook command string for a given hook type.
60
+ */
61
+ export declare function buildHookCommand(hookType: string, pluginRoot?: string): string;
@@ -0,0 +1,94 @@
1
+ import { buildHookRuntimeCommand } from "../types.js";
2
+ /**
3
+ * adapters/kiro/hooks — Kiro CLI hook definitions and matchers.
4
+ *
5
+ * Kiro CLI hook system reference:
6
+ * - Hooks are in agent config files (~/.kiro/agents/<name>.json) under "hooks" key
7
+ * - Each hook type maps to an array of { matcher, command } entries
8
+ * - Hook names: preToolUse, postToolUse, agentSpawn, userPromptSubmit
9
+ * - Input: JSON on stdin
10
+ * - Output: exit codes (0=allow, 2=block) + stdout/stderr
11
+ *
12
+ * Source: https://kiro.dev/docs/cli/custom-agents/configuration-reference#hooks-field
13
+ */
14
+ export const HOOK_TYPES = {
15
+ PRE_TOOL_USE: "preToolUse",
16
+ POST_TOOL_USE: "postToolUse",
17
+ AGENT_SPAWN: "agentSpawn",
18
+ USER_PROMPT_SUBMIT: "userPromptSubmit",
19
+ };
20
+ export const HOOK_SCRIPTS = {
21
+ [HOOK_TYPES.PRE_TOOL_USE]: "pretooluse.mjs",
22
+ [HOOK_TYPES.POST_TOOL_USE]: "posttooluse.mjs",
23
+ [HOOK_TYPES.USER_PROMPT_SUBMIT]: "userpromptsubmit.mjs",
24
+ [HOOK_TYPES.AGENT_SPAWN]: "agentspawn.mjs",
25
+ };
26
+ // ─────────────────────────────────────────────────────────
27
+ // External MCP routing matcher (#529)
28
+ // ─────────────────────────────────────────────────────────
29
+ /**
30
+ * Negative-lookahead matcher for external MCP tool namespaces on Kiro (#529).
31
+ *
32
+ * Kiro MCP wire shape: `@<server>/<tool>` (verified in
33
+ * hooks/core/tool-naming.mjs — context-mode's own tools surface as
34
+ * `@context-mode/<tool>`). This pattern fires PreToolUse for any external
35
+ * `@<server>/<tool>` whose server segment is NOT `context-mode`. Without it,
36
+ * large payloads from slack / telegram / gdrive / notion-style MCPs bypass
37
+ * the routing nudge and flood the model's context window — PostToolUse runs
38
+ * too late to keep the raw data out.
39
+ *
40
+ * Routing.mjs `isExternalMcpTool` is extended to recognise the `@<server>/`
41
+ * prefix shape so the routing branch returns external-MCP guidance.
42
+ */
43
+ export const EXTERNAL_MCP_MATCHER_PATTERN = "@(?!context-mode/)";
44
+ // ─────────────────────────────────────────────────────────
45
+ // PreToolUse matchers
46
+ // ─────────────────────────────────────────────────────────
47
+ /**
48
+ * Tools that context-mode's PreToolUse hook intercepts on Kiro.
49
+ *
50
+ * Kiro native tool names (from TOOL_ALIASES in routing.mjs):
51
+ * execute_bash → Bash, fs_read → Read, fs_write → Write
52
+ *
53
+ * MCP tools surface as @context-mode/ctx_* in Kiro.
54
+ */
55
+ export const PRE_TOOL_USE_MATCHERS = [
56
+ "execute_bash",
57
+ "fs_read",
58
+ "@context-mode/ctx_execute",
59
+ "@context-mode/ctx_execute_file",
60
+ "@context-mode/ctx_batch_execute",
61
+ EXTERNAL_MCP_MATCHER_PATTERN,
62
+ ];
63
+ /**
64
+ * Combined matcher pattern for Kiro hook config (pipe-separated).
65
+ * Used by generateHookConfig and configureAllHooks.
66
+ */
67
+ export const PRE_TOOL_USE_MATCHER_PATTERN = PRE_TOOL_USE_MATCHERS.join("|");
68
+ export const REQUIRED_HOOKS = [
69
+ HOOK_TYPES.PRE_TOOL_USE,
70
+ HOOK_TYPES.AGENT_SPAWN,
71
+ ];
72
+ export const OPTIONAL_HOOKS = [
73
+ HOOK_TYPES.POST_TOOL_USE,
74
+ HOOK_TYPES.USER_PROMPT_SUBMIT,
75
+ ];
76
+ /**
77
+ * Check if a hook entry points to a context-mode hook script.
78
+ */
79
+ export function isContextModeHook(entry, hookType) {
80
+ const scriptName = HOOK_SCRIPTS[hookType];
81
+ if (!scriptName)
82
+ return false;
83
+ return entry.command?.includes(scriptName) || entry.command?.includes("context-mode hook kiro") || false;
84
+ }
85
+ /**
86
+ * Build the hook command string for a given hook type.
87
+ */
88
+ export function buildHookCommand(hookType, pluginRoot) {
89
+ const scriptName = HOOK_SCRIPTS[hookType];
90
+ if (pluginRoot && scriptName) {
91
+ return buildHookRuntimeCommand(`${pluginRoot}/hooks/kiro/${scriptName}`);
92
+ }
93
+ return `context-mode hook kiro ${hookType.toLowerCase()}`;
94
+ }
@@ -0,0 +1,61 @@
1
+ /**
2
+ * adapters/kiro — Kiro IDE/CLI platform adapter.
3
+ *
4
+ * Implements HookAdapter for Kiro's hooks-capable paradigm (json-stdio).
5
+ *
6
+ * Kiro specifics:
7
+ * - Hooks via agent config files (~/.kiro/agents/<name>.json)
8
+ * - Config: ~/.kiro/settings/mcp.json (JSON format)
9
+ * - MCP: full support via mcpServers in mcp.json
10
+ * - Hook exit codes: 0=allow, 2=block
11
+ * - Cannot modify tool input (exit codes only)
12
+ * - Session dir: ~/.kiro/context-mode/sessions/
13
+ * - Routing file: KIRO.md
14
+ *
15
+ * Sources:
16
+ * - MCP config: https://kiro.dev/docs/mcp/configuration/
17
+ * - clientInfo.name: https://github.com/kirodotdev/Kiro/issues/5205 ("Kiro CLI")
18
+ * - CLI hooks: https://kiro.dev/docs/cli/custom-agents/configuration-reference#hooks-field
19
+ */
20
+ import { BaseAdapter } from "../base.js";
21
+ /**
22
+ * Steering integration: we ship a single context-mode-specific routing file
23
+ * at `configs/kiro/KIRO.md`. Users can copy it into `.kiro/steering/` to opt
24
+ * into deterministic injection. We do NOT deploy generic SDD scaffolds (e.g.
25
+ * cc-sdd's product/structure/tech + steering-custom/* templates) — those are
26
+ * project-template content, not adapter wiring.
27
+ */
28
+ import type { HookAdapter, HookParadigm, PlatformCapabilities, DiagnosticResult, PreToolUseEvent, PostToolUseEvent, PreCompactEvent, SessionStartEvent, PreToolUseResponse, PostToolUseResponse, PreCompactResponse, SessionStartResponse, HookRegistration } from "../types.js";
29
+ export declare class KiroAdapter extends BaseAdapter implements HookAdapter {
30
+ constructor();
31
+ readonly name = "Kiro";
32
+ readonly paradigm: HookParadigm;
33
+ readonly capabilities: PlatformCapabilities;
34
+ parsePreToolUseInput(raw: unknown): PreToolUseEvent;
35
+ parsePostToolUseInput(raw: unknown): PostToolUseEvent;
36
+ parsePreCompactInput(_raw: unknown): PreCompactEvent;
37
+ parseSessionStartInput(raw: unknown): SessionStartEvent;
38
+ formatPreToolUseResponse(response: PreToolUseResponse): unknown;
39
+ formatPostToolUseResponse(_response: PostToolUseResponse): unknown;
40
+ formatPreCompactResponse(_response: PreCompactResponse): unknown;
41
+ formatSessionStartResponse(response: SessionStartResponse): unknown;
42
+ getSettingsPath(): string;
43
+ /**
44
+ * Kiro stores per-project context under .kiro/ (steering files, etc).
45
+ * Auto-memory + rule detection use this project-relative dir, returned as
46
+ * an absolute path resolved against `projectDir` (or `process.cwd()`).
47
+ * (Settings/MCP config still live under ~/.kiro/.)
48
+ */
49
+ getConfigDir(projectDir?: string): string;
50
+ getInstructionFiles(): string[];
51
+ generateHookConfig(pluginRoot: string): HookRegistration;
52
+ readSettings(): Record<string, unknown> | null;
53
+ writeSettings(settings: Record<string, unknown>): void;
54
+ validateHooks(pluginRoot: string): DiagnosticResult[];
55
+ checkPluginRegistration(): DiagnosticResult;
56
+ getInstalledVersion(): string;
57
+ configureAllHooks(pluginRoot: string): string[];
58
+ setHookPermissions(_pluginRoot: string): string[];
59
+ updatePluginRegistry(_pluginRoot: string, _version: string): void;
60
+ getRoutingInstructions(): string;
61
+ }