anymous 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (415) hide show
  1. package/README.md +15 -0
  2. package/bin/anymous.cjs +45 -0
  3. package/package.json +155 -0
  4. package/src/account/account.ts +473 -0
  5. package/src/account/repo.ts +171 -0
  6. package/src/account/schema.ts +99 -0
  7. package/src/account/url.ts +8 -0
  8. package/src/acp/agent.ts +95 -0
  9. package/src/acp/config-option.ts +203 -0
  10. package/src/acp/content.ts +269 -0
  11. package/src/acp/directory.ts +212 -0
  12. package/src/acp/error.ts +97 -0
  13. package/src/acp/event.ts +342 -0
  14. package/src/acp/permission.ts +254 -0
  15. package/src/acp/profile.ts +42 -0
  16. package/src/acp/service.ts +1097 -0
  17. package/src/acp/session.ts +232 -0
  18. package/src/acp/tool.ts +364 -0
  19. package/src/acp/usage.ts +239 -0
  20. package/src/agent/agent.ts +581 -0
  21. package/src/agent/generate.txt +75 -0
  22. package/src/agent/prompt/compaction.txt +9 -0
  23. package/src/agent/prompt/debug-tools.txt +41 -0
  24. package/src/agent/prompt/exe-extractor.txt +37 -0
  25. package/src/agent/prompt/explore.txt +18 -0
  26. package/src/agent/prompt/memory-dump.txt +34 -0
  27. package/src/agent/prompt/reverser-automator.txt +24 -0
  28. package/src/agent/prompt/reverser-binary.txt +25 -0
  29. package/src/agent/prompt/reverser-dynamic.txt +29 -0
  30. package/src/agent/prompt/reverser-source.txt +22 -0
  31. package/src/agent/prompt/reverser-static.txt +28 -0
  32. package/src/agent/prompt/summary.txt +11 -0
  33. package/src/agent/prompt/title.txt +44 -0
  34. package/src/agent/subagent-permissions.ts +27 -0
  35. package/src/audio.d.ts +14 -0
  36. package/src/auth/index.ts +97 -0
  37. package/src/background/job.ts +37 -0
  38. package/src/bus/global.ts +22 -0
  39. package/src/cli/bootstrap.ts +11 -0
  40. package/src/cli/cmd/account.ts +264 -0
  41. package/src/cli/cmd/acp.ts +73 -0
  42. package/src/cli/cmd/agent.ts +259 -0
  43. package/src/cli/cmd/attach.ts +148 -0
  44. package/src/cli/cmd/cmd.ts +7 -0
  45. package/src/cli/cmd/db.ts +62 -0
  46. package/src/cli/cmd/debug/agent.handler.ts +193 -0
  47. package/src/cli/cmd/debug/agent.ts +27 -0
  48. package/src/cli/cmd/debug/config.ts +14 -0
  49. package/src/cli/cmd/debug/file.ts +73 -0
  50. package/src/cli/cmd/debug/index.ts +87 -0
  51. package/src/cli/cmd/debug/lsp.ts +50 -0
  52. package/src/cli/cmd/debug/ripgrep.ts +79 -0
  53. package/src/cli/cmd/debug/scrap.ts +16 -0
  54. package/src/cli/cmd/debug/skill.ts +15 -0
  55. package/src/cli/cmd/debug/snapshot.ts +50 -0
  56. package/src/cli/cmd/debug/startup.ts +11 -0
  57. package/src/cli/cmd/debug/v2.ts +42 -0
  58. package/src/cli/cmd/export.ts +292 -0
  59. package/src/cli/cmd/generate.ts +54 -0
  60. package/src/cli/cmd/github.handler.ts +1593 -0
  61. package/src/cli/cmd/github.shared.ts +30 -0
  62. package/src/cli/cmd/github.ts +42 -0
  63. package/src/cli/cmd/import.ts +230 -0
  64. package/src/cli/cmd/mcp.ts +840 -0
  65. package/src/cli/cmd/models.ts +66 -0
  66. package/src/cli/cmd/plug.ts +230 -0
  67. package/src/cli/cmd/pr.ts +115 -0
  68. package/src/cli/cmd/prompt-display.ts +1 -0
  69. package/src/cli/cmd/providers.ts +534 -0
  70. package/src/cli/cmd/run/demo.ts +1274 -0
  71. package/src/cli/cmd/run/entry.body.ts +205 -0
  72. package/src/cli/cmd/run/footer.command.tsx +1070 -0
  73. package/src/cli/cmd/run/footer.menu.tsx +351 -0
  74. package/src/cli/cmd/run/footer.permission.tsx +472 -0
  75. package/src/cli/cmd/run/footer.prompt.tsx +1315 -0
  76. package/src/cli/cmd/run/footer.question.tsx +573 -0
  77. package/src/cli/cmd/run/footer.subagent.tsx +175 -0
  78. package/src/cli/cmd/run/footer.ts +1129 -0
  79. package/src/cli/cmd/run/footer.view.tsx +945 -0
  80. package/src/cli/cmd/run/footer.width.ts +27 -0
  81. package/src/cli/cmd/run/permission.shared.ts +256 -0
  82. package/src/cli/cmd/run/prompt.editor.ts +157 -0
  83. package/src/cli/cmd/run/prompt.shared.ts +153 -0
  84. package/src/cli/cmd/run/question.shared.ts +340 -0
  85. package/src/cli/cmd/run/runtime.boot.ts +202 -0
  86. package/src/cli/cmd/run/runtime.lifecycle.ts +406 -0
  87. package/src/cli/cmd/run/runtime.queue.ts +349 -0
  88. package/src/cli/cmd/run/runtime.shared.ts +17 -0
  89. package/src/cli/cmd/run/runtime.stdin.ts +37 -0
  90. package/src/cli/cmd/run/runtime.ts +814 -0
  91. package/src/cli/cmd/run/scrollback.shared.ts +92 -0
  92. package/src/cli/cmd/run/scrollback.surface.ts +431 -0
  93. package/src/cli/cmd/run/scrollback.writer.tsx +352 -0
  94. package/src/cli/cmd/run/session-data.ts +1113 -0
  95. package/src/cli/cmd/run/session-replay.ts +374 -0
  96. package/src/cli/cmd/run/session.shared.ts +196 -0
  97. package/src/cli/cmd/run/splash.ts +280 -0
  98. package/src/cli/cmd/run/stream.transport.ts +1462 -0
  99. package/src/cli/cmd/run/stream.ts +175 -0
  100. package/src/cli/cmd/run/subagent-data.ts +876 -0
  101. package/src/cli/cmd/run/theme.ts +690 -0
  102. package/src/cli/cmd/run/tool.ts +1486 -0
  103. package/src/cli/cmd/run/trace.ts +94 -0
  104. package/src/cli/cmd/run/turn-summary.ts +47 -0
  105. package/src/cli/cmd/run/types.ts +350 -0
  106. package/src/cli/cmd/run/variant.shared.ts +216 -0
  107. package/src/cli/cmd/run.ts +1011 -0
  108. package/src/cli/cmd/serve.ts +24 -0
  109. package/src/cli/cmd/session.ts +147 -0
  110. package/src/cli/cmd/stats.ts +393 -0
  111. package/src/cli/cmd/tui.ts +309 -0
  112. package/src/cli/cmd/uninstall.ts +353 -0
  113. package/src/cli/cmd/upgrade.ts +74 -0
  114. package/src/cli/cmd/web.ts +84 -0
  115. package/src/cli/effect/prompt.ts +37 -0
  116. package/src/cli/effect-cmd.ts +96 -0
  117. package/src/cli/error.ts +130 -0
  118. package/src/cli/heap.ts +45 -0
  119. package/src/cli/logo.ts +1 -0
  120. package/src/cli/network.ts +80 -0
  121. package/src/cli/tui/layer.ts +8 -0
  122. package/src/cli/tui/validate-session.ts +29 -0
  123. package/src/cli/tui/worker.ts +80 -0
  124. package/src/cli/ui.ts +132 -0
  125. package/src/cli/upgrade.ts +53 -0
  126. package/src/command/index.ts +177 -0
  127. package/src/command/template/initialize.txt +66 -0
  128. package/src/command/template/review.txt +101 -0
  129. package/src/config/agent.ts +59 -0
  130. package/src/config/command.ts +39 -0
  131. package/src/config/config.ts +681 -0
  132. package/src/config/entry-name.ts +19 -0
  133. package/src/config/managed.ts +69 -0
  134. package/src/config/markdown.ts +36 -0
  135. package/src/config/parse.ts +79 -0
  136. package/src/config/paths.ts +45 -0
  137. package/src/config/plugin.ts +79 -0
  138. package/src/config/tui-cwd.ts +5 -0
  139. package/src/config/tui-host-attention.ts +21 -0
  140. package/src/config/tui-migrate.ts +132 -0
  141. package/src/config/tui.ts +276 -0
  142. package/src/config/variable.ts +91 -0
  143. package/src/control-plane/adapters/index.ts +41 -0
  144. package/src/control-plane/adapters/worktree.ts +96 -0
  145. package/src/control-plane/dev/README.md +19 -0
  146. package/src/control-plane/dev/debug-workspace-plugin.ts +73 -0
  147. package/src/control-plane/types.ts +59 -0
  148. package/src/control-plane/util.ts +39 -0
  149. package/src/control-plane/workspace-adapter-runtime.ts +51 -0
  150. package/src/control-plane/workspace-context.ts +26 -0
  151. package/src/control-plane/workspace.ts +964 -0
  152. package/src/effect/app-node-builder-v1.ts +12 -0
  153. package/src/effect/app-runtime.ts +135 -0
  154. package/src/effect/bootstrap-runtime.ts +19 -0
  155. package/src/effect/bridge.ts +84 -0
  156. package/src/effect/config-service.ts +67 -0
  157. package/src/effect/instance-ref.ts +11 -0
  158. package/src/effect/instance-registry.ts +12 -0
  159. package/src/effect/instance-state.ts +69 -0
  160. package/src/effect/promise.ts +17 -0
  161. package/src/effect/run-service.ts +47 -0
  162. package/src/effect/runner.ts +217 -0
  163. package/src/effect/runtime-flags.ts +78 -0
  164. package/src/env/index.ts +41 -0
  165. package/src/event-manifest.ts +3 -0
  166. package/src/event-v2-bridge.ts +71 -0
  167. package/src/format/formatter.ts +404 -0
  168. package/src/format/index.ts +203 -0
  169. package/src/git/index.ts +348 -0
  170. package/src/id/id.ts +80 -0
  171. package/src/ide/index.ts +54 -0
  172. package/src/image/image.ts +172 -0
  173. package/src/index.ts +142 -0
  174. package/src/installation/index.ts +336 -0
  175. package/src/lsp/client.ts +650 -0
  176. package/src/lsp/diagnostic.ts +29 -0
  177. package/src/lsp/language.ts +121 -0
  178. package/src/lsp/launch.ts +21 -0
  179. package/src/lsp/lsp.ts +507 -0
  180. package/src/lsp/server.ts +1983 -0
  181. package/src/markdown.d.ts +4 -0
  182. package/src/mcp/auth.ts +163 -0
  183. package/src/mcp/browser.ts +37 -0
  184. package/src/mcp/catalog.ts +170 -0
  185. package/src/mcp/index.ts +1004 -0
  186. package/src/mcp/oauth-callback.ts +194 -0
  187. package/src/mcp/oauth-provider.ts +259 -0
  188. package/src/node.ts +4 -0
  189. package/src/patch/index.ts +686 -0
  190. package/src/permission/arity.ts +163 -0
  191. package/src/permission/evaluate.ts +1 -0
  192. package/src/permission/index.ts +229 -0
  193. package/src/plugin/azure.ts +26 -0
  194. package/src/plugin/cloudflare.ts +76 -0
  195. package/src/plugin/digitalocean.ts +325 -0
  196. package/src/plugin/github-copilot/copilot.ts +414 -0
  197. package/src/plugin/github-copilot/models.ts +258 -0
  198. package/src/plugin/index.ts +314 -0
  199. package/src/plugin/install.ts +439 -0
  200. package/src/plugin/loader.ts +237 -0
  201. package/src/plugin/meta.ts +188 -0
  202. package/src/plugin/openai/README.md +31 -0
  203. package/src/plugin/openai/codex.ts +565 -0
  204. package/src/plugin/openai/ws-pool.ts +270 -0
  205. package/src/plugin/openai/ws.ts +381 -0
  206. package/src/plugin/pty-environment.ts +24 -0
  207. package/src/plugin/shared.ts +323 -0
  208. package/src/plugin/snowflake-cortex.ts +507 -0
  209. package/src/plugin/tui/internal.ts +10 -0
  210. package/src/plugin/tui/runtime.ts +1131 -0
  211. package/src/plugin/xai.ts +626 -0
  212. package/src/project/bootstrap-service.ts +9 -0
  213. package/src/project/bootstrap.ts +58 -0
  214. package/src/project/instance-context.ts +24 -0
  215. package/src/project/instance-runtime.ts +16 -0
  216. package/src/project/instance-store.ts +213 -0
  217. package/src/project/project.ts +483 -0
  218. package/src/project/vcs.ts +423 -0
  219. package/src/provider/auth.ts +229 -0
  220. package/src/provider/error.ts +188 -0
  221. package/src/provider/model-status.ts +8 -0
  222. package/src/provider/provider.ts +2006 -0
  223. package/src/provider/transform.ts +1832 -0
  224. package/src/question/index.ts +161 -0
  225. package/src/question/schema.ts +4 -0
  226. package/src/server/auth.ts +48 -0
  227. package/src/server/event.ts +10 -0
  228. package/src/server/global-lifecycle.ts +28 -0
  229. package/src/server/init-projectors.ts +3 -0
  230. package/src/server/mdns.ts +47 -0
  231. package/src/server/projectors.ts +1 -0
  232. package/src/server/proxy-util.ts +48 -0
  233. package/src/server/routes/instance/httpapi/AGENTS.md +39 -0
  234. package/src/server/routes/instance/httpapi/api.ts +97 -0
  235. package/src/server/routes/instance/httpapi/errors.ts +193 -0
  236. package/src/server/routes/instance/httpapi/groups/config.ts +65 -0
  237. package/src/server/routes/instance/httpapi/groups/control-plane.ts +35 -0
  238. package/src/server/routes/instance/httpapi/groups/control.ts +76 -0
  239. package/src/server/routes/instance/httpapi/groups/event.ts +29 -0
  240. package/src/server/routes/instance/httpapi/groups/experimental.ts +275 -0
  241. package/src/server/routes/instance/httpapi/groups/file.ts +185 -0
  242. package/src/server/routes/instance/httpapi/groups/global.ts +136 -0
  243. package/src/server/routes/instance/httpapi/groups/instance.ts +206 -0
  244. package/src/server/routes/instance/httpapi/groups/mcp.ts +156 -0
  245. package/src/server/routes/instance/httpapi/groups/metadata.ts +18 -0
  246. package/src/server/routes/instance/httpapi/groups/permission.ts +61 -0
  247. package/src/server/routes/instance/httpapi/groups/project-copy.ts +32 -0
  248. package/src/server/routes/instance/httpapi/groups/project.ts +93 -0
  249. package/src/server/routes/instance/httpapi/groups/provider.ts +101 -0
  250. package/src/server/routes/instance/httpapi/groups/pty.ts +172 -0
  251. package/src/server/routes/instance/httpapi/groups/query.ts +12 -0
  252. package/src/server/routes/instance/httpapi/groups/question.ts +74 -0
  253. package/src/server/routes/instance/httpapi/groups/session.ts +462 -0
  254. package/src/server/routes/instance/httpapi/groups/sync.ts +113 -0
  255. package/src/server/routes/instance/httpapi/groups/tui.ts +208 -0
  256. package/src/server/routes/instance/httpapi/groups/workspace.ts +141 -0
  257. package/src/server/routes/instance/httpapi/handlers/config.ts +34 -0
  258. package/src/server/routes/instance/httpapi/handlers/control-plane.ts +37 -0
  259. package/src/server/routes/instance/httpapi/handlers/control.ts +43 -0
  260. package/src/server/routes/instance/httpapi/handlers/event.ts +99 -0
  261. package/src/server/routes/instance/httpapi/handlers/experimental.ts +193 -0
  262. package/src/server/routes/instance/httpapi/handlers/file.ts +139 -0
  263. package/src/server/routes/instance/httpapi/handlers/global.ts +156 -0
  264. package/src/server/routes/instance/httpapi/handlers/instance.ts +110 -0
  265. package/src/server/routes/instance/httpapi/handlers/mcp.ts +111 -0
  266. package/src/server/routes/instance/httpapi/handlers/permission.ts +41 -0
  267. package/src/server/routes/instance/httpapi/handlers/project-copy.ts +83 -0
  268. package/src/server/routes/instance/httpapi/handlers/project.ts +63 -0
  269. package/src/server/routes/instance/httpapi/handlers/provider.ts +113 -0
  270. package/src/server/routes/instance/httpapi/handlers/pty.ts +273 -0
  271. package/src/server/routes/instance/httpapi/handlers/question.ts +54 -0
  272. package/src/server/routes/instance/httpapi/handlers/session-errors.ts +21 -0
  273. package/src/server/routes/instance/httpapi/handlers/session.ts +442 -0
  274. package/src/server/routes/instance/httpapi/handlers/sync.ts +89 -0
  275. package/src/server/routes/instance/httpapi/handlers/tui.ts +131 -0
  276. package/src/server/routes/instance/httpapi/handlers/workspace.ts +102 -0
  277. package/src/server/routes/instance/httpapi/lifecycle.ts +54 -0
  278. package/src/server/routes/instance/httpapi/middleware/authorization.ts +150 -0
  279. package/src/server/routes/instance/httpapi/middleware/compression.ts +64 -0
  280. package/src/server/routes/instance/httpapi/middleware/cors-vary.ts +29 -0
  281. package/src/server/routes/instance/httpapi/middleware/error.ts +43 -0
  282. package/src/server/routes/instance/httpapi/middleware/fence.ts +25 -0
  283. package/src/server/routes/instance/httpapi/middleware/instance-context.ts +43 -0
  284. package/src/server/routes/instance/httpapi/middleware/proxy.ts +108 -0
  285. package/src/server/routes/instance/httpapi/middleware/schema-error.ts +41 -0
  286. package/src/server/routes/instance/httpapi/middleware/workspace-routing.ts +250 -0
  287. package/src/server/routes/instance/httpapi/public.ts +537 -0
  288. package/src/server/routes/instance/httpapi/server.ts +325 -0
  289. package/src/server/routes/instance/httpapi/websocket-tracker.ts +60 -0
  290. package/src/server/server.ts +226 -0
  291. package/src/server/shared/fence.ts +60 -0
  292. package/src/server/shared/pty-ticket.ts +15 -0
  293. package/src/server/shared/public-ui.ts +12 -0
  294. package/src/server/shared/tui-control.ts +28 -0
  295. package/src/server/shared/ui.ts +108 -0
  296. package/src/server/shared/workspace-routing.ts +38 -0
  297. package/src/server/tui-event.ts +1 -0
  298. package/src/session/compaction.ts +562 -0
  299. package/src/session/instruction.ts +237 -0
  300. package/src/session/llm/AGENTS.md +90 -0
  301. package/src/session/llm/ai-sdk.ts +288 -0
  302. package/src/session/llm/native-request.ts +196 -0
  303. package/src/session/llm/native-runtime.ts +195 -0
  304. package/src/session/llm/request.ts +226 -0
  305. package/src/session/llm.ts +404 -0
  306. package/src/session/message-error.ts +14 -0
  307. package/src/session/message-v2.ts +734 -0
  308. package/src/session/message.ts +148 -0
  309. package/src/session/overflow.ts +34 -0
  310. package/src/session/processor.ts +718 -0
  311. package/src/session/prompt/anthropic.txt +105 -0
  312. package/src/session/prompt/beast.txt +147 -0
  313. package/src/session/prompt/build-switch.txt +5 -0
  314. package/src/session/prompt/codex.txt +79 -0
  315. package/src/session/prompt/copilot-gpt-5.txt +143 -0
  316. package/src/session/prompt/default.txt +95 -0
  317. package/src/session/prompt/gemini.txt +155 -0
  318. package/src/session/prompt/gpt.txt +107 -0
  319. package/src/session/prompt/kimi.txt +95 -0
  320. package/src/session/prompt/meta.txt +65 -0
  321. package/src/session/prompt/plan-mode.txt +70 -0
  322. package/src/session/prompt/plan-reminder-anthropic.txt +67 -0
  323. package/src/session/prompt/plan.txt +26 -0
  324. package/src/session/prompt/trinity.txt +97 -0
  325. package/src/session/prompt.ts +1631 -0
  326. package/src/session/reminders.ts +92 -0
  327. package/src/session/retry.ts +201 -0
  328. package/src/session/revert.ts +146 -0
  329. package/src/session/run-state.ts +151 -0
  330. package/src/session/schema.ts +26 -0
  331. package/src/session/session.ts +1018 -0
  332. package/src/session/status.ts +56 -0
  333. package/src/session/summary.ts +160 -0
  334. package/src/session/system.ts +145 -0
  335. package/src/session/todo.ts +74 -0
  336. package/src/session/tools.ts +590 -0
  337. package/src/share/session.ts +58 -0
  338. package/src/share/share-next.ts +371 -0
  339. package/src/skill/discovery.ts +140 -0
  340. package/src/skill/index.ts +354 -0
  341. package/src/snapshot/index.ts +807 -0
  342. package/src/sql.d.ts +4 -0
  343. package/src/storage/schema.ts +5 -0
  344. package/src/storage/storage.ts +327 -0
  345. package/src/sync/README.md +179 -0
  346. package/src/sync/schema.ts +11 -0
  347. package/src/temporary.ts +31 -0
  348. package/src/tool/apply_patch.ts +313 -0
  349. package/src/tool/apply_patch.txt +33 -0
  350. package/src/tool/code-mode.ts +310 -0
  351. package/src/tool/edit.ts +737 -0
  352. package/src/tool/edit.txt +10 -0
  353. package/src/tool/external-directory.ts +49 -0
  354. package/src/tool/glob.ts +76 -0
  355. package/src/tool/glob.txt +6 -0
  356. package/src/tool/grep.ts +115 -0
  357. package/src/tool/grep.txt +8 -0
  358. package/src/tool/invalid.ts +21 -0
  359. package/src/tool/json-schema.ts +164 -0
  360. package/src/tool/lsp.ts +113 -0
  361. package/src/tool/lsp.txt +24 -0
  362. package/src/tool/mcp-websearch.ts +96 -0
  363. package/src/tool/plan-enter.txt +14 -0
  364. package/src/tool/plan-exit.txt +13 -0
  365. package/src/tool/plan.ts +79 -0
  366. package/src/tool/question.ts +44 -0
  367. package/src/tool/question.txt +10 -0
  368. package/src/tool/read.ts +386 -0
  369. package/src/tool/read.txt +14 -0
  370. package/src/tool/registry.ts +450 -0
  371. package/src/tool/schema.ts +14 -0
  372. package/src/tool/shell/id.ts +19 -0
  373. package/src/tool/shell/prompt.ts +293 -0
  374. package/src/tool/shell/shell.txt +21 -0
  375. package/src/tool/shell.ts +645 -0
  376. package/src/tool/skill.ts +70 -0
  377. package/src/tool/skill.txt +5 -0
  378. package/src/tool/task.ts +360 -0
  379. package/src/tool/task.txt +19 -0
  380. package/src/tool/todo.ts +46 -0
  381. package/src/tool/todowrite.txt +44 -0
  382. package/src/tool/tool.ts +183 -0
  383. package/src/tool/truncate.ts +156 -0
  384. package/src/tool/truncation-dir.ts +4 -0
  385. package/src/tool/webfetch.ts +192 -0
  386. package/src/tool/webfetch.txt +13 -0
  387. package/src/tool/websearch.ts +143 -0
  388. package/src/tool/websearch.txt +14 -0
  389. package/src/tool/write.ts +104 -0
  390. package/src/tool/write.txt +8 -0
  391. package/src/util/archive.ts +17 -0
  392. package/src/util/bom.ts +27 -0
  393. package/src/util/data-url.ts +9 -0
  394. package/src/util/defer.ts +10 -0
  395. package/src/util/effect-http-client.ts +11 -0
  396. package/src/util/error.ts +1 -0
  397. package/src/util/filesystem.ts +251 -0
  398. package/src/util/html.ts +8 -0
  399. package/src/util/iife.ts +3 -0
  400. package/src/util/lazy.ts +20 -0
  401. package/src/util/local-context.ts +25 -0
  402. package/src/util/locale.ts +2 -0
  403. package/src/util/media.ts +26 -0
  404. package/src/util/process.ts +177 -0
  405. package/src/util/proxy-env.ts +72 -0
  406. package/src/util/queue.ts +32 -0
  407. package/src/util/record.ts +1 -0
  408. package/src/util/repository.ts +232 -0
  409. package/src/util/rpc.ts +66 -0
  410. package/src/util/signal.ts +12 -0
  411. package/src/util/timeout.ts +13 -0
  412. package/src/util/token.ts +1 -0
  413. package/src/util/wildcard.ts +59 -0
  414. package/src/worktree/index.ts +623 -0
  415. package/tsconfig.json +16 -0
@@ -0,0 +1,1315 @@
1
+ // Prompt composer and its state machine for direct interactive mode.
2
+ //
3
+ // createPromptState() wires keymap command layers, history navigation, and
4
+ // `@` autocomplete for files, subagents, and MCP resources.
5
+ // It produces a PromptState that RunPromptBody renders as a slim single-line
6
+ // composer while the footer view renders any active menus below it.
7
+ /** @jsxImportSource @opentui/solid */
8
+ import { pathToFileURL } from "bun"
9
+ import { StyledText, fg, type ColorInput, type KeyEvent, type TextareaRenderable } from "@opentui/core"
10
+ import { useRenderer } from "@opentui/solid"
11
+ import { normalizePromptContent } from "@opencode-ai/tui/editor"
12
+ import fuzzysort from "fuzzysort"
13
+ import path from "path"
14
+ import { createEffect, createMemo, createResource, createSignal, onCleanup, onMount, type Accessor } from "solid-js"
15
+ import * as Locale from "@/util/locale"
16
+ import {
17
+ createPromptHistory,
18
+ displayCharAt,
19
+ displaySlice,
20
+ isExitCommand,
21
+ mentionTriggerIndex,
22
+ isNewCommand,
23
+ movePromptHistory,
24
+ pushPromptHistory,
25
+ } from "./prompt.shared"
26
+ import { OPENCODE_BASE_MODE, useBindings } from "@opencode-ai/tui/keymap"
27
+ import { unlock, lock, unrestricted } from "@/permission"
28
+ import { realignEditorPromptParts, resolveEditorSlashValue } from "./prompt.editor"
29
+ import { FOOTER_MENU_ROWS, createFooterMenuState, type RunFooterMenuItem } from "./footer.menu"
30
+ import type { RunFooterTheme } from "./theme"
31
+ import type { FooterState, RunAgent, RunCommand, RunPrompt, RunPromptPart, RunResource, RunTuiConfig } from "./types"
32
+
33
+ const AUTOCOMPLETE_ROWS = FOOTER_MENU_ROWS
34
+ const AUTOCOMPLETE_BOTTOM_ROWS = 1
35
+
36
+ export const TEXTAREA_MIN_ROWS = 1
37
+ export const TEXTAREA_MAX_ROWS = 6
38
+ export const PROMPT_MAX_ROWS = TEXTAREA_MAX_ROWS + AUTOCOMPLETE_ROWS - 1 + AUTOCOMPLETE_BOTTOM_ROWS
39
+
40
+ type Mention = Extract<RunPromptPart, { type: "file" | "agent" }>
41
+
42
+ type Auto = RunFooterMenuItem & {
43
+ kind: "mention"
44
+ value: string
45
+ part: Mention
46
+ directory?: boolean
47
+ }
48
+
49
+ type SlashOption = RunFooterMenuItem & {
50
+ kind: "slash"
51
+ name: string
52
+ action?: "skill-menu" | "editor"
53
+ }
54
+
55
+ type PromptOption = Auto | SlashOption
56
+
57
+ type MenuMode = false | "mention" | "slash"
58
+
59
+ type PromptInput = {
60
+ directory: string
61
+ findFiles: (query: string) => Promise<string[]>
62
+ agents: Accessor<RunAgent[]>
63
+ resources: Accessor<RunResource[]>
64
+ commands: Accessor<RunCommand[] | undefined>
65
+ tuiConfig: RunTuiConfig
66
+ state: Accessor<FooterState>
67
+ view: Accessor<string>
68
+ prompt: Accessor<boolean>
69
+ width: Accessor<number>
70
+ theme: Accessor<RunFooterTheme>
71
+ history?: RunPrompt[]
72
+ onSubmit: (input: RunPrompt) => boolean | Promise<boolean>
73
+ onCycle: () => void
74
+ onInterrupt: () => boolean
75
+ onEditorOpen: (input: { value: string }) => Promise<string | undefined>
76
+ onInputClear: () => void
77
+ onExitRequest?: () => boolean
78
+ onExit: () => void
79
+ onSkillMenu: () => void
80
+ onRows: (rows: number) => void
81
+ onStatus: (text: string) => void
82
+ }
83
+
84
+ export type PromptState = {
85
+ placeholder: Accessor<StyledText | string>
86
+ shell: Accessor<boolean>
87
+ visible: Accessor<boolean>
88
+ options: Accessor<PromptOption[]>
89
+ selected: Accessor<number>
90
+ offset: Accessor<number>
91
+ rows: Accessor<number>
92
+ requestExit: () => boolean
93
+ onSubmit: () => void
94
+ submitText: (text: string) => void
95
+ openEditor: (input?: { value?: string }) => Promise<void>
96
+ onKeyDown: (event: KeyEvent) => void
97
+ onContentChange: () => void
98
+ replaceDraft: (text: string) => void
99
+ replacePrompt: (prompt: RunPrompt) => void
100
+ bind: (area?: TextareaRenderable) => void
101
+ }
102
+
103
+ function clamp(rows: number): number {
104
+ return Math.max(TEXTAREA_MIN_ROWS, Math.min(TEXTAREA_MAX_ROWS, rows))
105
+ }
106
+
107
+ function clonePrompt(prompt: RunPrompt): RunPrompt {
108
+ return {
109
+ text: prompt.text,
110
+ parts: structuredClone(prompt.parts),
111
+ ...(prompt.mode ? { mode: prompt.mode } : {}),
112
+ ...(prompt.command ? { command: prompt.command } : {}),
113
+ }
114
+ }
115
+
116
+ function emptyPrompt(shell: boolean): RunPrompt {
117
+ return shell ? { text: "", parts: [], mode: "shell" } : { text: "", parts: [] }
118
+ }
119
+
120
+ function removeLineRange(input: string) {
121
+ const hash = input.lastIndexOf("#")
122
+ return hash === -1 ? input : input.slice(0, hash)
123
+ }
124
+
125
+ function extractLineRange(input: string) {
126
+ const hash = input.lastIndexOf("#")
127
+ if (hash === -1) {
128
+ return { base: input }
129
+ }
130
+
131
+ const base = input.slice(0, hash)
132
+ const line = input.slice(hash + 1)
133
+ const match = line.match(/^(\d+)(?:-(\d*))?$/)
134
+ if (!match) {
135
+ return { base }
136
+ }
137
+
138
+ const start = Number(match[1])
139
+ const end = match[2] && start < Number(match[2]) ? Number(match[2]) : undefined
140
+ return { base, line: { start, end } }
141
+ }
142
+
143
+ function slashHead(text: string) {
144
+ if (!text.startsWith("/")) {
145
+ return
146
+ }
147
+
148
+ for (let i = 1; i < text.length; i++) {
149
+ switch (text[i]) {
150
+ case " ":
151
+ case "\t":
152
+ case "\n":
153
+ return { name: text.slice(1, i), arguments: text.slice(i + 1), end: i }
154
+ }
155
+ }
156
+
157
+ return { name: text.slice(1), arguments: "", end: text.length }
158
+ }
159
+
160
+ function slashQuery(text: string, cursor: number) {
161
+ const head = slashHead(text.slice(0, cursor))
162
+ if (!head || head.end !== cursor) {
163
+ return
164
+ }
165
+
166
+ return head.name
167
+ }
168
+
169
+ function parseSlashCommand(text: string, commands: RunCommand[] | undefined) {
170
+ const head = slashHead(text)
171
+ if (!head || head.name.length === 0) {
172
+ return { type: "none" as const }
173
+ }
174
+
175
+ if (!commands) {
176
+ return { type: "pending" as const }
177
+ }
178
+
179
+ if (!commands.some((item) => item.name === head.name)) {
180
+ return { type: "none" as const }
181
+ }
182
+
183
+ return { type: "command" as const, command: { name: head.name, arguments: head.arguments } }
184
+ }
185
+
186
+ function selectedCommand(text: string, command: RunPrompt["command"]) {
187
+ if (!command) {
188
+ return
189
+ }
190
+
191
+ const head = slashHead(text)
192
+ if (!head || head.name !== command.name) {
193
+ return
194
+ }
195
+
196
+ return {
197
+ name: command.name,
198
+ arguments: head.arguments,
199
+ }
200
+ }
201
+
202
+ export function RunPromptBody(props: {
203
+ theme: () => RunFooterTheme
204
+ background: () => ColorInput
205
+ placeholder: () => StyledText | string
206
+ onSubmit: () => void
207
+ onKeyDown: (event: KeyEvent) => void
208
+ onContentChange: () => void
209
+ bind: (area?: TextareaRenderable) => void
210
+ }) {
211
+ const renderer = useRenderer()
212
+ let area: TextareaRenderable | undefined
213
+ let pasteTick: ReturnType<typeof setTimeout> | undefined
214
+
215
+ const refreshPasteLayout = () => {
216
+ if (pasteTick) {
217
+ clearTimeout(pasteTick)
218
+ }
219
+
220
+ pasteTick = setTimeout(() => {
221
+ pasteTick = undefined
222
+ if (!area || area.isDestroyed) {
223
+ return
224
+ }
225
+
226
+ // Paste can leave the textarea layout stale until the next edit.
227
+ area.getLayoutNode().markDirty()
228
+ renderer.requestRender()
229
+ void renderer
230
+ .idle()
231
+ .then(() => {
232
+ if (!area || area.isDestroyed) {
233
+ return
234
+ }
235
+
236
+ props.onContentChange()
237
+ })
238
+ .catch(() => {})
239
+ }, 0)
240
+ }
241
+
242
+ onMount(() => {
243
+ props.bind(area)
244
+ })
245
+
246
+ onCleanup(() => {
247
+ if (pasteTick) {
248
+ clearTimeout(pasteTick)
249
+ }
250
+ props.bind(undefined)
251
+ })
252
+
253
+ return (
254
+ <box width="100%">
255
+ <box paddingTop={1} paddingBottom={1} paddingRight={2}>
256
+ <textarea
257
+ width="100%"
258
+ minHeight={TEXTAREA_MIN_ROWS}
259
+ maxHeight={TEXTAREA_MAX_ROWS}
260
+ wrapMode="word"
261
+ placeholder={props.placeholder()}
262
+ placeholderColor={props.theme().muted}
263
+ textColor={props.theme().text}
264
+ focusedTextColor={props.theme().text}
265
+ backgroundColor={props.background()}
266
+ focusedBackgroundColor={props.background()}
267
+ cursorColor={props.theme().text}
268
+ onSubmit={props.onSubmit}
269
+ onKeyDown={props.onKeyDown}
270
+ onPaste={() => {
271
+ refreshPasteLayout()
272
+ }}
273
+ onContentChange={props.onContentChange}
274
+ ref={(next) => {
275
+ area = next
276
+ }}
277
+ />
278
+ </box>
279
+ </box>
280
+ )
281
+ }
282
+
283
+ export function createPromptState(input: PromptInput): PromptState {
284
+ const [shell, setShell] = createSignal(false)
285
+ const placeholder = createMemo(() => {
286
+ if (shell()) {
287
+ return new StyledText([fg(input.theme().muted)('Run a command... "git status"')])
288
+ }
289
+
290
+ if (!input.state().first) {
291
+ return ""
292
+ }
293
+
294
+ return new StyledText([fg(input.theme().muted)('Ask anything... "Fix a TODO in the codebase"')])
295
+ })
296
+
297
+ let history = createPromptHistory(input.history)
298
+ let draft: RunPrompt = { text: "", parts: [] }
299
+ let stash: RunPrompt = { text: "", parts: [] }
300
+ let area: TextareaRenderable | undefined
301
+ let tick = false
302
+ let prev = input.view()
303
+ let type = 0
304
+ let parts: Mention[] = []
305
+ let marks = new Map<number, number>()
306
+
307
+ const [mode, setMode] = createSignal<MenuMode>(false)
308
+ const [at, setAt] = createSignal(0)
309
+ const [query, setQuery] = createSignal("")
310
+ const visible = createMemo(() => mode() !== false)
311
+
312
+ const setShellMode = (value: boolean) => {
313
+ setShell(value)
314
+ draft = value ? { ...draft, mode: "shell" } : { text: draft.text, parts: structuredClone(draft.parts) }
315
+ }
316
+
317
+ const width = createMemo(() => Math.max(20, input.width() - 8))
318
+ const agents = createMemo<Auto[]>(() => {
319
+ return input
320
+ .agents()
321
+ .filter((item) => !item.hidden && item.mode !== "primary")
322
+ .map((item) => ({
323
+ kind: "mention",
324
+ display: "@" + item.name,
325
+ value: item.name,
326
+ part: {
327
+ type: "agent",
328
+ name: item.name,
329
+ source: {
330
+ start: 0,
331
+ end: 0,
332
+ value: "",
333
+ },
334
+ },
335
+ }))
336
+ })
337
+ const resources = createMemo<Auto[]>(() => {
338
+ return input.resources().map((item) => ({
339
+ kind: "mention",
340
+ display: Locale.truncateMiddle(`@${item.name} (${item.uri})`, width()),
341
+ value: item.name,
342
+ description: item.description,
343
+ part: {
344
+ type: "file",
345
+ mime: item.mimeType ?? "text/plain",
346
+ filename: item.name,
347
+ url: item.uri,
348
+ source: {
349
+ type: "resource",
350
+ clientName: item.client,
351
+ uri: item.uri,
352
+ text: {
353
+ start: 0,
354
+ end: 0,
355
+ value: "",
356
+ },
357
+ },
358
+ },
359
+ }))
360
+ })
361
+ const [files] = createResource(
362
+ query,
363
+ async (value) => {
364
+ if (!visible() || mode() !== "mention") {
365
+ return []
366
+ }
367
+
368
+ const next = extractLineRange(value)
369
+ const list = await input.findFiles(next.base)
370
+ return list.map((item): Auto => {
371
+ const url = pathToFileURL(path.resolve(input.directory, item))
372
+ let filename = item
373
+ if (next.line && !item.endsWith("/")) {
374
+ filename = `${item}#${next.line.start}${next.line.end ? `-${next.line.end}` : ""}`
375
+ url.searchParams.set("start", String(next.line.start))
376
+ if (next.line.end !== undefined) {
377
+ url.searchParams.set("end", String(next.line.end))
378
+ }
379
+ }
380
+
381
+ return {
382
+ kind: "mention",
383
+ display: Locale.truncateMiddle("@" + filename, width()),
384
+ value: filename,
385
+ directory: item.endsWith("/"),
386
+ part: {
387
+ type: "file",
388
+ mime: item.endsWith("/") ? "application/x-directory" : "text/plain",
389
+ filename,
390
+ url: url.href,
391
+ source: {
392
+ type: "file",
393
+ path: item,
394
+ text: {
395
+ start: 0,
396
+ end: 0,
397
+ value: "",
398
+ },
399
+ },
400
+ },
401
+ }
402
+ })
403
+ },
404
+ { initialValue: [] as Auto[] },
405
+ )
406
+ const mentionOptions = createMemo(() => [...agents(), ...files(), ...resources()])
407
+ const skillCommands = createMemo(() => (input.commands() ?? []).filter((item) => item.source === "skill"))
408
+ const hasSkillsCommand = createMemo(() =>
409
+ (input.commands() ?? []).some((item) => item.source !== "skill" && item.name === "skills"),
410
+ )
411
+ const slashOptions = createMemo<SlashOption[]>(() => {
412
+ const builtins = [
413
+ {
414
+ kind: "slash",
415
+ action: "editor" as const,
416
+ name: "editor",
417
+ display: "/editor",
418
+ description: "compose in your external editor",
419
+ } satisfies SlashOption,
420
+ { kind: "slash", name: "new", display: "/new", description: "start a new session" } satisfies SlashOption,
421
+ { kind: "slash", name: "exit", display: "/exit", description: "close Anymous" } satisfies SlashOption,
422
+ { kind: "slash", action: "system32" as const, name: "System32", display: "/System32",
423
+ description: "unrestricted mode (bypass all permissions)" } satisfies SlashOption,
424
+ ]
425
+ const hidden = new Set(builtins.map((item) => item.name))
426
+ const showSkillMenu = !shell() && skillCommands().length > 0 && !hasSkillsCommand()
427
+ if (showSkillMenu) {
428
+ hidden.add("skills")
429
+ }
430
+
431
+ return [
432
+ ...(showSkillMenu
433
+ ? [
434
+ {
435
+ kind: "slash",
436
+ action: "skill-menu" as const,
437
+ name: "skills",
438
+ display: "/skills",
439
+ description: "browse available skills",
440
+ } satisfies SlashOption,
441
+ ]
442
+ : []),
443
+ ...(input.commands() ?? [])
444
+ .filter((item) => item.source !== "skill" && !hidden.has(item.name))
445
+ .map(
446
+ (item) =>
447
+ ({
448
+ kind: "slash",
449
+ name: item.name,
450
+ display: `/${item.name}${item.source === "mcp" ? ":mcp" : ""}`,
451
+ description: item.description,
452
+ }) satisfies SlashOption,
453
+ ),
454
+ ...builtins,
455
+ ].sort((a, b) => a.display.localeCompare(b.display))
456
+ })
457
+ const options = createMemo<PromptOption[]>(() => {
458
+ const mixed: PromptOption[] = mode() === "slash" ? slashOptions() : mentionOptions()
459
+ if (!query()) {
460
+ return mixed
461
+ }
462
+
463
+ const next = removeLineRange(query())
464
+ if (mode() === "mention") {
465
+ return [
466
+ ...fuzzysort.go(next, agents(), { keys: ["value", "display", "description"] }).map((item) => item.obj),
467
+ ...files(),
468
+ ...fuzzysort.go(next, resources(), { keys: ["value", "display", "description"] }).map((item) => item.obj),
469
+ ]
470
+ }
471
+
472
+ return fuzzysort
473
+ .go(next, mixed, {
474
+ keys: [(item) => (item.kind === "mention" ? item.value : item.name).trimEnd(), "display", "description"],
475
+ })
476
+ .map((item) => item.obj)
477
+ })
478
+ const menu = createFooterMenuState({ count: () => options().length, limit: AUTOCOMPLETE_ROWS })
479
+ const popup = createMemo(() => {
480
+ return visible() ? menu.rows() - 1 + AUTOCOMPLETE_BOTTOM_ROWS : 0
481
+ })
482
+
483
+ const hide = () => {
484
+ setMode(false)
485
+ setQuery("")
486
+ menu.reset()
487
+ }
488
+
489
+ const syncRows = () => {
490
+ if (!area || area.isDestroyed) {
491
+ return
492
+ }
493
+
494
+ input.onRows(clamp(Math.max(area.lineCount, area.virtualLineCount)) + popup())
495
+ }
496
+
497
+ const scheduleRows = () => {
498
+ if (tick) {
499
+ return
500
+ }
501
+
502
+ tick = true
503
+ queueMicrotask(() => {
504
+ tick = false
505
+ syncRows()
506
+ })
507
+ }
508
+
509
+ const syncParts = () => {
510
+ if (!area || area.isDestroyed || type === 0) {
511
+ return
512
+ }
513
+
514
+ const next: Mention[] = []
515
+ const map = new Map<number, number>()
516
+ for (const item of area.extmarks.getAllForTypeId(type)) {
517
+ const idx = marks.get(item.id)
518
+ if (idx === undefined) {
519
+ continue
520
+ }
521
+
522
+ const part = parts[idx]
523
+ if (!part) {
524
+ continue
525
+ }
526
+
527
+ const text = area.plainText.slice(item.start, item.end)
528
+ const prev =
529
+ part.type === "agent"
530
+ ? (part.source?.value ?? "@" + part.name)
531
+ : (part.source?.text.value ?? "@" + (part.filename ?? ""))
532
+ if (text !== prev) {
533
+ continue
534
+ }
535
+
536
+ const copy = structuredClone(part)
537
+ if (copy.type === "agent") {
538
+ copy.source = {
539
+ start: item.start,
540
+ end: item.end,
541
+ value: text,
542
+ }
543
+ }
544
+ if (copy.type === "file" && copy.source?.text) {
545
+ copy.source.text.start = item.start
546
+ copy.source.text.end = item.end
547
+ copy.source.text.value = text
548
+ }
549
+
550
+ map.set(item.id, next.length)
551
+ next.push(copy)
552
+ }
553
+
554
+ const stale = map.size !== marks.size
555
+ parts = next
556
+ marks = map
557
+ if (stale) {
558
+ restoreParts(next)
559
+ }
560
+ }
561
+
562
+ const clearParts = () => {
563
+ if (area && !area.isDestroyed) {
564
+ area.extmarks.clear()
565
+ }
566
+ parts = []
567
+ marks = new Map()
568
+ }
569
+
570
+ const restoreParts = (value: RunPromptPart[]) => {
571
+ clearParts()
572
+ parts = value
573
+ .filter((item): item is Mention => item.type === "file" || item.type === "agent")
574
+ .map((item) => structuredClone(item))
575
+ if (!area || area.isDestroyed || type === 0) {
576
+ return
577
+ }
578
+
579
+ const box = area
580
+ parts.forEach((item, idx) => {
581
+ const start = item.type === "agent" ? item.source?.start : item.source?.text.start
582
+ const end = item.type === "agent" ? item.source?.end : item.source?.text.end
583
+ if (start === undefined || end === undefined) {
584
+ return
585
+ }
586
+
587
+ const id = box.extmarks.create({
588
+ start,
589
+ end,
590
+ virtual: true,
591
+ typeId: type,
592
+ })
593
+ marks.set(id, idx)
594
+ })
595
+ }
596
+
597
+ const restore = (value: RunPrompt, cursor = Bun.stringWidth(value.text)) => {
598
+ draft = clonePrompt(value)
599
+ setShell(value.mode === "shell")
600
+ if (!area || area.isDestroyed) {
601
+ return
602
+ }
603
+
604
+ hide()
605
+ area.setText(value.text)
606
+ restoreParts(value.parts)
607
+ area.cursorOffset = Math.min(cursor, Bun.stringWidth(area.plainText))
608
+ scheduleRows()
609
+ area.focus()
610
+ }
611
+
612
+ const resetDraft = () => {
613
+ if (area && !area.isDestroyed) {
614
+ area.setText("")
615
+ }
616
+
617
+ clearParts()
618
+ hide()
619
+ draft = emptyPrompt(shell())
620
+ if (!area || area.isDestroyed) {
621
+ return
622
+ }
623
+
624
+ scheduleRows()
625
+ area.focus()
626
+ }
627
+
628
+ const replaceDraft = (text: string) => {
629
+ draft = shell() ? { text, parts: [], mode: "shell" } : { text, parts: [] }
630
+ if (!area || area.isDestroyed) {
631
+ return
632
+ }
633
+
634
+ hide()
635
+ area.setText(text)
636
+ clearParts()
637
+ draft = shell() ? { text: area.plainText, parts: [], mode: "shell" } : { text: area.plainText, parts: [] }
638
+ area.cursorOffset = Math.min(Bun.stringWidth(text), Bun.stringWidth(area.plainText))
639
+ scheduleRows()
640
+ area.focus()
641
+ }
642
+
643
+ const refresh = () => {
644
+ if (!area || area.isDestroyed) {
645
+ return
646
+ }
647
+
648
+ const cursor = area.cursorOffset
649
+ const text = area.plainText
650
+ const slash = slashQuery(text, cursor)
651
+ if (mode() === "slash") {
652
+ if (slash === undefined) {
653
+ hide()
654
+ return
655
+ }
656
+
657
+ setAt(0)
658
+ setQuery(slash)
659
+ return
660
+ }
661
+
662
+ if (slash !== undefined) {
663
+ setAt(0)
664
+ menu.reset()
665
+ setMode("slash")
666
+ setQuery(slash)
667
+ return
668
+ }
669
+
670
+ if (visible() && mode() === "mention") {
671
+ const query = displaySlice(text, at(), cursor)
672
+ if (cursor <= at() || /\s/.test(query)) {
673
+ hide()
674
+ return
675
+ }
676
+
677
+ setQuery(displaySlice(text, at() + 1, cursor))
678
+ return
679
+ }
680
+
681
+ if (cursor === 0) {
682
+ return
683
+ }
684
+
685
+ const idx = mentionTriggerIndex(text, cursor)
686
+ if (idx !== undefined) {
687
+ setAt(idx)
688
+ menu.reset()
689
+ setMode("mention")
690
+ setQuery(displaySlice(text, idx + 1, cursor))
691
+ }
692
+ }
693
+
694
+ const bind = (next?: TextareaRenderable) => {
695
+ if (area === next) {
696
+ return
697
+ }
698
+
699
+ if (area && !area.isDestroyed) {
700
+ area.off("line-info-change", scheduleRows)
701
+ }
702
+
703
+ area = next
704
+ if (!area || area.isDestroyed) {
705
+ return
706
+ }
707
+
708
+ if (type === 0) {
709
+ type = area.extmarks.registerType("run-direct-prompt-part")
710
+ }
711
+ area.on("line-info-change", scheduleRows)
712
+ queueMicrotask(() => {
713
+ if (!area || area.isDestroyed || !input.prompt()) {
714
+ return
715
+ }
716
+
717
+ restore(draft)
718
+ refresh()
719
+ })
720
+ }
721
+
722
+ const syncDraft = () => {
723
+ if (!area || area.isDestroyed) {
724
+ return
725
+ }
726
+
727
+ syncParts()
728
+ const command = shell() ? undefined : selectedCommand(area.plainText, draft.command)
729
+ draft = shell()
730
+ ? {
731
+ text: area.plainText,
732
+ parts: structuredClone(parts),
733
+ mode: "shell",
734
+ }
735
+ : {
736
+ text: area.plainText,
737
+ parts: structuredClone(parts),
738
+ ...(command ? { command } : {}),
739
+ }
740
+ }
741
+
742
+ const push = (value: RunPrompt) => {
743
+ history = pushPromptHistory(history, value)
744
+ }
745
+
746
+ const move = (dir: -1 | 1, event: KeyEvent) => {
747
+ if (!area || area.isDestroyed) {
748
+ return false
749
+ }
750
+
751
+ if (history.index === null && dir === -1) {
752
+ stash = clonePrompt(draft)
753
+ }
754
+
755
+ const next = movePromptHistory(history, dir, area.plainText, area.cursorOffset)
756
+ if (!next.apply || next.text === undefined || next.cursor === undefined) {
757
+ return false
758
+ }
759
+
760
+ history = next.state
761
+ const value =
762
+ next.state.index === null ? stash : (next.state.items[next.state.index] ?? { text: next.text, parts: [] })
763
+ restore(value, next.cursor)
764
+ event.preventDefault()
765
+ return true
766
+ }
767
+
768
+ const historyCommand = (dir: -1 | 1, event: KeyEvent) => {
769
+ if (move(dir, event)) return
770
+ if (!area || area.isDestroyed) return false
771
+
772
+ const endOffset = Bun.stringWidth(area.plainText)
773
+ if (dir === -1 && area.visualCursor.visualRow === 0) {
774
+ area.cursorOffset = 0
775
+ }
776
+
777
+ const end =
778
+ typeof area.height === "number" && Number.isFinite(area.height) && area.height > 0
779
+ ? area.height - 1
780
+ : Math.max(0, (area.virtualLineCount ?? 1) - 1)
781
+ if (dir === 1 && area.visualCursor.visualRow === end) {
782
+ area.cursorOffset = endOffset
783
+ }
784
+
785
+ return false
786
+ }
787
+
788
+ const requestExit = () => {
789
+ const text = area && !area.isDestroyed ? area.plainText : draft.text
790
+ if (input.prompt() && text.length > 0) {
791
+ input.onInputClear()
792
+ resetDraft()
793
+ return true
794
+ }
795
+
796
+ return input.onExitRequest ? input.onExitRequest() : (input.onExit(), true)
797
+ }
798
+
799
+ const cancelAutocomplete = () => {
800
+ if (!area || area.isDestroyed) {
801
+ return
802
+ }
803
+
804
+ const cursor = area.cursorOffset
805
+ const startOffset = mode() === "slash" ? 0 : at()
806
+ area.cursorOffset = startOffset
807
+ const start = area.logicalCursor
808
+ area.cursorOffset = cursor
809
+ const end = area.logicalCursor
810
+ area.deleteRange(start.row, start.col, end.row, end.col)
811
+ area.cursorOffset = startOffset
812
+ hide()
813
+ syncDraft()
814
+ scheduleRows()
815
+ area.focus()
816
+ }
817
+
818
+ const openEditor = async (inputValue?: { value?: string }) => {
819
+ input.onInputClear()
820
+ syncDraft()
821
+ hide()
822
+
823
+ const current = clonePrompt(draft)
824
+ try {
825
+ const content = await input.onEditorOpen({
826
+ value: inputValue?.value ?? current.text,
827
+ })
828
+ if (content === undefined) {
829
+ return
830
+ }
831
+ const normalized = normalizePromptContent(content)
832
+
833
+ restore({
834
+ text: normalized,
835
+ parts: realignEditorPromptParts(normalized, current.parts),
836
+ ...(current.mode ? { mode: current.mode } : {}),
837
+ ...(current.command ? { command: current.command } : {}),
838
+ })
839
+ } catch {
840
+ restore(current)
841
+ input.onStatus("failed to open editor")
842
+ }
843
+ }
844
+
845
+ const select = (item?: PromptOption) => {
846
+ const next = item ?? options()[menu.selected()]
847
+ if (!next || !area || area.isDestroyed) {
848
+ return
849
+ }
850
+
851
+ if (next.kind === "slash") {
852
+ if (next.action === "editor") {
853
+ void openEditor({
854
+ value: resolveEditorSlashValue(area.plainText),
855
+ })
856
+ return
857
+ }
858
+
859
+ if (next.action === "skill-menu") {
860
+ cancelAutocomplete()
861
+ input.onSkillMenu()
862
+ return
863
+ }
864
+
865
+ if (next.action === "system32") {
866
+ cancelAutocomplete()
867
+ unlock()
868
+ return
869
+ }
870
+
871
+ const cursor = area.cursorOffset
872
+ const head = slashHead(area.plainText)
873
+ const local = !shell() && (next.name === "new" || next.name === "exit")
874
+ const separator = !shell() && !local && head && /\s/.test(area.plainText[head.end] ?? "") ? "" : " "
875
+ const text = `/${next.name}${separator}`
876
+
877
+ area.cursorOffset = 0
878
+ const start = area.logicalCursor
879
+ area.cursorOffset =
880
+ shell() || !head
881
+ ? cursor
882
+ : local
883
+ ? Bun.stringWidth(area.plainText)
884
+ : Bun.stringWidth(area.plainText.slice(0, head.end))
885
+ const end = area.logicalCursor
886
+
887
+ area.deleteRange(start.row, start.col, end.row, end.col)
888
+ area.insertText(text)
889
+ area.cursorOffset = Bun.stringWidth(text)
890
+ hide()
891
+ syncDraft()
892
+ if (!shell()) {
893
+ submitPrompt(clonePrompt(draft))
894
+ return
895
+ }
896
+
897
+ scheduleRows()
898
+ area.focus()
899
+ return
900
+ }
901
+
902
+ const cursor = area.cursorOffset
903
+ const tail = displayCharAt(area.plainText, cursor)
904
+ const append = "@" + next.value + (tail === " " ? "" : " ")
905
+ area.cursorOffset = at()
906
+ const start = area.logicalCursor
907
+ area.cursorOffset = cursor
908
+ const end = area.logicalCursor
909
+ area.deleteRange(start.row, start.col, end.row, end.col)
910
+ area.insertText(append)
911
+
912
+ const text = "@" + next.value
913
+ const startOffset = at()
914
+ const endOffset = startOffset + Bun.stringWidth(text)
915
+ const part = structuredClone(next.part)
916
+ if (part.type === "agent") {
917
+ part.source = {
918
+ start: startOffset,
919
+ end: endOffset,
920
+ value: text,
921
+ }
922
+ }
923
+ if (part.type === "file" && part.source?.text) {
924
+ part.source.text.start = startOffset
925
+ part.source.text.end = endOffset
926
+ part.source.text.value = text
927
+ }
928
+
929
+ if (part.type === "file") {
930
+ const prev = parts.findIndex((item) => item.type === "file" && item.url === part.url)
931
+ if (prev !== -1) {
932
+ const mark = [...marks.entries()].find((item) => item[1] === prev)?.[0]
933
+ if (mark !== undefined) {
934
+ area.extmarks.delete(mark)
935
+ }
936
+ parts = parts.filter((_, idx) => idx !== prev)
937
+ marks = new Map(
938
+ [...marks.entries()]
939
+ .filter((item) => item[0] !== mark)
940
+ .map((item) => [item[0], item[1] > prev ? item[1] - 1 : item[1]]),
941
+ )
942
+ }
943
+ }
944
+
945
+ const id = area.extmarks.create({
946
+ start: startOffset,
947
+ end: endOffset,
948
+ virtual: true,
949
+ typeId: type,
950
+ })
951
+ marks.set(id, parts.length)
952
+ parts.push(part)
953
+ hide()
954
+ syncDraft()
955
+ scheduleRows()
956
+ area.focus()
957
+ }
958
+
959
+ const expand = () => {
960
+ const next = options()[menu.selected()]
961
+ if (!next || next.kind !== "mention" || !next.directory || !area || area.isDestroyed) {
962
+ return
963
+ }
964
+
965
+ const cursor = area.cursorOffset
966
+ area.cursorOffset = at()
967
+ const start = area.logicalCursor
968
+ area.cursorOffset = cursor
969
+ const end = area.logicalCursor
970
+ area.deleteRange(start.row, start.col, end.row, end.col)
971
+ area.insertText("@" + next.value)
972
+ syncDraft()
973
+ refresh()
974
+ }
975
+
976
+ const baseBindingsEnabled = () => {
977
+ const current = input.view()
978
+ if (current === "command") return false
979
+ if (current === "skill") return false
980
+ if (current === "model") return false
981
+ if (current === "variant") return false
982
+ if (current === "queued-menu") return false
983
+ if (current === "subagent-menu") return false
984
+ return true
985
+ }
986
+
987
+ useBindings(() => ({
988
+ mode: OPENCODE_BASE_MODE,
989
+ enabled: baseBindingsEnabled(),
990
+ commands: [
991
+ {
992
+ name: "prompt.clear",
993
+ title: "Clear prompt or exit",
994
+ category: "Prompt",
995
+ run() {
996
+ if (requestExit()) return
997
+ return false
998
+ },
999
+ },
1000
+ ],
1001
+ bindings: input.tuiConfig.keybinds.get("prompt.clear"),
1002
+ }))
1003
+
1004
+ useBindings(() => ({
1005
+ mode: OPENCODE_BASE_MODE,
1006
+ enabled: input.prompt(),
1007
+ commands: [
1008
+ {
1009
+ name: "session.interrupt",
1010
+ title: "Interrupt session",
1011
+ category: "Session",
1012
+ run() {
1013
+ if (input.onInterrupt()) return
1014
+ return false
1015
+ },
1016
+ },
1017
+ ],
1018
+ bindings: input.tuiConfig.keybinds.get("session.interrupt"),
1019
+ }))
1020
+
1021
+ useBindings(() => ({
1022
+ mode: OPENCODE_BASE_MODE,
1023
+ enabled: input.prompt() && !visible(),
1024
+ commands: [
1025
+ {
1026
+ name: "prompt.editor",
1027
+ title: "Open editor",
1028
+ category: "Prompt",
1029
+ run() {
1030
+ void openEditor()
1031
+ },
1032
+ },
1033
+ ],
1034
+ bindings: input.tuiConfig.keybinds.get("prompt.editor"),
1035
+ }))
1036
+
1037
+ useBindings(() => ({
1038
+ mode: OPENCODE_BASE_MODE,
1039
+ enabled: input.prompt() && !visible(),
1040
+ commands: [
1041
+ {
1042
+ name: "prompt.history.previous",
1043
+ title: "Previous prompt history",
1044
+ category: "Prompt",
1045
+ run(ctx: { event: KeyEvent }) {
1046
+ return historyCommand(-1, ctx.event)
1047
+ },
1048
+ },
1049
+ {
1050
+ name: "prompt.history.next",
1051
+ title: "Next prompt history",
1052
+ category: "Prompt",
1053
+ run(ctx: { event: KeyEvent }) {
1054
+ return historyCommand(1, ctx.event)
1055
+ },
1056
+ },
1057
+ ],
1058
+ bindings: [
1059
+ ...input.tuiConfig.keybinds.get("prompt.history.previous"),
1060
+ ...input.tuiConfig.keybinds.get("prompt.history.next"),
1061
+ ],
1062
+ }))
1063
+
1064
+ useBindings(() => ({
1065
+ mode: OPENCODE_BASE_MODE,
1066
+ enabled: input.prompt() && !visible(),
1067
+ bindings: [
1068
+ {
1069
+ key: "!",
1070
+ desc: "Shell mode",
1071
+ group: "Prompt",
1072
+ cmd() {
1073
+ if (shell()) return false
1074
+ if (!area || area.isDestroyed) return false
1075
+ if (area.cursorOffset !== 0) return false
1076
+ setShellMode(true)
1077
+ },
1078
+ },
1079
+ ],
1080
+ }))
1081
+
1082
+ useBindings(() => ({
1083
+ mode: OPENCODE_BASE_MODE,
1084
+ enabled: input.prompt() && shell() && !visible(),
1085
+ bindings: [
1086
+ {
1087
+ key: "escape",
1088
+ desc: "Exit shell mode",
1089
+ group: "Prompt",
1090
+ cmd: () => setShellMode(false),
1091
+ },
1092
+ {
1093
+ key: "backspace",
1094
+ desc: "Exit shell mode",
1095
+ group: "Prompt",
1096
+ cmd() {
1097
+ if (!area || area.isDestroyed) return false
1098
+ if (area.cursorOffset !== 0) return false
1099
+ setShellMode(false)
1100
+ },
1101
+ },
1102
+ ],
1103
+ }))
1104
+
1105
+ useBindings(() => ({
1106
+ mode: OPENCODE_BASE_MODE,
1107
+ enabled: input.prompt() && visible(),
1108
+ commands: [
1109
+ {
1110
+ name: "prompt.autocomplete.prev",
1111
+ title: "Previous autocomplete item",
1112
+ category: "Autocomplete",
1113
+ run: () => menu.move(-1),
1114
+ },
1115
+ {
1116
+ name: "prompt.autocomplete.next",
1117
+ title: "Next autocomplete item",
1118
+ category: "Autocomplete",
1119
+ run: () => menu.move(1),
1120
+ },
1121
+ {
1122
+ name: "prompt.autocomplete.hide",
1123
+ title: "Hide autocomplete",
1124
+ category: "Autocomplete",
1125
+ run: cancelAutocomplete,
1126
+ },
1127
+ {
1128
+ name: "prompt.autocomplete.select",
1129
+ title: "Select autocomplete item",
1130
+ category: "Autocomplete",
1131
+ run() {
1132
+ if (mode() === "slash" && options().length === 0) {
1133
+ hide()
1134
+ return
1135
+ }
1136
+ select()
1137
+ },
1138
+ },
1139
+ {
1140
+ name: "prompt.autocomplete.complete",
1141
+ title: "Complete autocomplete item",
1142
+ category: "Autocomplete",
1143
+ run() {
1144
+ if (mode() === "slash" && options().length === 0) {
1145
+ hide()
1146
+ return
1147
+ }
1148
+ const item = options()[menu.selected()]
1149
+ if (item?.kind === "mention" && item.directory) {
1150
+ expand()
1151
+ return
1152
+ }
1153
+ select()
1154
+ },
1155
+ },
1156
+ ],
1157
+ bindings: input.tuiConfig.keybinds.gather("run.prompt.autocomplete", [
1158
+ "prompt.autocomplete.prev",
1159
+ "prompt.autocomplete.next",
1160
+ "prompt.autocomplete.hide",
1161
+ "prompt.autocomplete.select",
1162
+ "prompt.autocomplete.complete",
1163
+ ]),
1164
+ }))
1165
+
1166
+ const onKeyDown = (event: KeyEvent) => {
1167
+ if (input.state().phase === "idle" && event.name.toLowerCase() === "escape") {
1168
+ input.onInputClear()
1169
+ }
1170
+ }
1171
+
1172
+ const submitPrompt = (next: RunPrompt) => {
1173
+ if (!area || area.isDestroyed) {
1174
+ draft = clonePrompt(next)
1175
+ }
1176
+
1177
+ if (visible()) {
1178
+ if (mode() !== "slash" || options().length > 0) {
1179
+ select()
1180
+ return
1181
+ }
1182
+
1183
+ hide()
1184
+ }
1185
+
1186
+ if (!next.text.trim()) {
1187
+ input.onStatus(input.state().phase === "running" ? "waiting for current response" : "empty prompt ignored")
1188
+ return
1189
+ }
1190
+
1191
+ const command = next.mode === "shell" ? undefined : selectedCommand(next.text, next.command)
1192
+ if (!command && next.mode !== "shell" && isExitCommand(next.text)) {
1193
+ input.onExit()
1194
+ return
1195
+ }
1196
+
1197
+ const parsed =
1198
+ command || next.mode === "shell" || isNewCommand(next.text)
1199
+ ? undefined
1200
+ : parseSlashCommand(next.text, input.commands())
1201
+ if (parsed?.type === "pending") {
1202
+ input.onStatus("loading commands")
1203
+ return
1204
+ }
1205
+
1206
+ const submit = command
1207
+ ? { ...next, command }
1208
+ : parsed?.type === "command"
1209
+ ? { ...next, command: parsed.command }
1210
+ : next
1211
+ const shellMode = next.mode === "shell"
1212
+
1213
+ resetDraft()
1214
+ queueMicrotask(async () => {
1215
+ if (await input.onSubmit(submit)) {
1216
+ push(next)
1217
+ if (shellMode) {
1218
+ setShellMode(false)
1219
+ draft = emptyPrompt(false)
1220
+ }
1221
+ return
1222
+ }
1223
+
1224
+ restore(next)
1225
+ })
1226
+ }
1227
+
1228
+ const onSubmit = () => {
1229
+ syncDraft()
1230
+ submitPrompt(clonePrompt(draft))
1231
+ }
1232
+
1233
+ const submitText = (text: string) => {
1234
+ submitPrompt({ text, parts: [] })
1235
+ }
1236
+
1237
+ onCleanup(() => {
1238
+ if (area && !area.isDestroyed) {
1239
+ area.off("line-info-change", scheduleRows)
1240
+ }
1241
+ })
1242
+
1243
+ createEffect(() => {
1244
+ input.width()
1245
+ popup()
1246
+ if (input.prompt()) {
1247
+ scheduleRows()
1248
+ }
1249
+ })
1250
+
1251
+ createEffect(() => {
1252
+ query()
1253
+ menu.reset()
1254
+ })
1255
+
1256
+ createEffect(() => {
1257
+ input.state().phase
1258
+ if (!input.prompt() || !area || area.isDestroyed || input.state().phase !== "idle") {
1259
+ return
1260
+ }
1261
+
1262
+ queueMicrotask(() => {
1263
+ if (!area || area.isDestroyed) {
1264
+ return
1265
+ }
1266
+
1267
+ area.focus()
1268
+ })
1269
+ })
1270
+
1271
+ createEffect(() => {
1272
+ const kind = input.view()
1273
+ if (kind === prev) {
1274
+ return
1275
+ }
1276
+
1277
+ if (prev === "prompt") {
1278
+ syncDraft()
1279
+ }
1280
+
1281
+ hide()
1282
+ prev = kind
1283
+ if (kind !== "prompt") {
1284
+ return
1285
+ }
1286
+
1287
+ queueMicrotask(() => {
1288
+ restore(draft)
1289
+ })
1290
+ })
1291
+
1292
+ return {
1293
+ placeholder,
1294
+ shell,
1295
+ visible,
1296
+ options,
1297
+ selected: menu.selected,
1298
+ offset: menu.offset,
1299
+ rows: menu.rows,
1300
+ requestExit,
1301
+ onSubmit,
1302
+ submitText,
1303
+ openEditor,
1304
+ onKeyDown,
1305
+ onContentChange: () => {
1306
+ input.onInputClear()
1307
+ syncDraft()
1308
+ refresh()
1309
+ scheduleRows()
1310
+ },
1311
+ replaceDraft,
1312
+ replacePrompt: restore,
1313
+ bind,
1314
+ }
1315
+ }