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,363 @@
1
+ /** Every source, one list. `searchMarket` here merges four of them — the curated MCP shelf, the live MCP
2
+ * registry, the skills catalog and the plugins catalog — into `MarketItem`s and reports, per source,
3
+ * whether the answer came from the network, from a cache, or not at all.
4
+ *
5
+ * ON CACHING (deliberate, and worth reading before adding one): the only source that can be slow or
6
+ * unreachable is the MCP registry, and `src/mcp/market.ts` already caches it under
7
+ * ~/.rovecode/cache/mcp-market.json with a TTL and an offline switch. A second cache over the merged
8
+ * result would be a second source of staleness that can disagree with the first, so this module keeps
9
+ * none: it delegates the remote half to mcp/market.ts and reads the other three straight from disk.
10
+ * Skills and plugins live in JSON files inside the repo, so they are offline by construction. That means
11
+ * `market search` answers with something useful on a plane, which is the property that was actually asked
12
+ * for. `sources` reports "live" or "cache" honestly per source so a UI can draw the difference.
13
+ *
14
+ * CATALOG DATA IS UNTRUSTED — including the JSON files, which arrive through a git pull like any other
15
+ * file. Every field is re-typed here against the caps in types.ts; a field that is too long is truncated,
16
+ * a list item past the cap is dropped, and a row that cannot be made valid is skipped with a note. One
17
+ * bad row never blanks a catalog, and nothing read here is ever executed. */
18
+
19
+ import { existsSync, readFileSync } from "node:fs";
20
+ import { join } from "node:path";
21
+ import { searchMarket as searchMcp, marketInfo as mcpInfo, type MarketDeps as McpDeps, type MarketEntry } from "../mcp/market.ts";
22
+ import { LIMITS, type InstallSpec, type ItemDocs, type MarketEnv, type MarketItem, type MarketKind, type MarketResult, type SourceStatus } from "./types.ts";
23
+
24
+ /** where the skill and plugin catalogs live in the repo (written by the catalog owner, read here) */
25
+ export const CATALOG_DIR = new URL("./catalogs/", import.meta.url).pathname.replace(/^\/([A-Za-z]:)/, "$1");
26
+ export const CATALOG_FILES: Record<"skill" | "plugin", string> = {
27
+ skill: join(CATALOG_DIR, "skills.json"),
28
+ plugin: join(CATALOG_DIR, "plugins.json"),
29
+ };
30
+ /** MCP documentation arrives as a SIDECAR rather than in the shelf itself: `src/mcp/market-catalog.ts`
31
+ * stays hand-written because a publisher, a command and an env var are human decisions, while a README is
32
+ * generated data. Keyed by the curated entry's `key`. Absent file = no docs, which is not an error. */
33
+ export const MCP_DOCS_FILE = join(CATALOG_DIR, "mcp-docs.json");
34
+
35
+ export interface RegistryDeps {
36
+ /** MCP registry access (fetch/offline/home/now) — passed through to mcp/market.ts unchanged */
37
+ mcp?: McpDeps;
38
+ /** skip every network call: curated + catalogs + whatever is cached */
39
+ offline?: boolean;
40
+ /** override the catalog file paths (tests write fixtures) */
41
+ catalogFiles?: Partial<Record<"skill" | "plugin", string>>;
42
+ /** read a catalog file (tests inject; default readFileSync) */
43
+ readFile?: (path: string) => string | null;
44
+ /** override the MCP documentation sidecar's path (tests write fixtures) */
45
+ mcpDocsFile?: string;
46
+ /** carry `docs.body`. Off for search/list, where the bodies are ~200 KB the caller never reads; the
47
+ * metadata comes either way. `findItem` turns it on. */
48
+ withDocs?: boolean;
49
+ }
50
+
51
+ // ---------------------------------------------------------------- untrusted-data re-typing
52
+
53
+ const isRecord = (v: unknown): v is Record<string, unknown> => typeof v === "object" && v !== null && !Array.isArray(v);
54
+ const ID = /^[a-z0-9][a-z0-9._-]{0,63}$/;
55
+ const ENV_NAME = /^[A-Za-z_][A-Za-z0-9_]*$/;
56
+
57
+ /** a string, capped; anything else (number, object, missing) is undefined */
58
+ function str(v: unknown, max: number = LIMITS.str): string | undefined {
59
+ if (typeof v !== "string") return undefined;
60
+ const s = v.trim();
61
+ return s.length === 0 ? undefined : s.slice(0, max);
62
+ }
63
+
64
+ /** a finite non-negative integer within `max`, or undefined — a catalog's numbers are untrusted too:
65
+ * "12", -1, NaN, 1e30 and {} all have to come back as "no number", not as a value that poisons a UI. */
66
+ function num(v: unknown, max: number): number | undefined {
67
+ if (typeof v !== "number" || !Number.isFinite(v) || v < 0) return undefined;
68
+ const n = Math.floor(v);
69
+ return n > max ? undefined : n;
70
+ }
71
+
72
+ function strList(v: unknown, max: number = LIMITS.list, each: number = LIMITS.str): string[] {
73
+ if (!Array.isArray(v)) return [];
74
+ const out: string[] = [];
75
+ for (const x of v.slice(0, max)) { const s = str(x, each); if (s !== undefined) out.push(s); }
76
+ return out;
77
+ }
78
+
79
+ /** an https URL, or undefined — never a javascript:/file: URL, never a bare word */
80
+ function url(v: unknown): string | undefined {
81
+ const s = str(v);
82
+ if (s === undefined) return undefined;
83
+ try { const u = new URL(s); return u.protocol === "https:" || u.protocol === "http:" ? s : undefined; } catch { return undefined; }
84
+ }
85
+
86
+ function envList(v: unknown): MarketEnv[] {
87
+ if (!Array.isArray(v)) return [];
88
+ const out: MarketEnv[] = [];
89
+ for (const raw of v.slice(0, LIMITS.env)) {
90
+ if (!isRecord(raw)) continue;
91
+ const name = str(raw.name, 64);
92
+ if (name === undefined || !ENV_NAME.test(name)) continue;
93
+ const e: MarketEnv = { name, required: raw.required === true, secret: raw.secret === true };
94
+ const d = str(raw.description, LIMITS.desc); if (d !== undefined) e.description = d;
95
+ const def = str(raw.default); if (def !== undefined) e.default = def;
96
+ out.push(e);
97
+ }
98
+ return out;
99
+ }
100
+
101
+ /** One definition of "this path leaves the folder", used by BOTH arms. They had drifted — one split on
102
+ * `[/]` and the other on `[\/]`, so `..\..\evil` passed the plugin check and failed the skill one.
103
+ * Two layers disagreeing about the same rule is how a hole opens later, even when today something
104
+ * downstream happens to catch it. */
105
+ function escapes(sub: string): boolean {
106
+ const parts = sub.split(/[\/]/);
107
+ return parts.includes("..") || sub.startsWith("/") || sub.startsWith("\\") || /^[A-Za-z]:/.test(sub);
108
+ }
109
+
110
+ /** the install arm for a catalog row, or null when the row describes nothing installable */
111
+ function catalogInstall(kind: "skill" | "plugin", raw: Record<string, unknown>, notes: string[], id: string): InstallSpec | null {
112
+ const spec = isRecord(raw.install) ? raw.install : raw;
113
+ if (kind === "plugin") {
114
+ const source = str(spec.source, 512);
115
+ if (source === undefined) { notes.push(`plugins catalog: "${id}" has no install source — skipped`); return null; }
116
+ // a git source must look like one; a local path is accepted as written and checked at install time
117
+ const git = spec.git === true || /^(?:https?:\/\/|git@|ssh:\/\/|git:\/\/)|\.git$/i.test(source);
118
+ if (git && url(source) === undefined && !/^(?:git@|ssh:\/\/|git:\/\/)/.test(source)) {
119
+ notes.push(`plugins catalog: "${id}" install source is not a usable URL — skipped`); return null;
120
+ }
121
+ const sub = str(spec.subfolder, 200);
122
+ // a subfolder that climbs out of the clone is a path-traversal attempt, not a typo (same rule as a skill's)
123
+ if (sub !== undefined && escapes(sub)) { notes.push(`plugins catalog: "${id}" subfolder escapes the clone (${sub}) — skipped`); return null; }
124
+ return { kind: "plugin", source, git, ...(sub !== undefined ? { subfolder: sub } : {}) };
125
+ }
126
+ const files: { path: string; text: string }[] = [];
127
+ if (Array.isArray(spec.files)) {
128
+ for (const f of spec.files.slice(0, LIMITS.list)) {
129
+ if (!isRecord(f)) continue;
130
+ const path = str(f.path, 200), text = typeof f.text === "string" ? f.text : undefined;
131
+ // a catalog file is written under the skill's own folder: no absolute path, no escape upwards
132
+ if (path === undefined || text === undefined) continue;
133
+ if (path.startsWith("/") || path.startsWith("\\") || /^[A-Za-z]:/.test(path) || path.split(/[\\/]/).includes("..")) {
134
+ notes.push(`skills catalog: "${id}" wants to write outside its folder (${path}) — skipped`); return null;
135
+ }
136
+ if (text.length > LIMITS.body) { notes.push(`skills catalog: "${id}" file ${path} is over the size cap — skipped`); return null; }
137
+ files.push({ path, text });
138
+ }
139
+ }
140
+ const gitSpec = isRecord(spec.source) ? spec.source : undefined;
141
+ const git = gitSpec ? url(gitSpec.git) ?? (typeof gitSpec.git === "string" && /^(?:git@|ssh:\/\/)/.test(gitSpec.git) ? str(gitSpec.git, 512) : undefined) : undefined;
142
+ if (git !== undefined) {
143
+ const sub = str(gitSpec!.subfolder, 200);
144
+ // a subfolder that climbs out of the clone is a path-traversal attempt, not a typo
145
+ if (sub !== undefined && (sub.split(/[\\/]/).includes("..") || sub.startsWith("/"))) {
146
+ notes.push(`skills catalog: "${id}" subfolder escapes the clone (${sub}) — skipped`); return null;
147
+ }
148
+ return { kind: "skill", source: { git, ...(sub !== undefined ? { subfolder: sub } : {}) }, ...(files.length ? { files } : {}) };
149
+ }
150
+ if (files.length === 0) { notes.push(`skills catalog: "${id}" has neither a git source nor files — skipped`); return null; }
151
+ return { kind: "skill", files };
152
+ }
153
+
154
+ /** Truncate to a BYTE budget, not a character count. `LIMITS.docs` is 24 KB and `.slice()` counts UTF-16
155
+ * units, so a body of astral characters — emoji, CJK extensions, mathematical symbols — could be 24576
156
+ * units and roughly four times that many bytes, sailing straight through the cap it was supposed to hit.
157
+ * The generator measures in bytes (scripts/lib/docs.mjs), so this second line of defence has to as well.
158
+ * Cuts on a character boundary: never half a surrogate pair. */
159
+ export function capBytes(text: string, maxBytes: number): string {
160
+ if (Buffer.byteLength(text, "utf8") <= maxBytes) return text;
161
+ let lo = 0, hi = text.length;
162
+ while (lo < hi) {
163
+ const mid = Math.ceil((lo + hi) / 2);
164
+ if (Buffer.byteLength(text.slice(0, mid), "utf8") <= maxBytes) lo = mid; else hi = mid - 1;
165
+ }
166
+ // a lone leading surrogate at the cut would be an unpaired code unit: step back one
167
+ const cut = text.slice(0, lo);
168
+ const last = cut.charCodeAt(cut.length - 1);
169
+ return last >= 0xd800 && last <= 0xdbff ? cut.slice(0, -1) : cut;
170
+ }
171
+
172
+ /** The item's own documentation, or undefined. A BROKEN doc drops the doc, never the row — the same rule
173
+ * as "a doc we could not reach is not an error": a shelf entry whose README moved is still installable.
174
+ * `withBody: false` keeps the ~200 KB of markdown out of the search path; the metadata still comes, so a
175
+ * row can carry its badge without its body. */
176
+ function docsOf(raw: unknown, notes: string[], id: string, withBody: boolean): ItemDocs | undefined {
177
+ if (!isRecord(raw)) return undefined;
178
+ const source = url(raw.source);
179
+ if (source === undefined) { notes.push(`${id}: documentation source is not an http(s) URL — docs dropped, the row stays`); return undefined; }
180
+ if (raw.format !== "markdown") { notes.push(`${id}: documentation format ${JSON.stringify(raw.format)} is not "markdown" — docs dropped, the row stays`); return undefined; }
181
+ // NOT str(): that trims, and a document is a body rather than a label — trailing newlines and leading
182
+ // indentation are part of markdown. Only the cap and the "is there anything here at all" check apply.
183
+ const body = typeof raw.body === "string" && raw.body.trim().length > 0 ? capBytes(raw.body, LIMITS.docs) : undefined;
184
+ if (body === undefined) { notes.push(`${id}: documentation body is empty — docs dropped, the row stays`); return undefined; }
185
+ // `bytes` is the size upstream, before truncation, so it is normally LARGER than the body we carry.
186
+ // A number that is missing or junk is replaced by what we can actually see rather than trusted.
187
+ const declared = num(raw.bytes, 1024 * 1024 * 1024);
188
+ const carried = Buffer.byteLength(body, "utf8");
189
+ const bytes = declared === undefined || declared < carried ? carried : declared;
190
+ const truncated = raw.truncated === true || bytes > carried;
191
+ return { source, format: "markdown", bytes, truncated, ...(withBody ? { body } : {}) };
192
+ }
193
+
194
+ /** one catalog row → a MarketItem, or null (with a note) when it cannot be trusted into one */
195
+ export function itemFromCatalog(kind: "skill" | "plugin", raw: unknown, notes: string[], withDocs = true): MarketItem | null {
196
+ if (!isRecord(raw)) return null;
197
+ const id = str(raw.id ?? raw.name, 64);
198
+ if (id === undefined || !ID.test(id)) { notes.push(`${kind}s catalog: a row has no usable id — skipped`); return null; }
199
+ const description = str(raw.description, LIMITS.desc);
200
+ if (description === undefined) { notes.push(`${kind}s catalog: "${id}" has no description — skipped`); return null; }
201
+ const install = catalogInstall(kind, raw, notes, id);
202
+ if (install === null) return null;
203
+ const item: MarketItem = {
204
+ id, kind, title: str(raw.title, LIMITS.str) ?? id,
205
+ publisher: str(raw.publisher, LIMITS.str) ?? "unknown",
206
+ description, source: "catalog", tags: strList(raw.tags, LIMITS.list, 40).map((t) => t.toLowerCase()),
207
+ env: envList(raw.env), install,
208
+ };
209
+ const version = str(raw.version, 64); if (version !== undefined) item.version = version;
210
+ const repository = url(raw.repository); if (repository !== undefined) item.repository = repository;
211
+ const homepage = url(raw.homepage); if (homepage !== undefined) item.homepage = homepage;
212
+ const status = str(raw.status, 64); if (status !== undefined) item.status = status;
213
+ const license = str(raw.license, 120); if (license !== undefined) item.license = license;
214
+ const planNote = strList(raw.planNote, 8, LIMITS.desc); if (planNote.length) item.planNote = planNote;
215
+ // the generator has always written this array; until now only the sentence built from it was read
216
+ const contributes = strList(raw.contributes, 12, 32); if (contributes.length) item.contributes = contributes;
217
+ const docs = docsOf(raw.docs, notes, id, withDocs); if (docs) item.docs = docs;
218
+ return item;
219
+ }
220
+
221
+ /** an MCP entry (curated or registry) → a MarketItem, wrapping the entry untouched */
222
+ export function itemFromMcp(entry: MarketEntry): MarketItem {
223
+ const stdio = entry.installs.find((i) => i.kind === "stdio");
224
+ const item: MarketItem = {
225
+ id: entry.key, kind: "mcp", title: entry.title ?? entry.key,
226
+ publisher: entry.publisher ?? "unknown", description: entry.description,
227
+ source: entry.source === "curated" ? "curated" : "registry",
228
+ tags: [], env: stdio?.kind === "stdio" ? stdio.env.map((e) => ({ ...e })) : [],
229
+ install: { kind: "mcp", entry },
230
+ };
231
+ if (entry.version !== undefined) item.version = entry.version;
232
+ if (entry.repository !== undefined) item.repository = entry.repository;
233
+ if (entry.homepage !== undefined) item.homepage = entry.homepage;
234
+ if (entry.status !== undefined) item.status = entry.status;
235
+ return item;
236
+ }
237
+
238
+ // ---------------------------------------------------------------- reading the catalogs
239
+
240
+ function readFileOr(path: string, deps: RegistryDeps): string | null {
241
+ const read = deps.readFile ?? ((p: string) => (existsSync(p) ? readFileSync(p, "utf8") : null));
242
+ try { return read(path); } catch { return null; }
243
+ }
244
+
245
+ /** the MCP documentation sidecar, keyed by curated key. A missing or broken file is silently no docs. */
246
+ function mcpDocs(deps: RegistryDeps, notes: string[], withBody: boolean): Record<string, ItemDocs> {
247
+ const text = readFileOr(deps.mcpDocsFile ?? MCP_DOCS_FILE, deps);
248
+ if (text === null || text.length > LIMITS.body) return {};
249
+ let json: unknown;
250
+ try { json = JSON.parse(text); } catch { notes.push("mcp documentation sidecar is not valid JSON — MCP rows keep their docs off"); return {}; }
251
+ const rows = isRecord(json) && isRecord(json.docs) ? json.docs : isRecord(json) && !Array.isArray(json) ? json : null;
252
+ if (rows === null) return {};
253
+ const out: Record<string, ItemDocs> = {};
254
+ for (const [key, raw] of Object.entries(rows).slice(0, LIMITS.items)) {
255
+ const d = docsOf(raw, notes, `mcp:${key}`, withBody);
256
+ if (d) out[key] = d;
257
+ }
258
+ return out;
259
+ }
260
+
261
+ function readCatalog(kind: "skill" | "plugin", deps: RegistryDeps): { items: MarketItem[]; status: SourceStatus; notes: string[] } {
262
+ const path = deps.catalogFiles?.[kind] ?? CATALOG_FILES[kind];
263
+ const notes: string[] = [];
264
+ const read = deps.readFile ?? ((p: string) => (existsSync(p) ? readFileSync(p, "utf8") : null));
265
+ let text: string | null;
266
+ try { text = read(path); } catch (e) { return { items: [], status: { ok: false, reason: `${kind}s catalog unreadable: ${e instanceof Error ? e.message : String(e)}` }, notes }; }
267
+ const withDocs = deps.withDocs === true;
268
+ // a catalog that is not there yet is not an error: rovecode ships without one until it is written
269
+ if (text === null) return { items: [], status: { ok: true, from: "curated" }, notes };
270
+ if (text.length > LIMITS.body) return { items: [], status: { ok: false, reason: `${kind}s catalog is over ${LIMITS.body} bytes` }, notes };
271
+ let json: unknown;
272
+ try { json = JSON.parse(text); } catch { return { items: [], status: { ok: false, reason: `${kind}s catalog is not valid JSON` }, notes }; }
273
+ const rows = isRecord(json) && Array.isArray(json.items) ? json.items : Array.isArray(json) ? json : null;
274
+ if (rows === null) return { items: [], status: { ok: false, reason: `${kind}s catalog has no "items" array` }, notes };
275
+ const items: MarketItem[] = [];
276
+ const seen = new Set<string>();
277
+ for (const raw of rows.slice(0, LIMITS.items)) {
278
+ const item = itemFromCatalog(kind, raw, notes, withDocs);
279
+ if (item === null) continue;
280
+ if (seen.has(item.id)) { notes.push(`${kind}s catalog: "${item.id}" appears twice — first kept`); continue; }
281
+ seen.add(item.id);
282
+ items.push(item);
283
+ }
284
+ return { items, status: { ok: true, from: "curated" }, notes };
285
+ }
286
+
287
+ /** substring match over the fields a person would type: id, title, description, tags */
288
+ function matches(item: MarketItem, words: string[]): boolean {
289
+ if (words.length === 0) return true;
290
+ const hay = `${item.id} ${item.title} ${item.description} ${item.tags.join(" ")}`.toLowerCase();
291
+ return words.every((w) => hay.includes(w));
292
+ }
293
+
294
+ /** Search every source. Never throws: a source that fails contributes no rows and one `sources` entry. */
295
+ export async function searchMarket(query: string, deps: RegistryDeps = {}): Promise<MarketResult> {
296
+ const words = query.trim().toLowerCase().split(/\s+/).filter(Boolean);
297
+ const sources: Record<string, SourceStatus> = {};
298
+ const notes: string[] = [];
299
+ const items: MarketItem[] = [];
300
+
301
+ for (const kind of ["skill", "plugin"] as const) {
302
+ const r = readCatalog(kind, deps);
303
+ sources[`${kind}s`] = r.status;
304
+ notes.push(...r.notes);
305
+ for (const item of r.items) if (matches(item, words)) items.push(item);
306
+ }
307
+
308
+ const mcpDeps: McpDeps = { ...deps.mcp, ...(deps.offline === true ? { offline: true } : {}) };
309
+ try {
310
+ const r = await searchMcp(query, mcpDeps);
311
+ const docs = mcpDocs(deps, notes, deps.withDocs === true);
312
+ for (const e of r.entries) {
313
+ const item = itemFromMcp(e);
314
+ const d = docs[e.key];
315
+ if (d) item.docs = d;
316
+ items.push(item);
317
+ }
318
+ const curatedOnly = r.entries.every((e) => e.source === "curated");
319
+ sources["mcp:curated"] = { ok: true, from: "curated" };
320
+ // mcp/market.ts asks the registry only for a query of two characters or more
321
+ sources["mcp:registry"] = query.trim().length < 2
322
+ ? { ok: true, from: "skipped", why: "a search term of two characters or more asks the registry; the curated shelf answers an empty one" }
323
+ : mcpDeps.offline === true ? { ok: true, from: "skipped", why: "offline: the network was not tried" }
324
+ : r.fromCache ? { ok: true, from: "cache", ageMs: 0 }
325
+ : { ok: true, from: "live" };
326
+ void curatedOnly;
327
+ // the MCP module's own notes are already human sentences ("the registry did not answer …")
328
+ notes.push(...r.notes);
329
+ if (r.notes.some((n) => /registry/i.test(n) && /(fail|not answer|error|timed out)/i.test(n))) {
330
+ sources["mcp:registry"] = { ok: false, reason: r.notes.find((n) => /registry/i.test(n))! };
331
+ }
332
+ } catch (e) {
333
+ sources["mcp:curated"] = { ok: false, reason: e instanceof Error ? e.message : String(e) };
334
+ sources["mcp:registry"] = { ok: false, reason: e instanceof Error ? e.message : String(e) };
335
+ }
336
+
337
+ return { items, sources, notes };
338
+ }
339
+
340
+ /** One item by kind + id, for `market info` and `market install`. Consults the catalogs first (offline,
341
+ * exact), then the MCP module (which knows how to fetch one registry name). */
342
+ export async function findItem(kind: MarketKind, id: string, deps: RegistryDeps = {}): Promise<{ item?: MarketItem; notes: string[] }> {
343
+ const notes: string[] = [];
344
+ if (kind === "skill" || kind === "plugin") {
345
+ const r = readCatalog(kind, { ...deps, withDocs: true }); // one item: the body is the point
346
+ notes.push(...r.notes);
347
+ const item = r.items.find((i) => i.id === id);
348
+ return { ...(item ? { item } : {}), notes };
349
+ }
350
+ const mcpDeps: McpDeps = { ...deps.mcp, ...(deps.offline === true ? { offline: true } : {}) };
351
+ const r = await mcpInfo(id, mcpDeps);
352
+ notes.push(...r.notes);
353
+ if (!r.entry) return { notes };
354
+ const item = itemFromMcp(r.entry);
355
+ const d = mcpDocs(deps, notes, true)[r.entry.key];
356
+ if (d) item.docs = d;
357
+ return { item, notes };
358
+ }
359
+
360
+ /** Every item from every source, unfiltered — what `market list --all` and the site page render. */
361
+ export async function allItems(deps: RegistryDeps = {}): Promise<MarketResult> {
362
+ return searchMarket("", deps);
363
+ }
@@ -0,0 +1,111 @@
1
+ /** What `market install <what>` means. One argument, five shapes, and the rule that an ambiguous name is
2
+ * never guessed:
3
+ * filesystem a bare id — looked up in every kind; two kinds owning the name is a question,
4
+ * not a coin toss (the caller prints the candidates and exits 2)
5
+ * mcp:filesystem a qualified id — exact, no search
6
+ * https://…/repo.git a git URL — a plugin by default (a plugin is a folder with a manifest, which
7
+ * is what a repo usually is); `skill:<url>` says otherwise
8
+ * @scope/server-github an npm package — an MCP server launched with npx, the way the registry's own
9
+ * npm entries run
10
+ * ./some/folder a local folder — a plugin, validated at install time by plugins/install.ts
11
+ * Nothing here touches the network except through `findItem`/`searchMarket`, and nothing here writes. */
12
+
13
+ import { parseQualifiedId, qualify, type InstallSpec, type MarketItem, type MarketKind } from "./types.ts";
14
+ import { findItem, searchMarket, type RegistryDeps } from "./registry.ts";
15
+ import { defaultServerName } from "../mcp/market-install.ts";
16
+
17
+ export type Resolution =
18
+ /** exactly one item: install it */
19
+ | { ok: true; item: MarketItem }
20
+ /** the name exists in more than one kind — the human picks, we do not */
21
+ | { ok: false; ambiguous: MarketItem[]; error: string }
22
+ | { ok: false; error: string; ambiguous?: undefined };
23
+
24
+ const GIT_URL = /^(?:https?:\/\/|git@|ssh:\/\/|git:\/\/)|\.git$/i;
25
+ /** npm package name, scoped or not: @scope/name or name */
26
+ const NPM_PKG = /^(?:@[a-z0-9][a-z0-9._-]*\/)?[a-z0-9][a-z0-9._-]*$/i;
27
+ const LOCAL_PATH = /^(?:\.{1,2}[\\/]|[A-Za-z]:[\\/]|[\\/])/;
28
+
29
+ const looksLikeGit = (s: string): boolean => GIT_URL.test(s);
30
+ const looksLikeLocalPath = (s: string): boolean => LOCAL_PATH.test(s);
31
+ /** an npm package only when it carries a scope or a dash — a bare word is an id first, always */
32
+ const looksLikeNpm = (s: string): boolean => NPM_PKG.test(s) && (s.startsWith("@") || s.includes("-"));
33
+
34
+ /** a synthetic item for something the human named directly (a URL, a package, a folder). It is not in any
35
+ * catalog, so it says so: publisher "unknown (you named it)" is the honest line above an approval card. */
36
+ function directItem(kind: MarketKind, id: string, install: InstallSpec, description: string): MarketItem {
37
+ return { id, kind, title: id, publisher: "unknown (you named this source)", description, source: "catalog", tags: [], env: [], install };
38
+ }
39
+
40
+ export function resolveDirect(text: string, kind?: MarketKind): MarketItem | null {
41
+ const s = text.trim();
42
+ // The requested kind is honoured FIRST, every time. Ordering this by shape instead let
43
+ // `resolveDirect("./my-skill", "skill")` fall into the local-folder branch and come back as a PLUGIN:
44
+ // the human asks for a skill (text, nothing runs) and is handed code that rovecode loads into its own
45
+ // process — and, in project scope, records as trusted. A kind that cannot serve the source says no.
46
+ if (looksLikeGit(s)) {
47
+ if (kind === "mcp") return null; // an MCP server is a package or a URL, not a repo to clone
48
+ return kind === "skill"
49
+ ? directItem("skill", skillIdFromUrl(s), { kind: "skill", source: { git: s } }, `a skill cloned from ${s}`)
50
+ : directItem("plugin", skillIdFromUrl(s), { kind: "plugin", source: s, git: true }, `a plugin cloned from ${s}`);
51
+ }
52
+ if (looksLikeLocalPath(s)) {
53
+ // only a plugin can be installed from a local folder: a skill's install spec carries a git source or
54
+ // literal files, and an MCP server is launched, not copied. Saying no is the honest answer.
55
+ if (kind !== undefined && kind !== "plugin") return null;
56
+ return directItem("plugin", s.split(/[\\/]/).filter(Boolean).pop() ?? "plugin", { kind: "plugin", source: s, git: false }, `a plugin copied from ${s}`);
57
+ }
58
+ if ((kind === undefined || kind === "mcp") && looksLikeNpm(s)) {
59
+ // The id MUST be the name the server is written under, or nothing lines up afterwards: `market list`
60
+ // would report it missing and `market remove <id>` would either refuse or delete a DIFFERENT curated
61
+ // server that happens to own the shortened name. defaultServerName() is that name.
62
+ const entry = {
63
+ key: s, title: s, description: `an MCP server run with npx ${s}`, source: "registry" as const,
64
+ publisher: s.startsWith("@") ? s.slice(1).split("/")[0]! : "unknown",
65
+ installs: [{ kind: "stdio" as const, runtime: "npx" as const, command: "npx", args: ["-y", s], env: [], pending: [] }],
66
+ };
67
+ return directItem("mcp", defaultServerName(s), { kind: "mcp", entry }, `an MCP server run with npx ${s}`);
68
+ }
69
+ return null;
70
+ }
71
+
72
+ function skillIdFromUrl(u: string): string {
73
+ const tail = u.replace(/\.git$/i, "").split(/[\\/]/).filter(Boolean).pop() ?? "item";
74
+ return tail.toLowerCase().replace(/[^a-z0-9._-]+/g, "-").replace(/^[^a-z0-9]+/, "").slice(0, 64) || "item";
75
+ }
76
+
77
+ /** Resolve one `market install` argument. Catalog names win over direct sources: an id that a catalog owns
78
+ * is never re-interpreted as a package of the same name. */
79
+ export async function resolveTarget(text: string, deps: RegistryDeps = {}): Promise<Resolution> {
80
+ const parsed = parseQualifiedId(text);
81
+ if (parsed === null) return { ok: false, error: `"${text.slice(0, 60)}" is not something rovecode can install` };
82
+ const { kind, id } = parsed;
83
+
84
+ if (kind !== undefined) {
85
+ const found = await findItem(kind, id, deps);
86
+ if (found.item) return { ok: true, item: found.item };
87
+ const direct = resolveDirect(id, kind);
88
+ if (direct) return { ok: true, item: direct };
89
+ return { ok: false, error: `no ${kind} called "${id}"${found.notes.length ? ` — ${found.notes[0]}` : ""}` };
90
+ }
91
+
92
+ // a bare word: ask every kind for an EXACT id, then decide
93
+ const hits: MarketItem[] = [];
94
+ for (const k of ["mcp", "skill", "plugin"] as const) {
95
+ const r = await findItem(k, id, deps);
96
+ if (r.item && r.item.id === id) hits.push(r.item);
97
+ }
98
+ if (hits.length === 1) return { ok: true, item: hits[0]! };
99
+ if (hits.length > 1) {
100
+ return { ok: false, ambiguous: hits, error: `"${id}" exists in ${hits.length} kinds — say which: ${hits.map(qualify).join(" · ")}` };
101
+ }
102
+
103
+ const direct = resolveDirect(id);
104
+ if (direct) return { ok: true, item: direct };
105
+
106
+ // nothing exact: offer what a search would have found, so the human is not left with "no"
107
+ const near = await searchMarket(id, deps);
108
+ const suggestions = near.items.slice(0, 5);
109
+ if (suggestions.length === 0) return { ok: false, error: `nothing in the market matches "${id}"` };
110
+ return { ok: false, ambiguous: suggestions, error: `no item is called "${id}" — did you mean: ${suggestions.map(qualify).join(" · ")}` };
111
+ }