rovecode 0.4.0-beta.3 → 0.4.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 (432) hide show
  1. package/README.md +57 -72
  2. package/THIRD_PARTY_NOTICES.md +0 -44
  3. package/bin/rovecode.ts +21 -0
  4. package/package.json +16 -38
  5. package/src/account/keys.ts +97 -0
  6. package/src/account/login.ts +158 -0
  7. package/src/account/provision.ts +47 -0
  8. package/src/account/store.ts +63 -0
  9. package/src/acp/server.ts +373 -0
  10. package/src/cli/account-cmd.ts +116 -0
  11. package/src/cli/connect.ts +244 -0
  12. package/src/cli/context-cmd.ts +199 -0
  13. package/src/cli/dispatch.ts +109 -0
  14. package/src/cli/doctor.ts +324 -0
  15. package/src/cli/export.ts +278 -0
  16. package/src/cli/help.ts +240 -0
  17. package/src/cli/is-tui-invocation.ts +8 -0
  18. package/src/cli/main.ts +599 -0
  19. package/src/cli/market-cmd.ts +658 -0
  20. package/src/cli/mcp-market-cmd.ts +299 -0
  21. package/src/cli/output.ts +382 -0
  22. package/src/cli/repl.ts +172 -0
  23. package/src/cli/resume.ts +32 -0
  24. package/src/cli/run-limits.ts +78 -0
  25. package/src/cli/runtime.ts +792 -0
  26. package/src/cli/setup.ts +187 -0
  27. package/src/cli/update-cmd.ts +78 -0
  28. package/src/cli/workflow-cmd.ts +100 -0
  29. package/src/coding/checkpoints.ts +270 -0
  30. package/src/coding/diff.ts +136 -0
  31. package/src/coding/files.ts +339 -0
  32. package/src/coding/hashline.ts +319 -0
  33. package/src/coding/lsp.ts +406 -0
  34. package/src/coding/repomap-cache.ts +99 -0
  35. package/src/coding/repomap-files.ts +110 -0
  36. package/src/coding/repomap.ts +392 -0
  37. package/src/core/compaction.ts +399 -0
  38. package/src/core/config.ts +289 -0
  39. package/src/core/context-report.ts +228 -0
  40. package/src/core/context.ts +60 -0
  41. package/src/core/count-remote.ts +107 -0
  42. package/src/core/execpolicy-rules.ts +196 -0
  43. package/src/core/execpolicy.ts +385 -0
  44. package/src/core/executor.ts +397 -0
  45. package/src/core/guardrails.ts +400 -0
  46. package/src/core/hooks.ts +398 -0
  47. package/src/core/images.ts +230 -0
  48. package/src/core/intro.ts +236 -0
  49. package/src/core/loop.ts +621 -0
  50. package/src/core/modes.ts +372 -0
  51. package/src/core/orchestrator.ts +207 -0
  52. package/src/core/reflection.ts +165 -0
  53. package/src/core/sandbox-config.ts +167 -0
  54. package/src/core/session-images.ts +73 -0
  55. package/src/core/session.ts +398 -0
  56. package/src/core/settings.ts +98 -0
  57. package/src/core/stuck-detector.ts +273 -0
  58. package/src/core/tasks.ts +374 -0
  59. package/src/core/token-scale.ts +108 -0
  60. package/src/core/tool-output-budget.ts +166 -0
  61. package/src/core/tools.ts +288 -0
  62. package/src/core/types.ts +330 -0
  63. package/src/core/update-check.ts +171 -0
  64. package/src/core/update.ts +158 -0
  65. package/src/core/usage.ts +204 -0
  66. package/src/core/validate.ts +121 -0
  67. package/src/core/verify-gate.ts +159 -0
  68. package/src/core/verify.ts +237 -0
  69. package/src/core/voice.ts +158 -0
  70. package/src/core/win-job.ts +183 -0
  71. package/src/design/audit.ts +797 -0
  72. package/src/design/direction.ts +190 -0
  73. package/src/design/rules.ts +157 -0
  74. package/src/eval/bench.ts +150 -0
  75. package/src/eval/gauntlet-runner.ts +218 -0
  76. package/src/eval/gauntlet.ts +226 -0
  77. package/src/eval/grader.ts +186 -0
  78. package/src/eval/record.ts +202 -0
  79. package/src/eval/redact.ts +141 -0
  80. package/src/eval/replay.ts +147 -0
  81. package/src/eval/trajectory.ts +373 -0
  82. package/src/index.ts +17 -0
  83. package/src/market/catalogs/mcp-docs.json +111 -0
  84. package/src/market/catalogs/plugins.json +111 -0
  85. package/src/market/catalogs/skills.json +478 -0
  86. package/src/market/clone.ts +72 -0
  87. package/src/market/context-cost.ts +121 -0
  88. package/src/market/digest.ts +106 -0
  89. package/src/market/index.ts +22 -0
  90. package/src/market/install.ts +578 -0
  91. package/src/market/manifest.ts +187 -0
  92. package/src/market/prereq.ts +145 -0
  93. package/src/market/registry.ts +363 -0
  94. package/src/market/resolve.ts +111 -0
  95. package/src/market/types.ts +236 -0
  96. package/src/market/validate.ts +227 -0
  97. package/src/mcp/client.ts +431 -0
  98. package/src/mcp/config.ts +239 -0
  99. package/src/mcp/local-package.ts +211 -0
  100. package/src/mcp/market-catalog.ts +84 -0
  101. package/src/mcp/market-install.ts +289 -0
  102. package/src/mcp/market.ts +0 -0
  103. package/src/mcp/tools.ts +131 -0
  104. package/src/mcp/trust.ts +49 -0
  105. package/src/memory/blocks.ts +175 -0
  106. package/src/memory/recall.ts +355 -0
  107. package/src/memory/store.ts +105 -0
  108. package/src/memory/tools.ts +99 -0
  109. package/src/plugins/cli.ts +123 -0
  110. package/src/plugins/discover.ts +108 -0
  111. package/src/plugins/index.ts +50 -0
  112. package/src/plugins/init.ts +140 -0
  113. package/src/plugins/install.ts +184 -0
  114. package/src/plugins/load.ts +149 -0
  115. package/src/plugins/manifest.ts +106 -0
  116. package/src/plugins/state.ts +83 -0
  117. package/src/providers/auth.ts +293 -0
  118. package/src/providers/cache.ts +223 -0
  119. package/src/providers/catalog-local.ts +160 -0
  120. package/src/providers/catalog.ts +408 -0
  121. package/src/providers/middleware-context.ts +86 -0
  122. package/src/providers/middleware.ts +373 -0
  123. package/src/providers/profile-glm53.ts +111 -0
  124. package/src/providers/profile-sonnet5-persona.ts +65 -0
  125. package/src/providers/profile-sonnet5-voice.ts +23 -0
  126. package/src/providers/profiles.ts +156 -0
  127. package/src/providers/provider-config.ts +311 -0
  128. package/src/providers/registry.ts +302 -0
  129. package/src/providers/response-validation.ts +80 -0
  130. package/src/providers/retry.ts +234 -0
  131. package/src/providers/router.ts +294 -0
  132. package/src/providers/sse.ts +26 -0
  133. package/src/providers/stream-errors.ts +117 -0
  134. package/src/providers/stream.ts +569 -0
  135. package/src/providers/thinking.ts +189 -0
  136. package/src/providers/wire-messages.ts +129 -0
  137. package/src/sdk/client.ts +225 -0
  138. package/src/sdk/index.ts +3 -0
  139. package/src/server/dashboard.ts +144 -0
  140. package/src/server/http.ts +343 -0
  141. package/src/server/openapi.ts +246 -0
  142. package/src/sextant/card-hits.ts +102 -0
  143. package/src/sextant/card-keys.ts +55 -0
  144. package/src/sextant/context-source.ts +157 -0
  145. package/src/sextant/draw-agents.ts +273 -0
  146. package/src/sextant/draw-code.ts +388 -0
  147. package/src/sextant/draw-context.ts +222 -0
  148. package/src/sextant/draw-frame.ts +164 -0
  149. package/src/sextant/draw-market.ts +573 -0
  150. package/src/sextant/draw-messages.ts +386 -0
  151. package/src/sextant/draw-pet.ts +230 -0
  152. package/src/sextant/draw-plan.ts +159 -0
  153. package/src/sextant/draw-tabs.ts +85 -0
  154. package/src/sextant/draw-util.ts +65 -0
  155. package/src/sextant/engine.ts +230 -0
  156. package/src/sextant/frame-hits.ts +25 -0
  157. package/src/sextant/frame.ts +101 -0
  158. package/src/sextant/git-status.ts +197 -0
  159. package/src/sextant/grid.ts +59 -0
  160. package/src/sextant/input.ts +119 -0
  161. package/src/sextant/keys.ts +488 -0
  162. package/src/sextant/layout.ts +86 -0
  163. package/src/sextant/local-commands.ts +156 -0
  164. package/src/sextant/market-source.ts +287 -0
  165. package/src/sextant/mentions.ts +141 -0
  166. package/src/sextant/message-hits.ts +26 -0
  167. package/src/sextant/model.ts +387 -0
  168. package/src/sextant/overlays.ts +451 -0
  169. package/src/sextant/panel-hits.ts +38 -0
  170. package/src/sextant/pet.ts +399 -0
  171. package/src/sextant/screen.ts +324 -0
  172. package/src/sextant/scroll-hits.ts +66 -0
  173. package/src/sextant/scrollbar.ts +82 -0
  174. package/src/sextant/selection.ts +123 -0
  175. package/src/sextant/sextant-bridge.ts +174 -0
  176. package/src/sextant/sextant-cards.ts +142 -0
  177. package/src/sextant/sextant-diff-base.ts +63 -0
  178. package/src/sextant/sextant-files.ts +154 -0
  179. package/src/sextant/sextant-frame-loop.ts +314 -0
  180. package/src/sextant/sextant-renderer.ts +478 -0
  181. package/src/sextant/sextant-repo.ts +131 -0
  182. package/src/sextant/theme.ts +66 -0
  183. package/src/sextant/tool-rows.ts +189 -0
  184. package/src/sextant/types.ts +473 -0
  185. package/src/skills/index.ts +306 -0
  186. package/src/skills/tools.ts +69 -0
  187. package/src/skills/versioned.ts +227 -0
  188. package/src/telemetry/otel.ts +353 -0
  189. package/src/telemetry/otlp.ts +68 -0
  190. package/src/tools/ask-user.ts +156 -0
  191. package/src/tools/design.ts +151 -0
  192. package/src/tools/evalcell.ts +338 -0
  193. package/src/tools/html-text.ts +139 -0
  194. package/src/tools/provider.ts +149 -0
  195. package/src/tools/task.ts +216 -0
  196. package/src/tools/todo.ts +320 -0
  197. package/src/tools/webfetch.ts +331 -0
  198. package/src/tui/app.ts +608 -0
  199. package/src/tui/attach.ts +127 -0
  200. package/src/tui/checkpoints-cmd.ts +70 -0
  201. package/src/tui/clipboard-image.ts +81 -0
  202. package/src/tui/commands.ts +277 -0
  203. package/src/tui/cost.ts +108 -0
  204. package/src/tui/info-cmd.ts +144 -0
  205. package/src/tui/mcp-cmd.ts +128 -0
  206. package/src/tui/modes-cmd.ts +45 -0
  207. package/src/tui/overlays.ts +97 -0
  208. package/src/tui/pi-renderer.ts +424 -0
  209. package/src/tui/providers-cmd.ts +366 -0
  210. package/src/tui/renderer.ts +101 -0
  211. package/src/tui/replay-marker.ts +29 -0
  212. package/src/tui/session-cmd.ts +146 -0
  213. package/src/tui/sextant-attach.ts +68 -0
  214. package/src/tui/sextant-io.ts +184 -0
  215. package/src/tui/sextant-smoke.ts +110 -0
  216. package/src/tui/smoke.ts +72 -0
  217. package/src/tui/theme.ts +59 -0
  218. package/src/tui/todo-label.ts +7 -0
  219. package/src/workflow/engine.ts +266 -0
  220. package/tsconfig.json +30 -0
  221. package/vendor/pi-tui/LICENSE +21 -0
  222. package/vendor/pi-tui/PATCHES.md +12 -0
  223. package/vendor/pi-tui/PROVENANCE.md +12 -0
  224. package/vendor/pi-tui/README.upstream.md +854 -0
  225. package/vendor/pi-tui/native/win32/prebuilds/win32-arm64/win32-console-mode.node +0 -0
  226. package/vendor/pi-tui/native/win32/prebuilds/win32-x64/win32-console-mode.node +0 -0
  227. package/vendor/pi-tui/src/alt-screen-search.ts +158 -0
  228. package/vendor/pi-tui/src/autocomplete.ts +827 -0
  229. package/vendor/pi-tui/src/components/alt-screen-flash.ts +52 -0
  230. package/vendor/pi-tui/src/components/box.ts +138 -0
  231. package/vendor/pi-tui/src/components/cancellable-loader.ts +41 -0
  232. package/vendor/pi-tui/src/components/editor.ts +2364 -0
  233. package/vendor/pi-tui/src/components/h-stack.ts +45 -0
  234. package/vendor/pi-tui/src/components/image.ts +128 -0
  235. package/vendor/pi-tui/src/components/input.ts +448 -0
  236. package/vendor/pi-tui/src/components/loader.ts +93 -0
  237. package/vendor/pi-tui/src/components/markdown.ts +1016 -0
  238. package/vendor/pi-tui/src/components/scroll-view.ts +217 -0
  239. package/vendor/pi-tui/src/components/select-list.ts +230 -0
  240. package/vendor/pi-tui/src/components/settings-list.ts +277 -0
  241. package/vendor/pi-tui/src/components/spacer.ts +29 -0
  242. package/vendor/pi-tui/src/components/stack.ts +155 -0
  243. package/vendor/pi-tui/src/components/text.ts +108 -0
  244. package/vendor/pi-tui/src/components/truncated-text.ts +66 -0
  245. package/vendor/pi-tui/src/components/v-stack.ts +34 -0
  246. package/vendor/pi-tui/src/editor-component.ts +75 -0
  247. package/vendor/pi-tui/src/fuzzy.ts +138 -0
  248. package/vendor/pi-tui/src/index.ts +149 -0
  249. package/vendor/pi-tui/src/keybindings.ts +321 -0
  250. package/vendor/pi-tui/src/keys.ts +1402 -0
  251. package/vendor/pi-tui/src/kill-ring.ts +47 -0
  252. package/vendor/pi-tui/src/latex.ts +1381 -0
  253. package/vendor/pi-tui/src/layout-node.ts +52 -0
  254. package/vendor/pi-tui/src/layout.ts +411 -0
  255. package/vendor/pi-tui/src/native-modifiers.ts +60 -0
  256. package/vendor/pi-tui/src/native-module-path.ts +32 -0
  257. package/vendor/pi-tui/src/stdin-buffer.ts +445 -0
  258. package/vendor/pi-tui/src/terminal-colors.ts +74 -0
  259. package/vendor/pi-tui/src/terminal-image.ts +701 -0
  260. package/vendor/pi-tui/src/terminal.ts +554 -0
  261. package/vendor/pi-tui/src/tui-alt-screen.ts +1379 -0
  262. package/vendor/pi-tui/src/tui-main-screen.ts +655 -0
  263. package/vendor/pi-tui/src/tui.ts +1264 -0
  264. package/vendor/pi-tui/src/undo-stack.ts +29 -0
  265. package/vendor/pi-tui/src/utils.ts +1327 -0
  266. package/vendor/pi-tui/src/word-navigation.ts +118 -0
  267. package/vendor/pi-tui/test/test-themes.ts +39 -0
  268. package/vendor/pi-tui/test/virtual-terminal.ts +219 -0
  269. package/CHANGELOG.md +0 -527
  270. package/bin/rovecode.js +0 -24
  271. package/dist/cli/app-j6gn14w3.js +0 -2
  272. package/dist/cli/ask-user-cwstt8fz.js +0 -2
  273. package/dist/cli/auth-login-9bbp9915.js +0 -2
  274. package/dist/cli/auth-m8p9grty.js +0 -2
  275. package/dist/cli/bench-16zqdms5.js +0 -9
  276. package/dist/cli/catalog-1xchffa4.js +0 -2
  277. package/dist/cli/cli-1n1zb64f.js +0 -2
  278. package/dist/cli/client-2t9gjkck.js +0 -2
  279. package/dist/cli/commands-exafvm2b.js +0 -2
  280. package/dist/cli/connect-6zde0kn3.js +0 -2
  281. package/dist/cli/context-cmd-5t43wgqt.js +0 -2
  282. package/dist/cli/context-report-kt01pw8y.js +0 -2
  283. package/dist/cli/count-remote-ap7x3vh6.js +0 -2
  284. package/dist/cli/design-ne5zszyh.js +0 -2
  285. package/dist/cli/dispatch-2r5myxye.js +0 -2
  286. package/dist/cli/doctor-ws4fh4tn.js +0 -3
  287. package/dist/cli/executor-bdrjn634.js +0 -2
  288. package/dist/cli/export-1mxb9g5p.js +0 -2
  289. package/dist/cli/files-g104xghh.js +0 -2
  290. package/dist/cli/gauntlet-07xrjpj7.js +0 -2
  291. package/dist/cli/gauntlet-runner-xvy64436.js +0 -10
  292. package/dist/cli/gauntlet-wave3-jm91yt5w.js +0 -5
  293. package/dist/cli/gauntlet-wave4-r13py7p1.js +0 -14
  294. package/dist/cli/hashline-znvrat11.js +0 -2
  295. package/dist/cli/http-xafw6fsh.js +0 -143
  296. package/dist/cli/index-1sgjm25y.js +0 -2
  297. package/dist/cli/init-g2m0tn4m.js +0 -51
  298. package/dist/cli/install-avaqjjqq.js +0 -2
  299. package/dist/cli/loop-mmpfft01.js +0 -2
  300. package/dist/cli/main-0904f6ps.js +0 -5
  301. package/dist/cli/main-0ab9fc26.js +0 -9
  302. package/dist/cli/main-0jys2ccn.js +0 -3
  303. package/dist/cli/main-0mtcdbs7.js +0 -3
  304. package/dist/cli/main-0z1w2zsg.js +0 -3
  305. package/dist/cli/main-1dchs7xv.js +0 -18
  306. package/dist/cli/main-1ereejm1.js +0 -3
  307. package/dist/cli/main-1k1kw6b5.js +0 -3
  308. package/dist/cli/main-27y4sm2k.js +0 -38
  309. package/dist/cli/main-2wwjex5j.js +0 -58
  310. package/dist/cli/main-2yeveeve.js +0 -6
  311. package/dist/cli/main-2yfck9b5.js +0 -3
  312. package/dist/cli/main-2zmzgkwh.js +0 -3
  313. package/dist/cli/main-351pz3z7.js +0 -7
  314. package/dist/cli/main-3gjqfh7a.js +0 -6
  315. package/dist/cli/main-3nf3kgve.js +0 -3
  316. package/dist/cli/main-3pjrb2hd.js +0 -3
  317. package/dist/cli/main-3rxcvgna.js +0 -19
  318. package/dist/cli/main-4b3jgy66.js +0 -19
  319. package/dist/cli/main-4wndhjdc.js +0 -7
  320. package/dist/cli/main-4xcmvxnk.js +0 -3
  321. package/dist/cli/main-5tbz0wbz.js +0 -4
  322. package/dist/cli/main-5ywnwthm.js +0 -3
  323. package/dist/cli/main-6b62vkz0.js +0 -14
  324. package/dist/cli/main-6dnk69vp.js +0 -3
  325. package/dist/cli/main-6genrmhs.js +0 -136
  326. package/dist/cli/main-73g7eff4.js +0 -15
  327. package/dist/cli/main-7c5thhjd.js +0 -5
  328. package/dist/cli/main-7rn6bqje.js +0 -3
  329. package/dist/cli/main-80haw7qk.js +0 -4
  330. package/dist/cli/main-875s60s2.js +0 -4
  331. package/dist/cli/main-8kjxbpw4.js +0 -8
  332. package/dist/cli/main-90ds1z4e.js +0 -10
  333. package/dist/cli/main-9etavkew.js +0 -3
  334. package/dist/cli/main-a9njrkk1.js +0 -3
  335. package/dist/cli/main-aecrjq2d.js +0 -12
  336. package/dist/cli/main-ck9asesq.js +0 -9
  337. package/dist/cli/main-cta9racd.js +0 -4
  338. package/dist/cli/main-ddv7j2ag.js +0 -3
  339. package/dist/cli/main-dfreez27.js +0 -10
  340. package/dist/cli/main-f7rw7des.js +0 -3
  341. package/dist/cli/main-ggcn7rd7.js +0 -5
  342. package/dist/cli/main-gzkmycnv.js +0 -3
  343. package/dist/cli/main-hq51jg8v.js +0 -18
  344. package/dist/cli/main-jft389w9.js +0 -8
  345. package/dist/cli/main-k1eqkg83.js +0 -3
  346. package/dist/cli/main-k2y8a2aw.js +0 -9
  347. package/dist/cli/main-kcpbykxz.js +0 -4
  348. package/dist/cli/main-kd488vje.js +0 -22
  349. package/dist/cli/main-kh32yvgk.js +0 -5
  350. package/dist/cli/main-kqxnqjnv.js +0 -25
  351. package/dist/cli/main-kyn0xnsg.js +0 -3
  352. package/dist/cli/main-m1kk6fp5.js +0 -21
  353. package/dist/cli/main-mv40pcr2.js +0 -4
  354. package/dist/cli/main-n0t3973w.js +0 -3
  355. package/dist/cli/main-nqveez48.js +0 -4
  356. package/dist/cli/main-pknhvrmj.js +0 -3
  357. package/dist/cli/main-pn1w7a7j.js +0 -3
  358. package/dist/cli/main-prxxs70n.js +0 -4
  359. package/dist/cli/main-q3vsesf9.js +0 -3
  360. package/dist/cli/main-qsevpgsv.js +0 -3
  361. package/dist/cli/main-rdgdw24b.js +0 -25
  362. package/dist/cli/main-rfth4tbm.js +0 -16
  363. package/dist/cli/main-rg0wn0xf.js +0 -5
  364. package/dist/cli/main-sdmxhtv8.js +0 -4
  365. package/dist/cli/main-skbp13js.js +0 -18
  366. package/dist/cli/main-t4xnd213.js +0 -7
  367. package/dist/cli/main-vqak588n.js +0 -4
  368. package/dist/cli/main-w2n1303f.js +0 -9
  369. package/dist/cli/main-wbrdspr2.js +0 -5
  370. package/dist/cli/main-wsrg79c1.js +0 -7
  371. package/dist/cli/main-x4r0fne4.js +0 -5
  372. package/dist/cli/main-xea2f3tn.js +0 -6
  373. package/dist/cli/main-xg704a3c.js +0 -3
  374. package/dist/cli/main-xvnrabfp.js +0 -16
  375. package/dist/cli/main-xy53xf0r.js +0 -4
  376. package/dist/cli/main-y1fqy60y.js +0 -3
  377. package/dist/cli/main-yn8cd281.js +0 -34
  378. package/dist/cli/main-yr0ksc0h.js +0 -4
  379. package/dist/cli/main-z2ex2vyf.js +0 -4
  380. package/dist/cli/main-z3aayzvq.js +0 -3
  381. package/dist/cli/main-zaqh35jg.js +0 -3
  382. package/dist/cli/main-zc2e8e46.js +0 -4
  383. package/dist/cli/main-zzrfw6cf.js +0 -13
  384. package/dist/cli/main.js +0 -280
  385. package/dist/cli/market-cmd-e14kmx9n.js +0 -5
  386. package/dist/cli/mcp-login-wq7ktdek.js +0 -2
  387. package/dist/cli/mcp-market-cmd-9mg3jecy.js +0 -2
  388. package/dist/cli/notify-b7qc0cjb.js +0 -2
  389. package/dist/cli/oauth-z8whcgfx.js +0 -2
  390. package/dist/cli/output-b3ewj3ps.js +0 -16
  391. package/dist/cli/profiles-6mr5he5e.js +0 -2
  392. package/dist/cli/provider-config-g7j42q8x.js +0 -2
  393. package/dist/cli/provider-jr1y8vvm.js +0 -2
  394. package/dist/cli/registry-s8yk86g0.js +0 -2
  395. package/dist/cli/registry-t6p8d4mn.js +0 -2
  396. package/dist/cli/repl-bajwe1mh.js +0 -11
  397. package/dist/cli/resume-rwn9nz7y.js +0 -2
  398. package/dist/cli/run-flags-nah7ndpt.js +0 -2
  399. package/dist/cli/runtime-n7gafzhb.js +0 -2
  400. package/dist/cli/sandbox-config-emdy18x4.js +0 -2
  401. package/dist/cli/server-b0nvs2bn.js +0 -5
  402. package/dist/cli/session-arg-y75wd4kj.js +0 -2
  403. package/dist/cli/session-j62evmjq.js +0 -2
  404. package/dist/cli/sessions-cmd-tsnwz0ns.js +0 -7
  405. package/dist/cli/settings-df10wfez.js +0 -2
  406. package/dist/cli/setup-jzvv72fg.js +0 -2
  407. package/dist/cli/sextant-smoke-37m81ke6.js +0 -5
  408. package/dist/cli/skills-cmd-gjxnxnhx.js +0 -2
  409. package/dist/cli/smoke-p7748apt.js +0 -8
  410. package/dist/cli/start-chat-s4st3mm0.js +0 -12
  411. package/dist/cli/stream-gmeyewds.js +0 -2
  412. package/dist/cli/task-gh0kkp3n.js +0 -2
  413. package/dist/cli/tasks-z1kfpe8e.js +0 -2
  414. package/dist/cli/thinking-0eqkrz6t.js +0 -2
  415. package/dist/cli/todo-5brcrt9m.js +0 -2
  416. package/dist/cli/tools-7pzm0vj9.js +0 -2
  417. package/dist/cli/tools-s635p6s8.js +0 -2
  418. package/dist/cli/trust-cmd-cjav8zgm.js +0 -2
  419. package/dist/cli/update-check-pt31bm2f.js +0 -2
  420. package/dist/cli/update-cmd-tk131s9t.js +0 -2
  421. package/dist/cli/voice-56nabd8d.js +0 -2
  422. package/dist/cli/webfetch-xd8q596m.js +0 -2
  423. package/dist/cli/websearch-5hkf98k1.js +0 -2
  424. package/dist/cli/workflow-cmd-cy3cvzjp.js +0 -4
  425. package/dist/cli/workspace-q10g5z3e.js +0 -2
  426. package/dist/lib/index.js +0 -62
  427. package/dist/lib/models-index.json +0 -1
  428. package/dist/lib/plugins.js +0 -55
  429. package/dist/lib/providers.js +0 -17
  430. package/dist/lib/public-api.js +0 -20
  431. package/dist/lib/sdk.js +0 -360
  432. /package/{dist/cli → src/providers}/models-index.json +0 -0
@@ -0,0 +1,573 @@
1
+ /** The market overlay (/market, ⌃m): one shelf for the three kinds rovecode can install — MCP servers,
2
+ * skills and plugins — browsed and installed without leaving the cockpit.
3
+ *
4
+ * Shape, deliberately: the same reading order as the site's market page, so the two surfaces teach each
5
+ * other. A tab strip (all · mcp · skill · plugin) with counts, a query line, the results on the left, and
6
+ * the selected row's detail on the right — what it runs, which variables it needs, what the install will
7
+ * write. Enter turns the detail into a PLAN card (src/market/types.ts InstallPlanView.preview, verbatim)
8
+ * and nothing is written until that card is confirmed: the market obeys the same see-then-approve rule the
9
+ * approval card does, because installing a server is running someone else's code.
10
+ *
11
+ * Data comes in already resolved — `openMarket` takes rows and a status, it never fetches. That keeps this
12
+ * file pure over (state, screen) like every other drawer here, and it is why the empty, error and offline
13
+ * states are drawn from `MarketState.status` rather than guessed from an empty list: a market with no rows
14
+ * because the registry is down must not read like a market with no matches.
15
+ *
16
+ * Hit zones follow the card-hits.ts rule — only cells that were actually painted are registered, in the
17
+ * order they were painted, and the frame loop walks them in reverse. */
18
+
19
+ import { st } from "./draw-util.ts";
20
+ import { strWidth } from "./screen.ts";
21
+ import { fuzzy as defaultFuzzy, openOverlay, type Fuzzy } from "./overlays.ts";
22
+ import { ATTR, type HitZone, type KeyEvent, type Layout, type ScreenLike, type SextantState, type Theme } from "./types.ts";
23
+
24
+ /** the synthetic key a click carries, as overlays.ts does it */
25
+ const ENTER: KeyEvent = { type: "key", name: "enter" };
26
+
27
+ /** the kinds, in the order the tab strip shows them */
28
+ export const MARKET_TABS = ["all", "mcp", "skill", "plugin"] as const;
29
+ export type MarketTab = (typeof MARKET_TABS)[number];
30
+
31
+ /** One row as the overlay draws it. A flattened view of src/market/types.ts MarketRow: the adapter
32
+ * (market-source.ts) maps that type onto this one, so this file never imports the market module and the
33
+ * drawer stays testable with plain objects. */
34
+ export interface MarketViewRow {
35
+ id: string;
36
+ kind: "mcp" | "skill" | "plugin";
37
+ title: string;
38
+ publisher: string;
39
+ description: string;
40
+ version?: string;
41
+ /** the command, endpoint or path this row runs once installed */
42
+ runs: string;
43
+ /** variables the install will ask for or write as ${NAME}; `secret` draws a lock */
44
+ env: { name: string; required: boolean; secret: boolean; description?: string }[];
45
+ /** other ways in the catalog offers (a remote endpoint beside a local runtime) */
46
+ alternatives?: string[];
47
+ /** values only the human can supply (a directory to expose, a database URL) */
48
+ pending?: string[];
49
+ /** present when it is on this machine — MarketRow.installed, flattened */
50
+ installed?: { path: string; scope: "user" | "project"; version?: string; updateAvailable?: boolean; trusted?: boolean };
51
+ /** the npm package spec when the row starts through `npx <package>` — the install-once offer
52
+ * (mcp/local-package.ts) has something to say about this row; absent = no offer, Enter goes to the plan */
53
+ localOffer?: string;
54
+ /** the item's own documentation, already made safe for a terminal: no escape sequences, no control
55
+ * characters, markdown flattened to kinds a cockpit can draw. Absent = the catalog carries none, which
56
+ * is a quiet state and not an error. */
57
+ docs?: { source: string; truncated: boolean; lines: MarketDocLine[] };
58
+ }
59
+
60
+ /** one line of a document as the overlay draws it */
61
+ export interface MarketDocLine { kind: "head" | "text" | "code" | "blank" | "rule"; text: string }
62
+
63
+ /** why the list is what it is; the three not-ready states are drawn differently on purpose */
64
+ export type MarketStatus =
65
+ | { kind: "ready" }
66
+ | { kind: "loading" }
67
+ /** rows came from a cache or the curated shelf because the network was not reached */
68
+ | { kind: "offline"; note: string }
69
+ /** a source failed; `reason` is src/market/types.ts SourceStatus.reason, printed as it came */
70
+ | { kind: "error"; reason: string };
71
+
72
+ /** the plan the human must see before anything is written (InstallPlanView, flattened) */
73
+ export interface MarketPlan {
74
+ /** the row this plan was built for — the installer uses THIS, never the current selection */
75
+ row: MarketViewRow;
76
+ title: string;
77
+ target: string;
78
+ scope: "user" | "project";
79
+ preview: string[];
80
+ asks: { name: string; required: boolean; secret: boolean }[];
81
+ pending: string[];
82
+ replaces?: string;
83
+ /** the human chose "install once" on the chooser card: this plan was drawn for `node <bin>`, and the
84
+ * install must run with the same answer — the card is the plan that runs, never a re-derivation */
85
+ local?: boolean;
86
+ /** set once the confirmed install has answered */
87
+ outcome?: { ok: boolean; text: string };
88
+ /** true while runInstall is in flight */
89
+ running?: boolean;
90
+ }
91
+
92
+ /** the install-once chooser (mcp/local-package.ts), open over the list BEFORE the plan card for a row that
93
+ * starts through npx: the same question the CLI asks on a terminal and /mcp asks as a pick. `sel` 0 =
94
+ * install once, 1 = npx at every start, as today. Enter asks for the plan with that answer; Esc backs out. */
95
+ export interface MarketChoice { row: MarketViewRow; sel: 0 | 1 }
96
+ export const CHOICE_LINES: readonly { label: string; hint: string }[] = [
97
+ { label: "install once — node starts it in ~0.4 s", hint: "npm install runs now, AFTER the plan is approved: the package's code lands under ~/.rovecode/mcp (typically 20–30 MB, once); no network needed to start" },
98
+ { label: "run through npx at every start — as today", hint: "~2 s per start, re-resolves the package and asks the npm registry each time; nothing is installed now" },
99
+ ];
100
+
101
+ export interface MarketState {
102
+ tab: MarketTab;
103
+ query: string;
104
+ sel: number;
105
+ rows: MarketViewRow[];
106
+ status: MarketStatus;
107
+ /** notes worth showing once (MarketResult.notes) */
108
+ notes: string[];
109
+ /** the plan card, open over the list until it is confirmed or dismissed */
110
+ plan: MarketPlan | null;
111
+ /** the install-once chooser, open between Enter on an npx row and its plan card */
112
+ choice: MarketChoice | null;
113
+ /** alt+d opens the selected row's documentation in the detail column; ↑↓ then scroll it */
114
+ docs: boolean;
115
+ docScroll: number;
116
+ /** body rows the pane last painted, so the keys can clamp the scroll to what actually fits */
117
+ docRows: number;
118
+ }
119
+
120
+ export function openMarket(s: SextantState, rows: MarketViewRow[], status: MarketStatus = { kind: "ready" }, notes: string[] = []): void {
121
+ openOverlay(s, "market"); // one overlay at a time; the transition lives in overlays.ts
122
+ s.market = { tab: "all", query: "", sel: 0, rows, status, notes, plan: null, choice: null, docs: false, docScroll: 0, docRows: 12 };
123
+ }
124
+ export function closeMarket(s: SextantState): void { s.market = null; }
125
+
126
+ /** rows the tab and the query leave, best match first when there is a query */
127
+ export function marketVisible(m: MarketState, fz: Fuzzy = defaultFuzzy): MarketViewRow[] {
128
+ const byTab = m.rows.filter((r) => m.tab === "all" || r.kind === m.tab);
129
+ const q = m.query.trim();
130
+ if (!q) return byTab;
131
+ return byTab
132
+ .map((r) => ({ r, hit: fz(q, `${r.title} ${r.id} ${r.publisher} ${r.description}`) }))
133
+ .filter((x): x is { r: MarketViewRow; hit: { score: number; idx: number[] } } => x.hit !== null)
134
+ .sort((a, b) => b.hit.score - a.hit.score)
135
+ .map((x) => x.r);
136
+ }
137
+
138
+ /** counts for the tab strip — of the whole catalog, not of the filtered list, so switching tabs is
139
+ * predictable while a query is typed */
140
+ export function marketCounts(m: MarketState): Record<MarketTab, number> {
141
+ return {
142
+ all: m.rows.length,
143
+ mcp: m.rows.filter((r) => r.kind === "mcp").length,
144
+ skill: m.rows.filter((r) => r.kind === "skill").length,
145
+ plugin: m.rows.filter((r) => r.kind === "plugin").length,
146
+ };
147
+ }
148
+
149
+ /** the badge a row carries on the right of the list: nothing when it is not installed */
150
+ export function rowBadge(r: MarketViewRow): { text: string; tone: "ok" | "warn" | "info" } | null {
151
+ if (!r.installed) return null;
152
+ if (r.installed.updateAvailable) return { text: "update", tone: "warn" };
153
+ if (r.installed.scope === "project" && r.installed.trusted === false) return { text: "not approved", tone: "warn" };
154
+ return { text: "installed", tone: "ok" };
155
+ }
156
+
157
+ /** the sentence the empty / offline / error states print, so the three never read alike */
158
+ export function statusLine(m: MarketState, visible: number): { text: string; tone: "muted" | "warn" | "err" } | null {
159
+ if (m.status.kind === "loading") return { text: "reading the catalogs…", tone: "muted" };
160
+ if (m.status.kind === "error") return { text: m.status.reason, tone: "err" };
161
+ if (m.status.kind === "offline") return { text: m.status.note, tone: "warn" };
162
+ if (visible === 0) {
163
+ return m.query.trim() || m.tab !== "all"
164
+ ? { text: `nothing matches${m.query.trim() ? ` "${m.query.trim()}"` : ""}${m.tab !== "all" ? ` in ${m.tab}` : ""}`, tone: "muted" }
165
+ : { text: "the catalog is empty", tone: "muted" };
166
+ }
167
+ return null;
168
+ }
169
+
170
+ const KIND_LABEL: Record<string, string> = { mcp: "mcp", skill: "skill", plugin: "plugin" };
171
+
172
+ // ------------------------------------------------------------------ painting
173
+
174
+ /** the plan card: the whole write, in the human's words, over the list. Enter installs, esc backs out. */
175
+ function drawPlan(scr: ScreenLike, L: Layout, C: Theme, m: MarketState, hits?: HitZone[]): void {
176
+ const p = m.plan;
177
+ if (!p) { if (m.choice) drawChoice(scr, L, C, m, hits); return; }
178
+ const w = Math.min(76, L.w - 8);
179
+ const lines = [
180
+ ...p.preview,
181
+ ...(p.replaces ? [`replaces ${p.replaces}`] : []),
182
+ ...p.asks.map((a) => `asks ${a.name}${a.secret ? " (secret, masked)" : ""}${a.required ? "" : " — optional"}`),
183
+ ...p.pending.map((x) => `you supply ${x}`),
184
+ ];
185
+ const h = Math.min(L.h - 4, lines.length + 7);
186
+ const x = Math.floor((L.w - w) / 2), y = Math.max(1, Math.floor((L.h - h) / 2));
187
+ scr.box(x, y, w, h, st(C.accent), C.bg2);
188
+ scr.text(x + 2, y, [[" install plan ", st(C.accent, -1, ATTR.BOLD)]]);
189
+ scr.clip(x + 3, y + 1, p.title, st(C.fg, C.bg2, ATTR.BOLD), w - 6);
190
+ scr.clip(x + 3, y + 2, `${p.scope} scope · ${p.target}`, st(C.muted, C.bg2), w - 6);
191
+ scr.hline(x + 1, y + 3, w - 2, st(C.rule2, C.bg2), "╌");
192
+ lines.slice(0, h - 6).forEach((line, i) => scr.clip(x + 3, y + 4 + i, line, st(C.fg2, C.bg2), w - 6));
193
+ const footY = y + h - 2;
194
+ if (p.outcome) {
195
+ scr.clip(x + 3, footY, p.outcome.text, st(p.outcome.ok ? C.ok : C.err, C.bg2), w - 6);
196
+ hits?.push({ rect: { x, y, w, h }, onClick: () => { m.plan = null; } });
197
+ return;
198
+ }
199
+ if (p.running) {
200
+ scr.put(x + 3, footY, "installing…", st(C.muted, C.bg2));
201
+ hits?.push({ rect: { x, y, w, h }, onClick: () => {} });
202
+ return;
203
+ }
204
+ scr.text(x + 3, footY, [
205
+ ["⏎ install", st(C.accent, C.bg2, ATTR.BOLD)],
206
+ [" esc cancel", st(C.dim, C.bg2)],
207
+ ], w - 6);
208
+ hits?.push({ rect: { x, y, w, h }, onClick: () => {} });
209
+ hits?.push({ rect: { x: x + 3, y: footY, w: 9, h: 1 }, onClick: () => {}, key: ENTER });
210
+ }
211
+
212
+ /** the chooser card: two ways to start an npx server, the trade under each, Enter picks, esc backs out. It
213
+ * is not the gate — the plan card that follows is — so it writes nothing and runs nothing itself. */
214
+ function drawChoice(scr: ScreenLike, L: Layout, C: Theme, m: MarketState, hits?: HitZone[]): void {
215
+ const c = m.choice;
216
+ if (!c) return;
217
+ const w = Math.min(84, L.w - 8);
218
+ const inner = w - 6;
219
+ const rows: { text: string; sel: boolean; head: boolean }[] = [];
220
+ CHOICE_LINES.forEach((o, i) => {
221
+ rows.push({ text: `${i === c.sel ? "●" : "○"} ${o.label}`, sel: i === c.sel, head: true });
222
+ for (const l of wrap(o.hint, inner - 4)) rows.push({ text: ` ${l}`, sel: false, head: false });
223
+ });
224
+ const h = Math.min(L.h - 4, rows.length + 6);
225
+ const x = Math.floor((L.w - w) / 2), y = Math.max(1, Math.floor((L.h - h) / 2));
226
+ scr.box(x, y, w, h, st(C.accent), C.bg2);
227
+ scr.text(x + 2, y, [[" how to start it ", st(C.accent, -1, ATTR.BOLD)]]);
228
+ scr.clip(x + 3, y + 1, `${c.row.title} · ${c.row.localOffer ?? c.row.runs}`, st(C.fg, C.bg2, ATTR.BOLD), inner);
229
+ scr.hline(x + 1, y + 2, w - 2, st(C.rule2, C.bg2), "╌");
230
+ let optionIndex = -1;
231
+ rows.slice(0, h - 5).forEach((r, i) => {
232
+ const yy = y + 3 + i;
233
+ scr.clip(x + 3, yy, r.text, r.head ? st(r.sel ? C.accent : C.fg, C.bg2, r.sel ? ATTR.BOLD : 0) : st(C.muted, C.bg2), inner);
234
+ if (r.head) {
235
+ optionIndex += 1;
236
+ const pick = optionIndex as 0 | 1;
237
+ hits?.push({ rect: { x: x + 3, y: yy, w: inner, h: 1 }, onClick: () => { c.sel = pick; } }); // a click selects; Enter still decides
238
+ }
239
+ });
240
+ scr.text(x + 3, y + h - 2, [["↑↓ choose ⏎ show the plan", st(C.accent, C.bg2, ATTR.BOLD)], [" esc back", st(C.dim, C.bg2)]], inner);
241
+ hits?.push({ rect: { x, y, w, h }, onClick: () => {} });
242
+ }
243
+
244
+ /** the detail column: everything the row promises, in the order a reader asks for it */
245
+ function drawDetail(scr: ScreenLike, x: number, y: number, w: number, h: number, C: Theme, r: MarketViewRow): void {
246
+ let yy = y;
247
+ const line = (text: string, style: ReturnType<typeof st>, gap = 0) => {
248
+ if (yy >= y + h) return;
249
+ yy += gap;
250
+ if (yy >= y + h) return;
251
+ scr.clip(x, yy, text, style, w);
252
+ yy += 1;
253
+ };
254
+ scr.text(x, yy, [[r.title, st(C.fg, C.bg2, ATTR.BOLD)], [r.version ? ` ${r.version}` : "", st(C.dim, C.bg2)]], w);
255
+ yy += 1;
256
+ line(r.publisher, st(C.muted, C.bg2));
257
+ // the description wraps by word inside the column — a one-line clip loses the half that matters
258
+ for (const part of wrap(r.description, w).slice(0, 4)) line(part, st(C.fg2, C.bg2));
259
+ line("what it runs", st(C.dim, C.bg2), 1);
260
+ for (const part of wrap(r.runs, w).slice(0, 3)) line(part, st(C.fg, C.bg2));
261
+ for (const alt of (r.alternatives ?? []).slice(0, 2)) line(`also ${alt}`, st(C.dim, C.bg2));
262
+ line("environment", st(C.dim, C.bg2), 1);
263
+ if (r.env.length === 0) line("nothing — it needs no key", st(C.fg2, C.bg2));
264
+ for (const v of r.env.slice(0, 4)) {
265
+ line(`${v.name}${v.secret ? " · secret" : ""}${v.required ? "" : " · optional"}`, st(v.secret ? C.warn : C.fg, C.bg2));
266
+ if (v.description) for (const part of wrap(v.description, w - 2).slice(0, 2)) line(` ${part}`, st(C.muted, C.bg2));
267
+ }
268
+ if ((r.pending ?? []).length) {
269
+ line("you supply", st(C.dim, C.bg2), 1);
270
+ for (const p of r.pending!.slice(0, 3)) line(p, st(C.fg2, C.bg2));
271
+ }
272
+ line("where it lands", st(C.dim, C.bg2), 1);
273
+ line(r.installed ? r.installed.path : "shown in the plan before anything is written", st(C.fg2, C.bg2));
274
+ if (r.installed) line(`${r.installed.scope} scope${r.installed.version ? ` · ${r.installed.version}` : ""}${r.installed.trusted === false ? " · not approved here" : ""}`, st(C.muted, C.bg2));
275
+ }
276
+
277
+ /** The documentation pane: the item's own text, scrolled in the detail column. Every line was made safe at
278
+ * build time (market-docs.mjs docsToLines) — no escape sequences, no control characters — so a document
279
+ * cannot paint the cockpit. Headings and code keep their shape; nothing else is interpreted. */
280
+ export function docMaxScroll(r: MarketViewRow | undefined, rows: number): number {
281
+ return Math.max(0, (r?.docs?.lines.length ?? 0) - Math.max(1, rows));
282
+ }
283
+
284
+ /** Re-wrap the document to the column it is actually drawn in.
285
+ *
286
+ * `docLines` wraps at a fixed 96 columns, but the detail column is `w = x + boxW - 2 - detailX` and
287
+ * tops out around 65 even on the widest box the overlay will draw — so every prose line longer than
288
+ * the column was hard-clipped by `scr.clip`, and the clipped part was simply gone. Not a narrow-
289
+ * terminal corner case: it fired on every terminal, for most paragraphs of a real README.
290
+ *
291
+ * Wrapping belongs here rather than at fetch time for a second reason — the terminal can be resized
292
+ * while the pane is open, and a width decided when the document was read is wrong the moment it is.
293
+ * Prose re-wraps on words; code is chunked instead, because breaking a command on a space would show
294
+ * the reader something they could copy and run that is not what the document said. */
295
+ export function rewrap(lines: readonly MarketDocLine[], w: number): MarketDocLine[] {
296
+ if (w < 8) return [...lines];
297
+ const out: MarketDocLine[] = [];
298
+ for (const line of lines) {
299
+ if (line.kind === "text") {
300
+ if (line.text.length <= w) { out.push(line); continue; }
301
+ let cur = "";
302
+ for (const word of line.text.split(/\s+/).filter(Boolean)) {
303
+ const piece = word.length > w ? word.slice(0, w) : word;
304
+ if (!cur) { cur = piece; continue; }
305
+ if (cur.length + 1 + piece.length <= w) cur += ` ${piece}`;
306
+ else { out.push({ kind: "text", text: cur }); cur = piece; }
307
+ }
308
+ if (cur) out.push({ kind: "text", text: cur });
309
+ } else if (line.kind === "code" && line.text.length > w) {
310
+ for (let i = 0; i < line.text.length; i += w) out.push({ kind: "code", text: line.text.slice(i, i + w) });
311
+ } else out.push(line);
312
+ }
313
+ return out;
314
+ }
315
+
316
+ function drawDocs(scr: ScreenLike, x: number, y: number, w: number, h: number, C: Theme, r: MarketViewRow, scroll: number): number {
317
+ const lines = rewrap(r.docs?.lines ?? [], w);
318
+ if (lines.length === 0) {
319
+ scr.clip(x, y, `documentation · ${r.title}`, st(C.fg, C.bg2, ATTR.BOLD), w);
320
+ scr.clip(x, y + 2, "reading…", st(C.muted, C.bg2), w);
321
+ return 0;
322
+ }
323
+ // two rows of heading above, one row of position below: the body gets what is left
324
+ const body = Math.max(1, h - 4);
325
+ const max = Math.max(0, lines.length - body);
326
+ const off = Math.max(0, Math.min(scroll, max));
327
+ scr.clip(x, y, `documentation · ${r.title}`, st(C.fg, C.bg2, ATTR.BOLD), w);
328
+ scr.clip(x, y + 1, r.docs?.source ?? "", st(C.dim, C.bg2), w);
329
+ for (let i = 0; i < body; i++) {
330
+ const line = lines[off + i];
331
+ if (!line) break;
332
+ const yy = y + 2 + i;
333
+ if (line.kind === "head") scr.clip(x, yy, line.text, st(C.accent, C.bg2, ATTR.BOLD), w);
334
+ else if (line.kind === "code") scr.clip(x, yy, line.text, st(C.fg2, C.selBg), w);
335
+ else if (line.kind === "rule") scr.hline(x, yy, Math.min(w, 24), st(C.rule2, C.bg2), "╌");
336
+ else if (line.kind === "text") scr.clip(x, yy, line.text, st(C.fg2, C.bg2), w);
337
+ }
338
+ // where you are, and whether there is more of it upstream
339
+ const more = off < max ? `${off + body}/${lines.length}` : `${lines.length}/${lines.length}`;
340
+ const tail = r.docs?.truncated ? `${more} · the rest is at the source` : more;
341
+ scr.clip(x, y + h - 1, tail, st(C.dim, C.bg2), w);
342
+ return max;
343
+ }
344
+
345
+ /** greedy word wrap; a word longer than the column is cut rather than allowed to overflow */
346
+ export function wrap(text: string, w: number): string[] {
347
+ if (w <= 0) return [];
348
+ const out: string[] = [];
349
+ let line = "";
350
+ for (const word of text.split(/\s+/).filter(Boolean)) {
351
+ const piece = word.length > w ? word.slice(0, w) : word;
352
+ if (!line) { line = piece; continue; }
353
+ if (strWidth(line) + 1 + strWidth(piece) <= w) line += ` ${piece}`;
354
+ else { out.push(line); line = piece; }
355
+ }
356
+ if (line) out.push(line);
357
+ return out;
358
+ }
359
+
360
+ /** The overlay. Returns the cursor cell (after the query) so the frame loop can park the caret there. */
361
+ export function drawMarket(scr: ScreenLike, L: Layout, C: Theme, s: SextantState, fz: Fuzzy = defaultFuzzy, hits?: HitZone[]): { x: number; y: number } | null {
362
+ const m = s.market;
363
+ if (!m) return null;
364
+ // Clicking the backdrop closes the overlay — except while an install is running. The keyboard has
365
+ // refused that since the plan card was written ("an install in flight cannot be dismissed"), but the
366
+ // guard lived only in the key handler, so a click anywhere outside the plan box walked away from a
367
+ // write that was still happening, and the outcome was then discarded on arrival. Same rule, both
368
+ // input devices: the write is happening whatever the surface does, so the surface stays.
369
+ hits?.push({ rect: { x: 0, y: 0, w: L.w, h: L.h }, onClick: () => { if (!m.plan?.running) closeMarket(s); } });
370
+
371
+ // the box follows its content: a five-row catalog does not need thirty rows of empty night. The floor
372
+ // keeps the detail column readable, the ceiling keeps the cockpit visible behind it.
373
+ // The box follows its content, but the floor is set by the DETAIL column, not the list: a five-row
374
+ // catalog still has to show what a row runs, what it needs and where it lands without cutting the last
375
+ // heading off. 20 rows is that column at its longest (four wrapped description lines, four variables).
376
+ const bodyRows = Math.max(m.rows.length + 6, 20);
377
+ const w = Math.min(L.w - 6, 120), h = Math.max(12, Math.min(L.h - 4, 30, bodyRows));
378
+ const x = Math.floor((L.w - w) / 2), y = Math.max(1, Math.floor((L.h - h) / 2));
379
+ scr.box(x, y, w, h, st(C.accent), C.bg2);
380
+ scr.text(x + 2, y, [[" market ", st(C.accent, -1, ATTR.BOLD)]]);
381
+ scr.put(x + w - 14, y, " esc closes ", st(C.dim));
382
+ hits?.push({ rect: { x, y, w, h }, onClick: () => {} });
383
+
384
+ // the tab strip, with the whole catalog's counts
385
+ const counts = marketCounts(m);
386
+ let tx = x + 3;
387
+ for (const tab of MARKET_TABS) {
388
+ const label = `${tab === "all" ? "all" : KIND_LABEL[tab]} ${counts[tab]}`;
389
+ const on = m.tab === tab;
390
+ scr.put(tx, y + 1, label, st(on ? C.accent : C.muted, C.bg2, on ? ATTR.BOLD : 0));
391
+ hits?.push({ rect: { x: tx, y: y + 1, w: strWidth(label), h: 1 }, onClick: () => { m.tab = tab; m.sel = 0; } });
392
+ tx += strWidth(label) + 3;
393
+ }
394
+
395
+ // the query line
396
+ scr.put(x + 3, y + 2, "▌", st(C.accent, C.bg2));
397
+ if (m.query) scr.put(x + 5, y + 2, m.query, st(C.fg, C.bg2, ATTR.BOLD), w - 12);
398
+ else scr.put(x + 5, y + 2, "type to search the market…", st(C.dim, C.bg2), w - 12);
399
+ scr.hline(x + 1, y + 3, w - 2, st(C.rule2, C.bg2), "╌");
400
+
401
+ const vis = marketVisible(m, fz);
402
+ m.sel = Math.max(0, Math.min(m.sel, Math.max(vis.length - 1, 0)));
403
+ const listW = Math.max(24, Math.floor((w - 5) * 0.42));
404
+ const detailX = x + 3 + listW + 2;
405
+ const detailW = x + w - 2 - detailX;
406
+ const rowsH = h - 6;
407
+
408
+ const state = statusLine(m, vis.length);
409
+ if (state && vis.length === 0) {
410
+ const tone = state.tone === "err" ? C.err : state.tone === "warn" ? C.warn : C.muted;
411
+ for (const [i, part] of wrap(state.text, w - 8).slice(0, 3).entries()) scr.clip(x + 4, y + 5 + i, part, st(tone, C.bg2), w - 8);
412
+ if (m.status.kind === "error") scr.clip(x + 4, y + 9, "the curated shelf still works offline · esc closes", st(C.dim, C.bg2), w - 8);
413
+ drawPlan(scr, L, C, m, hits);
414
+ return { x: x + 5 + strWidth(m.query), y: y + 2 };
415
+ }
416
+
417
+ // a status that still has rows (offline, stale cache) is said once above the list, not instead of it
418
+ let listY = y + 4;
419
+ if (state && vis.length > 0) {
420
+ scr.clip(x + 3, listY, state.text, st(state.tone === "err" ? C.err : C.warn, C.bg2), w - 6);
421
+ listY += 1;
422
+ }
423
+ const maxRows = Math.max(1, y + h - 2 - listY);
424
+ const off = m.sel >= maxRows ? m.sel - maxRows + 1 : 0;
425
+ for (let i = 0; i < maxRows; i++) {
426
+ const r = vis[off + i];
427
+ if (!r) break;
428
+ const yy = listY + i;
429
+ const sel = off + i === m.sel;
430
+ if (sel) scr.tint(x + 2, yy, listW + 2, 1, C.selBg);
431
+ const badge = rowBadge(r);
432
+ const badgeW = badge ? strWidth(badge.text) + 1 : 0;
433
+ // the same three facts, in the same order, as the web card: kind, title, publisher
434
+ scr.text(x + 2, yy, [
435
+ [sel ? "▸ " : " ", st(C.accent, sel ? C.selBg : C.bg2)],
436
+ [`${KIND_LABEL[r.kind]} `.padEnd(7), st(C.dim, sel ? C.selBg : C.bg2)],
437
+ [r.title, st(sel ? C.fg : C.fg2, sel ? C.selBg : C.bg2, sel ? ATTR.BOLD : 0)],
438
+ [` ${r.publisher}`, st(C.dim, sel ? C.selBg : C.bg2)],
439
+ ], listW - badgeW);
440
+ if (badge) scr.put(x + 3 + listW - badgeW, yy, badge.text, st(badge.tone === "ok" ? C.ok : badge.tone === "warn" ? C.warn : C.info, sel ? C.selBg : C.bg2));
441
+ const idx = off + i;
442
+ // a click may not reach a row while the plan card is up: the card is a decision, not a backdrop
443
+ if (!m.plan) hits?.push({ rect: { x: x + 2, y: yy, w: listW + 2, h: 1 }, onClick: () => { m.sel = idx; }, key: ENTER });
444
+ }
445
+
446
+ scr.vline(detailX - 2, listY, rowsH, st(C.rule2, C.bg2), "│");
447
+ const current = vis[m.sel];
448
+ const detailH = y + h - 2 - listY;
449
+ if (current && m.docs && current.docs) { m.docRows = Math.max(1, detailH - 4); drawDocs(scr, detailX, listY, detailW, detailH, C, current, m.docScroll); }
450
+ else if (current) drawDetail(scr, detailX, listY, detailW, detailH, C, current);
451
+
452
+ // the foot: what Enter will do, said before it is pressed
453
+ const docsKey = current?.docs ? (m.docs ? " · d closes the docs" : " · ⌥d docs") : "";
454
+ const foot = current
455
+ ? m.docs
456
+ ? `↑↓ scroll${docsKey} · esc closes`
457
+ : current.installed && !current.installed.updateAvailable
458
+ ? `⏎ install again · ↑↓ move · ⇥ next kind${docsKey} · esc closes`
459
+ : `⏎ install · ↑↓ move · ⇥ next kind${docsKey} · esc closes`
460
+ : "↑↓ move · ⇥ next kind · esc closes";
461
+ scr.clip(x + 3, y + h - 1, foot, st(C.dim), w - 6);
462
+
463
+ drawPlan(scr, L, C, m, hits);
464
+ return { x: x + 5 + strWidth(m.query), y: y + 2 };
465
+ }
466
+
467
+ // ------------------------------------------------------------------ keys
468
+
469
+ /** What a key press asked the app to do. The overlay never installs anything itself: it asks, and the
470
+ * renderer (which owns src/market/) answers by writing back into `plan`. */
471
+ export type MarketRequest =
472
+ /** `local` = the chooser's answer for an npx row (true: install once); absent = no offer was made */
473
+ | { kind: "plan"; row: MarketViewRow; local?: boolean }
474
+ | { kind: "install"; plan: MarketPlan }
475
+ /** the pane opened on a row whose body has not been read yet (search carries metadata, not bodies) */
476
+ | { kind: "docs"; row: MarketViewRow }
477
+ | { kind: "none" };
478
+
479
+ /** Enter on a row: a row that starts through npx gets the chooser first (the same question the CLI and /mcp
480
+ * ask), every other row goes straight to its plan. Either way nothing is written until the plan card. */
481
+ function askOrPlan(m: MarketState, row: MarketViewRow): MarketRequest {
482
+ if (row.localOffer !== undefined) { m.choice = { row, sel: 0 }; return { kind: "none" }; }
483
+ return { kind: "plan", row };
484
+ }
485
+
486
+ /** Esc closes (the plan card first), ↑↓ move, ⇥/⇧⇥ cycle the kind, Enter asks for the plan and then
487
+ * confirms it, typing edits the query. Returns what the renderer must do next. */
488
+ export function onMarketKey(s: SextantState, ev: KeyEvent, fz: Fuzzy = defaultFuzzy): MarketRequest {
489
+ const m = s.market;
490
+ if (!m) return { kind: "none" };
491
+ const { name, ctrl, alt, ch } = ev;
492
+
493
+ if (m.plan) {
494
+ const p = m.plan;
495
+ // an install in flight cannot be dismissed: the write is happening whatever the card does, and a
496
+ // card that vanishes mid-write tells the human "nothing happened" while something did. Wait for it.
497
+ if (p.running) return { kind: "none" };
498
+ if (name === "escape" || (ctrl && name === "c")) { m.plan = null; return { kind: "none" }; }
499
+ if (name === "enter") {
500
+ if (p.outcome) { m.plan = null; return { kind: "none" }; } // a finished plan: Enter just dismisses it
501
+ p.running = true;
502
+ return { kind: "install", plan: p };
503
+ }
504
+ return { kind: "none" };
505
+ }
506
+
507
+ // the install-once chooser: the answer decides which plan is drawn; nothing runs here. Esc backs out to
508
+ // the list — no plan, no install, exactly as if Enter had not been pressed.
509
+ if (m.choice) {
510
+ const c = m.choice;
511
+ if (name === "escape" || (ctrl && name === "c")) { m.choice = null; return { kind: "none" }; }
512
+ if (name === "up" || name === "down") { c.sel = c.sel === 0 ? 1 : 0; return { kind: "none" }; }
513
+ if (name === "enter") { m.choice = null; return { kind: "plan", row: c.row, local: c.sel === 0 }; }
514
+ return { kind: "none" };
515
+ }
516
+
517
+ if (name === "escape" || (ctrl && name === "m")) {
518
+ // esc backs out of the documentation first, then closes the overlay — one step at a time
519
+ if (m.docs) { m.docs = false; m.docScroll = 0; return { kind: "none" }; }
520
+ closeMarket(s);
521
+ return { kind: "none" };
522
+ }
523
+ const vis = marketVisible(m, fz);
524
+ const n = Math.max(1, vis.length);
525
+ const current = vis[m.sel];
526
+ // `d` opens the selected row's documentation, and closes it again; a row without docs says so once
527
+ // the docs key is alt+d, not a bare d: d is the first letter of "docker", "deepwiki" and "docs",
528
+ // and a shortcut that eats a search letter is a shortcut in the wrong place
529
+ if (ch === "d" && alt && !ctrl) {
530
+ if (m.docs) { m.docs = false; m.docScroll = 0; return { kind: "none" }; }
531
+ if (!current?.docs) return { kind: "none" };
532
+ m.docs = true;
533
+ m.docScroll = 0;
534
+ // the list knows a document EXISTS; the body is read on demand, so ask for it the first time
535
+ return current.docs.lines.length === 0 ? { kind: "docs", row: current } : { kind: "none" };
536
+ }
537
+ // ⇥ means "next kind" everywhere, so it closes an open document rather than doing nothing inside it
538
+ if (name === "tab" || name === "shift-tab") {
539
+ const i = MARKET_TABS.indexOf(m.tab);
540
+ const step = name === "tab" ? 1 : MARKET_TABS.length - 1;
541
+ m.tab = MARKET_TABS[(i + step) % MARKET_TABS.length]!;
542
+ m.sel = 0;
543
+ m.docs = false;
544
+ m.docScroll = 0;
545
+ return { kind: "none" };
546
+ }
547
+ if (m.docs) {
548
+ if (ch === "d" && !ctrl && !alt) { m.docs = false; m.docScroll = 0; return { kind: "none" }; }
549
+ // the pane owns the arrows while it is open; the list selection stays where it was
550
+ if (name === "up") { m.docScroll = Math.max(0, m.docScroll - 1); return { kind: "none" }; }
551
+ if (name === "down") { m.docScroll = Math.min(m.docScroll + 1, docMaxScroll(current, m.docRows)); return { kind: "none" }; }
552
+ if (name === "pageup") { m.docScroll = Math.max(0, m.docScroll - 12); return { kind: "none" }; }
553
+ if (name === "pagedown") { m.docScroll = Math.min(m.docScroll + 12, docMaxScroll(current, m.docRows)); return { kind: "none" }; }
554
+ if (name === "home") { m.docScroll = 0; return { kind: "none" }; }
555
+ if (name === "end") { m.docScroll = docMaxScroll(current, m.docRows); return { kind: "none" }; }
556
+ if (name === "enter") return current ? askOrPlan(m, current) : { kind: "none" };
557
+ return { kind: "none" }; // typing does not filter while a document is being read
558
+ }
559
+ if (name === "up") { m.sel = (m.sel - 1 + n) % n; return { kind: "none" }; }
560
+ if (name === "down") { m.sel = (m.sel + 1) % n; return { kind: "none" }; }
561
+ if (name === "pageup") { m.sel = Math.max(0, m.sel - 10); return { kind: "none" }; }
562
+ if (name === "pagedown") { m.sel = Math.min(n - 1, m.sel + 10); return { kind: "none" }; }
563
+ if (name === "home") { m.sel = 0; return { kind: "none" }; }
564
+ if (name === "end") { m.sel = n - 1; return { kind: "none" }; }
565
+ if (name === "enter") {
566
+ const row = vis[m.sel];
567
+ return row ? askOrPlan(m, row) : { kind: "none" };
568
+ }
569
+ if (name === "backspace") { m.query = [...m.query].slice(0, -1).join(""); m.sel = 0; return { kind: "none" }; }
570
+ const c = name === "space" ? " " : ch;
571
+ if (c && !ctrl && !alt) { m.query += c; m.sel = 0; }
572
+ return { kind: "none" };
573
+ }