rovecode 0.4.0-beta.2 → 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.
- package/README.md +67 -69
- package/THIRD_PARTY_NOTICES.md +0 -44
- package/bin/rovecode.ts +21 -0
- package/package.json +16 -37
- package/src/account/keys.ts +97 -0
- package/src/account/login.ts +158 -0
- package/src/account/provision.ts +47 -0
- package/src/account/store.ts +63 -0
- package/src/acp/server.ts +373 -0
- package/src/cli/account-cmd.ts +116 -0
- package/src/cli/connect.ts +244 -0
- package/src/cli/context-cmd.ts +199 -0
- package/src/cli/dispatch.ts +109 -0
- package/src/cli/doctor.ts +324 -0
- package/src/cli/export.ts +278 -0
- package/src/cli/help.ts +240 -0
- package/src/cli/is-tui-invocation.ts +8 -0
- package/src/cli/main.ts +599 -0
- package/src/cli/market-cmd.ts +658 -0
- package/src/cli/mcp-market-cmd.ts +299 -0
- package/src/cli/output.ts +382 -0
- package/src/cli/repl.ts +172 -0
- package/src/cli/resume.ts +32 -0
- package/src/cli/run-limits.ts +78 -0
- package/src/cli/runtime.ts +792 -0
- package/src/cli/setup.ts +187 -0
- package/src/cli/update-cmd.ts +78 -0
- package/src/cli/workflow-cmd.ts +100 -0
- package/src/coding/checkpoints.ts +270 -0
- package/src/coding/diff.ts +136 -0
- package/src/coding/files.ts +339 -0
- package/src/coding/hashline.ts +319 -0
- package/src/coding/lsp.ts +406 -0
- package/src/coding/repomap-cache.ts +99 -0
- package/src/coding/repomap-files.ts +110 -0
- package/src/coding/repomap.ts +392 -0
- package/src/core/compaction.ts +399 -0
- package/src/core/config.ts +289 -0
- package/src/core/context-report.ts +228 -0
- package/src/core/context.ts +60 -0
- package/src/core/count-remote.ts +107 -0
- package/src/core/execpolicy-rules.ts +196 -0
- package/src/core/execpolicy.ts +385 -0
- package/src/core/executor.ts +397 -0
- package/src/core/guardrails.ts +400 -0
- package/src/core/hooks.ts +398 -0
- package/src/core/images.ts +230 -0
- package/src/core/intro.ts +236 -0
- package/src/core/loop.ts +621 -0
- package/src/core/modes.ts +372 -0
- package/src/core/orchestrator.ts +207 -0
- package/src/core/reflection.ts +165 -0
- package/src/core/sandbox-config.ts +167 -0
- package/src/core/session-images.ts +73 -0
- package/src/core/session.ts +398 -0
- package/src/core/settings.ts +98 -0
- package/src/core/stuck-detector.ts +273 -0
- package/src/core/tasks.ts +374 -0
- package/src/core/token-scale.ts +108 -0
- package/src/core/tool-output-budget.ts +166 -0
- package/src/core/tools.ts +288 -0
- package/src/core/types.ts +330 -0
- package/src/core/update-check.ts +171 -0
- package/src/core/update.ts +158 -0
- package/src/core/usage.ts +204 -0
- package/src/core/validate.ts +121 -0
- package/src/core/verify-gate.ts +159 -0
- package/src/core/verify.ts +237 -0
- package/src/core/voice.ts +158 -0
- package/src/core/win-job.ts +183 -0
- package/src/design/audit.ts +797 -0
- package/src/design/direction.ts +190 -0
- package/src/design/rules.ts +157 -0
- package/src/eval/bench.ts +150 -0
- package/src/eval/gauntlet-runner.ts +218 -0
- package/src/eval/gauntlet.ts +226 -0
- package/src/eval/grader.ts +186 -0
- package/src/eval/record.ts +202 -0
- package/src/eval/redact.ts +141 -0
- package/src/eval/replay.ts +147 -0
- package/src/eval/trajectory.ts +373 -0
- package/src/index.ts +17 -0
- package/src/market/catalogs/mcp-docs.json +111 -0
- package/src/market/catalogs/plugins.json +111 -0
- package/src/market/catalogs/skills.json +478 -0
- package/src/market/clone.ts +72 -0
- package/src/market/context-cost.ts +121 -0
- package/src/market/digest.ts +106 -0
- package/src/market/index.ts +22 -0
- package/src/market/install.ts +578 -0
- package/src/market/manifest.ts +187 -0
- package/src/market/prereq.ts +145 -0
- package/src/market/registry.ts +363 -0
- package/src/market/resolve.ts +111 -0
- package/src/market/types.ts +236 -0
- package/src/market/validate.ts +227 -0
- package/src/mcp/client.ts +431 -0
- package/src/mcp/config.ts +239 -0
- package/src/mcp/local-package.ts +211 -0
- package/src/mcp/market-catalog.ts +84 -0
- package/src/mcp/market-install.ts +289 -0
- package/src/mcp/market.ts +0 -0
- package/src/mcp/tools.ts +131 -0
- package/src/mcp/trust.ts +49 -0
- package/src/memory/blocks.ts +175 -0
- package/src/memory/recall.ts +355 -0
- package/src/memory/store.ts +105 -0
- package/src/memory/tools.ts +99 -0
- package/src/plugins/cli.ts +123 -0
- package/src/plugins/discover.ts +108 -0
- package/src/plugins/index.ts +50 -0
- package/src/plugins/init.ts +140 -0
- package/src/plugins/install.ts +184 -0
- package/src/plugins/load.ts +149 -0
- package/src/plugins/manifest.ts +106 -0
- package/src/plugins/state.ts +83 -0
- package/src/providers/auth.ts +293 -0
- package/src/providers/cache.ts +223 -0
- package/src/providers/catalog-local.ts +160 -0
- package/src/providers/catalog.ts +408 -0
- package/src/providers/middleware-context.ts +86 -0
- package/src/providers/middleware.ts +373 -0
- package/src/providers/profile-glm53.ts +111 -0
- package/src/providers/profile-sonnet5-persona.ts +65 -0
- package/src/providers/profile-sonnet5-voice.ts +23 -0
- package/src/providers/profiles.ts +156 -0
- package/src/providers/provider-config.ts +311 -0
- package/src/providers/registry.ts +302 -0
- package/src/providers/response-validation.ts +80 -0
- package/src/providers/retry.ts +234 -0
- package/src/providers/router.ts +294 -0
- package/src/providers/sse.ts +26 -0
- package/src/providers/stream-errors.ts +117 -0
- package/src/providers/stream.ts +569 -0
- package/src/providers/thinking.ts +189 -0
- package/src/providers/wire-messages.ts +129 -0
- package/src/sdk/client.ts +225 -0
- package/src/sdk/index.ts +3 -0
- package/src/server/dashboard.ts +144 -0
- package/src/server/http.ts +343 -0
- package/src/server/openapi.ts +246 -0
- package/src/sextant/card-hits.ts +102 -0
- package/src/sextant/card-keys.ts +55 -0
- package/src/sextant/context-source.ts +157 -0
- package/src/sextant/draw-agents.ts +273 -0
- package/src/sextant/draw-code.ts +388 -0
- package/src/sextant/draw-context.ts +222 -0
- package/src/sextant/draw-frame.ts +164 -0
- package/src/sextant/draw-market.ts +573 -0
- package/src/sextant/draw-messages.ts +386 -0
- package/src/sextant/draw-pet.ts +230 -0
- package/src/sextant/draw-plan.ts +159 -0
- package/src/sextant/draw-tabs.ts +85 -0
- package/src/sextant/draw-util.ts +65 -0
- package/src/sextant/engine.ts +230 -0
- package/src/sextant/frame-hits.ts +25 -0
- package/src/sextant/frame.ts +101 -0
- package/src/sextant/git-status.ts +197 -0
- package/src/sextant/grid.ts +59 -0
- package/src/sextant/input.ts +119 -0
- package/src/sextant/keys.ts +488 -0
- package/src/sextant/layout.ts +86 -0
- package/src/sextant/local-commands.ts +156 -0
- package/src/sextant/market-source.ts +287 -0
- package/src/sextant/mentions.ts +141 -0
- package/src/sextant/message-hits.ts +26 -0
- package/src/sextant/model.ts +387 -0
- package/src/sextant/overlays.ts +451 -0
- package/src/sextant/panel-hits.ts +38 -0
- package/src/sextant/pet.ts +399 -0
- package/src/sextant/screen.ts +324 -0
- package/src/sextant/scroll-hits.ts +66 -0
- package/src/sextant/scrollbar.ts +82 -0
- package/src/sextant/selection.ts +123 -0
- package/src/sextant/sextant-bridge.ts +174 -0
- package/src/sextant/sextant-cards.ts +142 -0
- package/src/sextant/sextant-diff-base.ts +63 -0
- package/src/sextant/sextant-files.ts +154 -0
- package/src/sextant/sextant-frame-loop.ts +314 -0
- package/src/sextant/sextant-renderer.ts +478 -0
- package/src/sextant/sextant-repo.ts +131 -0
- package/src/sextant/theme.ts +66 -0
- package/src/sextant/tool-rows.ts +189 -0
- package/src/sextant/types.ts +473 -0
- package/src/skills/index.ts +306 -0
- package/src/skills/tools.ts +69 -0
- package/src/skills/versioned.ts +227 -0
- package/src/telemetry/otel.ts +353 -0
- package/src/telemetry/otlp.ts +68 -0
- package/src/tools/ask-user.ts +156 -0
- package/src/tools/design.ts +151 -0
- package/src/tools/evalcell.ts +338 -0
- package/src/tools/html-text.ts +139 -0
- package/src/tools/provider.ts +149 -0
- package/src/tools/task.ts +216 -0
- package/src/tools/todo.ts +320 -0
- package/src/tools/webfetch.ts +331 -0
- package/src/tui/app.ts +608 -0
- package/src/tui/attach.ts +127 -0
- package/src/tui/checkpoints-cmd.ts +70 -0
- package/src/tui/clipboard-image.ts +81 -0
- package/src/tui/commands.ts +277 -0
- package/src/tui/cost.ts +108 -0
- package/src/tui/info-cmd.ts +144 -0
- package/src/tui/mcp-cmd.ts +128 -0
- package/src/tui/modes-cmd.ts +45 -0
- package/src/tui/overlays.ts +97 -0
- package/src/tui/pi-renderer.ts +424 -0
- package/src/tui/providers-cmd.ts +366 -0
- package/src/tui/renderer.ts +101 -0
- package/src/tui/replay-marker.ts +29 -0
- package/src/tui/session-cmd.ts +146 -0
- package/src/tui/sextant-attach.ts +68 -0
- package/src/tui/sextant-io.ts +184 -0
- package/src/tui/sextant-smoke.ts +110 -0
- package/src/tui/smoke.ts +72 -0
- package/src/tui/theme.ts +59 -0
- package/src/tui/todo-label.ts +7 -0
- package/src/workflow/engine.ts +266 -0
- package/tsconfig.json +30 -0
- package/vendor/pi-tui/LICENSE +21 -0
- package/vendor/pi-tui/PATCHES.md +12 -0
- package/vendor/pi-tui/PROVENANCE.md +12 -0
- package/vendor/pi-tui/README.upstream.md +854 -0
- package/vendor/pi-tui/native/win32/prebuilds/win32-arm64/win32-console-mode.node +0 -0
- package/vendor/pi-tui/native/win32/prebuilds/win32-x64/win32-console-mode.node +0 -0
- package/vendor/pi-tui/src/alt-screen-search.ts +158 -0
- package/vendor/pi-tui/src/autocomplete.ts +827 -0
- package/vendor/pi-tui/src/components/alt-screen-flash.ts +52 -0
- package/vendor/pi-tui/src/components/box.ts +138 -0
- package/vendor/pi-tui/src/components/cancellable-loader.ts +41 -0
- package/vendor/pi-tui/src/components/editor.ts +2364 -0
- package/vendor/pi-tui/src/components/h-stack.ts +45 -0
- package/vendor/pi-tui/src/components/image.ts +128 -0
- package/vendor/pi-tui/src/components/input.ts +448 -0
- package/vendor/pi-tui/src/components/loader.ts +93 -0
- package/vendor/pi-tui/src/components/markdown.ts +1016 -0
- package/vendor/pi-tui/src/components/scroll-view.ts +217 -0
- package/vendor/pi-tui/src/components/select-list.ts +230 -0
- package/vendor/pi-tui/src/components/settings-list.ts +277 -0
- package/vendor/pi-tui/src/components/spacer.ts +29 -0
- package/vendor/pi-tui/src/components/stack.ts +155 -0
- package/vendor/pi-tui/src/components/text.ts +108 -0
- package/vendor/pi-tui/src/components/truncated-text.ts +66 -0
- package/vendor/pi-tui/src/components/v-stack.ts +34 -0
- package/vendor/pi-tui/src/editor-component.ts +75 -0
- package/vendor/pi-tui/src/fuzzy.ts +138 -0
- package/vendor/pi-tui/src/index.ts +149 -0
- package/vendor/pi-tui/src/keybindings.ts +321 -0
- package/vendor/pi-tui/src/keys.ts +1402 -0
- package/vendor/pi-tui/src/kill-ring.ts +47 -0
- package/vendor/pi-tui/src/latex.ts +1381 -0
- package/vendor/pi-tui/src/layout-node.ts +52 -0
- package/vendor/pi-tui/src/layout.ts +411 -0
- package/vendor/pi-tui/src/native-modifiers.ts +60 -0
- package/vendor/pi-tui/src/native-module-path.ts +32 -0
- package/vendor/pi-tui/src/stdin-buffer.ts +445 -0
- package/vendor/pi-tui/src/terminal-colors.ts +74 -0
- package/vendor/pi-tui/src/terminal-image.ts +701 -0
- package/vendor/pi-tui/src/terminal.ts +554 -0
- package/vendor/pi-tui/src/tui-alt-screen.ts +1379 -0
- package/vendor/pi-tui/src/tui-main-screen.ts +655 -0
- package/vendor/pi-tui/src/tui.ts +1264 -0
- package/vendor/pi-tui/src/undo-stack.ts +29 -0
- package/vendor/pi-tui/src/utils.ts +1327 -0
- package/vendor/pi-tui/src/word-navigation.ts +118 -0
- package/vendor/pi-tui/test/test-themes.ts +39 -0
- package/vendor/pi-tui/test/virtual-terminal.ts +219 -0
- package/CHANGELOG.md +0 -512
- package/bin/rovecode.js +0 -24
- package/dist/cli/app-dybnr56b.js +0 -2
- package/dist/cli/ask-user-p8hq4xgj.js +0 -2
- package/dist/cli/auth-login-ewpgw5sm.js +0 -2
- package/dist/cli/auth-m8p9grty.js +0 -2
- package/dist/cli/bench-xv3ypwev.js +0 -9
- package/dist/cli/catalog-737wb2s0.js +0 -2
- package/dist/cli/cli-arhg40m0.js +0 -2
- package/dist/cli/client-cf2pxx8q.js +0 -2
- package/dist/cli/commands-3p7e4xxs.js +0 -2
- package/dist/cli/connect-3q93d7cb.js +0 -2
- package/dist/cli/context-cmd-eqxmxhzq.js +0 -2
- package/dist/cli/context-report-hbw9zfes.js +0 -2
- package/dist/cli/count-remote-mby98cd0.js +0 -2
- package/dist/cli/design-122y0axd.js +0 -2
- package/dist/cli/dispatch-b4egzvvh.js +0 -2
- package/dist/cli/doctor-x4jkv72e.js +0 -3
- package/dist/cli/executor-ftvg6tsy.js +0 -2
- package/dist/cli/export-pdgdhkch.js +0 -2
- package/dist/cli/files-cez9a96p.js +0 -2
- package/dist/cli/gauntlet-r3xxaszc.js +0 -2
- package/dist/cli/gauntlet-runner-r515m7kk.js +0 -10
- package/dist/cli/gauntlet-wave3-bnkjk2v2.js +0 -5
- package/dist/cli/gauntlet-wave4-acs9s60q.js +0 -14
- package/dist/cli/hashline-ewg5hbe3.js +0 -2
- package/dist/cli/http-n0kehsk8.js +0 -5
- package/dist/cli/index-z5qt1s76.js +0 -2
- package/dist/cli/install-80mp63kx.js +0 -2
- package/dist/cli/loop-12twjcat.js +0 -2
- package/dist/cli/main-01pv9206.js +0 -4
- package/dist/cli/main-0jys2ccn.js +0 -3
- package/dist/cli/main-1ztz6fkj.js +0 -10
- package/dist/cli/main-23q7cmww.js +0 -9
- package/dist/cli/main-2rzbexn2.js +0 -3
- package/dist/cli/main-2wyax8k9.js +0 -9
- package/dist/cli/main-2yeveeve.js +0 -6
- package/dist/cli/main-2z3dek0b.js +0 -3
- package/dist/cli/main-2zgsknth.js +0 -3
- package/dist/cli/main-45ejth3a.js +0 -4
- package/dist/cli/main-45rn3trk.js +0 -22
- package/dist/cli/main-4p4e2w7x.js +0 -4
- package/dist/cli/main-4y0tnfpa.js +0 -16
- package/dist/cli/main-5py0rkmc.js +0 -4
- package/dist/cli/main-6dtqmbt6.js +0 -7
- package/dist/cli/main-6h9x282m.js +0 -4
- package/dist/cli/main-6vjeds42.js +0 -3
- package/dist/cli/main-78gq4bt9.js +0 -6
- package/dist/cli/main-7jd5vh3x.js +0 -4
- package/dist/cli/main-7kt6r53y.js +0 -4
- package/dist/cli/main-8c1tbazx.js +0 -58
- package/dist/cli/main-9a9rnh47.js +0 -19
- package/dist/cli/main-9ht36z12.js +0 -3
- package/dist/cli/main-a2yfvcy9.js +0 -7
- package/dist/cli/main-a3f51n0x.js +0 -5
- package/dist/cli/main-b8zq261k.js +0 -3
- package/dist/cli/main-bxtvnf6d.js +0 -13
- package/dist/cli/main-edxc3yzt.js +0 -4
- package/dist/cli/main-evgz4mp5.js +0 -21
- package/dist/cli/main-f33fc5je.js +0 -9
- package/dist/cli/main-fvnpq46y.js +0 -12
- package/dist/cli/main-gbbty4d4.js +0 -3
- package/dist/cli/main-gth53dnt.js +0 -25
- package/dist/cli/main-hqbz10aw.js +0 -9
- package/dist/cli/main-hrrvcfan.js +0 -38
- package/dist/cli/main-hzwtsb2m.js +0 -5
- package/dist/cli/main-j7ttv0sd.js +0 -34
- package/dist/cli/main-jak598k9.js +0 -5
- package/dist/cli/main-kba6zeyd.js +0 -6
- package/dist/cli/main-kwwsz6rq.js +0 -3
- package/dist/cli/main-m8vm17zq.js +0 -3
- package/dist/cli/main-mg4f96e1.js +0 -3
- package/dist/cli/main-mg9b20ac.js +0 -18
- package/dist/cli/main-mgb9ccnx.js +0 -3
- package/dist/cli/main-mjt2p7aj.js +0 -3
- package/dist/cli/main-n6qrdbmy.js +0 -3
- package/dist/cli/main-na7wse0x.js +0 -5
- package/dist/cli/main-nqveez48.js +0 -4
- package/dist/cli/main-ntqef02r.js +0 -10
- package/dist/cli/main-nvc3yjay.js +0 -136
- package/dist/cli/main-p0cfn6nr.js +0 -16
- package/dist/cli/main-qj2djy17.js +0 -19
- package/dist/cli/main-qsevpgsv.js +0 -3
- package/dist/cli/main-qvarybsp.js +0 -3
- package/dist/cli/main-rebtt91r.js +0 -5
- package/dist/cli/main-rpg7h8mb.js +0 -3
- package/dist/cli/main-rsy72qmw.js +0 -15
- package/dist/cli/main-rvetps99.js +0 -18
- package/dist/cli/main-s4bb0jav.js +0 -3
- package/dist/cli/main-s9v8k74e.js +0 -3
- package/dist/cli/main-tjvwmscs.js +0 -3
- package/dist/cli/main-tkgarpjj.js +0 -4
- package/dist/cli/main-v8y60bb2.js +0 -3
- package/dist/cli/main-vhrrq337.js +0 -3
- package/dist/cli/main-vp2dfb7s.js +0 -4
- package/dist/cli/main-vqbr22sz.js +0 -8
- package/dist/cli/main-vxnwe5xx.js +0 -18
- package/dist/cli/main-wgph00xf.js +0 -5
- package/dist/cli/main-wk2csfnj.js +0 -5
- package/dist/cli/main-wm997zjx.js +0 -3
- package/dist/cli/main-wpkyraxh.js +0 -3
- package/dist/cli/main-wqt32p5x.js +0 -4
- package/dist/cli/main-x9ct6y1a.js +0 -3
- package/dist/cli/main-xfekqh9m.js +0 -7
- package/dist/cli/main-xt9zc3n6.js +0 -7
- package/dist/cli/main-xx2z3zh5.js +0 -4
- package/dist/cli/main-y5c82rxr.js +0 -3
- package/dist/cli/main-yrjt2sqt.js +0 -14
- package/dist/cli/main-ys6zj3yr.js +0 -3
- package/dist/cli/main-ywbxshqc.js +0 -8
- package/dist/cli/main-z13755t8.js +0 -25
- package/dist/cli/main-zc7pyrbj.js +0 -4
- package/dist/cli/main.js +0 -279
- package/dist/cli/market-cmd-bm5xvn9f.js +0 -5
- package/dist/cli/mcp-login-bthtfpt7.js +0 -2
- package/dist/cli/mcp-market-cmd-mbeshfyd.js +0 -2
- package/dist/cli/notify-54v5z9dz.js +0 -2
- package/dist/cli/oauth-g5gme95c.js +0 -2
- package/dist/cli/output-satndjap.js +0 -16
- package/dist/cli/profiles-sfhpbq3m.js +0 -2
- package/dist/cli/provider-config-hv3xtdt4.js +0 -2
- package/dist/cli/provider-kwzq6g84.js +0 -2
- package/dist/cli/registry-fh0hdnyn.js +0 -2
- package/dist/cli/registry-y1y8e94r.js +0 -2
- package/dist/cli/repl-t4z03mqq.js +0 -11
- package/dist/cli/resume-fqt4chg8.js +0 -2
- package/dist/cli/run-flags-rysbag9t.js +0 -2
- package/dist/cli/runtime-j19fjbsa.js +0 -2
- package/dist/cli/sandbox-config-g4qxd7y5.js +0 -2
- package/dist/cli/server-r0b6bksk.js +0 -5
- package/dist/cli/session-arg-txmn5g4x.js +0 -2
- package/dist/cli/session-ed250d9j.js +0 -2
- package/dist/cli/sessions-cmd-adw7svfn.js +0 -7
- package/dist/cli/settings-y9rzcqx8.js +0 -2
- package/dist/cli/setup-jmbr11j0.js +0 -2
- package/dist/cli/sextant-smoke-tcth0vea.js +0 -5
- package/dist/cli/skills-cmd-zbdy99v6.js +0 -2
- package/dist/cli/smoke-1bg937kx.js +0 -8
- package/dist/cli/start-chat-p01cdks3.js +0 -12
- package/dist/cli/stream-4wmyaypz.js +0 -2
- package/dist/cli/task-eg4s093s.js +0 -2
- package/dist/cli/tasks-12v9rr9k.js +0 -2
- package/dist/cli/thinking-a5ngvqyh.js +0 -2
- package/dist/cli/todo-1wxpcecx.js +0 -2
- package/dist/cli/tools-2ftsya7w.js +0 -2
- package/dist/cli/tools-x1tj4fxm.js +0 -2
- package/dist/cli/trust-cmd-hccxehzb.js +0 -2
- package/dist/cli/update-check-ygt3vd7m.js +0 -2
- package/dist/cli/update-cmd-v23qhr8c.js +0 -2
- package/dist/cli/voice-g1gtck92.js +0 -2
- package/dist/cli/webfetch-0nnrjgb5.js +0 -2
- package/dist/cli/websearch-f0vr2p7d.js +0 -2
- package/dist/cli/workspace-9rq1w4ta.js +0 -2
- package/dist/lib/index.js +0 -62
- package/dist/lib/models-index.json +0 -1
- package/dist/lib/plugins.js +0 -6
- package/dist/lib/providers.js +0 -17
- package/dist/lib/public-api.js +0 -20
- package/dist/rovecode.exe +0 -4
- /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
|
+
}
|