@jawcode-dev/coding-agent 1.1.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 (2104) hide show
  1. package/CHANGELOG.md +376 -0
  2. package/README.md +37 -0
  3. package/dist/types/async/index.d.ts +2 -0
  4. package/dist/types/async/job-manager.d.ts +294 -0
  5. package/dist/types/async/support.d.ts +2 -0
  6. package/dist/types/autoresearch/dashboard.d.ts +4 -0
  7. package/dist/types/autoresearch/git.d.ts +36 -0
  8. package/dist/types/autoresearch/helpers.d.ts +24 -0
  9. package/dist/types/autoresearch/index.d.ts +2 -0
  10. package/dist/types/autoresearch/state.d.ts +17 -0
  11. package/dist/types/autoresearch/storage.d.ts +142 -0
  12. package/dist/types/autoresearch/tools/init-experiment.d.ts +31 -0
  13. package/dist/types/autoresearch/tools/log-experiment.d.ts +23 -0
  14. package/dist/types/autoresearch/tools/run-experiment.d.ts +8 -0
  15. package/dist/types/autoresearch/tools/update-notes.d.ts +12 -0
  16. package/dist/types/autoresearch/types.d.ts +154 -0
  17. package/dist/types/capability/context-file.d.ts +17 -0
  18. package/dist/types/capability/extension-module.d.ts +15 -0
  19. package/dist/types/capability/extension.d.ts +28 -0
  20. package/dist/types/capability/fs.d.ts +20 -0
  21. package/dist/types/capability/hook.d.ts +19 -0
  22. package/dist/types/capability/index.d.ts +80 -0
  23. package/dist/types/capability/instruction.d.ts +17 -0
  24. package/dist/types/capability/mcp.d.ts +45 -0
  25. package/dist/types/capability/prompt.d.ts +15 -0
  26. package/dist/types/capability/rule.d.ts +61 -0
  27. package/dist/types/capability/settings.d.ts +15 -0
  28. package/dist/types/capability/skill.d.ts +36 -0
  29. package/dist/types/capability/slash-command.d.ts +17 -0
  30. package/dist/types/capability/ssh.d.ts +23 -0
  31. package/dist/types/capability/system-prompt.d.ts +15 -0
  32. package/dist/types/capability/tool.d.ts +19 -0
  33. package/dist/types/capability/types.d.ts +154 -0
  34. package/dist/types/cli/agents-cli.d.ts +12 -0
  35. package/dist/types/cli/args.d.ts +56 -0
  36. package/dist/types/cli/auth-broker-cli.d.ts +25 -0
  37. package/dist/types/cli/auth-gateway-cli.d.ts +18 -0
  38. package/dist/types/cli/classify-install-target.d.ts +18 -0
  39. package/dist/types/cli/commands/init-xdg.d.ts +1 -0
  40. package/dist/types/cli/config-cli.d.ts +22 -0
  41. package/dist/types/cli/fast-help.d.ts +1 -0
  42. package/dist/types/cli/file-processor.d.ts +11 -0
  43. package/dist/types/cli/grep-cli.d.ts +17 -0
  44. package/dist/types/cli/initial-message.d.ts +17 -0
  45. package/dist/types/cli/list-models.d.ts +30 -0
  46. package/dist/types/cli/notify-cli.d.ts +29 -0
  47. package/dist/types/cli/plugin-cli.d.ts +32 -0
  48. package/dist/types/cli/read-cli.d.ts +4 -0
  49. package/dist/types/cli/session-picker.d.ts +3 -0
  50. package/dist/types/cli/setup-cli.d.ts +45 -0
  51. package/dist/types/cli/shell-cli.d.ts +8 -0
  52. package/dist/types/cli/skills-cli.d.ts +9 -0
  53. package/dist/types/cli/ssh-cli.d.ts +21 -0
  54. package/dist/types/cli/stats-cli.d.ts +17 -0
  55. package/dist/types/cli/update-cli.d.ts +41 -0
  56. package/dist/types/cli/web-search-cli.d.ts +20 -0
  57. package/dist/types/cli/worktree-cli.d.ts +26 -0
  58. package/dist/types/cli.d.ts +4 -0
  59. package/dist/types/commands/acp.d.ts +12 -0
  60. package/dist/types/commands/agents.d.ts +34 -0
  61. package/dist/types/commands/auth-broker.d.ts +54 -0
  62. package/dist/types/commands/auth-gateway.d.ts +32 -0
  63. package/dist/types/commands/chat.d.ts +18 -0
  64. package/dist/types/commands/codex-native-hook.d.ts +6 -0
  65. package/dist/types/commands/commit.d.ts +27 -0
  66. package/dist/types/commands/config.d.ts +30 -0
  67. package/dist/types/commands/contribution-prep.d.ts +18 -0
  68. package/dist/types/commands/coordinator.d.ts +19 -0
  69. package/dist/types/commands/goal.d.ts +31 -0
  70. package/dist/types/commands/grep.d.ts +42 -0
  71. package/dist/types/commands/harness.d.ts +50 -0
  72. package/dist/types/commands/interview.d.ts +51 -0
  73. package/dist/types/commands/launch.d.ts +127 -0
  74. package/dist/types/commands/mcp-serve.d.ts +24 -0
  75. package/dist/types/commands/memory.d.ts +19 -0
  76. package/dist/types/commands/notify.d.ts +30 -0
  77. package/dist/types/commands/orchestrate.d.ts +48 -0
  78. package/dist/types/commands/planphase.d.ts +7 -0
  79. package/dist/types/commands/plugin.d.ts +52 -0
  80. package/dist/types/commands/ralplan.d.ts +7 -0
  81. package/dist/types/commands/read.d.ts +15 -0
  82. package/dist/types/commands/session.d.ts +24 -0
  83. package/dist/types/commands/setup.d.ts +95 -0
  84. package/dist/types/commands/shell.d.ts +21 -0
  85. package/dist/types/commands/skills.d.ts +26 -0
  86. package/dist/types/commands/ssh.d.ts +48 -0
  87. package/dist/types/commands/state.d.ts +7 -0
  88. package/dist/types/commands/stats.d.ts +25 -0
  89. package/dist/types/commands/team.d.ts +24 -0
  90. package/dist/types/commands/ultragoal.d.ts +8 -0
  91. package/dist/types/commands/update.d.ts +20 -0
  92. package/dist/types/commands/web-search.d.ts +33 -0
  93. package/dist/types/commands/worktree.d.ts +31 -0
  94. package/dist/types/commit/agentic/agent.d.ts +31 -0
  95. package/dist/types/commit/agentic/fallback.d.ts +5 -0
  96. package/dist/types/commit/agentic/index.d.ts +2 -0
  97. package/dist/types/commit/agentic/state.d.ts +58 -0
  98. package/dist/types/commit/agentic/tools/analyze-file.d.ts +19 -0
  99. package/dist/types/commit/agentic/tools/git-file-diff.d.ts +10 -0
  100. package/dist/types/commit/agentic/tools/git-hunk.d.ts +9 -0
  101. package/dist/types/commit/agentic/tools/git-overview.d.ts +9 -0
  102. package/dist/types/commit/agentic/tools/index.d.ts +16 -0
  103. package/dist/types/commit/agentic/tools/propose-changelog.d.ts +28 -0
  104. package/dist/types/commit/agentic/tools/propose-commit.d.ts +36 -0
  105. package/dist/types/commit/agentic/tools/recent-commits.d.ts +7 -0
  106. package/dist/types/commit/agentic/tools/schemas.d.ts +27 -0
  107. package/dist/types/commit/agentic/tools/split-commit.d.ts +53 -0
  108. package/dist/types/commit/agentic/topo-sort.d.ts +4 -0
  109. package/dist/types/commit/agentic/trivial.d.ts +7 -0
  110. package/dist/types/commit/agentic/validation.d.ts +20 -0
  111. package/dist/types/commit/analysis/conventional.d.ts +22 -0
  112. package/dist/types/commit/analysis/index.d.ts +4 -0
  113. package/dist/types/commit/analysis/scope.d.ts +6 -0
  114. package/dist/types/commit/analysis/summary.d.ts +19 -0
  115. package/dist/types/commit/analysis/validation.d.ts +8 -0
  116. package/dist/types/commit/changelog/detect.d.ts +2 -0
  117. package/dist/types/commit/changelog/generate.d.ts +30 -0
  118. package/dist/types/commit/changelog/index.d.ts +30 -0
  119. package/dist/types/commit/changelog/parse.d.ts +2 -0
  120. package/dist/types/commit/cli.d.ts +3 -0
  121. package/dist/types/commit/git/diff.d.ts +5 -0
  122. package/dist/types/commit/index.d.ts +4 -0
  123. package/dist/types/commit/map-reduce/index.d.ts +28 -0
  124. package/dist/types/commit/map-reduce/map-phase.d.ts +17 -0
  125. package/dist/types/commit/map-reduce/reduce-phase.d.ts +13 -0
  126. package/dist/types/commit/map-reduce/utils.d.ts +2 -0
  127. package/dist/types/commit/message.d.ts +2 -0
  128. package/dist/types/commit/model-selection.d.ts +15 -0
  129. package/dist/types/commit/pipeline.d.ts +5 -0
  130. package/dist/types/commit/shared-llm.d.ts +54 -0
  131. package/dist/types/commit/types.d.ts +78 -0
  132. package/dist/types/commit/utils/exclusions.d.ts +4 -0
  133. package/dist/types/commit/utils.d.ts +20 -0
  134. package/dist/types/config/config-file.d.ts +58 -0
  135. package/dist/types/config/file-lock.d.ts +6 -0
  136. package/dist/types/config/keybindings.d.ts +359 -0
  137. package/dist/types/config/model-equivalence.d.ts +24 -0
  138. package/dist/types/config/model-profile-activation.d.ts +36 -0
  139. package/dist/types/config/model-profiles.d.ts +19 -0
  140. package/dist/types/config/model-registry.d.ts +445 -0
  141. package/dist/types/config/model-resolver.d.ts +217 -0
  142. package/dist/types/config/models-config-schema.d.ts +652 -0
  143. package/dist/types/config/oauth-provider-aliases.d.ts +1 -0
  144. package/dist/types/config/prompt-templates.d.ts +32 -0
  145. package/dist/types/config/resolve-config-value.d.ts +17 -0
  146. package/dist/types/config/settings-schema.d.ts +3683 -0
  147. package/dist/types/config/settings.d.ts +134 -0
  148. package/dist/types/config/skill-settings-defaults.d.ts +21 -0
  149. package/dist/types/config.d.ts +66 -0
  150. package/dist/types/coordinator/contract.d.ts +4 -0
  151. package/dist/types/coordinator-mcp/policy.d.ts +24 -0
  152. package/dist/types/coordinator-mcp/safety.d.ts +26 -0
  153. package/dist/types/coordinator-mcp/server.d.ts +52 -0
  154. package/dist/types/cursor.d.ts +24 -0
  155. package/dist/types/dap/client.d.ts +38 -0
  156. package/dist/types/dap/config.d.ts +6 -0
  157. package/dist/types/dap/index.d.ts +4 -0
  158. package/dist/types/dap/session.d.ts +108 -0
  159. package/dist/types/dap/types.d.ts +524 -0
  160. package/dist/types/debug/crash-diagnostics.d.ts +45 -0
  161. package/dist/types/debug/index.d.ts +15 -0
  162. package/dist/types/debug/log-formatting.d.ts +4 -0
  163. package/dist/types/debug/log-viewer.d.ts +68 -0
  164. package/dist/types/debug/profiler.d.ts +24 -0
  165. package/dist/types/debug/raw-sse-buffer.d.ts +44 -0
  166. package/dist/types/debug/raw-sse.d.ts +16 -0
  167. package/dist/types/debug/report-bundle.d.ts +55 -0
  168. package/dist/types/debug/runtime-gauges.d.ts +6 -0
  169. package/dist/types/debug/system-info.d.ts +26 -0
  170. package/dist/types/defaults/jwc-defaults.d.ts +69 -0
  171. package/dist/types/discovery/agents-md.d.ts +1 -0
  172. package/dist/types/discovery/agents.d.ts +12 -0
  173. package/dist/types/discovery/builtin.d.ts +1 -0
  174. package/dist/types/discovery/claude-plugins.d.ts +1 -0
  175. package/dist/types/discovery/claude.d.ts +1 -0
  176. package/dist/types/discovery/cli-jaw.d.ts +1 -0
  177. package/dist/types/discovery/cline.d.ts +1 -0
  178. package/dist/types/discovery/codex.d.ts +1 -0
  179. package/dist/types/discovery/cursor.d.ts +16 -0
  180. package/dist/types/discovery/gemini.d.ts +1 -0
  181. package/dist/types/discovery/github.d.ts +1 -0
  182. package/dist/types/discovery/helpers.d.ts +278 -0
  183. package/dist/types/discovery/index.d.ts +49 -0
  184. package/dist/types/discovery/mcp-json.d.ts +1 -0
  185. package/dist/types/discovery/opencode.d.ts +1 -0
  186. package/dist/types/discovery/plugin-dir-roots.d.ts +15 -0
  187. package/dist/types/discovery/ssh.d.ts +1 -0
  188. package/dist/types/discovery/substitute-plugin-root.d.ts +5 -0
  189. package/dist/types/discovery/vscode.d.ts +1 -0
  190. package/dist/types/discovery/windsurf.d.ts +13 -0
  191. package/dist/types/edit/apply-patch/index.d.ts +35 -0
  192. package/dist/types/edit/apply-patch/parser.d.ts +34 -0
  193. package/dist/types/edit/diff.d.ts +75 -0
  194. package/dist/types/edit/file-read-cache.d.ts +25 -0
  195. package/dist/types/edit/index.d.ts +58 -0
  196. package/dist/types/edit/modes/apply-patch.d.ts +24 -0
  197. package/dist/types/edit/modes/patch.d.ts +99 -0
  198. package/dist/types/edit/modes/replace.d.ts +149 -0
  199. package/dist/types/edit/normalize.d.ts +43 -0
  200. package/dist/types/edit/notebook.d.ts +23 -0
  201. package/dist/types/edit/read-file.d.ts +2 -0
  202. package/dist/types/edit/renderer.d.ts +110 -0
  203. package/dist/types/edit/streaming.d.ts +66 -0
  204. package/dist/types/eval/backend.d.ts +40 -0
  205. package/dist/types/eval/index.d.ts +4 -0
  206. package/dist/types/eval/js/context-manager.d.ts +24 -0
  207. package/dist/types/eval/js/executor.d.ts +28 -0
  208. package/dist/types/eval/js/index.d.ts +10 -0
  209. package/dist/types/eval/js/shared/helpers.d.ts +38 -0
  210. package/dist/types/eval/js/shared/indirect-eval.d.ts +14 -0
  211. package/dist/types/eval/js/shared/prelude.d.ts +1 -0
  212. package/dist/types/eval/js/shared/rewrite-imports.d.ts +6 -0
  213. package/dist/types/eval/js/shared/runtime.d.ts +47 -0
  214. package/dist/types/eval/js/shared/types.d.ts +24 -0
  215. package/dist/types/eval/js/tool-bridge.d.ts +18 -0
  216. package/dist/types/eval/js/worker-core.d.ts +5 -0
  217. package/dist/types/eval/js/worker-entry.d.ts +1 -0
  218. package/dist/types/eval/js/worker-protocol.d.ts +77 -0
  219. package/dist/types/eval/py/display.d.ts +25 -0
  220. package/dist/types/eval/py/executor.d.ts +85 -0
  221. package/dist/types/eval/py/index.d.ts +10 -0
  222. package/dist/types/eval/py/kernel.d.ts +63 -0
  223. package/dist/types/eval/py/prelude.d.ts +1 -0
  224. package/dist/types/eval/py/runtime.d.ts +21 -0
  225. package/dist/types/eval/py/tool-bridge.d.ts +20 -0
  226. package/dist/types/eval/types.d.ts +52 -0
  227. package/dist/types/exa/factory.d.ts +13 -0
  228. package/dist/types/exa/index.d.ts +20 -0
  229. package/dist/types/exa/mcp-client.d.ts +45 -0
  230. package/dist/types/exa/render.d.ts +19 -0
  231. package/dist/types/exa/researcher.d.ts +9 -0
  232. package/dist/types/exa/search.d.ts +9 -0
  233. package/dist/types/exa/types.d.ts +155 -0
  234. package/dist/types/exa/websets.d.ts +9 -0
  235. package/dist/types/exec/bash-executor.d.ts +58 -0
  236. package/dist/types/exec/exec.d.ts +25 -0
  237. package/dist/types/exec/idle-timeout-watchdog.d.ts +18 -0
  238. package/dist/types/exec/non-interactive-env.d.ts +4 -0
  239. package/dist/types/export/custom-share.d.ts +20 -0
  240. package/dist/types/export/html/index.d.ts +10 -0
  241. package/dist/types/export/html/template.generated.d.ts +1 -0
  242. package/dist/types/export/html/template.macro.d.ts +5 -0
  243. package/dist/types/export/ttsr.d.ts +44 -0
  244. package/dist/types/extensibility/custom-commands/bundled/ci-green/index.d.ts +9 -0
  245. package/dist/types/extensibility/custom-commands/bundled/review/index.d.ts +10 -0
  246. package/dist/types/extensibility/custom-commands/index.d.ts +2 -0
  247. package/dist/types/extensibility/custom-commands/loader.d.ts +29 -0
  248. package/dist/types/extensibility/custom-commands/types.d.ts +106 -0
  249. package/dist/types/extensibility/custom-tools/index.d.ts +6 -0
  250. package/dist/types/extensibility/custom-tools/loader.d.ts +69 -0
  251. package/dist/types/extensibility/custom-tools/types.d.ts +227 -0
  252. package/dist/types/extensibility/custom-tools/wrapper.d.ts +23 -0
  253. package/dist/types/extensibility/extensions/compact-handler.d.ts +26 -0
  254. package/dist/types/extensibility/extensions/get-commands-handler.d.ts +29 -0
  255. package/dist/types/extensibility/extensions/index.d.ts +8 -0
  256. package/dist/types/extensibility/extensions/loader.d.ts +43 -0
  257. package/dist/types/extensibility/extensions/runner.d.ts +134 -0
  258. package/dist/types/extensibility/extensions/types.d.ts +916 -0
  259. package/dist/types/extensibility/extensions/wrapper.d.ts +54 -0
  260. package/dist/types/extensibility/hooks/index.d.ts +5 -0
  261. package/dist/types/extensibility/hooks/loader.d.ts +89 -0
  262. package/dist/types/extensibility/hooks/runner.d.ts +126 -0
  263. package/dist/types/extensibility/hooks/tool-wrapper.d.ts +25 -0
  264. package/dist/types/extensibility/hooks/types.d.ts +431 -0
  265. package/dist/types/extensibility/jwc-plugins/activation.d.ts +14 -0
  266. package/dist/types/extensibility/jwc-plugins/index.d.ts +9 -0
  267. package/dist/types/extensibility/jwc-plugins/injection.d.ts +31 -0
  268. package/dist/types/extensibility/jwc-plugins/loader.d.ts +3 -0
  269. package/dist/types/extensibility/jwc-plugins/paths.d.ts +8 -0
  270. package/dist/types/extensibility/jwc-plugins/schema.d.ts +3 -0
  271. package/dist/types/extensibility/jwc-plugins/state.d.ts +9 -0
  272. package/dist/types/extensibility/jwc-plugins/tools.d.ts +8 -0
  273. package/dist/types/extensibility/jwc-plugins/types.d.ts +64 -0
  274. package/dist/types/extensibility/jwc-plugins/validation.d.ts +4 -0
  275. package/dist/types/extensibility/plugins/doctor.d.ts +3 -0
  276. package/dist/types/extensibility/plugins/git-url.d.ts +34 -0
  277. package/dist/types/extensibility/plugins/index.d.ts +7 -0
  278. package/dist/types/extensibility/plugins/installer.d.ts +5 -0
  279. package/dist/types/extensibility/plugins/legacy-pi-compat.d.ts +2 -0
  280. package/dist/types/extensibility/plugins/loader.d.ts +31 -0
  281. package/dist/types/extensibility/plugins/manager.d.ts +65 -0
  282. package/dist/types/extensibility/plugins/marketplace/cache.d.ts +41 -0
  283. package/dist/types/extensibility/plugins/marketplace/fetcher.d.ts +48 -0
  284. package/dist/types/extensibility/plugins/marketplace/index.d.ts +6 -0
  285. package/dist/types/extensibility/plugins/marketplace/manager.d.ts +57 -0
  286. package/dist/types/extensibility/plugins/marketplace/registry.d.ts +34 -0
  287. package/dist/types/extensibility/plugins/marketplace/source-resolver.d.ts +28 -0
  288. package/dist/types/extensibility/plugins/marketplace/types.d.ts +130 -0
  289. package/dist/types/extensibility/plugins/parser.d.ts +52 -0
  290. package/dist/types/extensibility/plugins/types.d.ts +149 -0
  291. package/dist/types/extensibility/shared-events.d.ts +280 -0
  292. package/dist/types/extensibility/skills.d.ts +82 -0
  293. package/dist/types/extensibility/slash-commands.d.ts +49 -0
  294. package/dist/types/extensibility/tool-proxy.d.ts +4 -0
  295. package/dist/types/extensibility/typebox.d.ts +155 -0
  296. package/dist/types/extensibility/utils.d.ts +12 -0
  297. package/dist/types/goals/goal-planning-start.d.ts +7 -0
  298. package/dist/types/goals/index.d.ts +3 -0
  299. package/dist/types/goals/runtime.d.ts +62 -0
  300. package/dist/types/goals/state.d.ts +40 -0
  301. package/dist/types/goals/tools/goal-tool.d.ts +62 -0
  302. package/dist/types/harness-control-plane/classifier.d.ts +13 -0
  303. package/dist/types/harness-control-plane/control-endpoint.d.ts +31 -0
  304. package/dist/types/harness-control-plane/finalize.d.ts +55 -0
  305. package/dist/types/harness-control-plane/operate.d.ts +35 -0
  306. package/dist/types/harness-control-plane/owner.d.ts +46 -0
  307. package/dist/types/harness-control-plane/phase-rollup.d.ts +23 -0
  308. package/dist/types/harness-control-plane/preserve.d.ts +19 -0
  309. package/dist/types/harness-control-plane/receipt-ingest.d.ts +19 -0
  310. package/dist/types/harness-control-plane/receipt-spool.d.ts +26 -0
  311. package/dist/types/harness-control-plane/receipts.d.ts +132 -0
  312. package/dist/types/harness-control-plane/rpc-adapter.d.ts +66 -0
  313. package/dist/types/harness-control-plane/seams.d.ts +21 -0
  314. package/dist/types/harness-control-plane/session-lease.d.ts +65 -0
  315. package/dist/types/harness-control-plane/state-machine.d.ts +24 -0
  316. package/dist/types/harness-control-plane/storage.d.ts +60 -0
  317. package/dist/types/harness-control-plane/types.d.ts +179 -0
  318. package/dist/types/hashline/anchors.d.ts +20 -0
  319. package/dist/types/hashline/apply.d.ts +14 -0
  320. package/dist/types/hashline/constants.d.ts +19 -0
  321. package/dist/types/hashline/diff-preview.d.ts +2 -0
  322. package/dist/types/hashline/diff.d.ts +17 -0
  323. package/dist/types/hashline/execute.d.ts +4 -0
  324. package/dist/types/hashline/hash.d.ts +123 -0
  325. package/dist/types/hashline/index.d.ts +13 -0
  326. package/dist/types/hashline/input.d.ts +11 -0
  327. package/dist/types/hashline/parser.d.ts +7 -0
  328. package/dist/types/hashline/prefixes.d.ts +7 -0
  329. package/dist/types/hashline/recovery.d.ts +27 -0
  330. package/dist/types/hashline/stream.d.ts +2 -0
  331. package/dist/types/hashline/types.d.ts +77 -0
  332. package/dist/types/hindsight/backend.d.ts +13 -0
  333. package/dist/types/hindsight/bank.d.ts +54 -0
  334. package/dist/types/hindsight/client.d.ts +224 -0
  335. package/dist/types/hindsight/config.d.ts +51 -0
  336. package/dist/types/hindsight/content.d.ts +71 -0
  337. package/dist/types/hindsight/index.d.ts +8 -0
  338. package/dist/types/hindsight/mental-models.d.ts +125 -0
  339. package/dist/types/hindsight/state.d.ts +99 -0
  340. package/dist/types/hindsight/transcript.d.ts +28 -0
  341. package/dist/types/hooks/codex-native-hooks-config.d.ts +29 -0
  342. package/dist/types/hooks/native-skill-hook.d.ts +16 -0
  343. package/dist/types/hooks/skill-keywords.d.ts +18 -0
  344. package/dist/types/hooks/skill-state.d.ts +88 -0
  345. package/dist/types/index.d.ts +33 -0
  346. package/dist/types/internal-urls/agent-protocol.d.ts +12 -0
  347. package/dist/types/internal-urls/artifact-protocol.d.ts +6 -0
  348. package/dist/types/internal-urls/docs-index.generated.d.ts +2 -0
  349. package/dist/types/internal-urls/index.d.ts +20 -0
  350. package/dist/types/internal-urls/issue-pr-protocol.d.ts +17 -0
  351. package/dist/types/internal-urls/json-query.d.ts +30 -0
  352. package/dist/types/internal-urls/jwc-protocol.d.ts +19 -0
  353. package/dist/types/internal-urls/local-protocol.d.ts +39 -0
  354. package/dist/types/internal-urls/mcp-protocol.d.ts +12 -0
  355. package/dist/types/internal-urls/memory-protocol.d.ts +23 -0
  356. package/dist/types/internal-urls/parse.d.ts +19 -0
  357. package/dist/types/internal-urls/registry-helpers.d.ts +11 -0
  358. package/dist/types/internal-urls/router.d.ts +14 -0
  359. package/dist/types/internal-urls/rule-protocol.d.ts +6 -0
  360. package/dist/types/internal-urls/skill-protocol.d.ts +13 -0
  361. package/dist/types/internal-urls/types.d.ts +109 -0
  362. package/dist/types/jaw-interview/structured-renderer.d.ts +20 -0
  363. package/dist/types/jwc-runtime/actor-registry.d.ts +76 -0
  364. package/dist/types/jwc-runtime/agent-identity.d.ts +6 -0
  365. package/dist/types/jwc-runtime/cli-jaw-home.d.ts +1 -0
  366. package/dist/types/jwc-runtime/cli-jaw-vocab.d.ts +15 -0
  367. package/dist/types/jwc-runtime/cli-write-receipt.d.ts +24 -0
  368. package/dist/types/jwc-runtime/goal-cli.d.ts +7 -0
  369. package/dist/types/jwc-runtime/goal-engine.d.ts +193 -0
  370. package/dist/types/jwc-runtime/goal-guard.d.ts +26 -0
  371. package/dist/types/jwc-runtime/goal-mode-request.d.ts +78 -0
  372. package/dist/types/jwc-runtime/jaw-interview-runtime.d.ts +41 -0
  373. package/dist/types/jwc-runtime/launch-tmux.d.ts +70 -0
  374. package/dist/types/jwc-runtime/launch-worktree.d.ts +46 -0
  375. package/dist/types/jwc-runtime/legacy-storage.d.ts +19 -0
  376. package/dist/types/jwc-runtime/memory-runtime.d.ts +16 -0
  377. package/dist/types/jwc-runtime/orchestrate-runtime.d.ts +12 -0
  378. package/dist/types/jwc-runtime/orchestrate-state.d.ts +246 -0
  379. package/dist/types/jwc-runtime/plan-writer.d.ts +26 -0
  380. package/dist/types/jwc-runtime/restricted-role-agent-bash.d.ts +2 -0
  381. package/dist/types/jwc-runtime/session-state-sidecar.d.ts +17 -0
  382. package/dist/types/jwc-runtime/stage-skill-map.d.ts +7 -0
  383. package/dist/types/jwc-runtime/state-graph.d.ts +4 -0
  384. package/dist/types/jwc-runtime/state-migrations.d.ts +34 -0
  385. package/dist/types/jwc-runtime/state-renderer.d.ts +65 -0
  386. package/dist/types/jwc-runtime/state-runtime.d.ts +37 -0
  387. package/dist/types/jwc-runtime/state-schema.d.ts +324 -0
  388. package/dist/types/jwc-runtime/state-validation.d.ts +6 -0
  389. package/dist/types/jwc-runtime/state-writer.d.ts +147 -0
  390. package/dist/types/jwc-runtime/team-runtime.d.ts +349 -0
  391. package/dist/types/jwc-runtime/tmux-common.d.ts +49 -0
  392. package/dist/types/jwc-runtime/tmux-sessions.d.ts +17 -0
  393. package/dist/types/jwc-runtime/workflow-command-ref.d.ts +43 -0
  394. package/dist/types/jwc-runtime/workflow-manifest.d.ts +54 -0
  395. package/dist/types/lsp/client.d.ts +66 -0
  396. package/dist/types/lsp/clients/biome-client.d.ts +16 -0
  397. package/dist/types/lsp/clients/index.d.ts +19 -0
  398. package/dist/types/lsp/clients/lsp-linter-client.d.ts +16 -0
  399. package/dist/types/lsp/clients/swiftlint-client.d.ts +20 -0
  400. package/dist/types/lsp/config.d.ts +65 -0
  401. package/dist/types/lsp/edits.d.ts +23 -0
  402. package/dist/types/lsp/index.d.ts +130 -0
  403. package/dist/types/lsp/lspmux.d.ts +58 -0
  404. package/dist/types/lsp/render.d.ts +32 -0
  405. package/dist/types/lsp/startup-events.d.ts +11 -0
  406. package/dist/types/lsp/types.d.ts +302 -0
  407. package/dist/types/lsp/utils.d.ts +108 -0
  408. package/dist/types/main.d.ts +72 -0
  409. package/dist/types/mem0/backend.d.ts +2 -0
  410. package/dist/types/mem0/client.d.ts +49 -0
  411. package/dist/types/mem0/config.d.ts +24 -0
  412. package/dist/types/mem0/index.d.ts +5 -0
  413. package/dist/types/mem0/scope.d.ts +12 -0
  414. package/dist/types/mem0/state.d.ts +36 -0
  415. package/dist/types/memories/index.d.ts +28 -0
  416. package/dist/types/memories/local-query.d.ts +112 -0
  417. package/dist/types/memories/memory-config.d.ts +46 -0
  418. package/dist/types/memories/memory-fts.d.ts +51 -0
  419. package/dist/types/memories/memory-model-resolution.d.ts +20 -0
  420. package/dist/types/memories/memory-quality.d.ts +27 -0
  421. package/dist/types/memories/storage.d.ts +110 -0
  422. package/dist/types/memory-backend/index.d.ts +4 -0
  423. package/dist/types/memory-backend/local-backend.d.ts +9 -0
  424. package/dist/types/memory-backend/off-backend.d.ts +7 -0
  425. package/dist/types/memory-backend/resolve.d.ts +16 -0
  426. package/dist/types/memory-backend/types.d.ts +64 -0
  427. package/dist/types/migrate-config-dir-startup.d.ts +1 -0
  428. package/dist/types/migrate-config-dir.d.ts +22 -0
  429. package/dist/types/modes/acp/acp-agent.d.ts +61 -0
  430. package/dist/types/modes/acp/acp-client-bridge.d.ts +9 -0
  431. package/dist/types/modes/acp/acp-event-mapper.d.ts +34 -0
  432. package/dist/types/modes/acp/acp-mode.d.ts +5 -0
  433. package/dist/types/modes/acp/index.d.ts +2 -0
  434. package/dist/types/modes/acp/terminal-auth.d.ts +6 -0
  435. package/dist/types/modes/background-row-model.d.ts +3 -0
  436. package/dist/types/modes/bridge/auth.d.ts +12 -0
  437. package/dist/types/modes/bridge/bridge-client-bridge.d.ts +9 -0
  438. package/dist/types/modes/bridge/bridge-mode.d.ts +46 -0
  439. package/dist/types/modes/bridge/bridge-ui-context.d.ts +88 -0
  440. package/dist/types/modes/bridge/event-stream.d.ts +8 -0
  441. package/dist/types/modes/components/_cli-jaw-entry.d.ts +31 -0
  442. package/dist/types/modes/components/agent-dashboard.d.ts +21 -0
  443. package/dist/types/modes/components/assistant-message.d.ts +33 -0
  444. package/dist/types/modes/components/background-footer-detail.d.ts +6 -0
  445. package/dist/types/modes/components/background-footer-panel-model.d.ts +18 -0
  446. package/dist/types/modes/components/background-footer-panel.d.ts +19 -0
  447. package/dist/types/modes/components/bash-execution.d.ts +37 -0
  448. package/dist/types/modes/components/bordered-loader.d.ts +11 -0
  449. package/dist/types/modes/components/branch-summary-message.d.ts +15 -0
  450. package/dist/types/modes/components/btw-panel.d.ts +16 -0
  451. package/dist/types/modes/components/compaction-summary-message.d.ts +15 -0
  452. package/dist/types/modes/components/composer-chrome.d.ts +7 -0
  453. package/dist/types/modes/components/composer-footer.d.ts +43 -0
  454. package/dist/types/modes/components/countdown-timer.d.ts +14 -0
  455. package/dist/types/modes/components/custom-editor.d.ts +80 -0
  456. package/dist/types/modes/components/custom-message.d.ts +17 -0
  457. package/dist/types/modes/components/custom-provider-wizard.d.ts +10 -0
  458. package/dist/types/modes/components/diff.d.ts +11 -0
  459. package/dist/types/modes/components/dynamic-border.d.ts +14 -0
  460. package/dist/types/modes/components/eval-execution.d.ts +31 -0
  461. package/dist/types/modes/components/execution-shared.d.ts +46 -0
  462. package/dist/types/modes/components/extensions/extension-dashboard.d.ts +26 -0
  463. package/dist/types/modes/components/extensions/extension-list.d.ts +39 -0
  464. package/dist/types/modes/components/extensions/index.d.ts +8 -0
  465. package/dist/types/modes/components/extensions/inspector-panel.d.ts +8 -0
  466. package/dist/types/modes/components/extensions/state-manager.d.ts +50 -0
  467. package/dist/types/modes/components/extensions/types.d.ts +151 -0
  468. package/dist/types/modes/components/footer.d.ts +30 -0
  469. package/dist/types/modes/components/full-transcript-overlay.d.ts +21 -0
  470. package/dist/types/modes/components/help-selector.d.ts +38 -0
  471. package/dist/types/modes/components/history-search.d.ts +7 -0
  472. package/dist/types/modes/components/hook-editor.d.ts +18 -0
  473. package/dist/types/modes/components/hook-input.d.ts +15 -0
  474. package/dist/types/modes/components/hook-message.d.ts +15 -0
  475. package/dist/types/modes/components/hook-selector.d.ts +64 -0
  476. package/dist/types/modes/components/index.d.ts +35 -0
  477. package/dist/types/modes/components/jobs-overlay-model.d.ts +31 -0
  478. package/dist/types/modes/components/jobs-overlay.d.ts +30 -0
  479. package/dist/types/modes/components/keybinding-hints.d.ts +40 -0
  480. package/dist/types/modes/components/login-dialog.d.ts +32 -0
  481. package/dist/types/modes/components/message-frame.d.ts +42 -0
  482. package/dist/types/modes/components/model-selector.d.ts +53 -0
  483. package/dist/types/modes/components/oauth-selector.d.ts +14 -0
  484. package/dist/types/modes/components/pabcd-border.d.ts +8 -0
  485. package/dist/types/modes/components/plugin-selector.d.ts +26 -0
  486. package/dist/types/modes/components/plugin-settings.d.ts +66 -0
  487. package/dist/types/modes/components/provider-onboarding-selector.d.ts +7 -0
  488. package/dist/types/modes/components/queue-mode-selector.d.ts +9 -0
  489. package/dist/types/modes/components/quota-panel.d.ts +21 -0
  490. package/dist/types/modes/components/read-tool-group.d.ts +34 -0
  491. package/dist/types/modes/components/runtime-mcp-add-wizard.d.ts +25 -0
  492. package/dist/types/modes/components/session-observer-overlay.d.ts +11 -0
  493. package/dist/types/modes/components/session-selector.d.ts +30 -0
  494. package/dist/types/modes/components/settings-defs.d.ts +50 -0
  495. package/dist/types/modes/components/settings-selector.d.ts +56 -0
  496. package/dist/types/modes/components/show-images-selector.d.ts +9 -0
  497. package/dist/types/modes/components/skill-hud/render.d.ts +2 -0
  498. package/dist/types/modes/components/skill-message.d.ts +11 -0
  499. package/dist/types/modes/components/status-line/context-thresholds.d.ts +4 -0
  500. package/dist/types/modes/components/status-line/git-utils.d.ts +22 -0
  501. package/dist/types/modes/components/status-line/index.d.ts +4 -0
  502. package/dist/types/modes/components/status-line/presets.d.ts +3 -0
  503. package/dist/types/modes/components/status-line/segments.d.ts +5 -0
  504. package/dist/types/modes/components/status-line/separators.d.ts +3 -0
  505. package/dist/types/modes/components/status-line/token-rate.d.ts +10 -0
  506. package/dist/types/modes/components/status-line/types.d.ts +92 -0
  507. package/dist/types/modes/components/status-line/workflow-readers.d.ts +21 -0
  508. package/dist/types/modes/components/status-line.d.ts +82 -0
  509. package/dist/types/modes/components/theme-selector.d.ts +10 -0
  510. package/dist/types/modes/components/thinking-selector.d.ts +10 -0
  511. package/dist/types/modes/components/todo-reminder.d.ts +13 -0
  512. package/dist/types/modes/components/tool-execution.d.ts +69 -0
  513. package/dist/types/modes/components/tool-transcript-overlay.d.ts +18 -0
  514. package/dist/types/modes/components/tree-selector.d.ts +31 -0
  515. package/dist/types/modes/components/ttsr-notification.d.ts +15 -0
  516. package/dist/types/modes/components/user-message-selector.d.ts +28 -0
  517. package/dist/types/modes/components/user-message.d.ts +8 -0
  518. package/dist/types/modes/components/visual-truncate.d.ts +19 -0
  519. package/dist/types/modes/components/welcome.d.ts +42 -0
  520. package/dist/types/modes/controllers/btw-controller.d.ts +10 -0
  521. package/dist/types/modes/controllers/command-controller-shared.d.ts +47 -0
  522. package/dist/types/modes/controllers/command-controller.d.ts +39 -0
  523. package/dist/types/modes/controllers/event-controller.d.ts +12 -0
  524. package/dist/types/modes/controllers/extension-ui-controller.d.ts +80 -0
  525. package/dist/types/modes/controllers/input-controller.d.ts +49 -0
  526. package/dist/types/modes/controllers/runtime-mcp-command-controller.d.ts +10 -0
  527. package/dist/types/modes/controllers/selector-controller.d.ts +78 -0
  528. package/dist/types/modes/controllers/ssh-command-controller.d.ts +10 -0
  529. package/dist/types/modes/controllers/todo-command-controller.d.ts +7 -0
  530. package/dist/types/modes/emoji-autocomplete.d.ts +16 -0
  531. package/dist/types/modes/index.d.ts +10 -0
  532. package/dist/types/modes/interactive-mode.d.ts +295 -0
  533. package/dist/types/modes/jobs-observer.d.ts +67 -0
  534. package/dist/types/modes/oauth-manual-input.d.ts +8 -0
  535. package/dist/types/modes/print-mode.d.ts +27 -0
  536. package/dist/types/modes/prompt-action-autocomplete.d.ts +46 -0
  537. package/dist/types/modes/rpc/host-tools.d.ts +1 -0
  538. package/dist/types/modes/rpc/host-uris.d.ts +1 -0
  539. package/dist/types/modes/rpc/rpc-client.d.ts +267 -0
  540. package/dist/types/modes/rpc/rpc-mode.d.ts +67 -0
  541. package/dist/types/modes/rpc/rpc-types.d.ts +765 -0
  542. package/dist/types/modes/runtime-init.d.ts +21 -0
  543. package/dist/types/modes/session-observer-registry.d.ts +26 -0
  544. package/dist/types/modes/shared/agent-wire/approval-gate.d.ts +57 -0
  545. package/dist/types/modes/shared/agent-wire/command-contract.d.ts +18 -0
  546. package/dist/types/modes/shared/agent-wire/command-dispatch.d.ts +35 -0
  547. package/dist/types/modes/shared/agent-wire/command-validation.d.ts +2 -0
  548. package/dist/types/modes/shared/agent-wire/event-contract.d.ts +84 -0
  549. package/dist/types/modes/shared/agent-wire/event-envelope.d.ts +38 -0
  550. package/dist/types/modes/shared/agent-wire/event-observation.d.ts +37 -0
  551. package/dist/types/modes/shared/agent-wire/handshake.d.ts +56 -0
  552. package/dist/types/modes/shared/agent-wire/host-tool-bridge.d.ts +16 -0
  553. package/dist/types/modes/shared/agent-wire/host-uri-bridge.d.ts +17 -0
  554. package/dist/types/modes/shared/agent-wire/jaw-interview-gate.d.ts +58 -0
  555. package/dist/types/modes/shared/agent-wire/protocol.d.ts +25 -0
  556. package/dist/types/modes/shared/agent-wire/responses.d.ts +4 -0
  557. package/dist/types/modes/shared/agent-wire/scopes.d.ts +18 -0
  558. package/dist/types/modes/shared/agent-wire/session-registry.d.ts +25 -0
  559. package/dist/types/modes/shared/agent-wire/ui-request-broker.d.ts +42 -0
  560. package/dist/types/modes/shared/agent-wire/ui-result.d.ts +27 -0
  561. package/dist/types/modes/shared/agent-wire/unattended-action-policy.d.ts +27 -0
  562. package/dist/types/modes/shared/agent-wire/unattended-audit.d.ts +68 -0
  563. package/dist/types/modes/shared/agent-wire/unattended-run-controller.d.ts +161 -0
  564. package/dist/types/modes/shared/agent-wire/unattended-session.d.ts +61 -0
  565. package/dist/types/modes/shared/agent-wire/workflow-gate-broker.d.ts +114 -0
  566. package/dist/types/modes/shared/agent-wire/workflow-gate-schema.d.ts +39 -0
  567. package/dist/types/modes/shared.d.ts +15 -0
  568. package/dist/types/modes/theme/defaults/index.d.ts +499 -0
  569. package/dist/types/modes/theme/mermaid-cache.d.ts +9 -0
  570. package/dist/types/modes/theme/shimmer.d.ts +38 -0
  571. package/dist/types/modes/theme/theme.d.ts +274 -0
  572. package/dist/types/modes/types.d.ts +311 -0
  573. package/dist/types/modes/utils/abort-message.d.ts +4 -0
  574. package/dist/types/modes/utils/compaction-progress.d.ts +20 -0
  575. package/dist/types/modes/utils/context-usage.d.ts +53 -0
  576. package/dist/types/modes/utils/help-markdown.d.ts +17 -0
  577. package/dist/types/modes/utils/hotkeys-markdown.d.ts +5 -0
  578. package/dist/types/modes/utils/keybinding-matchers.d.ts +10 -0
  579. package/dist/types/modes/utils/session-transcript-replay.d.ts +24 -0
  580. package/dist/types/modes/utils/tools-markdown.d.ts +5 -0
  581. package/dist/types/modes/utils/ui-helpers.d.ts +77 -0
  582. package/dist/types/notifications/ask-bridge.d.ts +36 -0
  583. package/dist/types/notifications/config-command-parser.d.ts +27 -0
  584. package/dist/types/notifications/config.d.ts +37 -0
  585. package/dist/types/notifications/daemon-control.d.ts +29 -0
  586. package/dist/types/notifications/daemon-engine.d.ts +64 -0
  587. package/dist/types/notifications/daemon-inbound.d.ts +93 -0
  588. package/dist/types/notifications/daemon-loop.d.ts +28 -0
  589. package/dist/types/notifications/daemon-owner.d.ts +25 -0
  590. package/dist/types/notifications/daemon-runtime.d.ts +32 -0
  591. package/dist/types/notifications/discovery.d.ts +45 -0
  592. package/dist/types/notifications/index.d.ts +34 -0
  593. package/dist/types/notifications/lifecycle-audit.d.ts +60 -0
  594. package/dist/types/notifications/lifecycle-command-parser.d.ts +19 -0
  595. package/dist/types/notifications/lifecycle-control-runtime.d.ts +45 -0
  596. package/dist/types/notifications/notification-redaction.d.ts +36 -0
  597. package/dist/types/notifications/protocol.d.ts +43 -0
  598. package/dist/types/notifications/remote-answer.d.ts +78 -0
  599. package/dist/types/notifications/reply-bridge.d.ts +21 -0
  600. package/dist/types/notifications/server.d.ts +38 -0
  601. package/dist/types/notifications/session-lifecycle.d.ts +22 -0
  602. package/dist/types/notifications/session-registry.d.ts +31 -0
  603. package/dist/types/notifications/telegram-api.d.ts +93 -0
  604. package/dist/types/notifications/telegram-ask-keyboard.d.ts +57 -0
  605. package/dist/types/notifications/telegram-callback-ingest.d.ts +49 -0
  606. package/dist/types/notifications/telegram-inbound-router.d.ts +57 -0
  607. package/dist/types/notifications/telegram-media-policy.d.ts +27 -0
  608. package/dist/types/notifications/telegram-media-render.d.ts +29 -0
  609. package/dist/types/notifications/telegram-message-ingest.d.ts +54 -0
  610. package/dist/types/notifications/telegram-pairing.d.ts +21 -0
  611. package/dist/types/notifications/threaded-lifecycle.d.ts +23 -0
  612. package/dist/types/notifications/threaded-shutdown.d.ts +19 -0
  613. package/dist/types/notifications/threaded-surface.d.ts +71 -0
  614. package/dist/types/notifications/transport-shell.d.ts +47 -0
  615. package/dist/types/notifications/transport-state.d.ts +44 -0
  616. package/dist/types/notifications/workspace-path-confinement.d.ts +12 -0
  617. package/dist/types/plan-mode/approved-plan.d.ts +49 -0
  618. package/dist/types/plan-mode/state.d.ts +6 -0
  619. package/dist/types/registry/agent-registry.d.ts +62 -0
  620. package/dist/types/reminders/star-reminder.d.ts +115 -0
  621. package/dist/types/runtime-mcp/client.d.ts +74 -0
  622. package/dist/types/runtime-mcp/config-writer.d.ts +53 -0
  623. package/dist/types/runtime-mcp/config.d.ts +75 -0
  624. package/dist/types/runtime-mcp/discoverable-tool-metadata.d.ts +7 -0
  625. package/dist/types/runtime-mcp/index.d.ts +18 -0
  626. package/dist/types/runtime-mcp/json-rpc.d.ts +22 -0
  627. package/dist/types/runtime-mcp/loader.d.ts +43 -0
  628. package/dist/types/runtime-mcp/manager.d.ts +193 -0
  629. package/dist/types/runtime-mcp/oauth-discovery.d.ts +40 -0
  630. package/dist/types/runtime-mcp/oauth-flow.d.ts +59 -0
  631. package/dist/types/runtime-mcp/render.d.ts +25 -0
  632. package/dist/types/runtime-mcp/smithery-auth.d.ts +16 -0
  633. package/dist/types/runtime-mcp/smithery-connect.d.ts +38 -0
  634. package/dist/types/runtime-mcp/smithery-registry.d.ts +51 -0
  635. package/dist/types/runtime-mcp/tool-bridge.d.ts +86 -0
  636. package/dist/types/runtime-mcp/tool-cache.d.ts +8 -0
  637. package/dist/types/runtime-mcp/transports/http.d.ts +36 -0
  638. package/dist/types/runtime-mcp/transports/index.d.ts +5 -0
  639. package/dist/types/runtime-mcp/transports/stdio.d.ts +28 -0
  640. package/dist/types/runtime-mcp/types.d.ts +333 -0
  641. package/dist/types/sdk.d.ts +234 -0
  642. package/dist/types/secrets/index.d.ts +10 -0
  643. package/dist/types/secrets/obfuscator.d.ts +23 -0
  644. package/dist/types/secrets/regex.d.ts +2 -0
  645. package/dist/types/session/agent-session.d.ts +1052 -0
  646. package/dist/types/session/agent-storage.d.ts +100 -0
  647. package/dist/types/session/artifacts.d.ts +61 -0
  648. package/dist/types/session/auth-broker-config.d.ts +13 -0
  649. package/dist/types/session/auth-storage.d.ts +6 -0
  650. package/dist/types/session/blob-store.d.ts +112 -0
  651. package/dist/types/session/client-bridge.d.ts +88 -0
  652. package/dist/types/session/contribution-prep.d.ts +47 -0
  653. package/dist/types/session/history-storage.d.ts +16 -0
  654. package/dist/types/session/messages.d.ts +165 -0
  655. package/dist/types/session/pabcd-stage-header.d.ts +18 -0
  656. package/dist/types/session/session-dump-format.d.ts +22 -0
  657. package/dist/types/session/session-manager.d.ts +571 -0
  658. package/dist/types/session/session-storage.d.ts +88 -0
  659. package/dist/types/session/streaming-output.d.ts +196 -0
  660. package/dist/types/session/tool-choice-queue.d.ts +78 -0
  661. package/dist/types/session/yield-queue.d.ts +24 -0
  662. package/dist/types/setup/hermes-setup.d.ts +71 -0
  663. package/dist/types/setup/model-onboarding-guidance.d.ts +9 -0
  664. package/dist/types/setup/provider-onboarding.d.ts +52 -0
  665. package/dist/types/skill-state/active-state.d.ts +115 -0
  666. package/dist/types/skill-state/initial-phase.d.ts +12 -0
  667. package/dist/types/skill-state/jaw-interview-mutation-guard.d.ts +33 -0
  668. package/dist/types/skill-state/workflow-hud.d.ts +76 -0
  669. package/dist/types/skill-state/workflow-state-contract.d.ts +60 -0
  670. package/dist/types/skill-state/workflow-state-version.d.ts +3 -0
  671. package/dist/types/slash-commands/acp-builtins.d.ts +18 -0
  672. package/dist/types/slash-commands/builtin-registry.d.ts +24 -0
  673. package/dist/types/slash-commands/helpers/context-report.d.ts +7 -0
  674. package/dist/types/slash-commands/helpers/format.d.ts +10 -0
  675. package/dist/types/slash-commands/helpers/mcp.d.ts +3 -0
  676. package/dist/types/slash-commands/helpers/parse.d.ts +33 -0
  677. package/dist/types/slash-commands/helpers/ssh.d.ts +3 -0
  678. package/dist/types/slash-commands/helpers/todo.d.ts +3 -0
  679. package/dist/types/slash-commands/helpers/usage-report.d.ts +11 -0
  680. package/dist/types/slash-commands/types.d.ts +120 -0
  681. package/dist/types/ssh/config-writer.d.ts +49 -0
  682. package/dist/types/ssh/connection-manager.d.ts +33 -0
  683. package/dist/types/ssh/ssh-executor.d.ts +37 -0
  684. package/dist/types/ssh/sshfs-mount.d.ts +6 -0
  685. package/dist/types/ssh/utils.d.ts +2 -0
  686. package/dist/types/stt/downloader.d.ts +9 -0
  687. package/dist/types/stt/index.d.ts +3 -0
  688. package/dist/types/stt/recorder.d.ts +13 -0
  689. package/dist/types/stt/setup.d.ts +18 -0
  690. package/dist/types/stt/stt-controller.d.ts +16 -0
  691. package/dist/types/stt/transcriber.d.ts +16 -0
  692. package/dist/types/system-prompt.d.ts +100 -0
  693. package/dist/types/task/agents.d.ts +28 -0
  694. package/dist/types/task/commands.d.ts +35 -0
  695. package/dist/types/task/discovery.d.ts +19 -0
  696. package/dist/types/task/executor.d.ts +113 -0
  697. package/dist/types/task/fork-context-advisory.d.ts +13 -0
  698. package/dist/types/task/id.d.ts +7 -0
  699. package/dist/types/task/index.d.ts +43 -0
  700. package/dist/types/task/jwc-command.d.ts +7 -0
  701. package/dist/types/task/model-presets.d.ts +17 -0
  702. package/dist/types/task/name-generator.d.ts +16 -0
  703. package/dist/types/task/output-manager.d.ts +36 -0
  704. package/dist/types/task/parallel.d.ts +34 -0
  705. package/dist/types/task/receipt.d.ts +86 -0
  706. package/dist/types/task/render.d.ts +28 -0
  707. package/dist/types/task/roi-reconciliation.d.ts +27 -0
  708. package/dist/types/task/simple-mode.d.ts +8 -0
  709. package/dist/types/task/spawn-gate.d.ts +38 -0
  710. package/dist/types/task/subprocess-tool-registry.d.ts +72 -0
  711. package/dist/types/task/types.d.ts +506 -0
  712. package/dist/types/task/worktree.d.ts +94 -0
  713. package/dist/types/thinking.d.ts +31 -0
  714. package/dist/types/tool-discovery/tool-index.d.ts +113 -0
  715. package/dist/types/tools/archive-reader.d.ts +40 -0
  716. package/dist/types/tools/ask.d.ts +152 -0
  717. package/dist/types/tools/ast-edit.d.ts +77 -0
  718. package/dist/types/tools/ast-grep.d.ts +69 -0
  719. package/dist/types/tools/auto-generated-guard.d.ts +17 -0
  720. package/dist/types/tools/background.d.ts +124 -0
  721. package/dist/types/tools/bash-allowed-prefixes.d.ts +5 -0
  722. package/dist/types/tools/bash-command-fixup.d.ts +11 -0
  723. package/dist/types/tools/bash-interactive.d.ts +16 -0
  724. package/dist/types/tools/bash-interceptor.d.ts +24 -0
  725. package/dist/types/tools/bash-pty-selection.d.ts +7 -0
  726. package/dist/types/tools/bash-skill-urls.d.ts +31 -0
  727. package/dist/types/tools/bash.d.ts +156 -0
  728. package/dist/types/tools/browser/actions.d.ts +54 -0
  729. package/dist/types/tools/browser/attach.d.ts +34 -0
  730. package/dist/types/tools/browser/launch.d.ts +62 -0
  731. package/dist/types/tools/browser/readable.d.ts +17 -0
  732. package/dist/types/tools/browser/registry.d.ts +42 -0
  733. package/dist/types/tools/browser/render.d.ts +50 -0
  734. package/dist/types/tools/browser/tab-protocol.d.ts +144 -0
  735. package/dist/types/tools/browser/tab-supervisor.d.ts +63 -0
  736. package/dist/types/tools/browser/tab-worker-entry.d.ts +1 -0
  737. package/dist/types/tools/browser/tab-worker.d.ts +19 -0
  738. package/dist/types/tools/browser.d.ts +194 -0
  739. package/dist/types/tools/calculator.d.ts +76 -0
  740. package/dist/types/tools/checkpoint.d.ts +63 -0
  741. package/dist/types/tools/computer-use-backend.d.ts +6 -0
  742. package/dist/types/tools/computer-use.d.ts +100 -0
  743. package/dist/types/tools/conflict-detect.d.ts +205 -0
  744. package/dist/types/tools/context.d.ts +19 -0
  745. package/dist/types/tools/cron.d.ts +116 -0
  746. package/dist/types/tools/debug.d.ts +209 -0
  747. package/dist/types/tools/eval.d.ts +108 -0
  748. package/dist/types/tools/fetch.d.ts +61 -0
  749. package/dist/types/tools/file-recorder.d.ts +13 -0
  750. package/dist/types/tools/find.d.ts +95 -0
  751. package/dist/types/tools/fs-cache-invalidation.d.ts +15 -0
  752. package/dist/types/tools/gh-format.d.ts +6 -0
  753. package/dist/types/tools/gh-renderer.d.ts +25 -0
  754. package/dist/types/tools/gh.d.ts +356 -0
  755. package/dist/types/tools/github-cache.d.ts +103 -0
  756. package/dist/types/tools/grouped-file-output.d.ts +36 -0
  757. package/dist/types/tools/hindsight-recall.d.ts +21 -0
  758. package/dist/types/tools/hindsight-reflect.d.ts +23 -0
  759. package/dist/types/tools/hindsight-retain.d.ts +27 -0
  760. package/dist/types/tools/image-gen.d.ts +79 -0
  761. package/dist/types/tools/index.d.ts +281 -0
  762. package/dist/types/tools/inspect-image-renderer.d.ts +26 -0
  763. package/dist/types/tools/inspect-image.d.ts +31 -0
  764. package/dist/types/tools/irc.d.ts +79 -0
  765. package/dist/types/tools/job.d.ts +65 -0
  766. package/dist/types/tools/json-tree.d.ts +23 -0
  767. package/dist/types/tools/jtd-to-json-schema.d.ts +29 -0
  768. package/dist/types/tools/jtd-to-typescript.d.ts +26 -0
  769. package/dist/types/tools/jtd-utils.d.ts +42 -0
  770. package/dist/types/tools/list-limit.d.ts +12 -0
  771. package/dist/types/tools/match-line-format.d.ts +11 -0
  772. package/dist/types/tools/monitor.d.ts +65 -0
  773. package/dist/types/tools/output-meta.d.ts +204 -0
  774. package/dist/types/tools/path-utils.d.ts +147 -0
  775. package/dist/types/tools/plan-mode-guard.d.ts +18 -0
  776. package/dist/types/tools/read.d.ts +85 -0
  777. package/dist/types/tools/recipe/index.d.ts +45 -0
  778. package/dist/types/tools/recipe/render.d.ts +36 -0
  779. package/dist/types/tools/recipe/runner.d.ts +60 -0
  780. package/dist/types/tools/recipe/runners/cargo.d.ts +16 -0
  781. package/dist/types/tools/recipe/runners/index.d.ts +2 -0
  782. package/dist/types/tools/recipe/runners/just.d.ts +2 -0
  783. package/dist/types/tools/recipe/runners/make.d.ts +2 -0
  784. package/dist/types/tools/recipe/runners/pkg.d.ts +2 -0
  785. package/dist/types/tools/recipe/runners/task.d.ts +2 -0
  786. package/dist/types/tools/render-mermaid.d.ts +37 -0
  787. package/dist/types/tools/render-utils.d.ts +158 -0
  788. package/dist/types/tools/renderers.d.ts +26 -0
  789. package/dist/types/tools/resolve.d.ts +90 -0
  790. package/dist/types/tools/review.d.ts +63 -0
  791. package/dist/types/tools/search-tool-bm25.d.ts +65 -0
  792. package/dist/types/tools/search.d.ts +93 -0
  793. package/dist/types/tools/skill.d.ts +47 -0
  794. package/dist/types/tools/sqlite-reader.d.ts +93 -0
  795. package/dist/types/tools/ssh.d.ts +67 -0
  796. package/dist/types/tools/subagent-render.d.ts +25 -0
  797. package/dist/types/tools/subagent.d.ts +87 -0
  798. package/dist/types/tools/telegram-send.d.ts +53 -0
  799. package/dist/types/tools/todo-write.d.ts +120 -0
  800. package/dist/types/tools/tool-errors.d.ts +33 -0
  801. package/dist/types/tools/tool-result.d.ts +30 -0
  802. package/dist/types/tools/tool-timeouts.d.ts +51 -0
  803. package/dist/types/tools/vim.d.ts +58 -0
  804. package/dist/types/tools/write.d.ts +59 -0
  805. package/dist/types/tools/yield.d.ts +25 -0
  806. package/dist/types/tui/code-cell.d.ts +32 -0
  807. package/dist/types/tui/file-list.d.ts +22 -0
  808. package/dist/types/tui/hyperlink.d.ts +42 -0
  809. package/dist/types/tui/index.d.ts +11 -0
  810. package/dist/types/tui/output-block.d.ts +28 -0
  811. package/dist/types/tui/status-line.d.ts +18 -0
  812. package/dist/types/tui/tree-list.d.ts +19 -0
  813. package/dist/types/tui/types.d.ts +13 -0
  814. package/dist/types/tui/utils.d.ts +36 -0
  815. package/dist/types/utils/changelog.d.ts +36 -0
  816. package/dist/types/utils/clipboard.d.ts +22 -0
  817. package/dist/types/utils/command-args.d.ts +9 -0
  818. package/dist/types/utils/commit-message-generator.d.ts +7 -0
  819. package/dist/types/utils/edit-mode.d.ts +13 -0
  820. package/dist/types/utils/event-bus.d.ts +6 -0
  821. package/dist/types/utils/external-editor.d.ts +17 -0
  822. package/dist/types/utils/file-display-mode.d.ts +27 -0
  823. package/dist/types/utils/file-mentions.d.ts +11 -0
  824. package/dist/types/utils/git.d.ts +361 -0
  825. package/dist/types/utils/image-loading.d.ts +26 -0
  826. package/dist/types/utils/image-resize.d.ts +39 -0
  827. package/dist/types/utils/lang-from-path.d.ts +8 -0
  828. package/dist/types/utils/markit.d.ts +7 -0
  829. package/dist/types/utils/open.d.ts +2 -0
  830. package/dist/types/utils/session-color.d.ts +10 -0
  831. package/dist/types/utils/shell-snapshot.d.ts +5 -0
  832. package/dist/types/utils/sixel.d.ts +21 -0
  833. package/dist/types/utils/title-generator.d.ts +31 -0
  834. package/dist/types/utils/tokenizer-download.d.ts +4 -0
  835. package/dist/types/utils/tokenizer-encoding.d.ts +7 -0
  836. package/dist/types/utils/tool-choice.d.ts +20 -0
  837. package/dist/types/utils/tools-manager.d.ts +9 -0
  838. package/dist/types/vim/buffer.d.ts +41 -0
  839. package/dist/types/vim/commands.d.ts +6 -0
  840. package/dist/types/vim/engine.d.ts +47 -0
  841. package/dist/types/vim/parser.d.ts +3 -0
  842. package/dist/types/vim/render.d.ts +25 -0
  843. package/dist/types/vim/types.d.ts +182 -0
  844. package/dist/types/web/kagi.d.ts +23 -0
  845. package/dist/types/web/parallel.d.ts +58 -0
  846. package/dist/types/web/public-fetch-url.d.ts +1 -0
  847. package/dist/types/web/scrapers/artifacthub.d.ts +6 -0
  848. package/dist/types/web/scrapers/arxiv.d.ts +5 -0
  849. package/dist/types/web/scrapers/aur.d.ts +5 -0
  850. package/dist/types/web/scrapers/biorxiv.d.ts +5 -0
  851. package/dist/types/web/scrapers/bluesky.d.ts +5 -0
  852. package/dist/types/web/scrapers/brew.d.ts +5 -0
  853. package/dist/types/web/scrapers/cheatsh.d.ts +8 -0
  854. package/dist/types/web/scrapers/chocolatey.d.ts +5 -0
  855. package/dist/types/web/scrapers/choosealicense.d.ts +2 -0
  856. package/dist/types/web/scrapers/cisa-kev.d.ts +5 -0
  857. package/dist/types/web/scrapers/clojars.d.ts +5 -0
  858. package/dist/types/web/scrapers/coingecko.d.ts +5 -0
  859. package/dist/types/web/scrapers/crates-io.d.ts +5 -0
  860. package/dist/types/web/scrapers/crossref.d.ts +2 -0
  861. package/dist/types/web/scrapers/devto.d.ts +5 -0
  862. package/dist/types/web/scrapers/discogs.d.ts +8 -0
  863. package/dist/types/web/scrapers/discourse.d.ts +5 -0
  864. package/dist/types/web/scrapers/dockerhub.d.ts +5 -0
  865. package/dist/types/web/scrapers/docs-rs.d.ts +2 -0
  866. package/dist/types/web/scrapers/fdroid.d.ts +5 -0
  867. package/dist/types/web/scrapers/firefox-addons.d.ts +2 -0
  868. package/dist/types/web/scrapers/flathub.d.ts +2 -0
  869. package/dist/types/web/scrapers/github-gist.d.ts +5 -0
  870. package/dist/types/web/scrapers/github.d.ts +12 -0
  871. package/dist/types/web/scrapers/gitlab.d.ts +5 -0
  872. package/dist/types/web/scrapers/go-pkg.d.ts +5 -0
  873. package/dist/types/web/scrapers/hackage.d.ts +5 -0
  874. package/dist/types/web/scrapers/hackernews.d.ts +2 -0
  875. package/dist/types/web/scrapers/hex.d.ts +5 -0
  876. package/dist/types/web/scrapers/huggingface.d.ts +2 -0
  877. package/dist/types/web/scrapers/iacr.d.ts +5 -0
  878. package/dist/types/web/scrapers/index.d.ts +84 -0
  879. package/dist/types/web/scrapers/jetbrains-marketplace.d.ts +2 -0
  880. package/dist/types/web/scrapers/lemmy.d.ts +2 -0
  881. package/dist/types/web/scrapers/lobsters.d.ts +5 -0
  882. package/dist/types/web/scrapers/mastodon.d.ts +5 -0
  883. package/dist/types/web/scrapers/maven.d.ts +6 -0
  884. package/dist/types/web/scrapers/mdn.d.ts +2 -0
  885. package/dist/types/web/scrapers/metacpan.d.ts +5 -0
  886. package/dist/types/web/scrapers/musicbrainz.d.ts +5 -0
  887. package/dist/types/web/scrapers/npm.d.ts +5 -0
  888. package/dist/types/web/scrapers/nuget.d.ts +5 -0
  889. package/dist/types/web/scrapers/nvd.d.ts +5 -0
  890. package/dist/types/web/scrapers/ollama.d.ts +2 -0
  891. package/dist/types/web/scrapers/open-vsx.d.ts +5 -0
  892. package/dist/types/web/scrapers/opencorporates.d.ts +5 -0
  893. package/dist/types/web/scrapers/openlibrary.d.ts +5 -0
  894. package/dist/types/web/scrapers/orcid.d.ts +5 -0
  895. package/dist/types/web/scrapers/osv.d.ts +5 -0
  896. package/dist/types/web/scrapers/packagist.d.ts +5 -0
  897. package/dist/types/web/scrapers/pub-dev.d.ts +5 -0
  898. package/dist/types/web/scrapers/pubmed.d.ts +5 -0
  899. package/dist/types/web/scrapers/pypi.d.ts +5 -0
  900. package/dist/types/web/scrapers/rawg.d.ts +2 -0
  901. package/dist/types/web/scrapers/readthedocs.d.ts +2 -0
  902. package/dist/types/web/scrapers/reddit.d.ts +5 -0
  903. package/dist/types/web/scrapers/repology.d.ts +5 -0
  904. package/dist/types/web/scrapers/rfc.d.ts +5 -0
  905. package/dist/types/web/scrapers/rubygems.d.ts +5 -0
  906. package/dist/types/web/scrapers/searchcode.d.ts +2 -0
  907. package/dist/types/web/scrapers/sec-edgar.d.ts +5 -0
  908. package/dist/types/web/scrapers/semantic-scholar.d.ts +2 -0
  909. package/dist/types/web/scrapers/snapcraft.d.ts +2 -0
  910. package/dist/types/web/scrapers/sourcegraph.d.ts +2 -0
  911. package/dist/types/web/scrapers/spdx.d.ts +5 -0
  912. package/dist/types/web/scrapers/spotify.d.ts +8 -0
  913. package/dist/types/web/scrapers/stackoverflow.d.ts +6 -0
  914. package/dist/types/web/scrapers/terraform.d.ts +5 -0
  915. package/dist/types/web/scrapers/tldr.d.ts +7 -0
  916. package/dist/types/web/scrapers/twitter.d.ts +5 -0
  917. package/dist/types/web/scrapers/types.d.ts +78 -0
  918. package/dist/types/web/scrapers/utils.d.ts +26 -0
  919. package/dist/types/web/scrapers/vimeo.d.ts +5 -0
  920. package/dist/types/web/scrapers/vscode-marketplace.d.ts +5 -0
  921. package/dist/types/web/scrapers/w3c.d.ts +2 -0
  922. package/dist/types/web/scrapers/wikidata.d.ts +5 -0
  923. package/dist/types/web/scrapers/wikipedia.d.ts +5 -0
  924. package/dist/types/web/scrapers/youtube.d.ts +5 -0
  925. package/dist/types/web/search/index.d.ts +95 -0
  926. package/dist/types/web/search/provider.d.ts +35 -0
  927. package/dist/types/web/search/providers/anthropic.d.ts +32 -0
  928. package/dist/types/web/search/providers/base.d.ts +90 -0
  929. package/dist/types/web/search/providers/brave.d.ts +27 -0
  930. package/dist/types/web/search/providers/codex.d.ts +35 -0
  931. package/dist/types/web/search/providers/duckduckgo.d.ts +57 -0
  932. package/dist/types/web/search/providers/exa.d.ts +52 -0
  933. package/dist/types/web/search/providers/gemini.d.ts +59 -0
  934. package/dist/types/web/search/providers/jina.d.ts +26 -0
  935. package/dist/types/web/search/providers/kagi.d.ts +24 -0
  936. package/dist/types/web/search/providers/kimi.d.ts +27 -0
  937. package/dist/types/web/search/providers/parallel.d.ts +15 -0
  938. package/dist/types/web/search/providers/perplexity.d.ts +38 -0
  939. package/dist/types/web/search/providers/searxng.d.ts +44 -0
  940. package/dist/types/web/search/providers/synthetic.d.ts +21 -0
  941. package/dist/types/web/search/providers/tavily.d.ts +29 -0
  942. package/dist/types/web/search/providers/utils.d.ts +52 -0
  943. package/dist/types/web/search/providers/xai.d.ts +62 -0
  944. package/dist/types/web/search/providers/zai.d.ts +28 -0
  945. package/dist/types/web/search/render.d.ts +35 -0
  946. package/dist/types/web/search/types.d.ts +348 -0
  947. package/dist/types/web/search/utils.d.ts +4 -0
  948. package/dist/types/workspace-tree.d.ts +42 -0
  949. package/examples/README.md +21 -0
  950. package/examples/custom-tools/README.md +104 -0
  951. package/examples/custom-tools/hello/index.ts +20 -0
  952. package/examples/extensions/README.md +120 -0
  953. package/examples/extensions/api-demo.ts +79 -0
  954. package/examples/extensions/chalk-logger.ts +25 -0
  955. package/examples/extensions/hello.ts +31 -0
  956. package/examples/extensions/pirate.ts +43 -0
  957. package/examples/extensions/plan-mode.ts +549 -0
  958. package/examples/extensions/reload-runtime.ts +38 -0
  959. package/examples/extensions/tools.ts +144 -0
  960. package/examples/extensions/with-deps/index.ts +36 -0
  961. package/examples/extensions/with-deps/package-lock.json +31 -0
  962. package/examples/extensions/with-deps/package.json +16 -0
  963. package/examples/hooks/README.md +56 -0
  964. package/examples/hooks/auto-commit-on-exit.ts +48 -0
  965. package/examples/hooks/confirm-destructive.ts +58 -0
  966. package/examples/hooks/custom-compaction.ts +115 -0
  967. package/examples/hooks/dirty-repo-guard.ts +51 -0
  968. package/examples/hooks/file-trigger.ts +40 -0
  969. package/examples/hooks/git-checkpoint.ts +52 -0
  970. package/examples/hooks/handoff.ts +149 -0
  971. package/examples/hooks/permission-gate.ts +33 -0
  972. package/examples/hooks/protected-paths.ts +29 -0
  973. package/examples/hooks/qna.ts +118 -0
  974. package/examples/hooks/status-line.ts +39 -0
  975. package/examples/sdk/01-minimal.ts +21 -0
  976. package/examples/sdk/02-custom-model.ts +49 -0
  977. package/examples/sdk/03-custom-prompt.ts +46 -0
  978. package/examples/sdk/04-skills.ts +43 -0
  979. package/examples/sdk/06-extensions.ts +82 -0
  980. package/examples/sdk/06-hooks.ts +61 -0
  981. package/examples/sdk/07-context-files.ts +35 -0
  982. package/examples/sdk/08-prompt-templates.ts +41 -0
  983. package/examples/sdk/08-slash-commands.ts +46 -0
  984. package/examples/sdk/09-api-keys-and-oauth.ts +54 -0
  985. package/examples/sdk/11-sessions.ts +47 -0
  986. package/examples/sdk/README.md +172 -0
  987. package/package.json +539 -0
  988. package/scripts/build-binary.ts +84 -0
  989. package/scripts/format-prompts.ts +68 -0
  990. package/scripts/generate-docs-index.ts +71 -0
  991. package/scripts/generate-template.ts +33 -0
  992. package/src/async/index.ts +2 -0
  993. package/src/async/job-manager.ts +1299 -0
  994. package/src/async/support.ts +6 -0
  995. package/src/autoresearch/command-resume.md +14 -0
  996. package/src/autoresearch/dashboard.ts +446 -0
  997. package/src/autoresearch/git.ts +319 -0
  998. package/src/autoresearch/helpers.ts +218 -0
  999. package/src/autoresearch/index.ts +536 -0
  1000. package/src/autoresearch/prompt-setup.md +43 -0
  1001. package/src/autoresearch/prompt.md +103 -0
  1002. package/src/autoresearch/resume-message.md +10 -0
  1003. package/src/autoresearch/state.ts +273 -0
  1004. package/src/autoresearch/storage.ts +699 -0
  1005. package/src/autoresearch/tools/init-experiment.ts +272 -0
  1006. package/src/autoresearch/tools/log-experiment.ts +524 -0
  1007. package/src/autoresearch/tools/run-experiment.ts +475 -0
  1008. package/src/autoresearch/tools/update-notes.ts +109 -0
  1009. package/src/autoresearch/types.ts +168 -0
  1010. package/src/bun-imports.d.ts +28 -0
  1011. package/src/capability/context-file.ts +44 -0
  1012. package/src/capability/extension-module.ts +34 -0
  1013. package/src/capability/extension.ts +47 -0
  1014. package/src/capability/fs.ts +107 -0
  1015. package/src/capability/hook.ts +40 -0
  1016. package/src/capability/index.ts +436 -0
  1017. package/src/capability/instruction.ts +37 -0
  1018. package/src/capability/mcp.ts +74 -0
  1019. package/src/capability/prompt.ts +35 -0
  1020. package/src/capability/rule.ts +244 -0
  1021. package/src/capability/settings.ts +34 -0
  1022. package/src/capability/skill.ts +56 -0
  1023. package/src/capability/slash-command.ts +40 -0
  1024. package/src/capability/ssh.ts +41 -0
  1025. package/src/capability/system-prompt.ts +34 -0
  1026. package/src/capability/tool.ts +38 -0
  1027. package/src/capability/types.ts +168 -0
  1028. package/src/cli/agents-cli.ts +141 -0
  1029. package/src/cli/args.ts +309 -0
  1030. package/src/cli/auth-broker-cli.ts +747 -0
  1031. package/src/cli/auth-gateway-cli.ts +411 -0
  1032. package/src/cli/classify-install-target.ts +50 -0
  1033. package/src/cli/commands/init-xdg.ts +27 -0
  1034. package/src/cli/config-cli.ts +426 -0
  1035. package/src/cli/fast-help.ts +80 -0
  1036. package/src/cli/file-processor.ts +123 -0
  1037. package/src/cli/grep-cli.ts +160 -0
  1038. package/src/cli/initial-message.ts +58 -0
  1039. package/src/cli/list-models.ts +194 -0
  1040. package/src/cli/notify-cli.ts +135 -0
  1041. package/src/cli/plugin-cli.ts +942 -0
  1042. package/src/cli/read-cli.ts +57 -0
  1043. package/src/cli/session-picker.ts +52 -0
  1044. package/src/cli/setup-cli.ts +537 -0
  1045. package/src/cli/shell-cli.ts +176 -0
  1046. package/src/cli/skills-cli.ts +88 -0
  1047. package/src/cli/ssh-cli.ts +179 -0
  1048. package/src/cli/stats-cli.ts +238 -0
  1049. package/src/cli/update-cli.ts +468 -0
  1050. package/src/cli/web-search-cli.ts +133 -0
  1051. package/src/cli/worktree-cli.ts +291 -0
  1052. package/src/cli.ts +150 -0
  1053. package/src/commands/acp.ts +24 -0
  1054. package/src/commands/agents.ts +57 -0
  1055. package/src/commands/auth-broker.ts +96 -0
  1056. package/src/commands/auth-gateway.ts +63 -0
  1057. package/src/commands/chat.ts +25 -0
  1058. package/src/commands/codex-native-hook.ts +12 -0
  1059. package/src/commands/commit.ts +46 -0
  1060. package/src/commands/config.ts +51 -0
  1061. package/src/commands/contribution-prep.ts +41 -0
  1062. package/src/commands/coordinator.ts +71 -0
  1063. package/src/commands/goal.ts +37 -0
  1064. package/src/commands/grep.ts +48 -0
  1065. package/src/commands/harness.ts +1137 -0
  1066. package/src/commands/interview.ts +42 -0
  1067. package/src/commands/launch.ts +178 -0
  1068. package/src/commands/mcp-serve.ts +63 -0
  1069. package/src/commands/memory.ts +34 -0
  1070. package/src/commands/notify.ts +45 -0
  1071. package/src/commands/orchestrate.ts +55 -0
  1072. package/src/commands/planphase.ts +19 -0
  1073. package/src/commands/plugin.ts +78 -0
  1074. package/src/commands/ralplan.ts +25 -0
  1075. package/src/commands/read.ts +35 -0
  1076. package/src/commands/session.ts +151 -0
  1077. package/src/commands/setup.ts +85 -0
  1078. package/src/commands/shell.ts +29 -0
  1079. package/src/commands/skills.ts +49 -0
  1080. package/src/commands/ssh.ts +60 -0
  1081. package/src/commands/state.ts +25 -0
  1082. package/src/commands/stats.ts +29 -0
  1083. package/src/commands/team.ts +217 -0
  1084. package/src/commands/ultragoal.ts +40 -0
  1085. package/src/commands/update.ts +21 -0
  1086. package/src/commands/web-search.ts +42 -0
  1087. package/src/commands/worktree.ts +57 -0
  1088. package/src/commit/agentic/agent.ts +316 -0
  1089. package/src/commit/agentic/fallback.ts +96 -0
  1090. package/src/commit/agentic/index.ts +356 -0
  1091. package/src/commit/agentic/prompts/analyze-file.md +22 -0
  1092. package/src/commit/agentic/prompts/session-user.md +25 -0
  1093. package/src/commit/agentic/prompts/split-confirm.md +1 -0
  1094. package/src/commit/agentic/prompts/system.md +38 -0
  1095. package/src/commit/agentic/state.ts +60 -0
  1096. package/src/commit/agentic/tools/analyze-file.ts +127 -0
  1097. package/src/commit/agentic/tools/git-file-diff.ts +191 -0
  1098. package/src/commit/agentic/tools/git-hunk.ts +50 -0
  1099. package/src/commit/agentic/tools/git-overview.ts +81 -0
  1100. package/src/commit/agentic/tools/index.ts +54 -0
  1101. package/src/commit/agentic/tools/propose-changelog.ts +144 -0
  1102. package/src/commit/agentic/tools/propose-commit.ts +109 -0
  1103. package/src/commit/agentic/tools/recent-commits.ts +81 -0
  1104. package/src/commit/agentic/tools/schemas.ts +23 -0
  1105. package/src/commit/agentic/tools/split-commit.ts +238 -0
  1106. package/src/commit/agentic/topo-sort.ts +44 -0
  1107. package/src/commit/agentic/trivial.ts +51 -0
  1108. package/src/commit/agentic/validation.ts +183 -0
  1109. package/src/commit/analysis/conventional.ts +64 -0
  1110. package/src/commit/analysis/index.ts +4 -0
  1111. package/src/commit/analysis/scope.ts +242 -0
  1112. package/src/commit/analysis/summary.ts +105 -0
  1113. package/src/commit/analysis/validation.ts +66 -0
  1114. package/src/commit/changelog/detect.ts +40 -0
  1115. package/src/commit/changelog/generate.ts +97 -0
  1116. package/src/commit/changelog/index.ts +234 -0
  1117. package/src/commit/changelog/parse.ts +44 -0
  1118. package/src/commit/cli.ts +85 -0
  1119. package/src/commit/git/diff.ts +148 -0
  1120. package/src/commit/index.ts +5 -0
  1121. package/src/commit/map-reduce/index.ts +69 -0
  1122. package/src/commit/map-reduce/map-phase.ts +193 -0
  1123. package/src/commit/map-reduce/reduce-phase.ts +49 -0
  1124. package/src/commit/map-reduce/utils.ts +9 -0
  1125. package/src/commit/message.ts +11 -0
  1126. package/src/commit/model-selection.ts +51 -0
  1127. package/src/commit/pipeline.ts +244 -0
  1128. package/src/commit/prompts/analysis-system.md +148 -0
  1129. package/src/commit/prompts/analysis-user.md +38 -0
  1130. package/src/commit/prompts/changelog-system.md +50 -0
  1131. package/src/commit/prompts/changelog-user.md +18 -0
  1132. package/src/commit/prompts/file-observer-system.md +24 -0
  1133. package/src/commit/prompts/file-observer-user.md +8 -0
  1134. package/src/commit/prompts/reduce-system.md +50 -0
  1135. package/src/commit/prompts/reduce-user.md +17 -0
  1136. package/src/commit/prompts/summary-retry.md +3 -0
  1137. package/src/commit/prompts/summary-system.md +38 -0
  1138. package/src/commit/prompts/summary-user.md +13 -0
  1139. package/src/commit/prompts/types-description.md +2 -0
  1140. package/src/commit/shared-llm.ts +77 -0
  1141. package/src/commit/types.ts +118 -0
  1142. package/src/commit/utils/exclusions.ts +42 -0
  1143. package/src/commit/utils.ts +58 -0
  1144. package/src/config/config-file.ts +232 -0
  1145. package/src/config/file-lock.ts +121 -0
  1146. package/src/config/keybindings.ts +553 -0
  1147. package/src/config/mcp-schema.json +230 -0
  1148. package/src/config/model-equivalence.ts +816 -0
  1149. package/src/config/model-profile-activation.ts +165 -0
  1150. package/src/config/model-profiles.ts +188 -0
  1151. package/src/config/model-registry.ts +2751 -0
  1152. package/src/config/model-resolver.ts +1355 -0
  1153. package/src/config/models-config-schema.ts +254 -0
  1154. package/src/config/oauth-provider-aliases.ts +49 -0
  1155. package/src/config/prompt-templates.ts +310 -0
  1156. package/src/config/resolve-config-value.ts +94 -0
  1157. package/src/config/settings-schema.ts +3235 -0
  1158. package/src/config/settings.ts +979 -0
  1159. package/src/config/skill-settings-defaults.ts +35 -0
  1160. package/src/config.ts +212 -0
  1161. package/src/coordinator/contract.ts +20 -0
  1162. package/src/coordinator-mcp/policy.ts +174 -0
  1163. package/src/coordinator-mcp/safety.ts +80 -0
  1164. package/src/coordinator-mcp/server.ts +1319 -0
  1165. package/src/cursor.ts +372 -0
  1166. package/src/dap/client.ts +689 -0
  1167. package/src/dap/config.ts +150 -0
  1168. package/src/dap/defaults.json +211 -0
  1169. package/src/dap/index.ts +4 -0
  1170. package/src/dap/session.ts +1306 -0
  1171. package/src/dap/types.ts +600 -0
  1172. package/src/debug/crash-diagnostics.ts +223 -0
  1173. package/src/debug/index.ts +459 -0
  1174. package/src/debug/log-formatting.ts +58 -0
  1175. package/src/debug/log-viewer.ts +908 -0
  1176. package/src/debug/profiler.ts +162 -0
  1177. package/src/debug/raw-sse-buffer.ts +270 -0
  1178. package/src/debug/raw-sse.ts +213 -0
  1179. package/src/debug/report-bundle.ts +365 -0
  1180. package/src/debug/runtime-gauges.ts +20 -0
  1181. package/src/debug/system-info.ts +111 -0
  1182. package/src/defaults/jwc/mcp-defaults.json +8 -0
  1183. package/src/defaults/jwc/skill-fragments/browse/web-ai.md +130 -0
  1184. package/src/defaults/jwc/skills/browse/SKILL.md +113 -0
  1185. package/src/defaults/jwc/skills/goal/SKILL.md +323 -0
  1186. package/src/defaults/jwc/skills/goal/ai-slop-cleaner.md +61 -0
  1187. package/src/defaults/jwc/skills/jaw-interview/SKILL.md +891 -0
  1188. package/src/defaults/jwc/skills/jaw-interview/auto-answer-uncertain.md +37 -0
  1189. package/src/defaults/jwc/skills/jaw-interview/auto-research-greenfield.md +42 -0
  1190. package/src/defaults/jwc/skills/plan/SKILL.md +201 -0
  1191. package/src/defaults/jwc/skills/search/SKILL.md +120 -0
  1192. package/src/defaults/jwc/skills/team/SKILL.md +441 -0
  1193. package/src/defaults/jwc-defaults.ts +316 -0
  1194. package/src/discovery/agents-md.ts +67 -0
  1195. package/src/discovery/agents.ts +230 -0
  1196. package/src/discovery/builtin.ts +932 -0
  1197. package/src/discovery/claude-plugins.ts +407 -0
  1198. package/src/discovery/claude.ts +313 -0
  1199. package/src/discovery/cli-jaw.ts +36 -0
  1200. package/src/discovery/cline.ts +83 -0
  1201. package/src/discovery/codex.ts +330 -0
  1202. package/src/discovery/cursor.ts +220 -0
  1203. package/src/discovery/gemini.ts +383 -0
  1204. package/src/discovery/github.ts +118 -0
  1205. package/src/discovery/helpers.ts +1010 -0
  1206. package/src/discovery/index.ts +77 -0
  1207. package/src/discovery/mcp-json.ts +171 -0
  1208. package/src/discovery/opencode.ts +398 -0
  1209. package/src/discovery/plugin-dir-roots.ts +28 -0
  1210. package/src/discovery/ssh.ts +153 -0
  1211. package/src/discovery/substitute-plugin-root.ts +29 -0
  1212. package/src/discovery/vscode.ts +105 -0
  1213. package/src/discovery/windsurf.ts +147 -0
  1214. package/src/edit/apply-patch/index.ts +87 -0
  1215. package/src/edit/apply-patch/parser.ts +174 -0
  1216. package/src/edit/diff.ts +873 -0
  1217. package/src/edit/file-read-cache.ts +95 -0
  1218. package/src/edit/index.ts +528 -0
  1219. package/src/edit/modes/apply-patch.lark +19 -0
  1220. package/src/edit/modes/apply-patch.ts +53 -0
  1221. package/src/edit/modes/patch.ts +1835 -0
  1222. package/src/edit/modes/replace.ts +1161 -0
  1223. package/src/edit/normalize.ts +375 -0
  1224. package/src/edit/notebook.ts +222 -0
  1225. package/src/edit/read-file.ts +25 -0
  1226. package/src/edit/renderer.ts +683 -0
  1227. package/src/edit/streaming.ts +561 -0
  1228. package/src/eval/backend.ts +43 -0
  1229. package/src/eval/index.ts +4 -0
  1230. package/src/eval/js/context-manager.ts +414 -0
  1231. package/src/eval/js/executor.ts +134 -0
  1232. package/src/eval/js/index.ts +46 -0
  1233. package/src/eval/js/shared/helpers.ts +237 -0
  1234. package/src/eval/js/shared/indirect-eval.ts +30 -0
  1235. package/src/eval/js/shared/prelude.ts +2 -0
  1236. package/src/eval/js/shared/prelude.txt +70 -0
  1237. package/src/eval/js/shared/rewrite-imports.ts +415 -0
  1238. package/src/eval/js/shared/runtime.ts +301 -0
  1239. package/src/eval/js/shared/types.ts +18 -0
  1240. package/src/eval/js/tool-bridge.ts +144 -0
  1241. package/src/eval/js/worker-core.ts +146 -0
  1242. package/src/eval/js/worker-entry.ts +24 -0
  1243. package/src/eval/js/worker-protocol.ts +41 -0
  1244. package/src/eval/py/display.ts +71 -0
  1245. package/src/eval/py/executor.ts +622 -0
  1246. package/src/eval/py/index.ts +58 -0
  1247. package/src/eval/py/kernel.ts +683 -0
  1248. package/src/eval/py/prelude.py +462 -0
  1249. package/src/eval/py/prelude.ts +3 -0
  1250. package/src/eval/py/runner.py +910 -0
  1251. package/src/eval/py/runtime.ts +210 -0
  1252. package/src/eval/py/tool-bridge.ts +137 -0
  1253. package/src/eval/types.ts +48 -0
  1254. package/src/exa/factory.ts +60 -0
  1255. package/src/exa/index.ts +27 -0
  1256. package/src/exa/mcp-client.ts +364 -0
  1257. package/src/exa/render.ts +244 -0
  1258. package/src/exa/researcher.ts +36 -0
  1259. package/src/exa/search.ts +47 -0
  1260. package/src/exa/types.ts +166 -0
  1261. package/src/exa/websets.ts +248 -0
  1262. package/src/exec/bash-executor.ts +362 -0
  1263. package/src/exec/exec.ts +53 -0
  1264. package/src/exec/idle-timeout-watchdog.ts +126 -0
  1265. package/src/exec/non-interactive-env.ts +73 -0
  1266. package/src/export/custom-share.ts +65 -0
  1267. package/src/export/html/index.ts +168 -0
  1268. package/src/export/html/template.css +1060 -0
  1269. package/src/export/html/template.generated.ts +2 -0
  1270. package/src/export/html/template.html +47 -0
  1271. package/src/export/html/template.js +2268 -0
  1272. package/src/export/html/template.macro.ts +25 -0
  1273. package/src/export/html/vendor/highlight.min.js +1213 -0
  1274. package/src/export/html/vendor/marked.min.js +6 -0
  1275. package/src/export/ttsr.ts +444 -0
  1276. package/src/extensibility/custom-commands/bundled/ci-green/index.ts +25 -0
  1277. package/src/extensibility/custom-commands/bundled/review/index.ts +456 -0
  1278. package/src/extensibility/custom-commands/index.ts +2 -0
  1279. package/src/extensibility/custom-commands/loader.ts +238 -0
  1280. package/src/extensibility/custom-commands/types.ts +113 -0
  1281. package/src/extensibility/custom-tools/index.ts +7 -0
  1282. package/src/extensibility/custom-tools/loader.ts +245 -0
  1283. package/src/extensibility/custom-tools/types.ts +255 -0
  1284. package/src/extensibility/custom-tools/wrapper.ts +47 -0
  1285. package/src/extensibility/extensions/compact-handler.ts +40 -0
  1286. package/src/extensibility/extensions/get-commands-handler.ts +80 -0
  1287. package/src/extensibility/extensions/index.ts +15 -0
  1288. package/src/extensibility/extensions/loader.ts +555 -0
  1289. package/src/extensibility/extensions/runner.ts +900 -0
  1290. package/src/extensibility/extensions/types.ts +1314 -0
  1291. package/src/extensibility/extensions/wrapper.ts +189 -0
  1292. package/src/extensibility/hooks/index.ts +5 -0
  1293. package/src/extensibility/hooks/loader.ts +257 -0
  1294. package/src/extensibility/hooks/runner.ts +425 -0
  1295. package/src/extensibility/hooks/tool-wrapper.ts +107 -0
  1296. package/src/extensibility/hooks/types.ts +599 -0
  1297. package/src/extensibility/jwc-plugins/activation.ts +87 -0
  1298. package/src/extensibility/jwc-plugins/index.ts +9 -0
  1299. package/src/extensibility/jwc-plugins/injection.ts +114 -0
  1300. package/src/extensibility/jwc-plugins/loader.ts +131 -0
  1301. package/src/extensibility/jwc-plugins/paths.ts +66 -0
  1302. package/src/extensibility/jwc-plugins/schema.ts +79 -0
  1303. package/src/extensibility/jwc-plugins/state.ts +29 -0
  1304. package/src/extensibility/jwc-plugins/tools.ts +47 -0
  1305. package/src/extensibility/jwc-plugins/types.ts +97 -0
  1306. package/src/extensibility/jwc-plugins/validation.ts +76 -0
  1307. package/src/extensibility/plugins/doctor.ts +66 -0
  1308. package/src/extensibility/plugins/git-url.ts +281 -0
  1309. package/src/extensibility/plugins/index.ts +9 -0
  1310. package/src/extensibility/plugins/installer.ts +192 -0
  1311. package/src/extensibility/plugins/legacy-pi-compat.ts +336 -0
  1312. package/src/extensibility/plugins/loader.ts +288 -0
  1313. package/src/extensibility/plugins/manager.ts +739 -0
  1314. package/src/extensibility/plugins/marketplace/cache.ts +136 -0
  1315. package/src/extensibility/plugins/marketplace/fetcher.ts +317 -0
  1316. package/src/extensibility/plugins/marketplace/index.ts +6 -0
  1317. package/src/extensibility/plugins/marketplace/manager.ts +770 -0
  1318. package/src/extensibility/plugins/marketplace/registry.ts +196 -0
  1319. package/src/extensibility/plugins/marketplace/source-resolver.ts +147 -0
  1320. package/src/extensibility/plugins/marketplace/types.ts +191 -0
  1321. package/src/extensibility/plugins/parser.ts +105 -0
  1322. package/src/extensibility/plugins/types.ts +194 -0
  1323. package/src/extensibility/shared-events.ts +344 -0
  1324. package/src/extensibility/skills.ts +449 -0
  1325. package/src/extensibility/slash-commands.ts +249 -0
  1326. package/src/extensibility/tool-proxy.ts +25 -0
  1327. package/src/extensibility/typebox.ts +418 -0
  1328. package/src/extensibility/utils.ts +44 -0
  1329. package/src/goals/goal-planning-start.ts +21 -0
  1330. package/src/goals/index.ts +3 -0
  1331. package/src/goals/runtime.ts +418 -0
  1332. package/src/goals/state.ts +70 -0
  1333. package/src/goals/tools/goal-tool.ts +230 -0
  1334. package/src/harness-control-plane/classifier.ts +128 -0
  1335. package/src/harness-control-plane/control-endpoint.ts +148 -0
  1336. package/src/harness-control-plane/finalize.ts +306 -0
  1337. package/src/harness-control-plane/operate.ts +225 -0
  1338. package/src/harness-control-plane/owner.ts +664 -0
  1339. package/src/harness-control-plane/phase-rollup.ts +96 -0
  1340. package/src/harness-control-plane/preserve.ts +102 -0
  1341. package/src/harness-control-plane/receipt-ingest.ts +127 -0
  1342. package/src/harness-control-plane/receipt-spool.ts +147 -0
  1343. package/src/harness-control-plane/receipts.ts +320 -0
  1344. package/src/harness-control-plane/rpc-adapter.ts +282 -0
  1345. package/src/harness-control-plane/seams.ts +39 -0
  1346. package/src/harness-control-plane/session-lease.ts +388 -0
  1347. package/src/harness-control-plane/state-machine.ts +119 -0
  1348. package/src/harness-control-plane/storage.ts +423 -0
  1349. package/src/harness-control-plane/types.ts +240 -0
  1350. package/src/hashline/anchors.ts +113 -0
  1351. package/src/hashline/apply.ts +737 -0
  1352. package/src/hashline/bigrams.json +649 -0
  1353. package/src/hashline/constants.ts +25 -0
  1354. package/src/hashline/diff-preview.ts +43 -0
  1355. package/src/hashline/diff.ts +56 -0
  1356. package/src/hashline/execute.ts +267 -0
  1357. package/src/hashline/grammar.lark +21 -0
  1358. package/src/hashline/hash.ts +196 -0
  1359. package/src/hashline/index.ts +13 -0
  1360. package/src/hashline/input.ts +130 -0
  1361. package/src/hashline/parser.ts +246 -0
  1362. package/src/hashline/prefixes.ts +101 -0
  1363. package/src/hashline/recovery.ts +113 -0
  1364. package/src/hashline/stream.ts +123 -0
  1365. package/src/hashline/types.ts +68 -0
  1366. package/src/hindsight/backend.ts +205 -0
  1367. package/src/hindsight/bank.ts +131 -0
  1368. package/src/hindsight/client.ts +598 -0
  1369. package/src/hindsight/config.ts +175 -0
  1370. package/src/hindsight/content.ts +211 -0
  1371. package/src/hindsight/index.ts +8 -0
  1372. package/src/hindsight/mental-models.ts +382 -0
  1373. package/src/hindsight/seeds.json +32 -0
  1374. package/src/hindsight/state.ts +469 -0
  1375. package/src/hindsight/transcript.ts +71 -0
  1376. package/src/hooks/codex-native-hooks-config.ts +143 -0
  1377. package/src/hooks/native-skill-hook.ts +305 -0
  1378. package/src/hooks/skill-keywords.ts +95 -0
  1379. package/src/hooks/skill-state.ts +654 -0
  1380. package/src/index.ts +56 -0
  1381. package/src/internal-urls/agent-protocol.ts +176 -0
  1382. package/src/internal-urls/artifact-protocol.ts +75 -0
  1383. package/src/internal-urls/docs-index.generated.ts +92 -0
  1384. package/src/internal-urls/index.ts +21 -0
  1385. package/src/internal-urls/issue-pr-protocol.ts +577 -0
  1386. package/src/internal-urls/json-query.ts +126 -0
  1387. package/src/internal-urls/jwc-protocol.ts +91 -0
  1388. package/src/internal-urls/local-protocol.ts +249 -0
  1389. package/src/internal-urls/mcp-protocol.ts +151 -0
  1390. package/src/internal-urls/memory-protocol.ts +165 -0
  1391. package/src/internal-urls/parse.ts +72 -0
  1392. package/src/internal-urls/registry-helpers.ts +28 -0
  1393. package/src/internal-urls/router.ts +79 -0
  1394. package/src/internal-urls/rule-protocol.ts +38 -0
  1395. package/src/internal-urls/skill-protocol.ts +103 -0
  1396. package/src/internal-urls/types.ts +114 -0
  1397. package/src/jaw-interview/structured-renderer.ts +83 -0
  1398. package/src/jwc-runtime/actor-registry.ts +365 -0
  1399. package/src/jwc-runtime/agent-identity.ts +16 -0
  1400. package/src/jwc-runtime/cli-jaw-home.ts +14 -0
  1401. package/src/jwc-runtime/cli-jaw-vocab.ts +69 -0
  1402. package/src/jwc-runtime/cli-write-receipt.ts +31 -0
  1403. package/src/jwc-runtime/goal-cli.ts +428 -0
  1404. package/src/jwc-runtime/goal-engine.ts +2214 -0
  1405. package/src/jwc-runtime/goal-guard.ts +300 -0
  1406. package/src/jwc-runtime/goal-mode-request.ts +331 -0
  1407. package/src/jwc-runtime/jaw-interview-runtime.ts +809 -0
  1408. package/src/jwc-runtime/launch-tmux.ts +296 -0
  1409. package/src/jwc-runtime/launch-worktree.ts +291 -0
  1410. package/src/jwc-runtime/legacy-storage.ts +132 -0
  1411. package/src/jwc-runtime/memory-runtime.ts +434 -0
  1412. package/src/jwc-runtime/orchestrate-runtime.ts +612 -0
  1413. package/src/jwc-runtime/orchestrate-state.ts +395 -0
  1414. package/src/jwc-runtime/plan-writer.ts +661 -0
  1415. package/src/jwc-runtime/restricted-role-agent-bash.ts +5 -0
  1416. package/src/jwc-runtime/session-state-sidecar.ts +89 -0
  1417. package/src/jwc-runtime/stage-skill-map.ts +48 -0
  1418. package/src/jwc-runtime/state-graph.ts +86 -0
  1419. package/src/jwc-runtime/state-migrations.ts +183 -0
  1420. package/src/jwc-runtime/state-renderer.ts +340 -0
  1421. package/src/jwc-runtime/state-runtime.ts +1978 -0
  1422. package/src/jwc-runtime/state-schema.ts +218 -0
  1423. package/src/jwc-runtime/state-validation.ts +50 -0
  1424. package/src/jwc-runtime/state-writer.ts +765 -0
  1425. package/src/jwc-runtime/team-runtime.ts +4181 -0
  1426. package/src/jwc-runtime/tmux-common.ts +130 -0
  1427. package/src/jwc-runtime/tmux-sessions.ts +169 -0
  1428. package/src/jwc-runtime/workflow-command-ref.ts +240 -0
  1429. package/src/jwc-runtime/workflow-manifest.generated.json +1606 -0
  1430. package/src/jwc-runtime/workflow-manifest.ts +427 -0
  1431. package/src/lsp/client.ts +974 -0
  1432. package/src/lsp/clients/biome-client.ts +202 -0
  1433. package/src/lsp/clients/index.ts +50 -0
  1434. package/src/lsp/clients/lsp-linter-client.ts +93 -0
  1435. package/src/lsp/clients/swiftlint-client.ts +120 -0
  1436. package/src/lsp/config.ts +492 -0
  1437. package/src/lsp/defaults.json +493 -0
  1438. package/src/lsp/edits.ts +166 -0
  1439. package/src/lsp/index.ts +2282 -0
  1440. package/src/lsp/lspmux.ts +233 -0
  1441. package/src/lsp/render.ts +692 -0
  1442. package/src/lsp/startup-events.ts +13 -0
  1443. package/src/lsp/types.ts +443 -0
  1444. package/src/lsp/utils.ts +678 -0
  1445. package/src/main.ts +1159 -0
  1446. package/src/mem0/backend.ts +75 -0
  1447. package/src/mem0/client.ts +122 -0
  1448. package/src/mem0/config.ts +82 -0
  1449. package/src/mem0/index.ts +5 -0
  1450. package/src/mem0/scope.ts +54 -0
  1451. package/src/mem0/state.ts +142 -0
  1452. package/src/memories/index.ts +1111 -0
  1453. package/src/memories/local-query.ts +699 -0
  1454. package/src/memories/memory-config.ts +175 -0
  1455. package/src/memories/memory-fts.ts +179 -0
  1456. package/src/memories/memory-model-resolution.ts +84 -0
  1457. package/src/memories/memory-quality.ts +163 -0
  1458. package/src/memories/storage.ts +588 -0
  1459. package/src/memory-backend/index.ts +4 -0
  1460. package/src/memory-backend/local-backend.ts +50 -0
  1461. package/src/memory-backend/off-backend.ts +16 -0
  1462. package/src/memory-backend/resolve.ts +27 -0
  1463. package/src/memory-backend/types.ts +82 -0
  1464. package/src/migrate-config-dir-startup.ts +15 -0
  1465. package/src/migrate-config-dir.ts +80 -0
  1466. package/src/modes/acp/acp-agent.ts +2218 -0
  1467. package/src/modes/acp/acp-client-bridge.ts +154 -0
  1468. package/src/modes/acp/acp-event-mapper.ts +912 -0
  1469. package/src/modes/acp/acp-mode.ts +23 -0
  1470. package/src/modes/acp/index.ts +2 -0
  1471. package/src/modes/acp/terminal-auth.ts +37 -0
  1472. package/src/modes/background-row-model.ts +17 -0
  1473. package/src/modes/bridge/auth.ts +41 -0
  1474. package/src/modes/bridge/bridge-client-bridge.ts +47 -0
  1475. package/src/modes/bridge/bridge-mode.ts +644 -0
  1476. package/src/modes/bridge/bridge-ui-context.ts +200 -0
  1477. package/src/modes/bridge/event-stream.ts +70 -0
  1478. package/src/modes/components/_cli-jaw-entry.ts +36 -0
  1479. package/src/modes/components/agent-dashboard.ts +1120 -0
  1480. package/src/modes/components/assistant-message.ts +361 -0
  1481. package/src/modes/components/background-footer-detail.ts +27 -0
  1482. package/src/modes/components/background-footer-panel-model.ts +96 -0
  1483. package/src/modes/components/background-footer-panel.ts +89 -0
  1484. package/src/modes/components/bash-execution.ts +261 -0
  1485. package/src/modes/components/bordered-loader.ts +41 -0
  1486. package/src/modes/components/branch-summary-message.ts +65 -0
  1487. package/src/modes/components/btw-panel.ts +104 -0
  1488. package/src/modes/components/compaction-summary-message.ts +71 -0
  1489. package/src/modes/components/composer-chrome.ts +42 -0
  1490. package/src/modes/components/composer-footer.ts +113 -0
  1491. package/src/modes/components/countdown-timer.ts +75 -0
  1492. package/src/modes/components/custom-editor.ts +515 -0
  1493. package/src/modes/components/custom-message.ts +85 -0
  1494. package/src/modes/components/custom-provider-wizard.ts +318 -0
  1495. package/src/modes/components/diff.ts +363 -0
  1496. package/src/modes/components/dynamic-border.ts +25 -0
  1497. package/src/modes/components/eval-execution.ts +196 -0
  1498. package/src/modes/components/execution-shared.ts +112 -0
  1499. package/src/modes/components/extensions/extension-dashboard.ts +350 -0
  1500. package/src/modes/components/extensions/extension-list.ts +492 -0
  1501. package/src/modes/components/extensions/index.ts +9 -0
  1502. package/src/modes/components/extensions/inspector-panel.ts +317 -0
  1503. package/src/modes/components/extensions/state-manager.ts +628 -0
  1504. package/src/modes/components/extensions/types.ts +191 -0
  1505. package/src/modes/components/footer.ts +270 -0
  1506. package/src/modes/components/full-transcript-overlay.ts +133 -0
  1507. package/src/modes/components/help-selector.ts +274 -0
  1508. package/src/modes/components/history-search.ts +158 -0
  1509. package/src/modes/components/hook-editor.ts +151 -0
  1510. package/src/modes/components/hook-input.ts +79 -0
  1511. package/src/modes/components/hook-message.ts +68 -0
  1512. package/src/modes/components/hook-selector.ts +873 -0
  1513. package/src/modes/components/index.ts +36 -0
  1514. package/src/modes/components/jobs-overlay-model.ts +109 -0
  1515. package/src/modes/components/jobs-overlay.ts +172 -0
  1516. package/src/modes/components/keybinding-hints.ts +65 -0
  1517. package/src/modes/components/login-dialog.ts +164 -0
  1518. package/src/modes/components/message-frame.ts +88 -0
  1519. package/src/modes/components/model-selector.ts +1653 -0
  1520. package/src/modes/components/oauth-selector.ts +248 -0
  1521. package/src/modes/components/pabcd-border.ts +98 -0
  1522. package/src/modes/components/plugin-selector.ts +95 -0
  1523. package/src/modes/components/plugin-settings.ts +489 -0
  1524. package/src/modes/components/provider-onboarding-selector.ts +94 -0
  1525. package/src/modes/components/queue-mode-selector.ts +56 -0
  1526. package/src/modes/components/quota-panel.ts +101 -0
  1527. package/src/modes/components/read-tool-group.ts +295 -0
  1528. package/src/modes/components/runtime-mcp-add-wizard.ts +1341 -0
  1529. package/src/modes/components/session-observer-overlay.ts +839 -0
  1530. package/src/modes/components/session-selector.ts +343 -0
  1531. package/src/modes/components/settings-defs.ts +175 -0
  1532. package/src/modes/components/settings-selector.ts +644 -0
  1533. package/src/modes/components/show-images-selector.ts +45 -0
  1534. package/src/modes/components/skill-hud/render.ts +93 -0
  1535. package/src/modes/components/skill-message.ts +110 -0
  1536. package/src/modes/components/status-line/context-thresholds.ts +68 -0
  1537. package/src/modes/components/status-line/git-utils.ts +42 -0
  1538. package/src/modes/components/status-line/index.ts +4 -0
  1539. package/src/modes/components/status-line/presets.ts +107 -0
  1540. package/src/modes/components/status-line/segments.ts +657 -0
  1541. package/src/modes/components/status-line/separators.ts +55 -0
  1542. package/src/modes/components/status-line/token-rate.ts +66 -0
  1543. package/src/modes/components/status-line/types.ts +102 -0
  1544. package/src/modes/components/status-line/workflow-readers.ts +97 -0
  1545. package/src/modes/components/status-line.ts +917 -0
  1546. package/src/modes/components/theme-selector.ts +63 -0
  1547. package/src/modes/components/thinking-selector.ts +52 -0
  1548. package/src/modes/components/todo-reminder.ts +40 -0
  1549. package/src/modes/components/tool-execution.ts +990 -0
  1550. package/src/modes/components/tool-transcript-overlay.ts +81 -0
  1551. package/src/modes/components/tree-selector.ts +930 -0
  1552. package/src/modes/components/ttsr-notification.ts +100 -0
  1553. package/src/modes/components/user-message-selector.ts +141 -0
  1554. package/src/modes/components/user-message.ts +53 -0
  1555. package/src/modes/components/visual-truncate.ts +63 -0
  1556. package/src/modes/components/welcome.ts +522 -0
  1557. package/src/modes/controllers/btw-controller.ts +105 -0
  1558. package/src/modes/controllers/command-controller-shared.ts +108 -0
  1559. package/src/modes/controllers/command-controller.ts +1703 -0
  1560. package/src/modes/controllers/event-controller.ts +1054 -0
  1561. package/src/modes/controllers/extension-ui-controller.ts +1010 -0
  1562. package/src/modes/controllers/input-controller.ts +1422 -0
  1563. package/src/modes/controllers/runtime-mcp-command-controller.ts +1934 -0
  1564. package/src/modes/controllers/selector-controller.ts +1605 -0
  1565. package/src/modes/controllers/ssh-command-controller.ts +384 -0
  1566. package/src/modes/controllers/todo-command-controller.ts +485 -0
  1567. package/src/modes/data/emojis.json +1 -0
  1568. package/src/modes/emoji-autocomplete.ts +285 -0
  1569. package/src/modes/index.ts +35 -0
  1570. package/src/modes/interactive-mode.ts +2938 -0
  1571. package/src/modes/jobs-observer.ts +352 -0
  1572. package/src/modes/oauth-manual-input.ts +42 -0
  1573. package/src/modes/print-mode.ts +121 -0
  1574. package/src/modes/prompt-action-autocomplete.ts +409 -0
  1575. package/src/modes/rpc/host-tools.ts +1 -0
  1576. package/src/modes/rpc/host-uris.ts +1 -0
  1577. package/src/modes/rpc/rpc-client.ts +914 -0
  1578. package/src/modes/rpc/rpc-mode.ts +784 -0
  1579. package/src/modes/rpc/rpc-types.ts +601 -0
  1580. package/src/modes/runtime-init.ts +116 -0
  1581. package/src/modes/session-observer-registry.ts +146 -0
  1582. package/src/modes/shared/agent-wire/approval-gate.ts +151 -0
  1583. package/src/modes/shared/agent-wire/command-contract.ts +18 -0
  1584. package/src/modes/shared/agent-wire/command-dispatch.ts +438 -0
  1585. package/src/modes/shared/agent-wire/command-validation.ts +164 -0
  1586. package/src/modes/shared/agent-wire/event-contract.ts +148 -0
  1587. package/src/modes/shared/agent-wire/event-envelope.ts +141 -0
  1588. package/src/modes/shared/agent-wire/event-observation.ts +424 -0
  1589. package/src/modes/shared/agent-wire/handshake.ts +157 -0
  1590. package/src/modes/shared/agent-wire/host-tool-bridge.ts +194 -0
  1591. package/src/modes/shared/agent-wire/host-uri-bridge.ts +236 -0
  1592. package/src/modes/shared/agent-wire/jaw-interview-gate.ts +253 -0
  1593. package/src/modes/shared/agent-wire/protocol.ts +46 -0
  1594. package/src/modes/shared/agent-wire/responses.ts +17 -0
  1595. package/src/modes/shared/agent-wire/scopes.ts +91 -0
  1596. package/src/modes/shared/agent-wire/session-registry.ts +109 -0
  1597. package/src/modes/shared/agent-wire/ui-request-broker.ts +150 -0
  1598. package/src/modes/shared/agent-wire/ui-result.ts +48 -0
  1599. package/src/modes/shared/agent-wire/unattended-action-policy.ts +341 -0
  1600. package/src/modes/shared/agent-wire/unattended-audit.ts +175 -0
  1601. package/src/modes/shared/agent-wire/unattended-run-controller.ts +406 -0
  1602. package/src/modes/shared/agent-wire/unattended-session.ts +180 -0
  1603. package/src/modes/shared/agent-wire/workflow-gate-broker.ts +324 -0
  1604. package/src/modes/shared/agent-wire/workflow-gate-schema.ts +331 -0
  1605. package/src/modes/shared.ts +55 -0
  1606. package/src/modes/theme/defaults/abyss-bite-light.json +124 -0
  1607. package/src/modes/theme/defaults/abyss-bite.json +124 -0
  1608. package/src/modes/theme/defaults/blue-crab.json +126 -0
  1609. package/src/modes/theme/defaults/index.ts +11 -0
  1610. package/src/modes/theme/defaults/red-claw.json +123 -0
  1611. package/src/modes/theme/mermaid-cache.ts +29 -0
  1612. package/src/modes/theme/shimmer.ts +219 -0
  1613. package/src/modes/theme/theme-schema.json +429 -0
  1614. package/src/modes/theme/theme.ts +2472 -0
  1615. package/src/modes/types.ts +343 -0
  1616. package/src/modes/utils/abort-message.ts +41 -0
  1617. package/src/modes/utils/compaction-progress.ts +174 -0
  1618. package/src/modes/utils/context-usage.ts +398 -0
  1619. package/src/modes/utils/help-markdown.ts +50 -0
  1620. package/src/modes/utils/hotkeys-markdown.ts +61 -0
  1621. package/src/modes/utils/keybinding-matchers.ts +30 -0
  1622. package/src/modes/utils/session-transcript-replay.ts +520 -0
  1623. package/src/modes/utils/tools-markdown.ts +27 -0
  1624. package/src/modes/utils/ui-helpers.ts +846 -0
  1625. package/src/notifications/ask-bridge.ts +74 -0
  1626. package/src/notifications/config-command-parser.ts +76 -0
  1627. package/src/notifications/config.ts +102 -0
  1628. package/src/notifications/daemon-control.ts +73 -0
  1629. package/src/notifications/daemon-engine.ts +165 -0
  1630. package/src/notifications/daemon-inbound.ts +220 -0
  1631. package/src/notifications/daemon-loop.ts +60 -0
  1632. package/src/notifications/daemon-owner.ts +53 -0
  1633. package/src/notifications/daemon-runtime.ts +84 -0
  1634. package/src/notifications/discovery.ts +119 -0
  1635. package/src/notifications/index.ts +34 -0
  1636. package/src/notifications/lifecycle-audit.ts +94 -0
  1637. package/src/notifications/lifecycle-command-parser.ts +51 -0
  1638. package/src/notifications/lifecycle-control-runtime.ts +127 -0
  1639. package/src/notifications/notification-redaction.ts +57 -0
  1640. package/src/notifications/protocol.ts +61 -0
  1641. package/src/notifications/remote-answer.ts +241 -0
  1642. package/src/notifications/reply-bridge.ts +85 -0
  1643. package/src/notifications/server.ts +280 -0
  1644. package/src/notifications/session-lifecycle.ts +46 -0
  1645. package/src/notifications/session-registry.ts +164 -0
  1646. package/src/notifications/telegram-api.ts +259 -0
  1647. package/src/notifications/telegram-ask-keyboard.ts +137 -0
  1648. package/src/notifications/telegram-callback-ingest.ts +126 -0
  1649. package/src/notifications/telegram-inbound-router.ts +166 -0
  1650. package/src/notifications/telegram-media-policy.ts +50 -0
  1651. package/src/notifications/telegram-media-render.ts +40 -0
  1652. package/src/notifications/telegram-message-ingest.ts +121 -0
  1653. package/src/notifications/telegram-pairing.ts +69 -0
  1654. package/src/notifications/threaded-lifecycle.ts +27 -0
  1655. package/src/notifications/threaded-shutdown.ts +37 -0
  1656. package/src/notifications/threaded-surface.ts +187 -0
  1657. package/src/notifications/transport-shell.ts +152 -0
  1658. package/src/notifications/transport-state.ts +161 -0
  1659. package/src/notifications/workspace-path-confinement.ts +65 -0
  1660. package/src/plan-mode/approved-plan.ts +163 -0
  1661. package/src/plan-mode/state.ts +6 -0
  1662. package/src/prompts/agents/architect.md +95 -0
  1663. package/src/prompts/agents/critic.md +68 -0
  1664. package/src/prompts/agents/executor.md +64 -0
  1665. package/src/prompts/agents/explore.md +58 -0
  1666. package/src/prompts/agents/frontmatter.md +14 -0
  1667. package/src/prompts/agents/init.md +34 -0
  1668. package/src/prompts/agents/plan.md +49 -0
  1669. package/src/prompts/agents/planner.md +63 -0
  1670. package/src/prompts/agents/reviewer.md +141 -0
  1671. package/src/prompts/agents/task.md +16 -0
  1672. package/src/prompts/ci-green-request.md +36 -0
  1673. package/src/prompts/goals/goal-continuation.md +33 -0
  1674. package/src/prompts/goals/goal-mode-active.md +23 -0
  1675. package/src/prompts/jaw/orchestrate-a.md +20 -0
  1676. package/src/prompts/jaw/orchestrate-audit-architect.md +17 -0
  1677. package/src/prompts/jaw/orchestrate-audit-planner.md +17 -0
  1678. package/src/prompts/jaw/orchestrate-b.md +17 -0
  1679. package/src/prompts/jaw/orchestrate-c.md +18 -0
  1680. package/src/prompts/jaw/orchestrate-d.md +32 -0
  1681. package/src/prompts/jaw/orchestrate-i.md +17 -0
  1682. package/src/prompts/jaw/orchestrate-p.md +23 -0
  1683. package/src/prompts/memories/consolidation.md +30 -0
  1684. package/src/prompts/memories/read-path.md +10 -0
  1685. package/src/prompts/memories/stage_one_input.md +6 -0
  1686. package/src/prompts/memories/stage_one_system.md +21 -0
  1687. package/src/prompts/memories/unavailable.md +9 -0
  1688. package/src/prompts/review-request.md +70 -0
  1689. package/src/prompts/system/agent-creation-architect.md +75 -0
  1690. package/src/prompts/system/agent-creation-user.md +6 -0
  1691. package/src/prompts/system/auto-continue.md +1 -0
  1692. package/src/prompts/system/btw-user.md +8 -0
  1693. package/src/prompts/system/commit-message-system.md +2 -0
  1694. package/src/prompts/system/custom-system-prompt.md +64 -0
  1695. package/src/prompts/system/eager-todo.md +13 -0
  1696. package/src/prompts/system/executor-self-fork.md +3 -0
  1697. package/src/prompts/system/irc-incoming.md +8 -0
  1698. package/src/prompts/system/plan-mode-active.md +116 -0
  1699. package/src/prompts/system/plan-mode-approved.md +28 -0
  1700. package/src/prompts/system/plan-mode-compact-instructions.md +16 -0
  1701. package/src/prompts/system/plan-mode-reference.md +14 -0
  1702. package/src/prompts/system/plan-mode-subagent.md +34 -0
  1703. package/src/prompts/system/plan-mode-tool-decision-reminder.md +9 -0
  1704. package/src/prompts/system/project-prompt.md +46 -0
  1705. package/src/prompts/system/subagent-system-prompt.md +89 -0
  1706. package/src/prompts/system/subagent-user-prompt.md +3 -0
  1707. package/src/prompts/system/subagent-yield-reminder.md +12 -0
  1708. package/src/prompts/system/system-prompt.md +409 -0
  1709. package/src/prompts/system/title-system.md +2 -0
  1710. package/src/prompts/system/ttsr-interrupt.md +7 -0
  1711. package/src/prompts/system/ttsr-tool-reminder.md +5 -0
  1712. package/src/prompts/system/web-search.md +25 -0
  1713. package/src/prompts/tools/apply-patch.md +65 -0
  1714. package/src/prompts/tools/ask.md +29 -0
  1715. package/src/prompts/tools/ast-edit.md +39 -0
  1716. package/src/prompts/tools/ast-grep.md +42 -0
  1717. package/src/prompts/tools/async-result.md +8 -0
  1718. package/src/prompts/tools/background.md +19 -0
  1719. package/src/prompts/tools/bash.md +50 -0
  1720. package/src/prompts/tools/browser.md +14 -0
  1721. package/src/prompts/tools/calculator.md +10 -0
  1722. package/src/prompts/tools/checkpoint.md +16 -0
  1723. package/src/prompts/tools/computer-use.md +15 -0
  1724. package/src/prompts/tools/cron.md +25 -0
  1725. package/src/prompts/tools/debug.md +33 -0
  1726. package/src/prompts/tools/eval.md +75 -0
  1727. package/src/prompts/tools/find.md +34 -0
  1728. package/src/prompts/tools/github.md +20 -0
  1729. package/src/prompts/tools/goal.md +20 -0
  1730. package/src/prompts/tools/hashline.md +130 -0
  1731. package/src/prompts/tools/image-gen.md +7 -0
  1732. package/src/prompts/tools/inspect-image-system.md +20 -0
  1733. package/src/prompts/tools/inspect-image.md +32 -0
  1734. package/src/prompts/tools/irc.md +49 -0
  1735. package/src/prompts/tools/job.md +22 -0
  1736. package/src/prompts/tools/lsp.md +42 -0
  1737. package/src/prompts/tools/monitor.md +32 -0
  1738. package/src/prompts/tools/patch.md +70 -0
  1739. package/src/prompts/tools/read.md +82 -0
  1740. package/src/prompts/tools/recall.md +6 -0
  1741. package/src/prompts/tools/recipe.md +16 -0
  1742. package/src/prompts/tools/reflect.md +6 -0
  1743. package/src/prompts/tools/render-mermaid.md +9 -0
  1744. package/src/prompts/tools/replace.md +36 -0
  1745. package/src/prompts/tools/resolve.md +9 -0
  1746. package/src/prompts/tools/retain.md +7 -0
  1747. package/src/prompts/tools/rewind.md +13 -0
  1748. package/src/prompts/tools/search-tool-bm25.md +37 -0
  1749. package/src/prompts/tools/search.md +25 -0
  1750. package/src/prompts/tools/skill.md +28 -0
  1751. package/src/prompts/tools/ssh.md +35 -0
  1752. package/src/prompts/tools/subagent.md +56 -0
  1753. package/src/prompts/tools/task-summary.md +22 -0
  1754. package/src/prompts/tools/task.md +106 -0
  1755. package/src/prompts/tools/todo-write.md +50 -0
  1756. package/src/prompts/tools/vim.md +98 -0
  1757. package/src/prompts/tools/web-search.md +10 -0
  1758. package/src/prompts/tools/write.md +14 -0
  1759. package/src/registry/agent-registry.ts +140 -0
  1760. package/src/reminders/star-reminder.ts +422 -0
  1761. package/src/runtime-mcp/client.ts +485 -0
  1762. package/src/runtime-mcp/config-writer.ts +225 -0
  1763. package/src/runtime-mcp/config.ts +365 -0
  1764. package/src/runtime-mcp/discoverable-tool-metadata.ts +25 -0
  1765. package/src/runtime-mcp/index.ts +29 -0
  1766. package/src/runtime-mcp/json-rpc.ts +84 -0
  1767. package/src/runtime-mcp/loader.ts +124 -0
  1768. package/src/runtime-mcp/manager.ts +1211 -0
  1769. package/src/runtime-mcp/oauth-discovery.ts +349 -0
  1770. package/src/runtime-mcp/oauth-flow.ts +409 -0
  1771. package/src/runtime-mcp/render.ts +123 -0
  1772. package/src/runtime-mcp/smithery-auth.ts +104 -0
  1773. package/src/runtime-mcp/smithery-connect.ts +145 -0
  1774. package/src/runtime-mcp/smithery-registry.ts +477 -0
  1775. package/src/runtime-mcp/tool-bridge.ts +416 -0
  1776. package/src/runtime-mcp/tool-cache.ts +117 -0
  1777. package/src/runtime-mcp/transports/http.ts +503 -0
  1778. package/src/runtime-mcp/transports/index.ts +6 -0
  1779. package/src/runtime-mcp/transports/stdio.ts +326 -0
  1780. package/src/runtime-mcp/types.ts +423 -0
  1781. package/src/sdk.ts +2248 -0
  1782. package/src/secrets/index.ts +120 -0
  1783. package/src/secrets/obfuscator.ts +352 -0
  1784. package/src/secrets/regex.ts +21 -0
  1785. package/src/session/agent-session.ts +10343 -0
  1786. package/src/session/agent-storage.ts +466 -0
  1787. package/src/session/artifacts.ts +135 -0
  1788. package/src/session/auth-broker-config.ts +102 -0
  1789. package/src/session/auth-storage.ts +23 -0
  1790. package/src/session/blob-store.ts +372 -0
  1791. package/src/session/client-bridge.ts +85 -0
  1792. package/src/session/contribution-prep.ts +320 -0
  1793. package/src/session/history-storage.ts +311 -0
  1794. package/src/session/messages.ts +406 -0
  1795. package/src/session/pabcd-stage-header.ts +77 -0
  1796. package/src/session/session-dump-format.ts +209 -0
  1797. package/src/session/session-manager.ts +3914 -0
  1798. package/src/session/session-storage.ts +415 -0
  1799. package/src/session/streaming-output.ts +1114 -0
  1800. package/src/session/tool-choice-queue.ts +213 -0
  1801. package/src/session/yield-queue.ts +155 -0
  1802. package/src/setup/hermes/templates/operator-instructions.v1.md +29 -0
  1803. package/src/setup/hermes-setup.ts +429 -0
  1804. package/src/setup/model-onboarding-guidance.ts +41 -0
  1805. package/src/setup/provider-onboarding.ts +358 -0
  1806. package/src/skill-state/active-state.ts +788 -0
  1807. package/src/skill-state/initial-phase.ts +21 -0
  1808. package/src/skill-state/jaw-interview-mutation-guard.ts +490 -0
  1809. package/src/skill-state/workflow-hud.ts +208 -0
  1810. package/src/skill-state/workflow-state-contract.ts +167 -0
  1811. package/src/skill-state/workflow-state-version.ts +3 -0
  1812. package/src/slash-commands/acp-builtins.ts +55 -0
  1813. package/src/slash-commands/builtin-registry.ts +1879 -0
  1814. package/src/slash-commands/helpers/context-report.ts +149 -0
  1815. package/src/slash-commands/helpers/format.ts +46 -0
  1816. package/src/slash-commands/helpers/mcp.ts +532 -0
  1817. package/src/slash-commands/helpers/parse.ts +85 -0
  1818. package/src/slash-commands/helpers/ssh.ts +195 -0
  1819. package/src/slash-commands/helpers/todo.ts +279 -0
  1820. package/src/slash-commands/helpers/usage-report.ts +105 -0
  1821. package/src/slash-commands/types.ts +127 -0
  1822. package/src/ssh/config-writer.ts +183 -0
  1823. package/src/ssh/connection-manager.ts +482 -0
  1824. package/src/ssh/ssh-executor.ts +133 -0
  1825. package/src/ssh/sshfs-mount.ts +140 -0
  1826. package/src/ssh/utils.ts +8 -0
  1827. package/src/stt/downloader.ts +71 -0
  1828. package/src/stt/index.ts +3 -0
  1829. package/src/stt/recorder.ts +351 -0
  1830. package/src/stt/setup.ts +52 -0
  1831. package/src/stt/stt-controller.ts +160 -0
  1832. package/src/stt/transcribe.py +70 -0
  1833. package/src/stt/transcriber.ts +91 -0
  1834. package/src/system-prompt.ts +661 -0
  1835. package/src/task/agents.ts +189 -0
  1836. package/src/task/commands.ts +131 -0
  1837. package/src/task/discovery.ts +136 -0
  1838. package/src/task/executor.ts +1664 -0
  1839. package/src/task/fork-context-advisory.ts +99 -0
  1840. package/src/task/id.ts +33 -0
  1841. package/src/task/index.ts +2173 -0
  1842. package/src/task/jwc-command.ts +26 -0
  1843. package/src/task/model-presets.ts +53 -0
  1844. package/src/task/name-generator.ts +1577 -0
  1845. package/src/task/output-manager.ts +108 -0
  1846. package/src/task/parallel.ts +116 -0
  1847. package/src/task/receipt.ts +304 -0
  1848. package/src/task/render.ts +1075 -0
  1849. package/src/task/roi-reconciliation.ts +90 -0
  1850. package/src/task/simple-mode.ts +27 -0
  1851. package/src/task/spawn-gate.ts +132 -0
  1852. package/src/task/subprocess-tool-registry.ts +88 -0
  1853. package/src/task/types.ts +433 -0
  1854. package/src/task/worktree.ts +506 -0
  1855. package/src/thinking.ts +93 -0
  1856. package/src/tool-discovery/tool-index.ts +408 -0
  1857. package/src/tools/archive-reader.ts +321 -0
  1858. package/src/tools/ask.ts +1011 -0
  1859. package/src/tools/ast-edit.ts +555 -0
  1860. package/src/tools/ast-grep.ts +424 -0
  1861. package/src/tools/auto-generated-guard.ts +305 -0
  1862. package/src/tools/background.ts +500 -0
  1863. package/src/tools/bash-allowed-prefixes.ts +169 -0
  1864. package/src/tools/bash-command-fixup.ts +37 -0
  1865. package/src/tools/bash-interactive.ts +388 -0
  1866. package/src/tools/bash-interceptor.ts +67 -0
  1867. package/src/tools/bash-pty-selection.ts +15 -0
  1868. package/src/tools/bash-skill-urls.ts +248 -0
  1869. package/src/tools/bash.ts +1242 -0
  1870. package/src/tools/browser/actions.ts +189 -0
  1871. package/src/tools/browser/attach.ts +175 -0
  1872. package/src/tools/browser/launch.ts +651 -0
  1873. package/src/tools/browser/readable.ts +95 -0
  1874. package/src/tools/browser/registry.ts +194 -0
  1875. package/src/tools/browser/render.ts +212 -0
  1876. package/src/tools/browser/tab-protocol.ts +105 -0
  1877. package/src/tools/browser/tab-supervisor.ts +577 -0
  1878. package/src/tools/browser/tab-worker-entry.ts +21 -0
  1879. package/src/tools/browser/tab-worker.ts +1054 -0
  1880. package/src/tools/browser.ts +380 -0
  1881. package/src/tools/calculator.ts +540 -0
  1882. package/src/tools/checkpoint.ts +134 -0
  1883. package/src/tools/computer-use-backend.ts +75 -0
  1884. package/src/tools/computer-use.ts +228 -0
  1885. package/src/tools/conflict-detect.ts +672 -0
  1886. package/src/tools/context.ts +39 -0
  1887. package/src/tools/cron.ts +713 -0
  1888. package/src/tools/debug.ts +1014 -0
  1889. package/src/tools/eval.ts +1101 -0
  1890. package/src/tools/fetch.ts +1485 -0
  1891. package/src/tools/file-recorder.ts +35 -0
  1892. package/src/tools/find.ts +543 -0
  1893. package/src/tools/fs-cache-invalidation.ts +28 -0
  1894. package/src/tools/gh-format.ts +12 -0
  1895. package/src/tools/gh-renderer.ts +428 -0
  1896. package/src/tools/gh.ts +3737 -0
  1897. package/src/tools/github-cache.ts +548 -0
  1898. package/src/tools/grouped-file-output.ts +96 -0
  1899. package/src/tools/hindsight-recall.ts +66 -0
  1900. package/src/tools/hindsight-reflect.ts +55 -0
  1901. package/src/tools/hindsight-retain.ts +54 -0
  1902. package/src/tools/image-gen.ts +1284 -0
  1903. package/src/tools/index.ts +580 -0
  1904. package/src/tools/inspect-image-renderer.ts +103 -0
  1905. package/src/tools/inspect-image.ts +167 -0
  1906. package/src/tools/irc.ts +239 -0
  1907. package/src/tools/job.ts +530 -0
  1908. package/src/tools/json-tree.ts +243 -0
  1909. package/src/tools/jtd-to-json-schema.ts +219 -0
  1910. package/src/tools/jtd-to-typescript.ts +136 -0
  1911. package/src/tools/jtd-utils.ts +102 -0
  1912. package/src/tools/list-limit.ts +40 -0
  1913. package/src/tools/match-line-format.ts +22 -0
  1914. package/src/tools/monitor.ts +255 -0
  1915. package/src/tools/output-meta.ts +754 -0
  1916. package/src/tools/path-utils.ts +741 -0
  1917. package/src/tools/plan-mode-guard.ts +68 -0
  1918. package/src/tools/puppeteer/00_stealth_tampering.txt +63 -0
  1919. package/src/tools/puppeteer/01_stealth_activity.txt +20 -0
  1920. package/src/tools/puppeteer/02_stealth_hairline.txt +11 -0
  1921. package/src/tools/puppeteer/03_stealth_botd.txt +384 -0
  1922. package/src/tools/puppeteer/04_stealth_iframe.txt +81 -0
  1923. package/src/tools/puppeteer/05_stealth_webgl.txt +75 -0
  1924. package/src/tools/puppeteer/06_stealth_screen.txt +72 -0
  1925. package/src/tools/puppeteer/07_stealth_fonts.txt +97 -0
  1926. package/src/tools/puppeteer/08_stealth_audio.txt +51 -0
  1927. package/src/tools/puppeteer/09_stealth_locale.txt +46 -0
  1928. package/src/tools/puppeteer/10_stealth_plugins.txt +206 -0
  1929. package/src/tools/puppeteer/11_stealth_hardware.txt +8 -0
  1930. package/src/tools/puppeteer/12_stealth_codecs.txt +40 -0
  1931. package/src/tools/puppeteer/13_stealth_worker.txt +74 -0
  1932. package/src/tools/read.ts +2333 -0
  1933. package/src/tools/recipe/index.ts +80 -0
  1934. package/src/tools/recipe/render.ts +19 -0
  1935. package/src/tools/recipe/runner.ts +219 -0
  1936. package/src/tools/recipe/runners/cargo.ts +131 -0
  1937. package/src/tools/recipe/runners/index.ts +8 -0
  1938. package/src/tools/recipe/runners/just.ts +73 -0
  1939. package/src/tools/recipe/runners/make.ts +101 -0
  1940. package/src/tools/recipe/runners/pkg.ts +167 -0
  1941. package/src/tools/recipe/runners/task.ts +72 -0
  1942. package/src/tools/render-mermaid.ts +68 -0
  1943. package/src/tools/render-utils.ts +774 -0
  1944. package/src/tools/renderers.ts +79 -0
  1945. package/src/tools/resolve.ts +258 -0
  1946. package/src/tools/review.ts +252 -0
  1947. package/src/tools/search-tool-bm25.ts +364 -0
  1948. package/src/tools/search.ts +787 -0
  1949. package/src/tools/skill.ts +170 -0
  1950. package/src/tools/sqlite-reader.ts +736 -0
  1951. package/src/tools/ssh.ts +310 -0
  1952. package/src/tools/subagent-render.ts +160 -0
  1953. package/src/tools/subagent.ts +698 -0
  1954. package/src/tools/telegram-send.ts +178 -0
  1955. package/src/tools/todo-write.ts +695 -0
  1956. package/src/tools/tool-errors.ts +62 -0
  1957. package/src/tools/tool-result.ts +86 -0
  1958. package/src/tools/tool-timeouts.ts +30 -0
  1959. package/src/tools/vim.ts +949 -0
  1960. package/src/tools/write.ts +953 -0
  1961. package/src/tools/yield.ts +268 -0
  1962. package/src/tui/code-cell.ts +201 -0
  1963. package/src/tui/file-list.ts +55 -0
  1964. package/src/tui/hyperlink.ts +126 -0
  1965. package/src/tui/index.ts +12 -0
  1966. package/src/tui/output-block.ts +150 -0
  1967. package/src/tui/status-line.ts +39 -0
  1968. package/src/tui/tree-list.ts +84 -0
  1969. package/src/tui/types.ts +15 -0
  1970. package/src/tui/utils.ts +103 -0
  1971. package/src/utils/changelog.ts +121 -0
  1972. package/src/utils/clipboard.ts +156 -0
  1973. package/src/utils/command-args.ts +76 -0
  1974. package/src/utils/commit-message-generator.ts +135 -0
  1975. package/src/utils/edit-mode.ts +42 -0
  1976. package/src/utils/event-bus.ts +33 -0
  1977. package/src/utils/external-editor.ts +65 -0
  1978. package/src/utils/file-display-mode.ts +45 -0
  1979. package/src/utils/file-mentions.ts +376 -0
  1980. package/src/utils/git.ts +1536 -0
  1981. package/src/utils/image-loading.ts +102 -0
  1982. package/src/utils/image-resize.ts +309 -0
  1983. package/src/utils/lang-from-path.ts +239 -0
  1984. package/src/utils/markit.ts +89 -0
  1985. package/src/utils/open.ts +20 -0
  1986. package/src/utils/session-color.ts +43 -0
  1987. package/src/utils/shell-snapshot.ts +187 -0
  1988. package/src/utils/sixel.ts +69 -0
  1989. package/src/utils/title-generator.ts +237 -0
  1990. package/src/utils/tokenizer-download.ts +106 -0
  1991. package/src/utils/tokenizer-encoding.ts +29 -0
  1992. package/src/utils/tool-choice.ts +62 -0
  1993. package/src/utils/tools-manager.ts +363 -0
  1994. package/src/vim/buffer.ts +309 -0
  1995. package/src/vim/commands.ts +382 -0
  1996. package/src/vim/engine.ts +2409 -0
  1997. package/src/vim/parser.ts +134 -0
  1998. package/src/vim/render.ts +252 -0
  1999. package/src/vim/types.ts +197 -0
  2000. package/src/web/kagi.ts +183 -0
  2001. package/src/web/parallel.ts +349 -0
  2002. package/src/web/public-fetch-url.ts +74 -0
  2003. package/src/web/scrapers/artifacthub.ts +207 -0
  2004. package/src/web/scrapers/arxiv.ts +83 -0
  2005. package/src/web/scrapers/aur.ts +162 -0
  2006. package/src/web/scrapers/biorxiv.ts +133 -0
  2007. package/src/web/scrapers/bluesky.ts +262 -0
  2008. package/src/web/scrapers/brew.ts +172 -0
  2009. package/src/web/scrapers/cheatsh.ts +68 -0
  2010. package/src/web/scrapers/chocolatey.ts +196 -0
  2011. package/src/web/scrapers/choosealicense.ts +95 -0
  2012. package/src/web/scrapers/cisa-kev.ts +87 -0
  2013. package/src/web/scrapers/clojars.ts +154 -0
  2014. package/src/web/scrapers/coingecko.ts +177 -0
  2015. package/src/web/scrapers/crates-io.ts +97 -0
  2016. package/src/web/scrapers/crossref.ts +136 -0
  2017. package/src/web/scrapers/devto.ts +147 -0
  2018. package/src/web/scrapers/discogs.ts +306 -0
  2019. package/src/web/scrapers/discourse.ts +197 -0
  2020. package/src/web/scrapers/dockerhub.ts +138 -0
  2021. package/src/web/scrapers/docs-rs.ts +653 -0
  2022. package/src/web/scrapers/fdroid.ts +134 -0
  2023. package/src/web/scrapers/firefox-addons.ts +191 -0
  2024. package/src/web/scrapers/flathub.ts +223 -0
  2025. package/src/web/scrapers/github-gist.ts +58 -0
  2026. package/src/web/scrapers/github.ts +452 -0
  2027. package/src/web/scrapers/gitlab.ts +401 -0
  2028. package/src/web/scrapers/go-pkg.ts +266 -0
  2029. package/src/web/scrapers/hackage.ts +140 -0
  2030. package/src/web/scrapers/hackernews.ts +189 -0
  2031. package/src/web/scrapers/hex.ts +105 -0
  2032. package/src/web/scrapers/huggingface.ts +321 -0
  2033. package/src/web/scrapers/iacr.ts +89 -0
  2034. package/src/web/scrapers/index.ts +252 -0
  2035. package/src/web/scrapers/jetbrains-marketplace.ts +159 -0
  2036. package/src/web/scrapers/lemmy.ts +203 -0
  2037. package/src/web/scrapers/lobsters.ts +175 -0
  2038. package/src/web/scrapers/mastodon.ts +292 -0
  2039. package/src/web/scrapers/maven.ts +138 -0
  2040. package/src/web/scrapers/mdn.ts +173 -0
  2041. package/src/web/scrapers/metacpan.ts +222 -0
  2042. package/src/web/scrapers/musicbrainz.ts +250 -0
  2043. package/src/web/scrapers/npm.ts +98 -0
  2044. package/src/web/scrapers/nuget.ts +183 -0
  2045. package/src/web/scrapers/nvd.ts +222 -0
  2046. package/src/web/scrapers/ollama.ts +239 -0
  2047. package/src/web/scrapers/open-vsx.ts +106 -0
  2048. package/src/web/scrapers/opencorporates.ts +292 -0
  2049. package/src/web/scrapers/openlibrary.ts +336 -0
  2050. package/src/web/scrapers/orcid.ts +286 -0
  2051. package/src/web/scrapers/osv.ts +176 -0
  2052. package/src/web/scrapers/packagist.ts +160 -0
  2053. package/src/web/scrapers/pub-dev.ts +143 -0
  2054. package/src/web/scrapers/pubmed.ts +211 -0
  2055. package/src/web/scrapers/pypi.ts +112 -0
  2056. package/src/web/scrapers/rawg.ts +110 -0
  2057. package/src/web/scrapers/readthedocs.ts +120 -0
  2058. package/src/web/scrapers/reddit.ts +95 -0
  2059. package/src/web/scrapers/repology.ts +251 -0
  2060. package/src/web/scrapers/rfc.ts +201 -0
  2061. package/src/web/scrapers/rubygems.ts +103 -0
  2062. package/src/web/scrapers/searchcode.ts +189 -0
  2063. package/src/web/scrapers/sec-edgar.ts +261 -0
  2064. package/src/web/scrapers/semantic-scholar.ts +171 -0
  2065. package/src/web/scrapers/snapcraft.ts +187 -0
  2066. package/src/web/scrapers/sourcegraph.ts +336 -0
  2067. package/src/web/scrapers/spdx.ts +108 -0
  2068. package/src/web/scrapers/spotify.ts +198 -0
  2069. package/src/web/scrapers/stackoverflow.ts +120 -0
  2070. package/src/web/scrapers/terraform.ts +277 -0
  2071. package/src/web/scrapers/tldr.ts +47 -0
  2072. package/src/web/scrapers/twitter.ts +93 -0
  2073. package/src/web/scrapers/types.ts +358 -0
  2074. package/src/web/scrapers/utils.ts +133 -0
  2075. package/src/web/scrapers/vimeo.ts +133 -0
  2076. package/src/web/scrapers/vscode-marketplace.ts +187 -0
  2077. package/src/web/scrapers/w3c.ts +156 -0
  2078. package/src/web/scrapers/wikidata.ts +344 -0
  2079. package/src/web/scrapers/wikipedia.ts +84 -0
  2080. package/src/web/scrapers/youtube.ts +319 -0
  2081. package/src/web/search/index.ts +416 -0
  2082. package/src/web/search/provider.ts +236 -0
  2083. package/src/web/search/providers/anthropic.ts +319 -0
  2084. package/src/web/search/providers/base.ts +102 -0
  2085. package/src/web/search/providers/brave.ts +149 -0
  2086. package/src/web/search/providers/codex.ts +598 -0
  2087. package/src/web/search/providers/duckduckgo.ts +279 -0
  2088. package/src/web/search/providers/exa.ts +193 -0
  2089. package/src/web/search/providers/gemini.ts +462 -0
  2090. package/src/web/search/providers/jina.ts +101 -0
  2091. package/src/web/search/providers/kagi.ts +75 -0
  2092. package/src/web/search/providers/kimi.ts +171 -0
  2093. package/src/web/search/providers/parallel.ts +210 -0
  2094. package/src/web/search/providers/perplexity.ts +575 -0
  2095. package/src/web/search/providers/searxng.ts +309 -0
  2096. package/src/web/search/providers/synthetic.ts +108 -0
  2097. package/src/web/search/providers/tavily.ts +173 -0
  2098. package/src/web/search/providers/utils.ts +128 -0
  2099. package/src/web/search/providers/xai.ts +174 -0
  2100. package/src/web/search/providers/zai.ts +320 -0
  2101. package/src/web/search/render.ts +299 -0
  2102. package/src/web/search/types.ts +445 -0
  2103. package/src/web/search/utils.ts +17 -0
  2104. package/src/workspace-tree.ts +286 -0
@@ -0,0 +1,2938 @@
1
+ /**
2
+ * Interactive mode for the coding agent.
3
+ * Handles TUI rendering and user interaction, delegating business logic to AgentSession.
4
+ */
5
+ import * as fs from "node:fs/promises";
6
+ import * as path from "node:path";
7
+ import { type Agent, type AgentMessage, type AgentToolResult, ThinkingLevel } from "@jawcode-dev/agent-core";
8
+ import type { CompactionOutcome } from "@jawcode-dev/agent-core/compaction";
9
+ import {
10
+ type AssistantMessage,
11
+ type ImageContent,
12
+ type Message,
13
+ type Model,
14
+ modelsAreEqual,
15
+ type UsageReport,
16
+ } from "@jawcode-dev/ai";
17
+ import type { Component, EditorTheme, SlashCommand } from "@jawcode-dev/tui";
18
+ import {
19
+ Container,
20
+ clearRenderCache,
21
+ Loader,
22
+ Markdown,
23
+ ProcessTerminal,
24
+ Spacer,
25
+ Text,
26
+ TUI,
27
+ ViewportFill,
28
+ visibleWidth,
29
+ } from "@jawcode-dev/tui";
30
+ import {
31
+ $flag,
32
+ APP_NAME,
33
+ adjustHsv,
34
+ getProjectDir,
35
+ hsvToRgb,
36
+ isEnoent,
37
+ logger,
38
+ postmortem,
39
+ prompt,
40
+ } from "@jawcode-dev/utils";
41
+ import chalk from "chalk";
42
+ import { AsyncJobManager } from "../async";
43
+ import { KeybindingsManager } from "../config/keybindings";
44
+ import { isSettingsInitialized, type Settings, settings } from "../config/settings";
45
+ import { DEFAULT_JWC_DEFINITION_NAMES } from "../defaults/jwc-defaults";
46
+ import { isJawBrand } from "../discovery/helpers";
47
+ import type {
48
+ ExtensionUIContext,
49
+ ExtensionUIDialogOptions,
50
+ ExtensionWidgetContent,
51
+ ExtensionWidgetOptions,
52
+ } from "../extensibility/extensions";
53
+ import type { CompactOptions } from "../extensibility/extensions/types";
54
+ import { resolveSkillSlashCommands, type Skill } from "../extensibility/skills";
55
+ import { BUILTIN_SLASH_COMMANDS, loadSlashCommands } from "../extensibility/slash-commands";
56
+ import { buildGoalPlanningStart } from "../goals/goal-planning-start";
57
+ import { type Goal, type GoalModeState, normalizeGoal } from "../goals/state";
58
+ import { resolveLocalUrlToPath } from "../internal-urls";
59
+ import { createGoalPlan, startNextGoal } from "../jwc-runtime/goal-engine";
60
+ import { consumePendingGoalModeRequest } from "../jwc-runtime/goal-mode-request";
61
+ import { LSP_STARTUP_EVENT_CHANNEL, type LspStartupEvent } from "../lsp/startup-events";
62
+ import {
63
+ humanizePlanTitle,
64
+ type PlanApprovalDetails,
65
+ renameApprovedPlanFile,
66
+ resolvePlanTitle,
67
+ } from "../plan-mode/approved-plan";
68
+ import planModeApprovedPrompt from "../prompts/system/plan-mode-approved.md" with { type: "text" };
69
+ import planModeCompactInstructionsPrompt from "../prompts/system/plan-mode-compact-instructions.md" with {
70
+ type: "text",
71
+ };
72
+ import {
73
+ createStarReminderBeforeAgentStartContributor,
74
+ scheduleLaunchStarReminderAfterFirstRender,
75
+ starReminderLaunchGate,
76
+ } from "../reminders/star-reminder";
77
+ import type { AgentSession, AgentSessionEvent } from "../session/agent-session";
78
+ import { HistoryStorage } from "../session/history-storage";
79
+ import type { SessionContext, SessionManager } from "../session/session-manager";
80
+ import { getRecentSessions } from "../session/session-manager";
81
+ import { formatDuration } from "../slash-commands/helpers/format";
82
+ import { STTController, type SttState } from "../stt";
83
+ import type { LspStartupServerInfo } from "../tools";
84
+ import { normalizeLocalScheme } from "../tools/path-utils";
85
+ import { type ResolveToolDetails, runResolveInvocation } from "../tools/resolve";
86
+ import { formatPhaseDisplayName } from "../tools/todo-write";
87
+ import { ToolError } from "../tools/tool-errors";
88
+ import type { EventBus } from "../utils/event-bus";
89
+ import { getEditorCommand, openInEditor } from "../utils/external-editor";
90
+ import { getSessionAccentAnsi, getSessionAccentHex } from "../utils/session-color";
91
+ import { popTerminalTitle, pushTerminalTitle, setSessionTerminalTitle } from "../utils/title-generator";
92
+ import type { AssistantMessageComponent } from "./components/assistant-message";
93
+ import { BackgroundFooterDetailComponent } from "./components/background-footer-detail";
94
+ import { BackgroundFooterPanel } from "./components/background-footer-panel";
95
+ import { buildBackgroundDetailItems, buildBackgroundFooterModel } from "./components/background-footer-panel-model";
96
+ import type { BashExecutionComponent } from "./components/bash-execution";
97
+ import { ComposerFooter } from "./components/composer-footer";
98
+ import { CustomEditor } from "./components/custom-editor";
99
+ import { DynamicBorder } from "./components/dynamic-border";
100
+ import type { EvalExecutionComponent } from "./components/eval-execution";
101
+ import type { HookEditorComponent } from "./components/hook-editor";
102
+ import type { HookInputComponent } from "./components/hook-input";
103
+ import type { HookSelectorComponent } from "./components/hook-selector";
104
+ import {
105
+ createPabcdBorderCycle,
106
+ getPabcdBorderColor,
107
+ isPabcdPhase,
108
+ type PabcdBorderHandle,
109
+ } from "./components/pabcd-border";
110
+ import { StatusLineComponent } from "./components/status-line";
111
+ import type { ToolExecutionHandle } from "./components/tool-execution";
112
+ import { UserMessageComponent } from "./components/user-message";
113
+ import { WelcomeComponent, type LspServerInfo as WelcomeLspServerInfo } from "./components/welcome";
114
+ import { BtwController } from "./controllers/btw-controller";
115
+ import { CommandController } from "./controllers/command-controller";
116
+ import { EventController } from "./controllers/event-controller";
117
+ import { ExtensionUiController } from "./controllers/extension-ui-controller";
118
+ import { InputController } from "./controllers/input-controller";
119
+ import { SelectorController } from "./controllers/selector-controller";
120
+ import { SSHCommandController } from "./controllers/ssh-command-controller";
121
+ import { TodoCommandController } from "./controllers/todo-command-controller";
122
+ import { JobsObserver } from "./jobs-observer";
123
+ import { OAuthManualInputManager } from "./oauth-manual-input";
124
+ import { SessionObserverRegistry } from "./session-observer-registry";
125
+ import { interruptHint } from "./shared";
126
+ import { type ShimmerPalette, shimmerSegments, shimmerText } from "./theme/shimmer";
127
+ import type { Theme } from "./theme/theme";
128
+ import {
129
+ getEditorTheme,
130
+ getMarkdownTheme,
131
+ getSymbolTheme,
132
+ onTerminalAppearanceChange,
133
+ onThemeChange,
134
+ theme,
135
+ } from "./theme/theme";
136
+ import type { CompactionQueuedMessage, InteractiveModeContext, SubmittedUserInput, TodoItem, TodoPhase } from "./types";
137
+ import type { CompactionProgressPresenter } from "./utils/compaction-progress";
138
+ import { UiHelpers } from "./utils/ui-helpers";
139
+
140
+ const INTERACTIVE_ABORT_CLEANUP_TIMEOUT_MS = 5_000;
141
+
142
+ const HINT_SHIMMER_PALETTE: ShimmerPalette = {
143
+ low: "dim",
144
+ mid: "muted",
145
+ high: "borderAccent",
146
+ };
147
+
148
+ function getDefaultInputPrefix(): string {
149
+ return `${theme.fg("accent", ">")} `;
150
+ }
151
+
152
+ function getShellInputPrefix(isNoContext: boolean): string {
153
+ const shellLabel = isNoContext
154
+ ? theme.fg("warning", theme.bold("shell no-context"))
155
+ : theme.fg("bashMode", theme.bold("shell"));
156
+ return `${shellLabel} ${getDefaultInputPrefix()}`;
157
+ }
158
+
159
+ function configureDefaultComposerChrome(editor: CustomEditor): void {
160
+ editor.setBorderVisible(true);
161
+ editor.setBorderStyle("sharp");
162
+ editor.setClosedBorderBox(true);
163
+ editor.setPromptGutter(undefined);
164
+ editor.setInputPrefix(getDefaultInputPrefix());
165
+ editor.setPlaceholder("Type your message...");
166
+ editor.setPaddingX(1);
167
+ editor.setTopBorder(undefined);
168
+ }
169
+
170
+ interface WorkingMessageAccent {
171
+ main: string;
172
+ dim: string;
173
+ }
174
+
175
+ function renderWorkingMessage(message: string, accent?: WorkingMessageAccent): string {
176
+ const palette = accent
177
+ ? ({
178
+ low: "dim",
179
+ mid: { ansi: accent.main },
180
+ high: { ansi: accent.main },
181
+ bold: true,
182
+ } satisfies ShimmerPalette)
183
+ : undefined;
184
+ const hint = interruptHint();
185
+ if (!message.endsWith(hint)) return shimmerText(message, theme, palette);
186
+ const header = message.slice(0, -hint.length);
187
+ const hintPalette = accent
188
+ ? ({
189
+ low: "dim",
190
+ mid: { ansi: accent.dim },
191
+ high: { ansi: accent.dim },
192
+ } satisfies ShimmerPalette)
193
+ : HINT_SHIMMER_PALETTE;
194
+ return shimmerSegments(
195
+ [
196
+ { text: header, palette },
197
+ { text: hint, palette: hintPalette },
198
+ ],
199
+ theme,
200
+ );
201
+ }
202
+
203
+ const EDITOR_MAX_HEIGHT_MIN = 6;
204
+ const EDITOR_MAX_HEIGHT_MAX = 18;
205
+ const EDITOR_RESERVED_ROWS = 12;
206
+ const EDITOR_FALLBACK_ROWS = 24;
207
+
208
+ const HUD_NOTE_SUP_DIGITS: Record<string, string> = {
209
+ "0": "\u2070",
210
+ "1": "\u00b9",
211
+ "2": "\u00b2",
212
+ "3": "\u00b3",
213
+ "4": "\u2074",
214
+ "5": "\u2075",
215
+ "6": "\u2076",
216
+ "7": "\u2077",
217
+ "8": "\u2078",
218
+ "9": "\u2079",
219
+ };
220
+
221
+ function formatHudNoteMarker(count: number): string {
222
+ if (count <= 0) return "";
223
+ const sub = String(count)
224
+ .split("")
225
+ .map(d => HUD_NOTE_SUP_DIGITS[d] ?? d)
226
+ .join("");
227
+ return theme.fg("dim", chalk.italic(` \u207a${sub}`));
228
+ }
229
+
230
+ type GoalSubcommand = "set" | "show" | "pause" | "resume" | "drop" | "plan";
231
+
232
+ const GOAL_SUBCOMMANDS = new Set<GoalSubcommand>(["set", "show", "pause", "resume", "drop", "plan"]);
233
+
234
+ function parseGoalSubcommand(args: string): { sub: GoalSubcommand | undefined; rest: string } {
235
+ const trimmed = args.trim();
236
+ if (!trimmed) return { sub: undefined, rest: "" };
237
+ const match = /^(\S+)(?:\s+([\s\S]*))?$/.exec(trimmed);
238
+ if (!match) return { sub: undefined, rest: trimmed };
239
+ const first = match[1].toLowerCase();
240
+ if (GOAL_SUBCOMMANDS.has(first as GoalSubcommand)) {
241
+ return { sub: first as GoalSubcommand, rest: match[2]?.trim() ?? "" };
242
+ }
243
+ return { sub: undefined, rest: trimmed };
244
+ }
245
+
246
+ /** Options for creating an InteractiveMode instance (for future API use) */
247
+ export interface InteractiveModeOptions {
248
+ /** Providers that were migrated during startup */
249
+ migratedProviders?: string[];
250
+ /** Warning message if model fallback occurred */
251
+ modelFallbackMessage?: string;
252
+ /** Initial message to send */
253
+ initialMessage?: string;
254
+ /** Initial images to include with the message */
255
+ initialImages?: ImageContent[];
256
+ /** Additional initial messages to queue */
257
+ initialMessages?: string[];
258
+ }
259
+
260
+ export class InteractiveMode implements InteractiveModeContext {
261
+ session: AgentSession;
262
+ sessionManager: SessionManager;
263
+ settings: Settings;
264
+ keybindings: KeybindingsManager;
265
+ agent: Agent;
266
+ historyStorage?: HistoryStorage;
267
+
268
+ ui: TUI;
269
+ chatContainer: Container;
270
+ /** 083.7 — stretches above the chat to pin content+composer to the terminal bottom (§11). */
271
+ #viewportFill = new ViewportFill();
272
+ pendingMessagesContainer: Container;
273
+ /** 99.20.04 — live zone for active tool previews (commit-time folding). */
274
+ liveToolContainer: Container;
275
+ statusContainer: Container;
276
+ todoContainer: Container;
277
+ btwContainer: Container;
278
+ editor: CustomEditor;
279
+ editorContainer: Container;
280
+ hookWidgetContainerAbove: Container;
281
+ hookWidgetContainerBelow: Container;
282
+ statusLine: StatusLineComponent;
283
+ #pabcdBorderHandle: PabcdBorderHandle | null = null;
284
+ /** 99.20.06 — persistent 1-row notice/hint line below the editor (CC footer model). */
285
+ composerFooter: ComposerFooter;
286
+ backgroundFooterPanel: BackgroundFooterPanel;
287
+
288
+ isInitialized = false;
289
+ isBackgrounded = false;
290
+ isBashMode = false;
291
+ isBashNoContext = false;
292
+ toolOutputExpanded = false;
293
+ // Thinking blocks collapse to one-line summaries by default (devlog 083.5).
294
+ thinkingExpanded = false;
295
+ currentTurnStartIndex = 0;
296
+ todoExpanded = false;
297
+ planModeEnabled = false;
298
+ planModePaused = false;
299
+ goalModeEnabled = false;
300
+ goalModePaused = false;
301
+ planModePlanFilePath: string | undefined = undefined;
302
+ todoPhases: TodoPhase[] = [];
303
+ hideThinkingBlock = false;
304
+ pendingImages: ImageContent[] = [];
305
+ compactionQueuedMessages: CompactionQueuedMessage[] = [];
306
+ pendingTools = new Map<string, ToolExecutionHandle>();
307
+ lastToolComponent: ToolExecutionHandle | undefined = undefined;
308
+ pendingBashComponents: BashExecutionComponent[] = [];
309
+ bashComponent: BashExecutionComponent | undefined = undefined;
310
+ pendingPythonComponents: EvalExecutionComponent[] = [];
311
+ pythonComponent: EvalExecutionComponent | undefined = undefined;
312
+ isPythonMode = false;
313
+ streamingComponent: AssistantMessageComponent | undefined = undefined;
314
+ streamingMessage: AssistantMessage | undefined = undefined;
315
+ loadingAnimation: Loader | undefined = undefined;
316
+ autoCompactionLoader: Loader | undefined = undefined;
317
+ autoCompactionProgressPresenter: CompactionProgressPresenter | undefined = undefined;
318
+ retryLoader: Loader | undefined = undefined;
319
+ #pendingWorkingMessage: string | undefined;
320
+ get #defaultWorkingMessage(): string {
321
+ return `Working…${interruptHint()}`;
322
+ }
323
+ autoCompactionEscapeHandler?: () => void;
324
+ retryEscapeHandler?: () => void;
325
+ retryCountdownTimer?: ReturnType<typeof setInterval>;
326
+ unsubscribe?: () => void;
327
+ onInputCallback?: (input: SubmittedUserInput) => void;
328
+ optimisticUserMessageSignature: string | undefined = undefined;
329
+ locallySubmittedUserSignatures: Set<string> = new Set();
330
+ #pendingSubmittedInput: SubmittedUserInput | undefined;
331
+ #pendingSubmissionDispose: (() => void) | undefined;
332
+ lastSigintTime = 0;
333
+ lastEscapeTime = 0;
334
+ shutdownRequested = false;
335
+ #isShuttingDown = false;
336
+ hookSelector: HookSelectorComponent | undefined = undefined;
337
+ hookInput: HookInputComponent | undefined = undefined;
338
+ hookEditor: HookEditorComponent | undefined = undefined;
339
+ lastStatusSpacer: Spacer | undefined = undefined;
340
+ lastStatusText: Text | undefined = undefined;
341
+ fileSlashCommands: Set<string> = new Set();
342
+ /** Combined command list as advertised to autocomplete — /help renders from this (99.20.08). */
343
+ allSlashCommands: SlashCommand[] = [];
344
+ skillCommands: Map<string, Skill> = new Map();
345
+ oauthManualInput: OAuthManualInputManager = new OAuthManualInputManager();
346
+
347
+ #baseSlashCommands: SlashCommand[] = [];
348
+ #baseReservedSlashCommandNames: Set<string> = new Set();
349
+ #cleanupUnsubscribe?: () => void;
350
+ readonly #version: string;
351
+ readonly #changelogMarkdown: string | undefined;
352
+ #planModePreviousTools: string[] | undefined;
353
+ #goalModePreviousTools: string[] | undefined;
354
+ #goalContinuationTimer: NodeJS.Timeout | undefined;
355
+ #goalTurnHadToolCalls = false;
356
+ #goalContinuationTurnInFlight = false;
357
+ #goalSuppressNextContinuation = false;
358
+ #planModePreviousModelState: { model: Model; thinkingLevel?: ThinkingLevel } | undefined;
359
+ #pendingModelSwitch: { model: Model; thinkingLevel?: ThinkingLevel } | undefined;
360
+ #planModeHasEntered = false;
361
+ #planReviewContainer: Container | undefined;
362
+ readonly lspServers: LspStartupServerInfo[] | undefined = undefined;
363
+ mcpManager?: import("../runtime-mcp").MCPManager;
364
+ readonly #toolUiContextSetter: (uiContext: ExtensionUIContext, hasUI: boolean) => void;
365
+
366
+ readonly #btwController: BtwController;
367
+ readonly #commandController: CommandController;
368
+ readonly #todoCommandController: TodoCommandController;
369
+ readonly #eventController: EventController;
370
+ readonly #extensionUiController: ExtensionUiController;
371
+ readonly #inputController: InputController;
372
+ readonly #selectorController: SelectorController;
373
+ readonly #uiHelpers: UiHelpers;
374
+ #sttController: STTController | undefined;
375
+ #voiceAnimationInterval: NodeJS.Timeout | undefined;
376
+ #voiceHue = 0;
377
+ #voicePreviousShowHardwareCursor: boolean | null = null;
378
+ #voicePreviousUseTerminalCursor: boolean | null = null;
379
+ #resizeHandler?: () => void;
380
+ #observerRegistry: SessionObserverRegistry;
381
+ #jobsObserver?: JobsObserver;
382
+ #backgroundFooterDetail?: BackgroundFooterDetailComponent;
383
+ #userAgentMessageSeq = 0;
384
+ #eventBus?: EventBus;
385
+ #eventBusUnsubscribers: Array<() => void> = [];
386
+ #welcomeComponent?: WelcomeComponent;
387
+
388
+ constructor(
389
+ session: AgentSession,
390
+ version: string,
391
+ changelogMarkdown: string | undefined = undefined,
392
+ setToolUIContext: (uiContext: ExtensionUIContext, hasUI: boolean) => void = () => {},
393
+ lspServers: LspStartupServerInfo[] | undefined = undefined,
394
+ mcpManager?: import("../runtime-mcp").MCPManager,
395
+ eventBus?: EventBus,
396
+ ) {
397
+ this.session = session;
398
+ this.sessionManager = session.sessionManager;
399
+ this.settings = session.settings;
400
+ this.keybindings = KeybindingsManager.inMemory();
401
+ this.agent = session.agent;
402
+ this.#version = version;
403
+ this.#changelogMarkdown = changelogMarkdown;
404
+ this.#toolUiContextSetter = setToolUIContext;
405
+ this.lspServers = lspServers;
406
+ this.mcpManager = mcpManager;
407
+ this.#eventBus = eventBus;
408
+ if (eventBus) {
409
+ this.#eventBusUnsubscribers.push(
410
+ eventBus.on(LSP_STARTUP_EVENT_CHANNEL, data => {
411
+ this.#handleLspStartupEvent(data as LspStartupEvent);
412
+ }),
413
+ );
414
+ }
415
+
416
+ this.ui = new TUI(new ProcessTerminal(), settings.get("showHardwareCursor"));
417
+ this.ui.setClearOnShrink(settings.get("clearOnShrink"));
418
+ this.chatContainer = new Container();
419
+ this.pendingMessagesContainer = new Container();
420
+ this.liveToolContainer = new Container();
421
+ this.statusContainer = new Container();
422
+ this.todoContainer = new Container();
423
+ this.btwContainer = new Container();
424
+ this.editor = new CustomEditor(getEditorTheme());
425
+ configureDefaultComposerChrome(this.editor);
426
+ this.editor.setUseTerminalCursor(this.ui.getShowHardwareCursor());
427
+ this.editor.setAutocompleteMaxVisible(settings.get("autocompleteMaxVisible"));
428
+ this.editor.onAutocompleteCancel = () => {
429
+ this.ui.requestRender(true);
430
+ };
431
+ this.editor.onAutocompleteUpdate = () => {
432
+ this.ui.requestRender();
433
+ };
434
+ this.#syncEditorMaxHeight();
435
+ this.#resizeHandler = () => {
436
+ this.#syncEditorMaxHeight();
437
+ this.updateEditorChrome();
438
+ };
439
+ process.stdout.on("resize", this.#resizeHandler);
440
+ try {
441
+ this.historyStorage = HistoryStorage.open();
442
+ this.editor.setHistoryStorage(this.historyStorage);
443
+ } catch (error) {
444
+ logger.warn("History storage unavailable", { error: String(error) });
445
+ }
446
+ this.hookWidgetContainerAbove = new Container();
447
+ this.hookWidgetContainerBelow = new Container();
448
+ this.editorContainer = new Container();
449
+ this.editorContainer.addChild(this.editor);
450
+ this.statusLine = new StatusLineComponent(session);
451
+ this.statusLine.setAutoCompactEnabled(session.autoCompactionEnabled);
452
+ this.statusLine.onPabcdStageChange(() => this.updateEditorChrome());
453
+ this.composerFooter = new ComposerFooter(() => this.ui.requestRender());
454
+ this.backgroundFooterPanel = new BackgroundFooterPanel({
455
+ openDetail: rowId => this.openBackgroundFooterDetail(rowId),
456
+ requestRender: () => this.ui.requestRender(),
457
+ });
458
+
459
+ this.hideThinkingBlock = settings.get("hideThinkingBlock");
460
+
461
+ const builtinCommandNames = new Set(BUILTIN_SLASH_COMMANDS.map(c => c.name));
462
+ const hookCommands: SlashCommand[] = (
463
+ this.session.extensionRunner?.getRegisteredCommands(builtinCommandNames) ?? []
464
+ ).map(cmd => ({
465
+ name: cmd.name,
466
+ description: cmd.description ?? "(hook command)",
467
+ getArgumentCompletions: cmd.getArgumentCompletions,
468
+ }));
469
+
470
+ // Convert custom commands (TypeScript) to SlashCommand format
471
+ const customCommands: SlashCommand[] = this.session.customCommands.map(loaded => ({
472
+ name: loaded.command.name,
473
+ description: `${loaded.command.description} (${loaded.source})`,
474
+ }));
475
+
476
+ this.#baseSlashCommands = [...BUILTIN_SLASH_COMMANDS, ...hookCommands, ...customCommands];
477
+ this.#baseReservedSlashCommandNames = new Set(this.#baseSlashCommands.map(command => command.name));
478
+ this.#rebuildSkillSlashCommands();
479
+
480
+ this.#uiHelpers = new UiHelpers(this);
481
+ this.#btwController = new BtwController(this);
482
+ this.#extensionUiController = new ExtensionUiController(this);
483
+ this.#eventController = new EventController(this);
484
+ this.#commandController = new CommandController(this);
485
+ this.#todoCommandController = new TodoCommandController(this);
486
+ this.#selectorController = new SelectorController(this);
487
+ this.#inputController = new InputController(this);
488
+ this.#observerRegistry = new SessionObserverRegistry();
489
+ }
490
+
491
+ async init(): Promise<void> {
492
+ if (this.isInitialized) return;
493
+
494
+ this.keybindings = logger.time("InteractiveMode.init:keybindings", () => KeybindingsManager.create());
495
+
496
+ // Register session manager flush for signal handlers (SIGINT, SIGTERM, SIGHUP)
497
+ this.#cleanupUnsubscribe = postmortem.register("session-manager-flush", () => this.sessionManager.flush());
498
+
499
+ await logger.time(
500
+ "InteractiveMode.init:slashCommands",
501
+ this.refreshSlashCommandState.bind(this),
502
+ getProjectDir(),
503
+ );
504
+
505
+ // Get current model info for welcome screen
506
+ const modelName = this.session.model?.name ?? "Unknown";
507
+ const providerName = this.session.model?.provider ?? "Unknown";
508
+
509
+ // Get recent sessions
510
+ const recentSessions = await logger.time("InteractiveMode.init:recentSessions", () =>
511
+ getRecentSessions(this.sessionManager.getSessionDir()).then(sessions =>
512
+ sessions.map(s => ({
513
+ name: s.name,
514
+ timeAgo: s.timeAgo,
515
+ })),
516
+ ),
517
+ );
518
+
519
+ const startupQuiet = settings.get("startup.quiet");
520
+ this.#welcomeComponent = undefined;
521
+
522
+ for (const warning of this.session.configWarnings) {
523
+ this.ui.addChild(new Text(theme.fg("warning", `Warning: ${warning}`), 1, 0));
524
+ this.ui.addChild(new Spacer(1));
525
+ }
526
+
527
+ if (!startupQuiet) {
528
+ // Add welcome header
529
+ this.#welcomeComponent = new WelcomeComponent(
530
+ this.#version,
531
+ modelName,
532
+ providerName,
533
+ recentSessions,
534
+ this.#getWelcomeLspServers(),
535
+ );
536
+ this.#welcomeComponent.getViewportRows = () => this.ui.terminal.rows;
537
+
538
+ // Setup UI layout
539
+ this.ui.addChild(new Spacer(1));
540
+ this.ui.addChild(this.#welcomeComponent);
541
+ this.ui.addChild(new Spacer(1));
542
+ this.#welcomeComponent.playIntro(() => this.ui.requestRender());
543
+
544
+ // Add changelog if provided
545
+ if (this.#changelogMarkdown) {
546
+ this.ui.addChild(new DynamicBorder());
547
+ if (settings.get("collapseChangelog")) {
548
+ const versionMatch = this.#changelogMarkdown.match(/##\s+\[?(\d+\.\d+\.\d+)\]?/);
549
+ const latestVersion = versionMatch ? versionMatch[1] : this.#version;
550
+ const condensedText = `Updated to v${latestVersion}. Use ${theme.bold("/changelog")} to view full changelog.`;
551
+ this.ui.addChild(new Text(condensedText, 1, 0));
552
+ } else {
553
+ this.ui.addChild(new Text(theme.bold(theme.fg("accent", "What's New")), 1, 0));
554
+ this.ui.addChild(new Spacer(1));
555
+ this.ui.addChild(new Markdown(this.#changelogMarkdown.trim(), 1, 0, getMarkdownTheme()));
556
+ this.ui.addChild(new Spacer(1));
557
+ }
558
+ this.ui.addChild(new DynamicBorder());
559
+ }
560
+ }
561
+
562
+ // 083.7 composer bottom pin (§11: fill sits ABOVE the chat) — everything
563
+ // mounted after the fill hugs the terminal floor: transcript tail, slash
564
+ // output, and the composer stay together at the bottom (CC-like), and
565
+ // collapse deltas are absorbed by the top gap instead of moving content
566
+ // to the top of the panel. While the frame fits the viewport the shifted
567
+ // rows never touch scrollback, so the differential model stays sound.
568
+ // Unset setting = brand default (jwc on).
569
+ const composerPinSetting = settings.get("tui.composerPin");
570
+ this.#viewportFill.setEnabled(!$flag("PI_NO_COMPOSER_PIN") && (composerPinSetting ?? isJawBrand()));
571
+ this.ui.addChild(this.#viewportFill);
572
+ this.ui.addChild(this.chatContainer);
573
+ this.ui.addChild(this.pendingMessagesContainer);
574
+ // 99.20.04 live zone — active tool previews render here (above the status
575
+ // loader) and are committed to the chat as collapsed lines on completion.
576
+ this.ui.addChild(this.liveToolContainer);
577
+ this.ui.addChild(this.statusContainer);
578
+ this.ui.addChild(this.todoContainer);
579
+ this.ui.addChild(this.btwContainer);
580
+ this.ui.addChild(new Spacer(1)); // Breathing room between the last response and the composer cluster.
581
+ this.ui.addChild(this.statusLine); // Main status rail + hook statuses; composer chrome is rendered by the editor — attached directly below the rail, no gap.
582
+ this.ui.addChild(this.hookWidgetContainerAbove);
583
+ this.ui.addChild(this.editorContainer);
584
+ this.ui.addChild(this.hookWidgetContainerBelow);
585
+ // 99.20.06 composer footer — always the frame's last line (F1). Reserves
586
+ // one constant row (transient ▸ mode ▸ hint) so notices never move the
587
+ // composer. Unset setting = brand default (jwc on / engine brand off).
588
+ const composerFooterSetting = settings.get("tui.composerFooter");
589
+ this.composerFooter.setEnabled(!$flag("PI_NO_COMPOSER_FOOTER") && (composerFooterSetting ?? isJawBrand()));
590
+ this.composerFooter.setHint("? for shortcuts · /help for commands");
591
+ this.ui.addChild(this.composerFooter);
592
+ this.ui.addChild(this.backgroundFooterPanel);
593
+ this.ui.setFocus(this.editor);
594
+
595
+ this.#inputController.setupKeyHandlers();
596
+ this.#inputController.setupEditorSubmitHandler();
597
+
598
+ // Wire observer registry to EventBus
599
+ if (this.#eventBus) {
600
+ this.#observerRegistry.subscribeToEventBus(this.#eventBus);
601
+ }
602
+ this.#observerRegistry.setMainSession(this.sessionManager.getSessionFile() ?? undefined);
603
+ this.#observerRegistry.onChange(() => {
604
+ this.statusLine.setSubagentCount(this.#observerRegistry.getActiveSubagentCount());
605
+ this.ui.requestRender();
606
+ });
607
+
608
+ // Event-driven monitor/cron jobs widget. Scoped to this session's owner so
609
+ // overlay actions cannot mutate another agent's background work.
610
+ const jobManager = AsyncJobManager.instance();
611
+ if (jobManager) {
612
+ const jobsObserver = new JobsObserver(jobManager, this.session.getAgentId());
613
+ this.#jobsObserver = jobsObserver;
614
+ this.#refreshBackgroundFooter();
615
+ jobsObserver.onChange(() => this.#refreshBackgroundFooter());
616
+ }
617
+
618
+ // Load initial todos
619
+ await this.#loadTodoList();
620
+
621
+ // Start the UI
622
+ this.ui.start();
623
+ pushTerminalTitle();
624
+ setSessionTerminalTitle(this.sessionManager.getSessionName(), this.sessionManager.getCwd());
625
+ this.updateEditorChrome();
626
+ this.#syncEditorMaxHeight();
627
+ this.isInitialized = true;
628
+ this.ui.requestRender(true);
629
+
630
+ // GitHub star reminder (interactive-only). Register the decline-driven
631
+ // injection contributor and schedule the launch nudge after the first
632
+ // render so the networked gh check never blocks startup.
633
+ const starReminderGate = starReminderLaunchGate({
634
+ enabled: settings.get("starReminder.enabled"),
635
+ quiet: startupQuiet,
636
+ });
637
+ if (starReminderGate.register) {
638
+ this.session.registerBeforeAgentStartContributor(
639
+ createStarReminderBeforeAgentStartContributor({
640
+ getSessionId: () => this.sessionManager.getSessionId(),
641
+ }),
642
+ );
643
+ }
644
+ if (starReminderGate.schedule) {
645
+ scheduleLaunchStarReminderAfterFirstRender({
646
+ confirm: (title, message) => this.showHookConfirm(title, message),
647
+ isIdle: () => !this.session.isStreaming && !this.isBackgrounded && !this.hookSelector,
648
+ });
649
+ }
650
+
651
+ // Initialize hooks with TUI-based UI context
652
+ await this.initHooksAndCustomTools();
653
+
654
+ // Restore mode from session (e.g. plan mode on resume)
655
+ await this.#restoreModeFromSession();
656
+
657
+ // Restore unsent editor draft from previous session shutdown (Ctrl+D).
658
+ // One-shot: consumeDraft removes the sidecar after read so the next
659
+ // resume does not re-restore the same text.
660
+ try {
661
+ const draft = await this.sessionManager.consumeDraft();
662
+ if (draft && !this.editor.getText()) {
663
+ this.editor.setText(draft);
664
+ this.updateEditorChrome();
665
+ this.ui.requestRender();
666
+ }
667
+ } catch (err) {
668
+ logger.warn("Failed to restore session draft", { error: String(err) });
669
+ }
670
+
671
+ // Subscribe to agent events
672
+ this.#subscribeToAgent();
673
+
674
+ this.#eventBusUnsubscribers.push(
675
+ this.session.subscribe(event => {
676
+ void this.#handleGoalSessionEvent(event);
677
+ }),
678
+ );
679
+ // Set up theme file watcher
680
+ onThemeChange(() => {
681
+ clearRenderCache();
682
+ configureDefaultComposerChrome(this.editor);
683
+ this.ui.invalidate();
684
+ this.updateEditorChrome();
685
+ this.ui.requestRender();
686
+ });
687
+
688
+ // Subscribe to terminal dark/light appearance changes.
689
+ // The terminal queries background color via OSC 11 at startup and on
690
+ // Mode 2031 notifications, computing luminance to detect dark/light.
691
+ this.ui.terminal.onAppearanceChange(mode => {
692
+ onTerminalAppearanceChange(mode);
693
+ });
694
+
695
+ // Set up git branch watcher
696
+ this.statusLine.watchBranch(() => {
697
+ this.updateEditorChrome();
698
+ this.ui.requestRender();
699
+ });
700
+
701
+ // Initial top border update
702
+ this.updateEditorChrome();
703
+ }
704
+
705
+ /** Reload slash commands and autocomplete for the provided working directory. */
706
+ async refreshSlashCommandState(cwd?: string): Promise<void> {
707
+ const basePath = cwd ?? this.sessionManager.getCwd();
708
+ const fileCommands = await loadSlashCommands({ cwd: basePath });
709
+ const fileCommandNames = new Set(fileCommands.map(cmd => cmd.name));
710
+ this.fileSlashCommands = fileCommandNames;
711
+ const fileSlashCommands: SlashCommand[] = fileCommands.map(cmd => ({
712
+ name: cmd.name,
713
+ description: cmd.description,
714
+ }));
715
+ const skillCommands = this.#rebuildSkillSlashCommands(fileCommandNames);
716
+ const slashCommands = [...this.#baseSlashCommands, ...skillCommands];
717
+ this.allSlashCommands = [...slashCommands, ...fileSlashCommands];
718
+ const autocompleteProvider = this.#inputController.createAutocompleteProvider(this.allSlashCommands, basePath);
719
+ this.editor.setAutocompleteProvider(autocompleteProvider);
720
+ this.session.setSlashCommands(fileCommands);
721
+ }
722
+
723
+ #rebuildSkillSlashCommands(fileCommandNames: ReadonlySet<string> = new Set()): SlashCommand[] {
724
+ this.skillCommands.clear();
725
+ if (!settings.get("skills.enableSkillCommands")) {
726
+ return [];
727
+ }
728
+ const reservedDirectCommandNames = new Set([
729
+ ...this.#baseReservedSlashCommandNames,
730
+ ...Array.from(fileCommandNames),
731
+ ]);
732
+ const resolvedCommands = resolveSkillSlashCommands(this.session.skills, reservedDirectCommandNames);
733
+ for (const command of resolvedCommands) {
734
+ this.skillCommands.set(command.name, command.skill);
735
+ }
736
+ const defaultJwcNames = new Set<string>(DEFAULT_JWC_DEFINITION_NAMES);
737
+ // Bundled workflow skills stay pinned above generic commands in autocomplete;
738
+ // native /orchestrate remains separately registered at a higher priority.
739
+ return resolvedCommands.map(command => ({
740
+ name: command.name,
741
+ description: command.description,
742
+ // Pin the bundled GJC workflow skills above generic commands in autocomplete
743
+ // (below the native workflow entrypoints at 105-110, slash-commands.ts).
744
+ ...(defaultJwcNames.has(command.skill.name) ? { priority: 100 } : {}),
745
+ }));
746
+ }
747
+
748
+ async getUserInput(): Promise<SubmittedUserInput> {
749
+ if (this.session.getGoalModeState()?.mode === "exiting") {
750
+ await this.#exitGoalMode({ reason: "completed", silent: true });
751
+ }
752
+ const { promise, resolve } = Promise.withResolvers<SubmittedUserInput>();
753
+ this.onInputCallback = input => {
754
+ this.onInputCallback = undefined;
755
+ resolve(input);
756
+ };
757
+ this.#scheduleGoalContinuation();
758
+ return promise;
759
+ }
760
+
761
+ #scheduleGoalContinuation(): void {
762
+ this.#cancelGoalContinuation();
763
+ if (!this.onInputCallback) return;
764
+ if (!this.session.settings.get("goal.continuationModes").includes("interactive")) return;
765
+ if (this.planModeEnabled || this.planModePaused) return;
766
+ if (!this.goalModeEnabled || this.goalModePaused) return;
767
+ if (this.#goalSuppressNextContinuation) return;
768
+ if (this.#pendingSubmittedInput) return;
769
+ if (this.editor.getText().trim().length > 0) return;
770
+ if ((this.pendingImages?.length ?? 0) > 0) return;
771
+ const state = this.session.getGoalModeState();
772
+ if (!state?.enabled || state.goal.status !== "active") return;
773
+ const prompt = this.session.goalRuntime.buildContinuationPrompt();
774
+ if (!prompt) return;
775
+ this.#goalContinuationTimer = setTimeout(() => {
776
+ this.#goalContinuationTimer = undefined;
777
+ if (!this.onInputCallback) return;
778
+ if (!this.goalModeEnabled || this.goalModePaused) return;
779
+ if (this.#pendingSubmittedInput) return;
780
+ if (this.editor.getText().trim().length > 0) return;
781
+ if ((this.pendingImages?.length ?? 0) > 0) return;
782
+ const latestState = this.session.getGoalModeState();
783
+ if (!latestState?.enabled || latestState.goal.status !== "active") return;
784
+ if (this.session.isStreaming || this.session.isCompacting) {
785
+ this.#scheduleGoalContinuation();
786
+ return;
787
+ }
788
+ this.#goalContinuationTurnInFlight = true;
789
+ this.onInputCallback(
790
+ this.startPendingSubmission({
791
+ text: prompt,
792
+ customType: "goal-continuation",
793
+ display: false,
794
+ }),
795
+ );
796
+ }, 800);
797
+ }
798
+
799
+ #cancelGoalContinuation(): void {
800
+ if (this.#goalContinuationTimer) {
801
+ clearTimeout(this.#goalContinuationTimer);
802
+ this.#goalContinuationTimer = undefined;
803
+ }
804
+ }
805
+
806
+ recordLocalSubmission(text: string, imageCount = 0): () => void {
807
+ if (this.isKnownSlashCommand(text)) {
808
+ return () => {};
809
+ }
810
+ const signature = `${text}\u0000${imageCount}`;
811
+ this.locallySubmittedUserSignatures.add(signature);
812
+ let disposed = false;
813
+ return () => {
814
+ if (disposed) return;
815
+ disposed = true;
816
+ this.locallySubmittedUserSignatures.delete(signature);
817
+ };
818
+ }
819
+
820
+ prepareRealUserAgentPromptSubmission(): void {
821
+ const seq = ++this.#userAgentMessageSeq;
822
+ this.#jobsObserver?.acknowledgeTerminalAfterUserMessage(seq);
823
+ this.#refreshBackgroundFooter();
824
+ }
825
+
826
+ async withLocalSubmission<T>(text: string, fn: () => Promise<T>, options?: { imageCount?: number }): Promise<T> {
827
+ this.prepareRealUserAgentPromptSubmission();
828
+ const dispose = this.recordLocalSubmission(text, options?.imageCount ?? 0);
829
+ try {
830
+ return await fn();
831
+ } catch (err) {
832
+ dispose();
833
+ throw err;
834
+ }
835
+ }
836
+
837
+ startPendingSubmission(input: {
838
+ text: string;
839
+ images?: ImageContent[];
840
+ customType?: string;
841
+ display?: boolean;
842
+ }): SubmittedUserInput {
843
+ const submission: SubmittedUserInput = {
844
+ text: input.text,
845
+ images: input.images,
846
+ customType: input.customType,
847
+ display: input.display,
848
+ cancelled: false,
849
+ started: false,
850
+ };
851
+ this.#pendingSubmittedInput = submission;
852
+ if (!submission.customType) {
853
+ this.#resetGoalContinuationSuppression();
854
+ const imageCount = submission.images?.length ?? 0;
855
+ this.optimisticUserMessageSignature = `${submission.text}\u0000${imageCount}`;
856
+ this.#pendingSubmissionDispose = this.recordLocalSubmission(submission.text, imageCount);
857
+ this.addMessageToChat({
858
+ role: "user",
859
+ content: [{ type: "text", text: submission.text }, ...(submission.images ?? [])],
860
+ attribution: "user",
861
+ timestamp: Date.now(),
862
+ });
863
+ this.currentTurnStartIndex = this.chatContainer.children.length;
864
+ } else {
865
+ this.optimisticUserMessageSignature = undefined;
866
+ this.#pendingSubmissionDispose = undefined;
867
+ }
868
+ this.editor.setText("");
869
+ this.ensureLoadingAnimation();
870
+ this.ui.requestRender();
871
+ return submission;
872
+ }
873
+
874
+ cancelPendingSubmission(): boolean {
875
+ const submission = this.#pendingSubmittedInput;
876
+ if (!submission || submission.started) {
877
+ return false;
878
+ }
879
+
880
+ submission.cancelled = true;
881
+ this.#pendingSubmittedInput = undefined;
882
+ this.optimisticUserMessageSignature = undefined;
883
+ this.#pendingSubmissionDispose?.();
884
+ this.#pendingSubmissionDispose = undefined;
885
+ this.#pendingWorkingMessage = undefined;
886
+ if (submission.customType === "goal-continuation") {
887
+ this.#goalContinuationTurnInFlight = false;
888
+ }
889
+ if (this.loadingAnimation) {
890
+ this.loadingAnimation.stop();
891
+ this.loadingAnimation = undefined;
892
+ this.statusContainer.clear();
893
+ }
894
+ if (!submission.customType) {
895
+ this.pendingImages = submission.images ? [...submission.images] : [];
896
+ this.rebuildChatFromMessages();
897
+ this.editor.setText(submission.text);
898
+ }
899
+ this.updateEditorChrome();
900
+ this.ui.requestRender();
901
+ return true;
902
+ }
903
+
904
+ markPendingSubmissionStarted(input: SubmittedUserInput): boolean {
905
+ if (this.#pendingSubmittedInput !== input || input.cancelled) {
906
+ return false;
907
+ }
908
+ input.started = true;
909
+ return true;
910
+ }
911
+
912
+ finishPendingSubmission(input: SubmittedUserInput): void {
913
+ const wasPendingSubmission = this.#pendingSubmittedInput === input;
914
+ const pendingSubmissionDispose = this.#pendingSubmissionDispose;
915
+ if (wasPendingSubmission) {
916
+ this.#pendingSubmittedInput = undefined;
917
+ this.#pendingSubmissionDispose = undefined;
918
+ }
919
+ if (input.customType === "goal-continuation") {
920
+ this.#goalContinuationTurnInFlight = false;
921
+ }
922
+
923
+ if (wasPendingSubmission && !this.session.isStreaming && !this.streamingComponent) {
924
+ this.optimisticUserMessageSignature = undefined;
925
+ pendingSubmissionDispose?.();
926
+ this.#pendingWorkingMessage = undefined;
927
+ if (this.loadingAnimation) {
928
+ this.loadingAnimation.stop();
929
+ this.loadingAnimation = undefined;
930
+ this.statusContainer.clear();
931
+ }
932
+ }
933
+ }
934
+
935
+ #computeEditorMaxHeight(): number {
936
+ const rows = this.ui.terminal.rows;
937
+ const terminalRows = Number.isFinite(rows) && rows > 0 ? rows : EDITOR_FALLBACK_ROWS;
938
+ const maxHeight = terminalRows - EDITOR_RESERVED_ROWS;
939
+ return Math.max(EDITOR_MAX_HEIGHT_MIN, Math.min(EDITOR_MAX_HEIGHT_MAX, maxHeight));
940
+ }
941
+
942
+ #syncEditorMaxHeight(): void {
943
+ this.editor.setMaxHeight(this.#computeEditorMaxHeight());
944
+ }
945
+
946
+ updateEditorChrome(): void {
947
+ if (this.isBashMode) {
948
+ this.editor.borderColor = this.isBashNoContext
949
+ ? (str: string) => theme.fg("warning", str)
950
+ : theme.getBashModeBorderColor();
951
+ this.editor.setInputPrefix(getShellInputPrefix(this.isBashNoContext));
952
+ } else if (this.isPythonMode) {
953
+ this.editor.borderColor = theme.getPythonModeBorderColor();
954
+ } else if (this.statusLine.activePabcdStage && isPabcdPhase(this.statusLine.activePabcdStage)) {
955
+ this.editor.borderColor = getPabcdBorderColor(this.statusLine.activePabcdStage);
956
+ if (!this.#pabcdBorderHandle) {
957
+ this.#pabcdBorderHandle = createPabcdBorderCycle(() => {
958
+ const stage = this.statusLine.activePabcdStage;
959
+ if (stage) {
960
+ this.editor.borderColor = getPabcdBorderColor(stage);
961
+ this.ui.requestRender();
962
+ }
963
+ });
964
+ }
965
+ } else {
966
+ if (this.#pabcdBorderHandle) {
967
+ this.#pabcdBorderHandle.stop();
968
+ this.#pabcdBorderHandle = null;
969
+ }
970
+ const accentEnabled = !isSettingsInitialized() || settings.get("statusLine.sessionAccent") !== false;
971
+ const sessionName = accentEnabled ? this.sessionManager.getSessionName() : undefined;
972
+ const hex = sessionName ? getSessionAccentHex(sessionName) : undefined;
973
+ const ansi = getSessionAccentAnsi(hex);
974
+ if (ansi) {
975
+ this.editor.borderColor = (str: string) => `${ansi}${str}\x1b[39m`;
976
+ } else {
977
+ const level = this.session.thinkingLevel ?? ThinkingLevel.Off;
978
+ this.editor.borderColor = theme.getThinkingBorderColor(level);
979
+ }
980
+ }
981
+ if (!this.isBashMode) {
982
+ this.editor.setInputPrefix(getDefaultInputPrefix());
983
+ }
984
+ this.#setComposerTopBorder();
985
+ this.ui.requestRender();
986
+ }
987
+
988
+ updateEditorBorderColor(): void {
989
+ this.updateEditorChrome();
990
+ }
991
+
992
+ updateEditorTopBorder(): void {
993
+ this.#setComposerTopBorder();
994
+ }
995
+
996
+ #setComposerTopBorder(): void {
997
+ // Keep the composer as a plain closed input rectangle; status-line
998
+ // rendering stays outside the input area.
999
+ this.editor.setTopBorder(undefined);
1000
+ }
1001
+
1002
+ #resetCurrentTurnStartIndexFromChat(): void {
1003
+ for (let i = this.chatContainer.children.length - 1; i >= 0; i--) {
1004
+ const child = this.chatContainer.children[i];
1005
+ if (child instanceof UserMessageComponent && !child.isSyntheticUserMessage) {
1006
+ this.currentTurnStartIndex = i + 1;
1007
+ return;
1008
+ }
1009
+ }
1010
+ this.currentTurnStartIndex = this.chatContainer.children.length;
1011
+ }
1012
+
1013
+ rebuildChatFromMessages(): void {
1014
+ this.chatContainer.clear();
1015
+ this.lastToolComponent = undefined;
1016
+ const context = this.session.buildDisplaySessionContext();
1017
+ this.renderSessionContext(context);
1018
+ this.#resetCurrentTurnStartIndexFromChat();
1019
+ }
1020
+
1021
+ #formatTodoLine(todo: TodoItem, prefix: string): string {
1022
+ const checkbox = theme.checkbox;
1023
+ const marker = formatHudNoteMarker(todo.notes?.length ?? 0);
1024
+ switch (todo.status) {
1025
+ case "completed":
1026
+ return theme.fg("success", `${prefix}${checkbox.checked} ${chalk.strikethrough(todo.content)}`) + marker;
1027
+ case "in_progress":
1028
+ return theme.fg("accent", `${prefix}${checkbox.unchecked} ${todo.content}`) + marker;
1029
+ case "abandoned":
1030
+ return theme.fg("error", `${prefix}${checkbox.unchecked} ${chalk.strikethrough(todo.content)}`) + marker;
1031
+ default:
1032
+ return theme.fg("dim", `${prefix}${checkbox.unchecked} ${todo.content}`) + marker;
1033
+ }
1034
+ }
1035
+
1036
+ #getActivePhase(phases: TodoPhase[]): TodoPhase | undefined {
1037
+ const nonEmpty = phases.filter(phase => phase.tasks.length > 0);
1038
+ const active = nonEmpty.find(phase =>
1039
+ phase.tasks.some(task => task.status === "pending" || task.status === "in_progress"),
1040
+ );
1041
+ return active ?? nonEmpty[nonEmpty.length - 1];
1042
+ }
1043
+
1044
+ #renderTodoList(): void {
1045
+ this.todoContainer.clear();
1046
+ const phases = this.todoPhases.filter(phase => phase.tasks.length > 0);
1047
+ if (phases.length === 0) {
1048
+ return;
1049
+ }
1050
+
1051
+ const indent = " ";
1052
+ const hook = theme.tree.hook;
1053
+ const lines = ["", indent + theme.bold(theme.fg("accent", "Todos"))];
1054
+
1055
+ if (!this.todoExpanded) {
1056
+ const activeIdx = phases.indexOf(this.#getActivePhase(phases) ?? phases[0]);
1057
+ const activePhase = phases[activeIdx];
1058
+ if (!activePhase) return;
1059
+ lines.push(
1060
+ `${indent}${theme.fg("accent", `${hook} ${formatPhaseDisplayName(activePhase.name, activeIdx + 1)}`)}`,
1061
+ );
1062
+ const visibleTasks = activePhase.tasks.slice(0, 5);
1063
+ visibleTasks.forEach((todo, index) => {
1064
+ const prefix = `${indent}${index === 0 ? hook : " "} `;
1065
+ lines.push(this.#formatTodoLine(todo, prefix));
1066
+ });
1067
+ if (visibleTasks.length < activePhase.tasks.length) {
1068
+ const remaining = activePhase.tasks.length - visibleTasks.length;
1069
+ lines.push(theme.fg("muted", `${indent} ${hook} +${remaining} more`));
1070
+ }
1071
+ this.todoContainer.addChild(new Text(lines.join("\n"), 1, 0));
1072
+ return;
1073
+ }
1074
+
1075
+ phases.forEach((phase, phaseIndex) => {
1076
+ lines.push(`${indent}${theme.fg("accent", `${hook} ${formatPhaseDisplayName(phase.name, phaseIndex + 1)}`)}`);
1077
+ phase.tasks.forEach((todo, index) => {
1078
+ const prefix = `${indent}${index === 0 ? hook : " "} `;
1079
+ lines.push(this.#formatTodoLine(todo, prefix));
1080
+ });
1081
+ });
1082
+
1083
+ this.todoContainer.addChild(new Text(lines.join("\n"), 1, 0));
1084
+ }
1085
+
1086
+ async #loadTodoList(): Promise<void> {
1087
+ this.todoPhases = this.session.getTodoPhases();
1088
+ this.#renderTodoList();
1089
+ }
1090
+
1091
+ async #getPlanFilePath(): Promise<string> {
1092
+ return "local://PLAN.md";
1093
+ }
1094
+
1095
+ #resolvePlanFilePath(planFilePath: string): string {
1096
+ if (planFilePath.startsWith("local:")) {
1097
+ const normalized = normalizeLocalScheme(planFilePath);
1098
+ return resolveLocalUrlToPath(normalized, {
1099
+ getArtifactsDir: () => this.sessionManager.getArtifactsDir(),
1100
+ getSessionId: () => this.sessionManager.getSessionId(),
1101
+ });
1102
+ }
1103
+ return path.resolve(this.sessionManager.getCwd(), planFilePath);
1104
+ }
1105
+
1106
+ #updatePlanModeStatus(): void {
1107
+ const status =
1108
+ this.planModeEnabled || this.planModePaused
1109
+ ? {
1110
+ enabled: this.planModeEnabled,
1111
+ paused: this.planModePaused,
1112
+ }
1113
+ : undefined;
1114
+ this.statusLine.setPlanModeStatus(status);
1115
+ this.updateEditorChrome();
1116
+ this.ui.requestRender();
1117
+ }
1118
+
1119
+ #updateGoalModeStatus(): void {
1120
+ const status =
1121
+ this.goalModeEnabled || this.goalModePaused
1122
+ ? { enabled: this.goalModeEnabled, paused: this.goalModePaused }
1123
+ : undefined;
1124
+ this.statusLine.setGoalModeStatus(status);
1125
+ this.updateEditorChrome();
1126
+ this.ui.requestRender();
1127
+ }
1128
+
1129
+ #resetGoalContinuationSuppression(): void {
1130
+ this.#goalSuppressNextContinuation = false;
1131
+ }
1132
+ onUserInterrupt(): void {
1133
+ if (!this.goalModeEnabled || this.goalModePaused) return;
1134
+ this.#cancelGoalContinuation();
1135
+ this.#goalSuppressNextContinuation = true;
1136
+ }
1137
+
1138
+ #getPausedGoalState(): GoalModeState | undefined {
1139
+ const state = this.session.getGoalModeState();
1140
+ if (!state?.goal || state.enabled || state.goal.status !== "paused") {
1141
+ return undefined;
1142
+ }
1143
+ return state;
1144
+ }
1145
+
1146
+ #goalFromModeData(modeData: SessionContext["modeData"]): Goal | undefined {
1147
+ return normalizeGoal(modeData?.goal) ?? undefined;
1148
+ }
1149
+
1150
+ async #handleGoalSessionEvent(event: AgentSessionEvent): Promise<void> {
1151
+ if (event.type === "agent_start") {
1152
+ this.#goalTurnHadToolCalls = false;
1153
+ this.#cancelGoalContinuation();
1154
+ return;
1155
+ }
1156
+ if (event.type === "tool_execution_start") {
1157
+ this.#goalTurnHadToolCalls = true;
1158
+ if (!this.#goalContinuationTurnInFlight) {
1159
+ this.#resetGoalContinuationSuppression();
1160
+ }
1161
+ return;
1162
+ }
1163
+ if (event.type === "message_start" && event.message.role === "user" && !event.message.synthetic) {
1164
+ this.#resetGoalContinuationSuppression();
1165
+ return;
1166
+ }
1167
+ if (event.type === "goal_updated") {
1168
+ // Handle drop before clearing goalModeEnabled so #exitGoalMode can
1169
+ // still restore the previous tool set while the flag is true.
1170
+ if (event.state?.goal?.status === "dropped") {
1171
+ await this.#exitGoalMode({ reason: "dropped", silent: true });
1172
+ return;
1173
+ }
1174
+ if (event.state?.enabled === true && !this.#goalModePreviousTools) {
1175
+ this.#goalModePreviousTools = this.session.getActiveToolNames().filter(name => name !== "goal");
1176
+ }
1177
+ this.goalModeEnabled = event.state?.enabled === true;
1178
+ this.goalModePaused = event.state?.enabled !== true && event.state?.goal?.status === "paused";
1179
+ if (!event.state?.enabled) {
1180
+ this.#cancelGoalContinuation();
1181
+ }
1182
+ this.#updateGoalModeStatus();
1183
+ return;
1184
+ }
1185
+ if (event.type !== "agent_end") {
1186
+ return;
1187
+ }
1188
+ if (this.#goalContinuationTurnInFlight) {
1189
+ this.#goalSuppressNextContinuation = !this.#goalTurnHadToolCalls;
1190
+ this.#goalContinuationTurnInFlight = false;
1191
+ }
1192
+ if (this.session.getGoalModeState()?.mode === "exiting") {
1193
+ await this.#exitGoalMode({ reason: "completed", silent: true });
1194
+ return;
1195
+ }
1196
+ this.#scheduleGoalContinuation();
1197
+ }
1198
+
1199
+ async #applyPlanModeModel(): Promise<void> {
1200
+ const resolved = this.session.resolveRoleModelWithThinking("plan");
1201
+ if (!resolved.model) return;
1202
+
1203
+ const currentModel = this.session.model;
1204
+ const sameModel = modelsAreEqual(currentModel, resolved.model);
1205
+ const planThinkingLevel = resolved.explicitThinkingLevel ? resolved.thinkingLevel : undefined;
1206
+
1207
+ this.#planModePreviousModelState = currentModel
1208
+ ? { model: currentModel, thinkingLevel: this.session.thinkingLevel }
1209
+ : undefined;
1210
+
1211
+ if (!sameModel) {
1212
+ if (this.session.isStreaming) {
1213
+ this.#pendingModelSwitch = { model: resolved.model, thinkingLevel: planThinkingLevel };
1214
+ return;
1215
+ }
1216
+ try {
1217
+ await this.session.setModelTemporary(resolved.model, planThinkingLevel);
1218
+ } catch (error) {
1219
+ this.showWarning(
1220
+ `Failed to switch to plan model for plan mode: ${error instanceof Error ? error.message : String(error)}`,
1221
+ );
1222
+ }
1223
+ } else if (planThinkingLevel) {
1224
+ this.session.setThinkingLevel(planThinkingLevel);
1225
+ }
1226
+ }
1227
+
1228
+ /** Apply any deferred model switch after the current stream ends. */
1229
+ async flushPendingModelSwitch(): Promise<void> {
1230
+ const pending = this.#pendingModelSwitch;
1231
+ if (!pending) return;
1232
+ this.#pendingModelSwitch = undefined;
1233
+ try {
1234
+ await this.session.setModelTemporary(pending.model, pending.thinkingLevel);
1235
+ } catch (error) {
1236
+ this.showWarning(
1237
+ `Failed to switch model after streaming: ${error instanceof Error ? error.message : String(error)}`,
1238
+ );
1239
+ }
1240
+ }
1241
+
1242
+ /** Restore mode state from session entries on resume (e.g. plan mode). */
1243
+ async #restoreModeFromSession(): Promise<void> {
1244
+ const sessionContext = this.sessionManager.buildSessionContext();
1245
+ const goalEnabled = this.session.settings.get("goal.enabled");
1246
+ if (!goalEnabled && (sessionContext.mode === "goal" || sessionContext.mode === "goal_paused")) {
1247
+ this.sessionManager.appendModeChange("none");
1248
+ return;
1249
+ }
1250
+ if (sessionContext.mode === "goal" || sessionContext.mode === "goal_paused") {
1251
+ const goal = this.#goalFromModeData(sessionContext.modeData);
1252
+ if (!goal) {
1253
+ this.sessionManager.appendModeChange("none");
1254
+ return;
1255
+ }
1256
+ this.session.setGoalModeState({
1257
+ enabled: sessionContext.mode === "goal",
1258
+ mode: "active",
1259
+ goal,
1260
+ });
1261
+ const restored = await this.session.goalRuntime.onThreadResumed();
1262
+ this.goalModeEnabled = restored?.enabled === true;
1263
+ this.goalModePaused = restored?.enabled !== true && restored?.goal.status === "paused";
1264
+ // sdk.ts excludes "goal" from the initial active tool set unconditionally.
1265
+ // Re-add it now so the agent can call resume, complete, or drop on this goal.
1266
+ if (restored?.goal) {
1267
+ const previousTools = this.session.getActiveToolNames().filter(name => name !== "goal");
1268
+ this.#goalModePreviousTools = previousTools;
1269
+ await this.session.setActiveToolsByName([...new Set([...previousTools, "goal"])]);
1270
+ }
1271
+ this.#updateGoalModeStatus();
1272
+ return;
1273
+ }
1274
+ const pendingGoal = goalEnabled
1275
+ ? await consumePendingGoalModeRequest(this.sessionManager.getCwd(), this.sessionManager.getSessionId())
1276
+ : null;
1277
+ if (pendingGoal) {
1278
+ await this.#enterGoalMode({ objective: pendingGoal.objective, silent: true });
1279
+ this.#scheduleGoalContinuation();
1280
+ return;
1281
+ }
1282
+ if (!this.session.settings.get("plan.enabled")) {
1283
+ // Clear stale plan/plan_paused mode so re-enabling the setting
1284
+ // later doesn't unexpectedly restore an old plan session.
1285
+ if (sessionContext.mode === "plan" || sessionContext.mode === "plan_paused") {
1286
+ this.sessionManager.appendModeChange("none");
1287
+ }
1288
+ return;
1289
+ }
1290
+ if (sessionContext.mode === "plan") {
1291
+ const planFilePath = sessionContext.modeData?.planFilePath as string | undefined;
1292
+ await this.#enterPlanMode({ planFilePath });
1293
+ } else if (sessionContext.mode === "plan_paused") {
1294
+ this.planModePaused = true;
1295
+ this.#planModeHasEntered = true;
1296
+ this.#updatePlanModeStatus();
1297
+ }
1298
+ }
1299
+
1300
+ async #enterPlanMode(options?: { planFilePath?: string; workflow?: "parallel" | "iterative" }): Promise<void> {
1301
+ if (this.planModeEnabled) {
1302
+ return;
1303
+ }
1304
+ if (this.goalModeEnabled || this.goalModePaused) {
1305
+ this.showWarning("Exit goal mode first.");
1306
+ return;
1307
+ }
1308
+
1309
+ this.planModePaused = false;
1310
+
1311
+ const planFilePath = options?.planFilePath ?? (await this.#getPlanFilePath());
1312
+ const previousTools = this.session.getActiveToolNames();
1313
+ const hasResolveTool = this.session.getToolByName("resolve") !== undefined;
1314
+ const planTools = hasResolveTool ? [...previousTools, "resolve"] : previousTools;
1315
+ const uniquePlanTools = [...new Set(planTools)];
1316
+
1317
+ this.#planModePreviousTools = previousTools;
1318
+ this.planModePlanFilePath = planFilePath;
1319
+ this.planModeEnabled = true;
1320
+
1321
+ await this.session.setActiveToolsByName(uniquePlanTools);
1322
+ this.session.setPlanModeState({
1323
+ enabled: true,
1324
+ planFilePath,
1325
+ workflow: options?.workflow ?? "parallel",
1326
+ reentry: this.#planModeHasEntered,
1327
+ });
1328
+ this.session.setStandingResolveHandler?.(input => this.#runPlanApprovalResolve(input));
1329
+ if (this.session.isStreaming) {
1330
+ await this.session.sendPlanModeContext({ deliverAs: "steer" });
1331
+ }
1332
+ this.#planModeHasEntered = true;
1333
+ await this.#applyPlanModeModel();
1334
+ this.#updatePlanModeStatus();
1335
+ this.sessionManager.appendModeChange("plan", { planFilePath });
1336
+ this.showStatus(`Plan mode enabled. Plan file: ${planFilePath}`);
1337
+ }
1338
+
1339
+ /** Standing resolve dispatcher registered while plan mode is active. The agent
1340
+ * submits the finalized plan by calling `resolve { action: "apply", extra: { title } }`;
1341
+ * this handler validates the plan file exists, normalizes the title, and shapes the
1342
+ * payload that `event-controller` forwards to `handlePlanApproval`. */
1343
+ #runPlanApprovalResolve(input: unknown): Promise<AgentToolResult<ResolveToolDetails>> {
1344
+ return runResolveInvocation(input as Parameters<typeof runResolveInvocation>[0], {
1345
+ sourceToolName: "plan_approval",
1346
+ label: "Plan ready for approval",
1347
+ apply: async (_reason, extra) => {
1348
+ const state = this.session.getPlanModeState?.();
1349
+ if (!state?.enabled) {
1350
+ throw new ToolError("Plan mode is not active.");
1351
+ }
1352
+ const planFilePath = state.planFilePath;
1353
+ const planContent = await this.#readPlanFile(planFilePath);
1354
+ if (planContent === null) {
1355
+ throw new ToolError(
1356
+ `Plan file not found at ${planFilePath}. Write the finalized plan to ${planFilePath} before requesting approval.`,
1357
+ );
1358
+ }
1359
+ const normalized = resolvePlanTitle({
1360
+ suppliedTitle: extra?.title,
1361
+ planContent,
1362
+ planFilePath,
1363
+ });
1364
+ const details: PlanApprovalDetails = {
1365
+ planFilePath,
1366
+ finalPlanFilePath: `local://${normalized.fileName}`,
1367
+ title: normalized.title,
1368
+ planExists: true,
1369
+ };
1370
+ return {
1371
+ content: [{ type: "text" as const, text: "Plan ready for approval." }],
1372
+ details,
1373
+ };
1374
+ },
1375
+ });
1376
+ }
1377
+
1378
+ async #exitPlanMode(options?: { silent?: boolean; paused?: boolean }): Promise<void> {
1379
+ if (!this.planModeEnabled) {
1380
+ return;
1381
+ }
1382
+
1383
+ const previousTools = this.#planModePreviousTools;
1384
+ if (previousTools && previousTools.length > 0) {
1385
+ await this.session.setActiveToolsByName(previousTools);
1386
+ }
1387
+ if (this.#planModePreviousModelState) {
1388
+ const prev = this.#planModePreviousModelState;
1389
+ if (modelsAreEqual(this.session.model, prev.model)) {
1390
+ // Same model — only thinking level may differ. Avoid setModelTemporary()
1391
+ // which would reset provider-side sessions (openai-responses/OpenAI code backend) and
1392
+ // break conversation continuity.
1393
+ this.session.setThinkingLevel(prev.thinkingLevel);
1394
+ } else if (this.session.isStreaming) {
1395
+ this.#pendingModelSwitch = { model: prev.model, thinkingLevel: prev.thinkingLevel };
1396
+ } else {
1397
+ await this.session.setModelTemporary(prev.model, prev.thinkingLevel);
1398
+ }
1399
+ // If #applyPlanModeModel queued a deferred switch to the plan-role model
1400
+ // (because the session was streaming on entry), drop it now: we are
1401
+ // leaving plan mode, so flushing it on the next agent_end would land the
1402
+ // session on the plan-role model after the user has exited plan mode
1403
+ // (issue #816). Only clear when the pending target matches the plan-role
1404
+ // model — leave any unrelated user-queued switch intact.
1405
+ const pending = this.#pendingModelSwitch;
1406
+ if (pending) {
1407
+ const planResolution = this.session.resolveRoleModelWithThinking("plan");
1408
+ if (planResolution.model && modelsAreEqual(pending.model, planResolution.model)) {
1409
+ this.#pendingModelSwitch = undefined;
1410
+ }
1411
+ }
1412
+ }
1413
+ this.session.setStandingResolveHandler?.(null);
1414
+ this.session.setPlanModeState(undefined);
1415
+ this.planModeEnabled = false;
1416
+ this.planModePaused = options?.paused ?? false;
1417
+ this.planModePlanFilePath = undefined;
1418
+ this.#planModePreviousTools = undefined;
1419
+ this.#planModePreviousModelState = undefined;
1420
+ this.#updatePlanModeStatus();
1421
+ const paused = options?.paused ?? false;
1422
+ this.sessionManager.appendModeChange(paused ? "plan_paused" : "none");
1423
+ if (!options?.silent) {
1424
+ this.showStatus(paused ? "Plan mode paused." : "Plan mode disabled.");
1425
+ }
1426
+ }
1427
+
1428
+ async #enterGoalMode(options: { objective?: string; resume?: boolean; silent?: boolean }): Promise<void> {
1429
+ if (this.goalModeEnabled) {
1430
+ return;
1431
+ }
1432
+ if (this.planModeEnabled || this.planModePaused) {
1433
+ this.showWarning("Exit plan mode first.");
1434
+ return;
1435
+ }
1436
+ const previousTools = this.session.getActiveToolNames().filter(name => name !== "goal");
1437
+ const goalTools = [...new Set([...previousTools, "goal"])];
1438
+ this.#goalModePreviousTools = previousTools;
1439
+ this.goalModePaused = false;
1440
+ const state = options.resume
1441
+ ? await this.session.goalRuntime.resumeGoal()
1442
+ : await this.session.goalRuntime.createGoal({ objective: options.objective ?? "" });
1443
+ await this.session.setActiveToolsByName(goalTools);
1444
+ this.session.setGoalModeState(state);
1445
+ this.goalModeEnabled = true;
1446
+ this.#resetGoalContinuationSuppression();
1447
+ this.#updateGoalModeStatus();
1448
+ if (this.session.isStreaming) {
1449
+ await this.session.sendGoalModeContext({ deliverAs: "steer" });
1450
+ }
1451
+ if (!options.silent) {
1452
+ this.showStatus(options.resume ? "Goal mode resumed." : "Goal mode enabled.");
1453
+ }
1454
+ }
1455
+
1456
+ async #exitGoalMode(options?: {
1457
+ silent?: boolean;
1458
+ paused?: boolean;
1459
+ reason?: "completed" | "paused" | "dropped";
1460
+ }): Promise<void> {
1461
+ const previousTools = this.#goalModePreviousTools;
1462
+ // Drop keeps the `goal` tool callable so the agent can immediately create a new
1463
+ // goal in the same session without a leader-side cleanup. Complete (and pause)
1464
+ // exit goal mode and restore the pre-goal tool set even when the goal_updated
1465
+ // event has already cleared goalModeEnabled (see #completeGoalFromTool emitting
1466
+ // state.enabled = false before #exitGoalMode runs). Spec: goal-tool-wiring AC1+AC2.
1467
+ const shouldRestoreTools =
1468
+ previousTools &&
1469
+ options?.reason !== "dropped" &&
1470
+ (this.goalModeEnabled || options?.reason === "completed" || options?.paused === true);
1471
+ if (shouldRestoreTools) {
1472
+ await this.session.setActiveToolsByName(previousTools);
1473
+ }
1474
+ const currentState = this.session.getGoalModeState();
1475
+ if (options?.reason === "completed") {
1476
+ this.session.setGoalModeState(undefined);
1477
+ this.sessionManager.appendModeChange("none");
1478
+ this.sessionManager.appendCustomEntry("goal-completed", {
1479
+ objective: currentState?.goal?.objective,
1480
+ tokensUsed: currentState?.goal?.tokensUsed,
1481
+ timeUsedSeconds: currentState?.goal?.timeUsedSeconds,
1482
+ });
1483
+ }
1484
+ this.goalModeEnabled = false;
1485
+ this.goalModePaused = options?.paused ?? false;
1486
+ this.#goalModePreviousTools = undefined;
1487
+ this.#goalContinuationTurnInFlight = false;
1488
+ this.#cancelGoalContinuation();
1489
+ this.#updateGoalModeStatus();
1490
+ if (!options?.silent) {
1491
+ if (options?.reason === "completed") {
1492
+ this.showStatus("Goal mode completed.");
1493
+ } else if (options?.reason === "dropped") {
1494
+ this.showStatus("Goal dropped.");
1495
+ } else if (options?.paused) {
1496
+ this.showStatus("Goal mode paused.");
1497
+ } else {
1498
+ this.showStatus("Goal mode disabled.");
1499
+ }
1500
+ }
1501
+ }
1502
+
1503
+ async #readPlanFile(planFilePath: string): Promise<string | null> {
1504
+ const resolvedPath = this.#resolvePlanFilePath(planFilePath);
1505
+ try {
1506
+ return await Bun.file(resolvedPath).text();
1507
+ } catch (error) {
1508
+ if (isEnoent(error)) {
1509
+ return null;
1510
+ }
1511
+ throw error;
1512
+ }
1513
+ }
1514
+
1515
+ #renderPlanPreview(planContent: string, options?: { append?: boolean }): void {
1516
+ const existingContainer = this.#planReviewContainer;
1517
+ const replaceExisting = options?.append !== true && existingContainer !== undefined;
1518
+ const planReviewContainer = replaceExisting ? existingContainer : new Container();
1519
+ planReviewContainer.clear();
1520
+ planReviewContainer.addChild(new Spacer(1));
1521
+ planReviewContainer.addChild(new DynamicBorder());
1522
+ planReviewContainer.addChild(new Text(theme.bold(theme.fg("accent", "Plan Review")), 1, 1));
1523
+ planReviewContainer.addChild(new Spacer(1));
1524
+ planReviewContainer.addChild(new Markdown(planContent, 1, 1, getMarkdownTheme()));
1525
+ planReviewContainer.addChild(new DynamicBorder());
1526
+ if (!replaceExisting) {
1527
+ this.chatContainer.addChild(planReviewContainer);
1528
+ }
1529
+ this.#planReviewContainer = planReviewContainer;
1530
+ this.ui.requestRender();
1531
+ }
1532
+
1533
+ #getEditorTerminalPath(): string | null {
1534
+ if (process.platform === "win32") {
1535
+ return null;
1536
+ }
1537
+ return "/dev/tty";
1538
+ }
1539
+
1540
+ async #openEditorTerminalHandle(): Promise<fs.FileHandle | null> {
1541
+ const terminalPath = this.#getEditorTerminalPath();
1542
+ if (!terminalPath) {
1543
+ return null;
1544
+ }
1545
+ try {
1546
+ return await fs.open(terminalPath, "r+");
1547
+ } catch {
1548
+ return null;
1549
+ }
1550
+ }
1551
+
1552
+ #getPlanReviewHelpText(): string {
1553
+ const externalEditorKey = this.keybindings.getDisplayString("app.editor.external");
1554
+ if (!externalEditorKey) {
1555
+ return "up/down navigate enter select esc cancel";
1556
+ }
1557
+ return `up/down navigate enter select ${externalEditorKey.toLowerCase()} open in editor esc cancel`;
1558
+ }
1559
+
1560
+ async #openPlanInExternalEditor(planFilePath: string): Promise<void> {
1561
+ const editorCmd = getEditorCommand();
1562
+ if (!editorCmd) {
1563
+ this.showWarning("No editor configured. Set $VISUAL or $EDITOR environment variable.");
1564
+ return;
1565
+ }
1566
+
1567
+ const resolvedPath = this.#resolvePlanFilePath(planFilePath);
1568
+ let currentText: string;
1569
+ try {
1570
+ currentText = await Bun.file(resolvedPath).text();
1571
+ } catch (error) {
1572
+ if (isEnoent(error)) {
1573
+ this.showError(`Plan file not found at ${planFilePath}`);
1574
+ return;
1575
+ }
1576
+ this.showWarning(`Failed to open external editor: ${error instanceof Error ? error.message : String(error)}`);
1577
+ return;
1578
+ }
1579
+
1580
+ let ttyHandle: fs.FileHandle | null = null;
1581
+ try {
1582
+ ttyHandle = await this.#openEditorTerminalHandle();
1583
+ this.ui.stop();
1584
+
1585
+ const stdio: [number | "inherit", number | "inherit", number | "inherit"] = ttyHandle
1586
+ ? [ttyHandle.fd, ttyHandle.fd, ttyHandle.fd]
1587
+ : ["inherit", "inherit", "inherit"];
1588
+
1589
+ const result = await openInEditor(editorCmd, currentText, {
1590
+ extension: path.extname(resolvedPath) || ".md",
1591
+ stdio,
1592
+ trimTrailingNewline: false,
1593
+ });
1594
+ if (result !== null) {
1595
+ await Bun.write(resolvedPath, result);
1596
+ this.#renderPlanPreview(result);
1597
+ this.showStatus("Plan updated in external editor.");
1598
+ }
1599
+ } catch (error) {
1600
+ this.showWarning(`Failed to open external editor: ${error instanceof Error ? error.message : String(error)}`);
1601
+ } finally {
1602
+ if (ttyHandle) {
1603
+ await ttyHandle.close();
1604
+ }
1605
+ this.ui.start();
1606
+ this.ui.requestRender(true);
1607
+ }
1608
+ }
1609
+
1610
+ async #approvePlan(
1611
+ planContent: string,
1612
+ options: {
1613
+ planFilePath: string;
1614
+ finalPlanFilePath: string;
1615
+ title: string;
1616
+ preserveContext?: boolean;
1617
+ compactBeforeExecute?: boolean;
1618
+ },
1619
+ ): Promise<void> {
1620
+ await renameApprovedPlanFile({
1621
+ planFilePath: options.planFilePath,
1622
+ finalPlanFilePath: options.finalPlanFilePath,
1623
+ getArtifactsDir: () => this.sessionManager.getArtifactsDir(),
1624
+ getSessionId: () => this.sessionManager.getSessionId(),
1625
+ });
1626
+ const previousTools = this.#planModePreviousTools ?? this.session.getActiveToolNames();
1627
+
1628
+ // Mark the pending abort caused by the plan-mode → compaction transition as
1629
+ // silent BEFORE #exitPlanMode raises it. The `finally` below clears the
1630
+ // flag on every terminal compaction outcome (ok / cancelled / failed /
1631
+ // throw) so a leaked flag cannot silence a later unrelated abort.
1632
+ // Branchless mark+clear when !compactBeforeExecute: mark is gated; clear
1633
+ // is unconditional and idempotent.
1634
+ if (options.compactBeforeExecute) {
1635
+ this.session.markPlanCompactAbortPending();
1636
+ }
1637
+ let compactOutcome: CompactionOutcome | undefined;
1638
+ try {
1639
+ await this.#exitPlanMode({ silent: true, paused: false });
1640
+
1641
+ if (!options.preserveContext) {
1642
+ await this.handleClearCommand();
1643
+ // The new session has a fresh local:// root — persist the approved plan there
1644
+ // so `local://<title>.md` resolves correctly in the execution session.
1645
+ const newLocalPath = resolveLocalUrlToPath(options.finalPlanFilePath, {
1646
+ getArtifactsDir: () => this.sessionManager.getArtifactsDir(),
1647
+ getSessionId: () => this.sessionManager.getSessionId(),
1648
+ });
1649
+ await Bun.write(newLocalPath, planContent);
1650
+ } else if (options.compactBeforeExecute) {
1651
+ // Distill the plan-mode transcript before the execution turn is queued so
1652
+ // the plan-approved synthetic prompt lands as a fresh cache anchor.
1653
+ // Outcome is consumed after tool-restoration and plan-reference-path
1654
+ // bookkeeping below; `markPlanReferenceSent` is intentionally deferred
1655
+ // past the cancel guard — see the comment at the cancel branch.
1656
+ // Cancellation skips the synthetic-prompt dispatch (operator's explicit
1657
+ // abort is honored); failure proceeds best-effort — approval intent stands.
1658
+ const compactionPrompt = prompt.render(planModeCompactInstructionsPrompt, {
1659
+ planFilePath: options.finalPlanFilePath,
1660
+ });
1661
+ // Pin the plan reference path BEFORE compaction so any user messages
1662
+ // queued during the compaction await (which `handleCompactCommand`
1663
+ // flushes via `flushCompactionQueue` before returning) see the
1664
+ // approved plan in `#buildPlanReferenceMessage`. Reassignment after
1665
+ // the try/finally is idempotent and kept for the !compactBeforeExecute
1666
+ // branch.
1667
+ this.session.setPlanReferencePath(options.finalPlanFilePath);
1668
+ compactOutcome = await this.handleCompactCommand(compactionPrompt);
1669
+ }
1670
+ } finally {
1671
+ // Unconditional clear. Idempotent: a no-op when the flag was never set
1672
+ // (i.e., the !compactBeforeExecute branch), and a no-op when the flag
1673
+ // was already consumed by AgentSession.#handleAgentEvent's aborted
1674
+ // message_end stamping. Guarantees the flag is dead at every exit.
1675
+ this.session.clearPlanCompactAbortPending();
1676
+ }
1677
+
1678
+ // Tool restoration runs on every path — the plan mode tools must be
1679
+ // retired regardless of whether the synthetic prompt fires.
1680
+ if (previousTools.length > 0) {
1681
+ await this.session.setActiveToolsByName(previousTools);
1682
+ }
1683
+ this.session.setPlanReferencePath(options.finalPlanFilePath);
1684
+
1685
+ if (compactOutcome === "cancelled") {
1686
+ // Explicit abort: honor it. `executeCompaction` already surfaced
1687
+ // `showError("Compaction cancelled")` to the operator; we add the
1688
+ // deferred-dispatch warning and exit. `markPlanReferenceSent` is
1689
+ // intentionally skipped here: `#planReferenceSent` stays false, so
1690
+ // `AgentSession.#buildPlanReferenceMessage` will inject the plan
1691
+ // reference on the operator's next `prompt()` call. If we marked it
1692
+ // sent here, the executor's first turn would have no plan context.
1693
+ this.showWarning(
1694
+ "Plan approved, but compaction was cancelled — execution not dispatched. Submit a turn to continue.",
1695
+ );
1696
+ return;
1697
+ }
1698
+
1699
+ // Approved plans land in a fresh (or compacted) session whose first user-visible
1700
+ // turn is the synthetic plan-approved prompt — that path bypasses the
1701
+ // input-controller's title generation. Seed an auto-name from the plan title
1702
+ // so the session is not left unnamed. `setSessionName("auto")` is a no-op
1703
+ // when the user has already chosen a name (preserveContext paths).
1704
+ const seededName = humanizePlanTitle(options.title);
1705
+ if (seededName && !this.sessionManager.getSessionName()) {
1706
+ const applied = await this.sessionManager.setSessionName(seededName, "auto");
1707
+ if (applied) {
1708
+ setSessionTerminalTitle(this.sessionManager.getSessionName(), this.sessionManager.getCwd());
1709
+ this.updateEditorChrome();
1710
+ }
1711
+ }
1712
+
1713
+ // markPlanReferenceSent fires only on the dispatch path so the synthetic
1714
+ // plan-approved prompt is the source of the reference injection.
1715
+ this.session.markPlanReferenceSent();
1716
+ const planModePrompt = prompt.render(planModeApprovedPrompt, {
1717
+ planContent,
1718
+ finalPlanFilePath: options.finalPlanFilePath,
1719
+ contextPreserved: options.preserveContext === true,
1720
+ });
1721
+ await this.session.prompt(planModePrompt, { synthetic: true });
1722
+ }
1723
+
1724
+ async handlePlanModeCommand(initialPrompt?: string): Promise<void> {
1725
+ if (this.goalModeEnabled || this.goalModePaused) {
1726
+ this.showWarning("Exit goal mode first.");
1727
+ return;
1728
+ }
1729
+ if (this.planModeEnabled) {
1730
+ const confirmed = await this.showHookConfirm(
1731
+ "Exit plan mode?",
1732
+ "This exits plan mode without approving a plan.",
1733
+ );
1734
+ if (!confirmed) return;
1735
+ await this.#exitPlanMode({ paused: true });
1736
+ return;
1737
+ }
1738
+ if (!this.session.settings.get("plan.enabled")) {
1739
+ this.showWarning("Plan mode is disabled. Enable it in settings (plan.enabled).");
1740
+ return;
1741
+ }
1742
+ await this.#enterPlanMode();
1743
+ if (initialPrompt && this.onInputCallback) {
1744
+ this.onInputCallback(this.startPendingSubmission({ text: initialPrompt }));
1745
+ }
1746
+ }
1747
+
1748
+ async handleGoalModeCommand(rest?: string): Promise<void> {
1749
+ try {
1750
+ if (this.planModeEnabled || this.planModePaused) {
1751
+ this.showWarning("Exit plan mode first.");
1752
+ return;
1753
+ }
1754
+ if (!this.session.settings.get("goal.enabled")) {
1755
+ this.showWarning("Goal mode is disabled. Enable it in settings (goal.enabled).");
1756
+ return;
1757
+ }
1758
+ const { sub, rest: subRest } = parseGoalSubcommand(rest ?? "");
1759
+ if (sub) {
1760
+ await this.#dispatchGoalSubcommand(sub, subRest);
1761
+ return;
1762
+ }
1763
+ if (this.goalModeEnabled) {
1764
+ if (subRest) {
1765
+ await this.#replaceGoalFromObjective(subRest);
1766
+ return;
1767
+ }
1768
+ await this.#openGoalMenu("active");
1769
+ return;
1770
+ }
1771
+ const pausedState = this.#getPausedGoalState();
1772
+ if (pausedState) {
1773
+ if (subRest) {
1774
+ this.showWarning("Resume the current goal first, or drop it before setting a new objective.");
1775
+ return;
1776
+ }
1777
+ await this.#openGoalMenu("paused");
1778
+ return;
1779
+ }
1780
+ if (subRest) {
1781
+ await this.#startGoalFromObjective(subRest);
1782
+ return;
1783
+ }
1784
+ const objective = (
1785
+ await this.showHookEditor("Goal objective", undefined, undefined, { promptStyle: true })
1786
+ )?.trim();
1787
+ if (!objective) return;
1788
+ await this.#startGoalFromObjective(objective);
1789
+ } catch (error) {
1790
+ this.showError(error instanceof Error ? error.message : String(error));
1791
+ }
1792
+ }
1793
+
1794
+ async #dispatchGoalSubcommand(sub: GoalSubcommand, rest: string): Promise<void> {
1795
+ switch (sub) {
1796
+ case "set":
1797
+ await this.#handleGoalSetSubcommand(rest);
1798
+ return;
1799
+ case "show":
1800
+ this.#showGoalDetails();
1801
+ return;
1802
+ case "pause":
1803
+ await this.#pauseGoalAction();
1804
+ return;
1805
+ case "resume":
1806
+ await this.#resumeGoalAction();
1807
+ return;
1808
+ case "drop":
1809
+ await this.#confirmAndDropGoal();
1810
+ return;
1811
+ case "plan":
1812
+ await this.#handleGoalPlanSubcommand(rest);
1813
+ return;
1814
+ }
1815
+ }
1816
+
1817
+ async #openGoalMenu(state: "active" | "paused"): Promise<void> {
1818
+ const goal = this.session.getGoalModeState()?.goal;
1819
+ if (!goal) return;
1820
+ const summary = goal.objective.length > 48 ? `${goal.objective.slice(0, 47)}…` : goal.objective;
1821
+ const title = state === "active" ? `Goal: ${summary} (${goal.status})` : `Goal paused: ${summary}`;
1822
+ const items = state === "active" ? ["Show details", "Pause", "Drop"] : ["Resume", "Show details", "Drop"];
1823
+ const choice = await this.showHookSelector(title, items);
1824
+ if (!choice) return;
1825
+ switch (choice) {
1826
+ case "Show details":
1827
+ this.#showGoalDetails();
1828
+ return;
1829
+ case "Pause":
1830
+ await this.#pauseGoalAction();
1831
+ return;
1832
+ case "Resume":
1833
+ await this.#resumeGoalAction();
1834
+ return;
1835
+ case "Drop":
1836
+ await this.#confirmAndDropGoal();
1837
+ return;
1838
+ }
1839
+ }
1840
+
1841
+ #showGoalDetails(): void {
1842
+ const state = this.session.getGoalModeState();
1843
+ const goal = state?.goal;
1844
+ if (!goal) {
1845
+ this.showStatus("No goal set.");
1846
+ return;
1847
+ }
1848
+ const used = goal.tokensUsed.toLocaleString();
1849
+ const lines = [
1850
+ `Objective: ${goal.objective}`,
1851
+ `Status: ${goal.status}${state?.enabled ? "" : " (paused)"}`,
1852
+ `Tokens used: ${used}`,
1853
+ `Time spent: ${formatDuration(goal.timeUsedSeconds * 1000)}`,
1854
+ ];
1855
+ this.showStatus(lines.join("\n"));
1856
+ }
1857
+
1858
+ async #pauseGoalAction(): Promise<void> {
1859
+ if (!this.goalModeEnabled) {
1860
+ this.showWarning("No active goal to pause.");
1861
+ return;
1862
+ }
1863
+ await this.session.goalRuntime.pauseGoal();
1864
+ await this.#exitGoalMode({ paused: true, reason: "paused" });
1865
+ }
1866
+
1867
+ async #resumeGoalAction(): Promise<void> {
1868
+ if (!this.#getPausedGoalState()) {
1869
+ this.showWarning("No paused goal to resume.");
1870
+ return;
1871
+ }
1872
+ await this.#enterGoalMode({ resume: true, silent: true });
1873
+ this.showStatus("Goal mode resumed.");
1874
+ this.#scheduleGoalContinuation();
1875
+ }
1876
+
1877
+ async #confirmAndDropGoal(): Promise<void> {
1878
+ if (!this.goalModeEnabled && !this.#getPausedGoalState()) {
1879
+ this.showWarning("No goal to drop.");
1880
+ return;
1881
+ }
1882
+ const confirmed = await this.showHookConfirm(
1883
+ "Drop goal?",
1884
+ "This removes the goal record. Accumulated usage stays in the session log.",
1885
+ );
1886
+ if (!confirmed) return;
1887
+ await this.session.goalRuntime.dropGoal();
1888
+ await this.#exitGoalMode({ reason: "dropped" });
1889
+ }
1890
+
1891
+ async #writeGoalPlanFromBrief(brief: string): Promise<void> {
1892
+ const cwd = this.sessionManager.getCwd();
1893
+ await createGoalPlan({ cwd, brief });
1894
+ await startNextGoal({ cwd });
1895
+ }
1896
+
1897
+ async #applyReplacedGoalState(objective: string): Promise<void> {
1898
+ const state = await this.session.goalRuntime.replaceGoal({ objective });
1899
+ this.session.setGoalModeState(state);
1900
+ this.goalModeEnabled = true;
1901
+ this.goalModePaused = false;
1902
+ this.#resetGoalContinuationSuppression();
1903
+ this.#updateGoalModeStatus();
1904
+ if (this.session.isStreaming) {
1905
+ await this.session.sendGoalModeContext({ deliverAs: "steer" });
1906
+ }
1907
+ }
1908
+
1909
+ async #startGoalFromObjective(objective: string): Promise<void> {
1910
+ await this.#enterGoalMode({ objective, silent: true });
1911
+ this.#resetGoalContinuationSuppression();
1912
+ if (this.onInputCallback) {
1913
+ this.onInputCallback(this.startPendingSubmission({ text: objective }));
1914
+ }
1915
+ }
1916
+
1917
+ async #handleGoalPlanSubcommand(hint: string): Promise<void> {
1918
+ await this.#startGoalPlanningFromHint(hint);
1919
+ }
1920
+
1921
+ async #startGoalPlanningFromHint(hint: string): Promise<void> {
1922
+ if (this.#getPausedGoalState()) {
1923
+ this.showWarning("Resume the current goal first, or drop it before starting goal planning.");
1924
+ return;
1925
+ }
1926
+ const { brief, prompt } = buildGoalPlanningStart(hint);
1927
+ if (this.goalModeEnabled) {
1928
+ await this.#writeGoalPlanFromBrief(brief);
1929
+ await this.#applyReplacedGoalState(brief);
1930
+ } else {
1931
+ await this.#writeGoalPlanFromBrief(brief);
1932
+ await this.#enterGoalMode({ objective: brief, silent: true });
1933
+ this.#resetGoalContinuationSuppression();
1934
+ }
1935
+ if (this.onInputCallback) {
1936
+ this.onInputCallback(this.startPendingSubmission({ text: prompt }));
1937
+ }
1938
+ }
1939
+
1940
+ async #replaceGoalFromObjective(objective: string): Promise<void> {
1941
+ await this.#writeGoalPlanFromBrief(objective);
1942
+ await this.#applyReplacedGoalState(objective);
1943
+ if (this.onInputCallback) {
1944
+ this.onInputCallback(this.startPendingSubmission({ text: objective }));
1945
+ }
1946
+ }
1947
+
1948
+ async #handleGoalSetSubcommand(rest: string): Promise<void> {
1949
+ if (!this.goalModeEnabled && this.#getPausedGoalState()) {
1950
+ this.showWarning("Resume the current goal first, or drop it before setting a new objective.");
1951
+ return;
1952
+ }
1953
+ const objective = rest.trim()
1954
+ ? rest.trim()
1955
+ : (await this.showHookEditor("Goal objective", undefined, undefined, { promptStyle: true }))?.trim();
1956
+ if (!objective) return;
1957
+ if (this.goalModeEnabled) {
1958
+ await this.#replaceGoalFromObjective(objective);
1959
+ return;
1960
+ }
1961
+ await this.#startGoalFromObjective(objective);
1962
+ }
1963
+
1964
+ async handlePlanApproval(details: PlanApprovalDetails): Promise<void> {
1965
+ if (!this.planModeEnabled) {
1966
+ this.showWarning("Plan mode is not active.");
1967
+ return;
1968
+ }
1969
+
1970
+ // Abort the agent to prevent it from continuing (e.g., re-submitting the
1971
+ // plan) while the popup is showing. The event listener fires asynchronously
1972
+ // (agent's #emit is fire-and-forget), so without this the model sees
1973
+ // "Plan ready for approval." and immediately re-invokes `resolve` in a loop.
1974
+ await this.session.abort({ timeoutMs: INTERACTIVE_ABORT_CLEANUP_TIMEOUT_MS });
1975
+
1976
+ const planFilePath = details.planFilePath || this.planModePlanFilePath || (await this.#getPlanFilePath());
1977
+ this.planModePlanFilePath = planFilePath;
1978
+ const planContent = await this.#readPlanFile(planFilePath);
1979
+ if (!planContent) {
1980
+ this.showError(`Plan file not found at ${planFilePath}`);
1981
+ return;
1982
+ }
1983
+
1984
+ this.#renderPlanPreview(planContent, { append: true });
1985
+ const choice = await this.showHookSelector(
1986
+ "Plan mode - next step",
1987
+ ["Approve and execute", "Approve and compact context", "Approve and keep context", "Refine plan"],
1988
+ {
1989
+ helpText: this.#getPlanReviewHelpText(),
1990
+ onExternalEditor: () => void this.#openPlanInExternalEditor(planFilePath),
1991
+ },
1992
+ );
1993
+
1994
+ if (
1995
+ choice === "Approve and execute" ||
1996
+ choice === "Approve and compact context" ||
1997
+ choice === "Approve and keep context"
1998
+ ) {
1999
+ const finalPlanFilePath = details.finalPlanFilePath || planFilePath;
2000
+ try {
2001
+ const latestPlanContent = await this.#readPlanFile(planFilePath);
2002
+ if (!latestPlanContent) {
2003
+ this.showError(`Plan file not found at ${planFilePath}`);
2004
+ return;
2005
+ }
2006
+ await this.#approvePlan(latestPlanContent, {
2007
+ planFilePath,
2008
+ finalPlanFilePath,
2009
+ title: details.title,
2010
+ preserveContext: choice !== "Approve and execute",
2011
+ compactBeforeExecute: choice === "Approve and compact context",
2012
+ });
2013
+ } catch (error) {
2014
+ this.showError(
2015
+ `Failed to finalize approved plan: ${error instanceof Error ? error.message : String(error)}`,
2016
+ );
2017
+ }
2018
+ return;
2019
+ }
2020
+ }
2021
+
2022
+ stop(): void {
2023
+ if (this.loadingAnimation) {
2024
+ this.loadingAnimation.stop();
2025
+ this.loadingAnimation = undefined;
2026
+ }
2027
+ this.#cleanupMicAnimation();
2028
+ this.#cancelGoalContinuation();
2029
+ if (this.#sttController) {
2030
+ this.#sttController.dispose();
2031
+ this.#sttController = undefined;
2032
+ }
2033
+ this.#extensionUiController.clearExtensionTerminalInputListeners();
2034
+ this.#extensionUiController.clearHookWidgets();
2035
+ for (const unsubscribe of this.#eventBusUnsubscribers) {
2036
+ unsubscribe();
2037
+ }
2038
+ this.#eventBusUnsubscribers = [];
2039
+ this.#observerRegistry.dispose();
2040
+ this.#eventController.dispose();
2041
+ this.statusLine.dispose();
2042
+ this.composerFooter.dispose();
2043
+ this.#jobsObserver?.dispose();
2044
+ this.editor.dispose();
2045
+ if (this.#resizeHandler) {
2046
+ process.stdout.removeListener("resize", this.#resizeHandler);
2047
+ this.#resizeHandler = undefined;
2048
+ }
2049
+ if (this.unsubscribe) {
2050
+ this.unsubscribe();
2051
+ }
2052
+ if (this.#cleanupUnsubscribe) {
2053
+ this.#cleanupUnsubscribe();
2054
+ }
2055
+ if (this.isInitialized) {
2056
+ this.ui.stop();
2057
+ this.isInitialized = false;
2058
+ }
2059
+ }
2060
+
2061
+ async shutdown(): Promise<void> {
2062
+ if (this.#isShuttingDown) return;
2063
+ this.#isShuttingDown = true;
2064
+
2065
+ // Snapshot the editor before any teardown empties it. Persisting the draft
2066
+ // here covers Ctrl+D shutdown with non-empty text; for /exit the editor is
2067
+ // already cleared so saveDraft("") just removes any stale sidecar.
2068
+ const draftText = this.editor.getText();
2069
+
2070
+ // Flush pending session writes before shutdown
2071
+ await this.sessionManager.flush();
2072
+ try {
2073
+ await this.sessionManager.saveDraft(draftText);
2074
+ } catch (err) {
2075
+ logger.warn("Failed to save session draft", { error: String(err) });
2076
+ }
2077
+ this.#btwController.dispose();
2078
+
2079
+ // Emit shutdown event to hooks
2080
+ await this.session.dispose();
2081
+
2082
+ if (this.isInitialized) {
2083
+ this.ui.requestRender(true);
2084
+ }
2085
+
2086
+ // Wait for any pending renders to complete
2087
+ // requestRender() uses process.nextTick(), so we wait one tick
2088
+ await new Promise(resolve => process.nextTick(resolve));
2089
+
2090
+ // Drain any in-flight Kitty key release events before stopping.
2091
+ // This prevents escape sequences from leaking to the parent shell over slow SSH.
2092
+ await this.ui.terminal.drainInput(1000);
2093
+ popTerminalTitle();
2094
+ this.stop();
2095
+
2096
+ // Print resumption hint if this is a persisted session
2097
+ const sessionId = this.sessionManager.getSessionId();
2098
+ const sessionFile = this.sessionManager.getSessionFile();
2099
+ if (sessionId && sessionFile) {
2100
+ process.stderr.write(`\n${chalk.dim(`Resume this session with ${APP_NAME} --resume ${sessionId}`)}\n`);
2101
+ }
2102
+
2103
+ await postmortem.quit(0);
2104
+ }
2105
+
2106
+ async checkShutdownRequested(): Promise<void> {
2107
+ if (!this.shutdownRequested) return;
2108
+ await this.shutdown();
2109
+ }
2110
+
2111
+ // Extension UI integration
2112
+ setToolUIContext(uiContext: ExtensionUIContext, hasUI: boolean): void {
2113
+ this.#toolUiContextSetter(uiContext, hasUI);
2114
+ }
2115
+
2116
+ initializeHookRunner(uiContext: ExtensionUIContext, hasUI: boolean): void {
2117
+ this.#extensionUiController.initializeHookRunner(uiContext, hasUI);
2118
+ }
2119
+ createBackgroundUiContext(): ExtensionUIContext {
2120
+ return this.#extensionUiController.createBackgroundUiContext();
2121
+ }
2122
+
2123
+ setEditorComponent(
2124
+ factory: ((tui: TUI, theme: EditorTheme, keybindings: KeybindingsManager) => CustomEditor) | undefined,
2125
+ ): void {
2126
+ const previousEditor = this.editor;
2127
+ const previousText = previousEditor.getText();
2128
+ const nextEditor = factory
2129
+ ? factory(this.ui, getEditorTheme(), this.keybindings)
2130
+ : new CustomEditor(getEditorTheme());
2131
+
2132
+ configureDefaultComposerChrome(nextEditor);
2133
+ nextEditor.setUseTerminalCursor(this.ui.getShowHardwareCursor());
2134
+ nextEditor.setAutocompleteMaxVisible(this.settings.get("autocompleteMaxVisible"));
2135
+ nextEditor.onAutocompleteCancel = () => {
2136
+ this.ui.requestRender(true);
2137
+ };
2138
+ nextEditor.onAutocompleteUpdate = () => {
2139
+ this.ui.requestRender();
2140
+ };
2141
+ nextEditor.setMaxHeight(this.#computeEditorMaxHeight());
2142
+ if (this.historyStorage) {
2143
+ nextEditor.setHistoryStorage(this.historyStorage);
2144
+ }
2145
+ nextEditor.setText(previousText);
2146
+ previousEditor.dispose();
2147
+
2148
+ this.editorContainer.clear();
2149
+ this.editor = nextEditor;
2150
+ this.editorContainer.addChild(nextEditor);
2151
+ this.ui.setFocus(nextEditor);
2152
+
2153
+ this.#inputController.setupKeyHandlers();
2154
+ this.#inputController.setupEditorSubmitHandler();
2155
+
2156
+ void this.refreshSlashCommandState().catch(error => {
2157
+ logger.warn("Failed to refresh slash command state for custom editor", { error: String(error) });
2158
+ });
2159
+
2160
+ this.updateEditorChrome();
2161
+ this.ui.requestRender();
2162
+ }
2163
+
2164
+ // Event handling
2165
+ async handleBackgroundEvent(event: AgentSessionEvent): Promise<void> {
2166
+ await this.#eventController.handleBackgroundEvent(event);
2167
+ }
2168
+
2169
+ // UI helpers
2170
+ showStatus(message: string, options?: { dim?: boolean }): void {
2171
+ this.#uiHelpers.showStatus(message, options);
2172
+ }
2173
+
2174
+ showError(message: string): void {
2175
+ this.#pendingSubmittedInput = undefined;
2176
+ this.optimisticUserMessageSignature = undefined;
2177
+ this.#pendingSubmissionDispose?.();
2178
+ this.#pendingSubmissionDispose = undefined;
2179
+ this.#pendingWorkingMessage = undefined;
2180
+ if (this.loadingAnimation) {
2181
+ this.loadingAnimation.stop();
2182
+ this.loadingAnimation = undefined;
2183
+ this.statusContainer.clear();
2184
+ }
2185
+ this.#uiHelpers.showError(message);
2186
+ }
2187
+
2188
+ showWarning(message: string): void {
2189
+ this.#uiHelpers.showWarning(message);
2190
+ }
2191
+
2192
+ #handleLspStartupEvent(event: LspStartupEvent): void {
2193
+ this.#updateWelcomeLspServers();
2194
+
2195
+ if (event.type === "failed") {
2196
+ this.showWarning(`LSP startup failed: ${event.error}. It will retry lazily on write.`);
2197
+ return;
2198
+ }
2199
+
2200
+ const failedServers = event.servers.filter(server => server.status === "error");
2201
+
2202
+ if (failedServers.length === 1) {
2203
+ const failedServer = failedServers[0];
2204
+ const detail = failedServer.error ? `: ${failedServer.error}` : "";
2205
+ this.showWarning(`LSP startup failed for ${failedServer.name}${detail}. It will retry lazily on write.`);
2206
+ return;
2207
+ }
2208
+
2209
+ if (failedServers.length > 1) {
2210
+ const failedNames = failedServers.map(server => server.name).join(", ");
2211
+ this.showWarning(`LSP startup failed for ${failedNames}. It will retry lazily on write.`);
2212
+ }
2213
+ }
2214
+
2215
+ #getWelcomeLspServers(): WelcomeLspServerInfo[] {
2216
+ return (
2217
+ this.lspServers?.map(server => ({
2218
+ name: server.name,
2219
+ status: server.status,
2220
+ fileTypes: server.fileTypes,
2221
+ })) ?? []
2222
+ );
2223
+ }
2224
+
2225
+ #updateWelcomeLspServers(): void {
2226
+ if (!this.#welcomeComponent) {
2227
+ return;
2228
+ }
2229
+
2230
+ this.#welcomeComponent.setLspServers(this.#getWelcomeLspServers());
2231
+ this.ui.requestRender();
2232
+ }
2233
+
2234
+ #getWorkingMessageAccent(): WorkingMessageAccent | undefined {
2235
+ const accentEnabled = !isSettingsInitialized() || settings.get("statusLine.sessionAccent") !== false;
2236
+ const sessionName = accentEnabled ? this.sessionManager.getSessionName() : undefined;
2237
+ if (!sessionName) return undefined;
2238
+ const hex = getSessionAccentHex(sessionName);
2239
+ const main = getSessionAccentAnsi(hex);
2240
+ const dim = getSessionAccentAnsi(adjustHsv(hex, { s: 0.55, v: 0.65 }));
2241
+ return main && dim ? { main, dim } : undefined;
2242
+ }
2243
+
2244
+ ensureLoadingAnimation(): void {
2245
+ if (!this.loadingAnimation) {
2246
+ this.statusContainer.clear();
2247
+ this.loadingAnimation = new Loader(
2248
+ this.ui,
2249
+ spinner => {
2250
+ const accent = this.#getWorkingMessageAccent();
2251
+ return accent ? `${accent.main}${spinner}\x1b[39m` : theme.fg("accent", spinner);
2252
+ },
2253
+ message => renderWorkingMessage(message, this.#getWorkingMessageAccent()),
2254
+ this.#defaultWorkingMessage,
2255
+ getSymbolTheme().spinnerFrames,
2256
+ );
2257
+ this.statusContainer.addChild(this.loadingAnimation);
2258
+ }
2259
+
2260
+ this.applyPendingWorkingMessage();
2261
+ }
2262
+
2263
+ setWorkingMessage(message?: string): void {
2264
+ if (message === undefined) {
2265
+ this.#pendingWorkingMessage = undefined;
2266
+ if (this.loadingAnimation) {
2267
+ this.loadingAnimation.setMessage(this.#defaultWorkingMessage);
2268
+ }
2269
+ return;
2270
+ }
2271
+
2272
+ if (this.loadingAnimation) {
2273
+ this.loadingAnimation.setMessage(message);
2274
+ return;
2275
+ }
2276
+
2277
+ this.#pendingWorkingMessage = message;
2278
+ }
2279
+
2280
+ applyPendingWorkingMessage(): void {
2281
+ if (this.#pendingWorkingMessage === undefined) {
2282
+ return;
2283
+ }
2284
+
2285
+ const message = this.#pendingWorkingMessage;
2286
+ this.#pendingWorkingMessage = undefined;
2287
+ this.setWorkingMessage(message);
2288
+ }
2289
+
2290
+ showNewVersionNotification(newVersion: string): void {
2291
+ this.#uiHelpers.showNewVersionNotification(newVersion);
2292
+ }
2293
+
2294
+ clearEditor(): void {
2295
+ this.#uiHelpers.clearEditor();
2296
+ }
2297
+
2298
+ updatePendingMessagesDisplay(): void {
2299
+ this.#uiHelpers.updatePendingMessagesDisplay();
2300
+ }
2301
+
2302
+ queueCompactionMessage(text: string, mode: "steer" | "followUp"): void {
2303
+ this.#uiHelpers.queueCompactionMessage(text, mode);
2304
+ }
2305
+
2306
+ flushCompactionQueue(options?: { willRetry?: boolean }): Promise<void> {
2307
+ return this.#uiHelpers.flushCompactionQueue(options);
2308
+ }
2309
+
2310
+ flushPendingBashComponents(): void {
2311
+ this.#uiHelpers.flushPendingBashComponents();
2312
+ }
2313
+
2314
+ isKnownSlashCommand(text: string): boolean {
2315
+ return this.#uiHelpers.isKnownSlashCommand(text);
2316
+ }
2317
+
2318
+ addMessageToChat(message: AgentMessage, options?: { populateHistory?: boolean }): Component[] {
2319
+ return this.#uiHelpers.addMessageToChat(message, options);
2320
+ }
2321
+
2322
+ renderSessionContext(
2323
+ sessionContext: SessionContext,
2324
+ options?: { updateFooter?: boolean; populateHistory?: boolean },
2325
+ ): void {
2326
+ this.#uiHelpers.renderSessionContext(sessionContext, options);
2327
+ }
2328
+
2329
+ renderInitialMessages(prebuiltContext?: SessionContext, options?: { preserveExistingChat?: boolean }): void {
2330
+ this.#uiHelpers.renderInitialMessages(prebuiltContext, options);
2331
+ this.#resetCurrentTurnStartIndexFromChat();
2332
+ }
2333
+
2334
+ getUserMessageText(message: Message): string {
2335
+ return this.#uiHelpers.getUserMessageText(message);
2336
+ }
2337
+
2338
+ findLastAssistantMessage(): AssistantMessage | undefined {
2339
+ return this.#uiHelpers.findLastAssistantMessage();
2340
+ }
2341
+
2342
+ extractAssistantText(message: AssistantMessage): string {
2343
+ return this.#uiHelpers.extractAssistantText(message);
2344
+ }
2345
+
2346
+ // Command handling
2347
+ handleExportCommand(text: string): Promise<void> {
2348
+ return this.#commandController.handleExportCommand(text);
2349
+ }
2350
+
2351
+ handleDumpCommand() {
2352
+ return this.#commandController.handleDumpCommand();
2353
+ }
2354
+
2355
+ handleDebugTranscriptCommand(): Promise<void> {
2356
+ return this.#commandController.handleDebugTranscriptCommand();
2357
+ }
2358
+
2359
+ handleShareCommand(): Promise<void> {
2360
+ return this.#commandController.handleShareCommand();
2361
+ }
2362
+
2363
+ handleCopyCommand(sub?: string) {
2364
+ return this.#commandController.handleCopyCommand(sub);
2365
+ }
2366
+
2367
+ handleTodoCommand(args: string): Promise<void> {
2368
+ return this.#todoCommandController.handleTodoCommand(args);
2369
+ }
2370
+
2371
+ handleSessionCommand(): Promise<void> {
2372
+ return this.#commandController.handleSessionCommand();
2373
+ }
2374
+
2375
+ handleJobsCommand(): Promise<void> {
2376
+ return this.#commandController.handleJobsCommand();
2377
+ }
2378
+
2379
+ handleUsageCommand(reports?: UsageReport[] | null): Promise<void> {
2380
+ return this.#commandController.handleUsageCommand(reports);
2381
+ }
2382
+
2383
+ async handleChangelogCommand(showFull = false): Promise<void> {
2384
+ await this.#commandController.handleChangelogCommand(showFull);
2385
+ }
2386
+
2387
+ handleHelpCommand(): void {
2388
+ // 99.20.08 (나) 확정: docked catalog selector (model-selector grammar)
2389
+ // — replaced the v1 markdown panel.
2390
+ this.#selectorController.showHelpSelector();
2391
+ }
2392
+
2393
+ handleHotkeysCommand(): void {
2394
+ this.#commandController.handleHotkeysCommand();
2395
+ }
2396
+
2397
+ handleToolsCommand(): void {
2398
+ this.#commandController.handleToolsCommand();
2399
+ }
2400
+
2401
+ handleContextCommand(): void {
2402
+ this.#commandController.handleContextCommand();
2403
+ }
2404
+
2405
+ #prepareSessionSwitch(): void {
2406
+ this.#btwController.dispose();
2407
+ this.#extensionUiController.clearExtensionTerminalInputListeners();
2408
+ this.#planReviewContainer = undefined;
2409
+ }
2410
+
2411
+ handleClearCommand(): Promise<void> {
2412
+ this.#prepareSessionSwitch();
2413
+ return this.#commandController.handleClearCommand();
2414
+ }
2415
+
2416
+ handleDropCommand(): Promise<void> {
2417
+ this.#prepareSessionSwitch();
2418
+ return this.#commandController.handleDropCommand();
2419
+ }
2420
+
2421
+ handleForkCommand(message?: string): Promise<void> {
2422
+ this.#btwController.dispose();
2423
+ return this.#commandController.handleForkCommand(message);
2424
+ }
2425
+
2426
+ handleMoveCommand(targetPath: string): Promise<void> {
2427
+ return this.#commandController.handleMoveCommand(targetPath);
2428
+ }
2429
+
2430
+ handleRenameCommand(title: string): Promise<void> {
2431
+ return this.#commandController.handleRenameCommand(title);
2432
+ }
2433
+
2434
+ handleMemoryCommand(text: string): Promise<void> {
2435
+ return this.#commandController.handleMemoryCommand(text);
2436
+ }
2437
+
2438
+ async handleSTTToggle(): Promise<void> {
2439
+ if (!settings.get("stt.enabled")) {
2440
+ this.showWarning("Speech-to-text is disabled. Enable it in settings: stt.enabled");
2441
+ return;
2442
+ }
2443
+ if (!this.#sttController) {
2444
+ this.#sttController = new STTController();
2445
+ }
2446
+ await this.#sttController.toggle(this.editor, {
2447
+ showWarning: (msg: string) => this.showWarning(msg),
2448
+ showStatus: (msg: string) => this.showStatus(msg),
2449
+ onStateChange: (state: SttState) => {
2450
+ if (state === "recording") {
2451
+ this.#voicePreviousShowHardwareCursor = this.ui.getShowHardwareCursor();
2452
+ this.#voicePreviousUseTerminalCursor = this.editor.getUseTerminalCursor();
2453
+ this.ui.setShowHardwareCursor(false);
2454
+ this.editor.setUseTerminalCursor(false);
2455
+ this.#startMicAnimation();
2456
+ } else if (state === "transcribing") {
2457
+ this.#stopMicAnimation();
2458
+ this.#setMicCursor({ r: 200, g: 200, b: 200 });
2459
+ } else {
2460
+ this.#cleanupMicAnimation();
2461
+ }
2462
+ this.updateEditorChrome();
2463
+ this.ui.requestRender();
2464
+ },
2465
+ });
2466
+ }
2467
+
2468
+ #setMicCursor(color: { r: number; g: number; b: number }): void {
2469
+ this.editor.cursorOverride = `\x1b[38;2;${color.r};${color.g};${color.b}m${theme.icon.mic}\x1b[0m`;
2470
+ // Theme symbols can be wide (for example, 🎤), so measure the rendered override.
2471
+ this.editor.cursorOverrideWidth = visibleWidth(this.editor.cursorOverride);
2472
+ }
2473
+
2474
+ #updateMicIcon(): void {
2475
+ const { r, g, b } = hsvToRgb({ h: this.#voiceHue, s: 0.9, v: 1.0 });
2476
+ this.#setMicCursor({ r, g, b });
2477
+ }
2478
+
2479
+ #startMicAnimation(): void {
2480
+ if (this.#voiceAnimationInterval) return;
2481
+ this.#voiceHue = 0;
2482
+ this.#updateMicIcon();
2483
+ this.#voiceAnimationInterval = setInterval(() => {
2484
+ this.#voiceHue = (this.#voiceHue + 8) % 360;
2485
+ this.#updateMicIcon();
2486
+ this.ui.requestRender();
2487
+ }, 60);
2488
+ }
2489
+
2490
+ #stopMicAnimation(): void {
2491
+ if (this.#voiceAnimationInterval) {
2492
+ clearInterval(this.#voiceAnimationInterval);
2493
+ this.#voiceAnimationInterval = undefined;
2494
+ }
2495
+ }
2496
+
2497
+ #cleanupMicAnimation(): void {
2498
+ if (this.#voiceAnimationInterval) {
2499
+ clearInterval(this.#voiceAnimationInterval);
2500
+ this.#voiceAnimationInterval = undefined;
2501
+ }
2502
+ this.editor.cursorOverride = undefined;
2503
+ this.editor.cursorOverrideWidth = undefined;
2504
+ if (this.#voicePreviousShowHardwareCursor !== null) {
2505
+ this.ui.setShowHardwareCursor(this.#voicePreviousShowHardwareCursor);
2506
+ this.#voicePreviousShowHardwareCursor = null;
2507
+ }
2508
+ if (this.#voicePreviousUseTerminalCursor !== null) {
2509
+ this.editor.setUseTerminalCursor(this.#voicePreviousUseTerminalCursor);
2510
+ this.#voicePreviousUseTerminalCursor = null;
2511
+ }
2512
+ }
2513
+
2514
+ showDebugSelector(): void {
2515
+ this.#selectorController.showDebugSelector();
2516
+ }
2517
+
2518
+ showSessionObserver(): void {
2519
+ const sessions = this.#observerRegistry.getSessions();
2520
+ if (sessions.length <= 1) {
2521
+ this.showStatus("No active subagent sessions");
2522
+ return;
2523
+ }
2524
+ this.#selectorController.showSessionObserver(this.#observerRegistry);
2525
+ }
2526
+
2527
+ showJobsOverlay(): void {
2528
+ if (!this.#jobsObserver) {
2529
+ this.showStatus("Background jobs are unavailable in this session");
2530
+ return;
2531
+ }
2532
+ this.#selectorController.showJobsOverlay(this.#jobsObserver);
2533
+ }
2534
+
2535
+ #refreshBackgroundFooter(): void {
2536
+ const jobsObserver = this.#jobsObserver;
2537
+ if (!jobsObserver) {
2538
+ this.composerFooter.setBackgroundText(undefined);
2539
+ this.backgroundFooterPanel.setModel({
2540
+ compactText: undefined,
2541
+ rows: [],
2542
+ attention: false,
2543
+ totalVisible: 0,
2544
+ });
2545
+ return;
2546
+ }
2547
+ jobsObserver.markTerminalRowsVisible(this.#userAgentMessageSeq);
2548
+ const snapshot = jobsObserver.getSnapshot();
2549
+ const model = buildBackgroundFooterModel(snapshot);
2550
+ const wasExpanded = this.backgroundFooterPanel.isExpanded();
2551
+ this.statusLine.setJobs(snapshot);
2552
+ this.composerFooter.setBackgroundText(model.compactText);
2553
+ this.backgroundFooterPanel.setModel(model);
2554
+ if (wasExpanded && !this.backgroundFooterPanel.isExpanded()) {
2555
+ this.#inputController.removeBackgroundFooterPanelHandlers();
2556
+ }
2557
+ this.ui.requestRender();
2558
+ }
2559
+
2560
+ isBackgroundFooterDetailOpen(): boolean {
2561
+ return this.#backgroundFooterDetail !== undefined;
2562
+ }
2563
+ closeBackgroundFooterDetail(): void {
2564
+ if (!this.#backgroundFooterDetail) return;
2565
+ this.#backgroundFooterDetail = undefined;
2566
+ this.editorContainer.clear();
2567
+ this.editorContainer.addChild(this.editor);
2568
+ this.ui.setFocus(this.editor);
2569
+ this.ui.requestRender();
2570
+ }
2571
+
2572
+ toggleBackgroundFooterPanel(): void {
2573
+ if (this.#backgroundFooterDetail) return;
2574
+ if (this.backgroundFooterPanel.isExpanded()) {
2575
+ this.backgroundFooterPanel.collapse();
2576
+ this.#inputController.removeBackgroundFooterPanelHandlers();
2577
+ this.ui.requestRender();
2578
+ return;
2579
+ }
2580
+ const snapshot = this.#jobsObserver?.getSnapshot();
2581
+ if (!snapshot || snapshot.backgroundRows.length === 0) {
2582
+ this.showStatus("No background work");
2583
+ return;
2584
+ }
2585
+ if (!this.#inputController.installBackgroundFooterPanelHandlers()) return;
2586
+ this.backgroundFooterPanel.setExpanded(true);
2587
+ this.ui.requestRender();
2588
+ }
2589
+
2590
+ openBackgroundFooterDetail(rowId: string): void {
2591
+ const snapshot = this.#jobsObserver?.getSnapshot();
2592
+ if (!snapshot) {
2593
+ this.showStatus("Background jobs are unavailable in this session");
2594
+ return;
2595
+ }
2596
+ let detail: BackgroundFooterDetailComponent | undefined;
2597
+ const close = () => {
2598
+ if (this.#backgroundFooterDetail !== detail) return;
2599
+ this.#backgroundFooterDetail = undefined;
2600
+ this.editorContainer.clear();
2601
+ this.editorContainer.addChild(this.editor);
2602
+ this.ui.setFocus(this.editor);
2603
+ this.ui.requestRender();
2604
+ };
2605
+ detail = new BackgroundFooterDetailComponent(buildBackgroundDetailItems(snapshot, rowId), close);
2606
+ this.#backgroundFooterDetail = detail;
2607
+ this.editorContainer.clear();
2608
+ this.editorContainer.addChild(detail);
2609
+ this.ui.setFocus(detail.getFocus());
2610
+ this.ui.requestRender();
2611
+ }
2612
+
2613
+ handleBackgroundFooterPanelKey(action: "up" | "down" | "enter" | "escape"): boolean {
2614
+ if (this.#backgroundFooterDetail) return false;
2615
+ if (!this.backgroundFooterPanel.isExpanded()) return false;
2616
+ if (action === "up") {
2617
+ this.backgroundFooterPanel.moveSelection(-1);
2618
+ return true;
2619
+ }
2620
+ if (action === "down") {
2621
+ this.backgroundFooterPanel.moveSelection(1);
2622
+ return true;
2623
+ }
2624
+ if (action === "enter") {
2625
+ this.backgroundFooterPanel.openSelected();
2626
+ return true;
2627
+ }
2628
+ this.backgroundFooterPanel.collapse();
2629
+ this.#inputController.removeBackgroundFooterPanelHandlers();
2630
+ this.ui.requestRender();
2631
+ return true;
2632
+ }
2633
+
2634
+ resetObserverRegistry(): void {
2635
+ this.#observerRegistry.resetSessions();
2636
+ this.#observerRegistry.setMainSession(this.sessionManager.getSessionFile() ?? undefined);
2637
+ }
2638
+
2639
+ handleBashCommand(command: string, excludeFromContext?: boolean): Promise<void> {
2640
+ return this.#commandController.handleBashCommand(command, excludeFromContext);
2641
+ }
2642
+
2643
+ handlePythonCommand(code: string, excludeFromContext?: boolean): Promise<void> {
2644
+ return this.#commandController.handlePythonCommand(code, excludeFromContext);
2645
+ }
2646
+
2647
+ async handleMCPCommand(_text: string): Promise<void> {
2648
+ this.showWarning(`MCP commands are not available in ${APP_NAME}.`);
2649
+ }
2650
+
2651
+ async handleSSHCommand(text: string): Promise<void> {
2652
+ const controller = new SSHCommandController(this);
2653
+ await controller.handle(text);
2654
+ }
2655
+
2656
+ handleCompactCommand(customInstructions?: string): Promise<CompactionOutcome> {
2657
+ return this.#commandController.handleCompactCommand(customInstructions);
2658
+ }
2659
+
2660
+ handleHandoffCommand(customInstructions?: string): Promise<void> {
2661
+ return this.#commandController.handleHandoffCommand(customInstructions);
2662
+ }
2663
+
2664
+ handleContributionPrepCommand(customInstructions?: string): Promise<void> {
2665
+ return this.#commandController.handleContributionPrepCommand(customInstructions);
2666
+ }
2667
+
2668
+ executeCompaction(
2669
+ customInstructionsOrOptions?: string | CompactOptions,
2670
+ isAuto?: boolean,
2671
+ ): Promise<CompactionOutcome> {
2672
+ return this.#commandController.executeCompaction(customInstructionsOrOptions, isAuto);
2673
+ }
2674
+
2675
+ openInBrowser(urlOrPath: string): void {
2676
+ this.#commandController.openInBrowser(urlOrPath);
2677
+ }
2678
+
2679
+ // Selector handling
2680
+ showSettingsSelector(): void {
2681
+ this.#selectorController.showSettingsSelector();
2682
+ }
2683
+
2684
+ showThemeSelector(): void {
2685
+ this.#selectorController.showThemeSelector();
2686
+ }
2687
+
2688
+ showHistorySearch(): void {
2689
+ this.#selectorController.showHistorySearch();
2690
+ }
2691
+
2692
+ showExtensionsDashboard(): void {
2693
+ void this.#selectorController.showExtensionsDashboard();
2694
+ }
2695
+
2696
+ showAgentsDashboard(): void {
2697
+ void this.#selectorController.showAgentsDashboard();
2698
+ }
2699
+
2700
+ showEffortSelector(): void {
2701
+ this.#selectorController.showEffortSelector();
2702
+ }
2703
+
2704
+ showSearchEngineSelector(): void {
2705
+ this.#selectorController.showSearchEngineSelector();
2706
+ }
2707
+
2708
+ showQuotaSelector(): void {
2709
+ this.#selectorController.showQuotaSelector();
2710
+ }
2711
+
2712
+ showUsageReportPanel(title: string, load: () => Promise<((width: number) => string[]) | string>): void {
2713
+ this.#selectorController.showUsageReportPanel(title, load);
2714
+ }
2715
+
2716
+ handleQuotaForProvider(providerId: string): Promise<void> {
2717
+ return this.#commandController.handleQuotaForProvider(providerId);
2718
+ }
2719
+
2720
+ showModelSelector(options?: { temporaryOnly?: boolean }): void {
2721
+ this.#selectorController.showModelSelector(options);
2722
+ }
2723
+
2724
+ showProviderOnboarding(): void {
2725
+ this.#selectorController.showProviderOnboarding();
2726
+ }
2727
+
2728
+ showPluginSelector(mode?: "install" | "uninstall"): void {
2729
+ void this.#selectorController.showPluginSelector(mode);
2730
+ }
2731
+
2732
+ showUserMessageSelector(): void {
2733
+ this.#selectorController.showUserMessageSelector();
2734
+ }
2735
+
2736
+ showTreeSelector(): void {
2737
+ this.#selectorController.showTreeSelector();
2738
+ }
2739
+
2740
+ showSessionSelector(): void {
2741
+ this.#selectorController.showSessionSelector();
2742
+ }
2743
+
2744
+ handleResumeSession(sessionPath: string): Promise<void> {
2745
+ this.#btwController.dispose();
2746
+ this.resetObserverRegistry();
2747
+ return this.#selectorController.handleResumeSession(sessionPath);
2748
+ }
2749
+
2750
+ handleResumeByIdCommand(sessionArg: string): Promise<void> {
2751
+ // btw disposal and observer reset happen inside handleResumeSession once a match is confirmed.
2752
+ return this.#selectorController.handleResumeByIdCommand(sessionArg);
2753
+ }
2754
+
2755
+ handleSessionDeleteCommand(): Promise<void> {
2756
+ return this.#selectorController.handleSessionDeleteCommand();
2757
+ }
2758
+
2759
+ showOAuthSelector(mode: "login" | "logout", providerId?: string, opts?: { importLocal?: boolean }): Promise<void> {
2760
+ return this.#selectorController.showOAuthSelector(mode, providerId, opts);
2761
+ }
2762
+
2763
+ showHookConfirm(title: string, message: string): Promise<boolean> {
2764
+ return this.#extensionUiController.showHookConfirm(title, message);
2765
+ }
2766
+
2767
+ // Input handling
2768
+ handleCtrlC(): void {
2769
+ this.#inputController.handleCtrlC();
2770
+ }
2771
+
2772
+ handleCtrlD(): void {
2773
+ this.#inputController.handleCtrlD();
2774
+ }
2775
+
2776
+ handleCtrlZ(): void {
2777
+ this.#inputController.handleCtrlZ();
2778
+ }
2779
+
2780
+ handleDequeue(): void {
2781
+ this.#inputController.handleDequeue();
2782
+ }
2783
+
2784
+ handleBackgroundCommand(): void {
2785
+ this.#inputController.handleBackgroundCommand();
2786
+ }
2787
+
2788
+ handleImagePaste(): Promise<boolean> {
2789
+ return this.#inputController.handleImagePaste();
2790
+ }
2791
+
2792
+ handleBtwCommand(question: string): Promise<void> {
2793
+ return this.#btwController.start(question);
2794
+ }
2795
+
2796
+ hasActiveBtw(): boolean {
2797
+ return this.#btwController.hasActiveRequest();
2798
+ }
2799
+
2800
+ handleBtwEscape(): boolean {
2801
+ return this.#btwController.handleEscape();
2802
+ }
2803
+
2804
+ cycleThinkingLevel(): void {
2805
+ this.#inputController.cycleThinkingLevel();
2806
+ }
2807
+
2808
+ cycleRoleModel(options?: { temporary?: boolean }): Promise<void> {
2809
+ return this.#inputController.cycleRoleModel(options);
2810
+ }
2811
+
2812
+ toggleToolOutputExpansion(): void {
2813
+ this.#inputController.toggleToolOutputExpansion();
2814
+ }
2815
+
2816
+ setToolsExpanded(expanded: boolean): void {
2817
+ this.#inputController.setToolsExpanded(expanded);
2818
+ }
2819
+
2820
+ toggleThinkingBlockVisibility(): void {
2821
+ this.#inputController.toggleThinkingBlockVisibility();
2822
+ }
2823
+
2824
+ toggleTodoExpansion(): void {
2825
+ this.todoExpanded = !this.todoExpanded;
2826
+ this.#renderTodoList();
2827
+ this.ui.requestRender();
2828
+ }
2829
+
2830
+ setTodos(todos: TodoItem[] | TodoPhase[]): void {
2831
+ if (todos.length > 0 && "tasks" in todos[0]) {
2832
+ this.todoPhases = todos as TodoPhase[];
2833
+ } else {
2834
+ this.todoPhases = [
2835
+ {
2836
+ name: "Todos",
2837
+ tasks: todos as TodoItem[],
2838
+ },
2839
+ ];
2840
+ }
2841
+ this.#renderTodoList();
2842
+ this.ui.requestRender();
2843
+ }
2844
+
2845
+ async reloadTodos(): Promise<void> {
2846
+ await this.#loadTodoList();
2847
+ this.ui.requestRender();
2848
+ }
2849
+
2850
+ openExternalEditor(): void {
2851
+ this.#inputController.openExternalEditor();
2852
+ }
2853
+
2854
+ registerExtensionShortcuts(): void {
2855
+ this.#inputController.registerExtensionShortcuts();
2856
+ }
2857
+
2858
+ // Hook UI methods
2859
+ initHooksAndCustomTools(): Promise<void> {
2860
+ return this.#extensionUiController.initHooksAndCustomTools();
2861
+ }
2862
+
2863
+ emitCustomToolSessionEvent(
2864
+ reason: "start" | "switch" | "branch" | "tree" | "shutdown",
2865
+ previousSessionFile?: string,
2866
+ ): Promise<void> {
2867
+ return this.#extensionUiController.emitCustomToolSessionEvent(reason, previousSessionFile);
2868
+ }
2869
+
2870
+ setHookWidget(key: string, content: ExtensionWidgetContent, options?: ExtensionWidgetOptions): void {
2871
+ this.#extensionUiController.setHookWidget(key, content, options);
2872
+ }
2873
+
2874
+ setHookStatus(key: string, text: string | undefined): void {
2875
+ this.#extensionUiController.setHookStatus(key, text);
2876
+ }
2877
+
2878
+ showHookSelector(
2879
+ title: string,
2880
+ options: string[],
2881
+ dialogOptions?: ExtensionUIDialogOptions,
2882
+ ): Promise<string | undefined> {
2883
+ return this.#extensionUiController.showHookSelector(title, options, dialogOptions);
2884
+ }
2885
+
2886
+ hideHookSelector(): void {
2887
+ this.#extensionUiController.hideHookSelector();
2888
+ }
2889
+
2890
+ showHookInput(title: string, placeholder?: string): Promise<string | undefined> {
2891
+ return this.#extensionUiController.showHookInput(title, placeholder);
2892
+ }
2893
+
2894
+ hideHookInput(): void {
2895
+ this.#extensionUiController.hideHookInput();
2896
+ }
2897
+
2898
+ showHookEditor(
2899
+ title: string,
2900
+ prefill?: string,
2901
+ dialogOptions?: ExtensionUIDialogOptions,
2902
+ editorOptions?: { promptStyle?: boolean },
2903
+ ): Promise<string | undefined> {
2904
+ return this.#extensionUiController.showHookEditor(title, prefill, dialogOptions, editorOptions);
2905
+ }
2906
+
2907
+ hideHookEditor(): void {
2908
+ this.#extensionUiController.hideHookEditor();
2909
+ }
2910
+
2911
+ showHookNotify(message: string, type?: "info" | "warning" | "error"): void {
2912
+ this.#extensionUiController.showHookNotify(message, type);
2913
+ }
2914
+
2915
+ showHookCustom<T>(
2916
+ factory: (
2917
+ tui: TUI,
2918
+ theme: Theme,
2919
+ keybindings: KeybindingsManager,
2920
+ done: (result: T) => void,
2921
+ ) => (Component & { dispose?(): void }) | Promise<Component & { dispose?(): void }>,
2922
+ options?: { overlay?: boolean },
2923
+ ): Promise<T> {
2924
+ return this.#extensionUiController.showHookCustom(factory, options);
2925
+ }
2926
+
2927
+ showExtensionError(extensionPath: string, error: string): void {
2928
+ this.#extensionUiController.showExtensionError(extensionPath, error);
2929
+ }
2930
+
2931
+ showToolError(toolName: string, error: string): void {
2932
+ this.#extensionUiController.showToolError(toolName, error);
2933
+ }
2934
+
2935
+ #subscribeToAgent(): void {
2936
+ this.#eventController.subscribeToAgent();
2937
+ }
2938
+ }