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.
- package/README.md +57 -72
- package/THIRD_PARTY_NOTICES.md +0 -44
- package/bin/rovecode.ts +21 -0
- package/package.json +16 -38
- 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 -527
- package/bin/rovecode.js +0 -24
- package/dist/cli/app-j6gn14w3.js +0 -2
- package/dist/cli/ask-user-cwstt8fz.js +0 -2
- package/dist/cli/auth-login-9bbp9915.js +0 -2
- package/dist/cli/auth-m8p9grty.js +0 -2
- package/dist/cli/bench-16zqdms5.js +0 -9
- package/dist/cli/catalog-1xchffa4.js +0 -2
- package/dist/cli/cli-1n1zb64f.js +0 -2
- package/dist/cli/client-2t9gjkck.js +0 -2
- package/dist/cli/commands-exafvm2b.js +0 -2
- package/dist/cli/connect-6zde0kn3.js +0 -2
- package/dist/cli/context-cmd-5t43wgqt.js +0 -2
- package/dist/cli/context-report-kt01pw8y.js +0 -2
- package/dist/cli/count-remote-ap7x3vh6.js +0 -2
- package/dist/cli/design-ne5zszyh.js +0 -2
- package/dist/cli/dispatch-2r5myxye.js +0 -2
- package/dist/cli/doctor-ws4fh4tn.js +0 -3
- package/dist/cli/executor-bdrjn634.js +0 -2
- package/dist/cli/export-1mxb9g5p.js +0 -2
- package/dist/cli/files-g104xghh.js +0 -2
- package/dist/cli/gauntlet-07xrjpj7.js +0 -2
- package/dist/cli/gauntlet-runner-xvy64436.js +0 -10
- package/dist/cli/gauntlet-wave3-jm91yt5w.js +0 -5
- package/dist/cli/gauntlet-wave4-r13py7p1.js +0 -14
- package/dist/cli/hashline-znvrat11.js +0 -2
- package/dist/cli/http-xafw6fsh.js +0 -143
- package/dist/cli/index-1sgjm25y.js +0 -2
- package/dist/cli/init-g2m0tn4m.js +0 -51
- package/dist/cli/install-avaqjjqq.js +0 -2
- package/dist/cli/loop-mmpfft01.js +0 -2
- package/dist/cli/main-0904f6ps.js +0 -5
- package/dist/cli/main-0ab9fc26.js +0 -9
- package/dist/cli/main-0jys2ccn.js +0 -3
- package/dist/cli/main-0mtcdbs7.js +0 -3
- package/dist/cli/main-0z1w2zsg.js +0 -3
- package/dist/cli/main-1dchs7xv.js +0 -18
- package/dist/cli/main-1ereejm1.js +0 -3
- package/dist/cli/main-1k1kw6b5.js +0 -3
- package/dist/cli/main-27y4sm2k.js +0 -38
- package/dist/cli/main-2wwjex5j.js +0 -58
- package/dist/cli/main-2yeveeve.js +0 -6
- package/dist/cli/main-2yfck9b5.js +0 -3
- package/dist/cli/main-2zmzgkwh.js +0 -3
- package/dist/cli/main-351pz3z7.js +0 -7
- package/dist/cli/main-3gjqfh7a.js +0 -6
- package/dist/cli/main-3nf3kgve.js +0 -3
- package/dist/cli/main-3pjrb2hd.js +0 -3
- package/dist/cli/main-3rxcvgna.js +0 -19
- package/dist/cli/main-4b3jgy66.js +0 -19
- package/dist/cli/main-4wndhjdc.js +0 -7
- package/dist/cli/main-4xcmvxnk.js +0 -3
- package/dist/cli/main-5tbz0wbz.js +0 -4
- package/dist/cli/main-5ywnwthm.js +0 -3
- package/dist/cli/main-6b62vkz0.js +0 -14
- package/dist/cli/main-6dnk69vp.js +0 -3
- package/dist/cli/main-6genrmhs.js +0 -136
- package/dist/cli/main-73g7eff4.js +0 -15
- package/dist/cli/main-7c5thhjd.js +0 -5
- package/dist/cli/main-7rn6bqje.js +0 -3
- package/dist/cli/main-80haw7qk.js +0 -4
- package/dist/cli/main-875s60s2.js +0 -4
- package/dist/cli/main-8kjxbpw4.js +0 -8
- package/dist/cli/main-90ds1z4e.js +0 -10
- package/dist/cli/main-9etavkew.js +0 -3
- package/dist/cli/main-a9njrkk1.js +0 -3
- package/dist/cli/main-aecrjq2d.js +0 -12
- package/dist/cli/main-ck9asesq.js +0 -9
- package/dist/cli/main-cta9racd.js +0 -4
- package/dist/cli/main-ddv7j2ag.js +0 -3
- package/dist/cli/main-dfreez27.js +0 -10
- package/dist/cli/main-f7rw7des.js +0 -3
- package/dist/cli/main-ggcn7rd7.js +0 -5
- package/dist/cli/main-gzkmycnv.js +0 -3
- package/dist/cli/main-hq51jg8v.js +0 -18
- package/dist/cli/main-jft389w9.js +0 -8
- package/dist/cli/main-k1eqkg83.js +0 -3
- package/dist/cli/main-k2y8a2aw.js +0 -9
- package/dist/cli/main-kcpbykxz.js +0 -4
- package/dist/cli/main-kd488vje.js +0 -22
- package/dist/cli/main-kh32yvgk.js +0 -5
- package/dist/cli/main-kqxnqjnv.js +0 -25
- package/dist/cli/main-kyn0xnsg.js +0 -3
- package/dist/cli/main-m1kk6fp5.js +0 -21
- package/dist/cli/main-mv40pcr2.js +0 -4
- package/dist/cli/main-n0t3973w.js +0 -3
- package/dist/cli/main-nqveez48.js +0 -4
- package/dist/cli/main-pknhvrmj.js +0 -3
- package/dist/cli/main-pn1w7a7j.js +0 -3
- package/dist/cli/main-prxxs70n.js +0 -4
- package/dist/cli/main-q3vsesf9.js +0 -3
- package/dist/cli/main-qsevpgsv.js +0 -3
- package/dist/cli/main-rdgdw24b.js +0 -25
- package/dist/cli/main-rfth4tbm.js +0 -16
- package/dist/cli/main-rg0wn0xf.js +0 -5
- package/dist/cli/main-sdmxhtv8.js +0 -4
- package/dist/cli/main-skbp13js.js +0 -18
- package/dist/cli/main-t4xnd213.js +0 -7
- package/dist/cli/main-vqak588n.js +0 -4
- package/dist/cli/main-w2n1303f.js +0 -9
- package/dist/cli/main-wbrdspr2.js +0 -5
- package/dist/cli/main-wsrg79c1.js +0 -7
- package/dist/cli/main-x4r0fne4.js +0 -5
- package/dist/cli/main-xea2f3tn.js +0 -6
- package/dist/cli/main-xg704a3c.js +0 -3
- package/dist/cli/main-xvnrabfp.js +0 -16
- package/dist/cli/main-xy53xf0r.js +0 -4
- package/dist/cli/main-y1fqy60y.js +0 -3
- package/dist/cli/main-yn8cd281.js +0 -34
- package/dist/cli/main-yr0ksc0h.js +0 -4
- package/dist/cli/main-z2ex2vyf.js +0 -4
- package/dist/cli/main-z3aayzvq.js +0 -3
- package/dist/cli/main-zaqh35jg.js +0 -3
- package/dist/cli/main-zc2e8e46.js +0 -4
- package/dist/cli/main-zzrfw6cf.js +0 -13
- package/dist/cli/main.js +0 -280
- package/dist/cli/market-cmd-e14kmx9n.js +0 -5
- package/dist/cli/mcp-login-wq7ktdek.js +0 -2
- package/dist/cli/mcp-market-cmd-9mg3jecy.js +0 -2
- package/dist/cli/notify-b7qc0cjb.js +0 -2
- package/dist/cli/oauth-z8whcgfx.js +0 -2
- package/dist/cli/output-b3ewj3ps.js +0 -16
- package/dist/cli/profiles-6mr5he5e.js +0 -2
- package/dist/cli/provider-config-g7j42q8x.js +0 -2
- package/dist/cli/provider-jr1y8vvm.js +0 -2
- package/dist/cli/registry-s8yk86g0.js +0 -2
- package/dist/cli/registry-t6p8d4mn.js +0 -2
- package/dist/cli/repl-bajwe1mh.js +0 -11
- package/dist/cli/resume-rwn9nz7y.js +0 -2
- package/dist/cli/run-flags-nah7ndpt.js +0 -2
- package/dist/cli/runtime-n7gafzhb.js +0 -2
- package/dist/cli/sandbox-config-emdy18x4.js +0 -2
- package/dist/cli/server-b0nvs2bn.js +0 -5
- package/dist/cli/session-arg-y75wd4kj.js +0 -2
- package/dist/cli/session-j62evmjq.js +0 -2
- package/dist/cli/sessions-cmd-tsnwz0ns.js +0 -7
- package/dist/cli/settings-df10wfez.js +0 -2
- package/dist/cli/setup-jzvv72fg.js +0 -2
- package/dist/cli/sextant-smoke-37m81ke6.js +0 -5
- package/dist/cli/skills-cmd-gjxnxnhx.js +0 -2
- package/dist/cli/smoke-p7748apt.js +0 -8
- package/dist/cli/start-chat-s4st3mm0.js +0 -12
- package/dist/cli/stream-gmeyewds.js +0 -2
- package/dist/cli/task-gh0kkp3n.js +0 -2
- package/dist/cli/tasks-z1kfpe8e.js +0 -2
- package/dist/cli/thinking-0eqkrz6t.js +0 -2
- package/dist/cli/todo-5brcrt9m.js +0 -2
- package/dist/cli/tools-7pzm0vj9.js +0 -2
- package/dist/cli/tools-s635p6s8.js +0 -2
- package/dist/cli/trust-cmd-cjav8zgm.js +0 -2
- package/dist/cli/update-check-pt31bm2f.js +0 -2
- package/dist/cli/update-cmd-tk131s9t.js +0 -2
- package/dist/cli/voice-56nabd8d.js +0 -2
- package/dist/cli/webfetch-xd8q596m.js +0 -2
- package/dist/cli/websearch-5hkf98k1.js +0 -2
- package/dist/cli/workflow-cmd-cy3cvzjp.js +0 -4
- package/dist/cli/workspace-q10g5z3e.js +0 -2
- package/dist/lib/index.js +0 -62
- package/dist/lib/models-index.json +0 -1
- package/dist/lib/plugins.js +0 -55
- package/dist/lib/providers.js +0 -17
- package/dist/lib/public-api.js +0 -20
- package/dist/lib/sdk.js +0 -360
- /package/{dist/cli → src/providers}/models-index.json +0 -0
|
@@ -0,0 +1,388 @@
|
|
|
1
|
+
/** Sextant surface (port #42) — the CODE panel: title per mode, the right-edge rail (▤ ± $ ∷ + the
|
|
2
|
+
* minimap), file view with syntax coloring and the reading highlight, run output with PASS/FAIL
|
|
3
|
+
* chips, search results, unified/split diff. Ported from the user's own sextant v0.4.0 prototype,
|
|
4
|
+
* src/app.js:164-181 (tokStyle/putCode) and :333-558 (drawCode … drawSplitSide); the mock file
|
|
5
|
+
* fixture, edit replay and click hit-boxes are gone — every field is read from SextantState and
|
|
6
|
+
* the painter is pure (no clock, no timers, no state mutation; `now` is a parameter). The
|
|
7
|
+
* prototype's scroll write-backs became `codeScrollTop` so the renderer can persist the view. */
|
|
8
|
+
|
|
9
|
+
import type { DiffHunk, Rect, ScreenLike, Seg, SextantState, Style, Theme } from "./types.ts";
|
|
10
|
+
import { ATTR } from "./types.ts";
|
|
11
|
+
import { hardWrap, inner, panel, spinner, splitLines, splitLinesCached, st } from "./draw-util.ts";
|
|
12
|
+
import { EMPTY } from "../core/voice.ts";
|
|
13
|
+
import { moreMarker } from "../coding/diff.ts";
|
|
14
|
+
import { scrollbar } from "./scrollbar.ts";
|
|
15
|
+
|
|
16
|
+
/** a syntax token: text + either a prototype class name (kw str num dec cm ty fn key … plain,
|
|
17
|
+
* colored by `tokStyle`) or a ready Style (undefined = plain) */
|
|
18
|
+
export type Token = readonly [text: string, cls: string | Style | undefined];
|
|
19
|
+
export type TokenizeFn = (line: string, lang: string) => readonly Token[];
|
|
20
|
+
/** optional engine seams: the syntax tokenizer (#40's engine); default = uncolored lines */
|
|
21
|
+
export interface CodeDeps { tokenize?: TokenizeFn }
|
|
22
|
+
export type Painter = (scr: ScreenLike, rect: Rect, s: SextantState, theme: Theme, now: number) => void;
|
|
23
|
+
|
|
24
|
+
export const RAIL_W = 3;
|
|
25
|
+
const MODES: readonly (readonly [string, string])[] = [["code", "▤"], ["diff", "±"], ["run", "$"], ["agents", "∷"]];
|
|
26
|
+
const plainTokens: TokenizeFn = (line) => [[line, "plain"]];
|
|
27
|
+
|
|
28
|
+
let agentsPainter: Painter | null = null;
|
|
29
|
+
/** #46 plugs the crew board in here; until then `∷` shows the crew summary from s.crew */
|
|
30
|
+
export function setAgentsPainter(fn: Painter | null): void { agentsPainter = fn; }
|
|
31
|
+
|
|
32
|
+
/** language tag from the path (drives the tokenizer); the prototype knew ts/json/md/text */
|
|
33
|
+
export function langOf(path: string): string {
|
|
34
|
+
if (/\.(?:[cm]?[jt]sx?)$/.test(path)) return "ts";
|
|
35
|
+
if (path.endsWith(".json")) return "json";
|
|
36
|
+
if (path.endsWith(".md")) return "md";
|
|
37
|
+
return "text";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/** token class → style (app.js:164-173); `bg` rides along so tinted rows keep their background */
|
|
41
|
+
export function tokStyle(cls: string, theme: Theme, bg = -1): Style {
|
|
42
|
+
switch (cls) {
|
|
43
|
+
case "kw": return st(theme.fg, bg, ATTR.BOLD);
|
|
44
|
+
case "str": case "num": case "dec": return st(theme.str, bg);
|
|
45
|
+
case "cm": return st(theme.muted, bg, ATTR.ITALIC);
|
|
46
|
+
case "ty": return st(theme.ty, bg);
|
|
47
|
+
case "fn": return st(theme.fg, bg);
|
|
48
|
+
default: return st(theme.fg2, bg);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/** write one code line colored token by token, clipped to maxW; returns the x after the last cell */
|
|
53
|
+
function putCode(scr: ScreenLike, x: number, y: number, text: string, lang: string, bg: number, maxW: number, theme: Theme, tokenize: TokenizeFn, fgOverride?: number): number {
|
|
54
|
+
if (maxW <= 0) return x;
|
|
55
|
+
if (fgOverride !== undefined) return scr.put(x, y, text, st(fgOverride, bg), maxW);
|
|
56
|
+
let cx = x;
|
|
57
|
+
const end = x + maxW;
|
|
58
|
+
for (const [tok, cls] of tokenize(text, lang)) {
|
|
59
|
+
if (cx >= end) break;
|
|
60
|
+
const style = typeof cls === "string" ? tokStyle(cls, theme, bg) : cls ? { ...cls, bg: cls.bg >= 0 ? cls.bg : bg } : st(theme.fg2, bg);
|
|
61
|
+
cx = scr.put(cx, y, tok, style, end - cx);
|
|
62
|
+
}
|
|
63
|
+
return cx;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/** the activity is reading/editing the file on screen (the reducer switches the panel to it) */
|
|
67
|
+
const readingThis = (s: SextantState): boolean => s.running && (s.activity.state === "READING" || s.activity.state === "EDITING");
|
|
68
|
+
|
|
69
|
+
/** the file named in the title/body: the diff's file in diff mode, else the code file */
|
|
70
|
+
const shownFile = (s: SextantState): string | null => (s.code.mode === "diff" && s.code.diff ? s.code.diff.file : s.code.file);
|
|
71
|
+
|
|
72
|
+
/** panel title + right-aligned extras per mode (app.js:337-351) */
|
|
73
|
+
export function codeTitle(s: SextantState, theme: Theme, now: number): { title: string; extra: Seg[] } {
|
|
74
|
+
const c = s.code;
|
|
75
|
+
if (c.mode === "run") {
|
|
76
|
+
if (!c.run) return { title: "run", extra: [] };
|
|
77
|
+
// the command lives in the body (drawRun's pinned `$ cmd` header), not here: the title clips it
|
|
78
|
+
// to one ellipsized segment while the body can budget it in rows, and one copy is enough
|
|
79
|
+
const tail: Seg = c.run.status === "running" ? [spinner(now), st(theme.accent)] : c.run.status === "ok" ? ["exit 0", st(theme.muted)] : ["failed", st(theme.err)];
|
|
80
|
+
return { title: "run", extra: [tail] };
|
|
81
|
+
}
|
|
82
|
+
if (c.mode === "search") {
|
|
83
|
+
if (!c.search) return { title: "search", extra: [] };
|
|
84
|
+
return { title: "search", extra: [[c.search.query, st(theme.str)], [` ${c.search.lines.length} results`, st(theme.muted)]] };
|
|
85
|
+
}
|
|
86
|
+
if (c.mode === "agents") {
|
|
87
|
+
const live = s.crew.filter((t) => t.status === "queued" || t.status === "running").length;
|
|
88
|
+
const done = s.crew.filter((t) => t.status === "done").length;
|
|
89
|
+
const failed = s.crew.filter((t) => t.status === "failed").length;
|
|
90
|
+
if (!s.crew.length) return { title: "agents", extra: [["crew", st(theme.muted)]] };
|
|
91
|
+
const extra: Seg[] = [[`${live} running`, st(live ? theme.accent : theme.muted)], [` ${done} done`, st(theme.muted)]];
|
|
92
|
+
if (failed) extra.push([` ${failed} failed`, st(theme.err)]);
|
|
93
|
+
return { title: "agents", extra };
|
|
94
|
+
}
|
|
95
|
+
const file = shownFile(s);
|
|
96
|
+
const title = c.mode === "diff" ? "diff" : "code";
|
|
97
|
+
if (!file) return { title, extra: [] };
|
|
98
|
+
const extra: Seg[] = [[file, st(theme.fg2)]];
|
|
99
|
+
if (c.diff && c.diff.file === file) {
|
|
100
|
+
if (c.diff.add || c.diff.del) extra.push([" ", st(-1)], [c.diff.add ? `+${c.diff.add}` : "", st(theme.ok)], [c.diff.del ? `${c.diff.add ? " " : ""}−${c.diff.del}` : "", st(theme.err)]);
|
|
101
|
+
if (c.diff.base === "head") extra.push([" vs HEAD", st(theme.muted)]); // cumulative hunks, not the one edit that landed
|
|
102
|
+
}
|
|
103
|
+
if (readingThis(s) && c.mode === "code") extra.push([` ${s.activity.state.toLowerCase()}`, st(theme.accent)]);
|
|
104
|
+
return { title, extra };
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/** new-file line numbers touched by the hunks: "added" (pure insert) or "changed" (replaced lines) */
|
|
108
|
+
export function hunkMarks(hunks: readonly DiffHunk[]): Map<number, "added" | "changed"> {
|
|
109
|
+
const marks = new Map<number, "added" | "changed">();
|
|
110
|
+
for (const h of hunks) {
|
|
111
|
+
let nl = h.newStart, i = 0;
|
|
112
|
+
while (i < h.rows.length) {
|
|
113
|
+
if (h.rows[i]!.op === " ") { nl++; i++; continue; }
|
|
114
|
+
const added: number[] = [];
|
|
115
|
+
let hasDel = false;
|
|
116
|
+
while (i < h.rows.length && h.rows[i]!.op !== " ") { if (h.rows[i]!.op === "-") hasDel = true; else added.push(nl++); i++; }
|
|
117
|
+
for (const n of added) marks.set(n, hasDel ? "changed" : "added");
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
return marks;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
const marksFor = (s: SextantState): Map<number, "added" | "changed"> =>
|
|
124
|
+
s.code.diff && s.code.diff.file === s.code.file ? hunkMarks(s.code.diff.hunks) : new Map();
|
|
125
|
+
|
|
126
|
+
/** the rows the current mode would draw (for scroll clamping); split diff depends on the body width */
|
|
127
|
+
export function rowCount(s: SextantState, bodyW: number): number {
|
|
128
|
+
const c = s.code;
|
|
129
|
+
if (c.mode === "code") return c.content === null ? 0 : splitLinesCached(c.content).length;
|
|
130
|
+
if (c.mode === "diff") return c.diff ? diffRows(c.diff.hunks, bodyW > 110).length : 0;
|
|
131
|
+
if (c.mode === "search") return c.search ? c.search.lines.length : 0;
|
|
132
|
+
return 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/** Effective top row of the body for the panel at `rect` — s.code.scroll clamped to the content,
|
|
136
|
+
* or the row that centers the highlight while the run is reading/editing the file (app.js:407-408).
|
|
137
|
+
* The renderer writes this back into s.code.scroll after a frame so the view persists (the
|
|
138
|
+
* prototype mutated S.code.scroll in place; a pure painter cannot). run/agents follow their tail. */
|
|
139
|
+
export function codeScrollTop(rect: Rect, s: SextantState): number {
|
|
140
|
+
const B = inner(rect);
|
|
141
|
+
const h = B.h, bodyW = B.w - RAIL_W - 2;
|
|
142
|
+
const n = rowCount(s, bodyW);
|
|
143
|
+
const max = Math.max(0, n - h);
|
|
144
|
+
if (s.code.mode === "code" && s.code.hl && readingThis(s)) return Math.min(max, Math.max(0, s.code.hl[0] - 1 - Math.floor(h / 2)));
|
|
145
|
+
return Math.max(0, Math.min(s.code.scroll, max));
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/** The rail: a 3-wide box with the four mode glyphs (active = accent + bold) and, for a file, the
|
|
149
|
+
* minimap — file lines folded into rail rows, added = ok, changed = warn, the visible region as a
|
|
150
|
+
* thick block ▌ and the rest as ▏ (app.js:367-397). */
|
|
151
|
+
function drawRail(scr: ScreenLike, R: Rect, s: SextantState, theme: Theme, viewTop: number, viewH: number): void {
|
|
152
|
+
scr.box(R.x, R.y, R.w, R.h, st(theme.frameDim));
|
|
153
|
+
MODES.forEach(([m, g], i) => {
|
|
154
|
+
if (R.y + 1 + i >= R.y + R.h - 1) return; // a rail shorter than the glyph column shows what fits
|
|
155
|
+
const active = s.code.mode === m || (m === "code" && s.code.mode === "search");
|
|
156
|
+
scr.put(R.x + 1, R.y + 1 + i, g, st(active ? theme.accent : theme.dim, -1, active ? ATTR.BOLD : 0));
|
|
157
|
+
});
|
|
158
|
+
const top = R.y + 6, h = R.h - 7;
|
|
159
|
+
if (h < 3 || (s.code.mode !== "code" && s.code.mode !== "diff") || s.code.content === null || !s.code.file) return;
|
|
160
|
+
const n = Math.max(1, splitLinesCached(s.code.content).length);
|
|
161
|
+
const marks = marksFor(s);
|
|
162
|
+
const rows = Math.min(h, n);
|
|
163
|
+
for (let i = 0; i < rows; i++) {
|
|
164
|
+
const l0 = Math.floor((i / rows) * n), l1 = Math.max(l0 + 1, Math.floor(((i + 1) / rows) * n));
|
|
165
|
+
let col = theme.rule;
|
|
166
|
+
for (let k = l0; k < l1; k++) {
|
|
167
|
+
const m = marks.get(k + 1);
|
|
168
|
+
if (m === "added") col = theme.ok; else if (m === "changed" && col !== theme.ok) col = theme.warn;
|
|
169
|
+
}
|
|
170
|
+
const inView = l1 > viewTop && l0 < viewTop + viewH;
|
|
171
|
+
const marked = col !== theme.rule;
|
|
172
|
+
scr.put(R.x + 1, top + i, inView ? "▌" : "▏", st(marked ? col : inView ? theme.rule2 : theme.rule));
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/** line numbers, change marks (▎), colored code, the highlight band with its "◂ reading" tag (app.js:398-427) */
|
|
177
|
+
function drawFileView(scr: ScreenLike, B: Rect, s: SextantState, theme: Theme, top: number, tokenize: TokenizeFn): void {
|
|
178
|
+
const file = s.code.file;
|
|
179
|
+
if (!file) { scr.put(B.x, B.y, EMPTY.code, st(theme.muted), B.w); return; }
|
|
180
|
+
if (s.code.content === null) { scr.clip(B.x, B.y, `cannot read ${file}`, st(theme.muted), B.w); return; }
|
|
181
|
+
const lines = splitLinesCached(s.code.content);
|
|
182
|
+
if (!lines.length) { scr.put(B.x, B.y, "(empty)", st(theme.dim), B.w); return; }
|
|
183
|
+
const lang = langOf(file), marks = marksFor(s), hl = s.code.hl;
|
|
184
|
+
const tag = readingThis(s) ? `◂ ${s.activity.state.toLowerCase()}` : null;
|
|
185
|
+
const lw = Math.max(3, String(lines.length).length);
|
|
186
|
+
for (let i = 0; i < B.h; i++) {
|
|
187
|
+
const idx = top + i, ln = lines[idx];
|
|
188
|
+
if (ln === undefined) break;
|
|
189
|
+
const y = B.y + i;
|
|
190
|
+
const inHl = hl !== null && idx + 1 >= hl[0] && idx + 1 <= hl[1];
|
|
191
|
+
const mark = marks.get(idx + 1);
|
|
192
|
+
const bg = inHl ? theme.hlBg : -1;
|
|
193
|
+
if (inHl) scr.tint(B.x, y, B.w, 1, bg);
|
|
194
|
+
scr.put(B.x, y, String(idx + 1).padStart(lw), st(inHl ? theme.accent : theme.dim, bg));
|
|
195
|
+
scr.put(B.x + lw + 1, y, mark ? "▎" : " ", st(mark === "changed" ? theme.warn : theme.ok, bg));
|
|
196
|
+
putCode(scr, B.x + lw + 3, y, ln, lang, bg, B.w - lw - 3, theme, tokenize);
|
|
197
|
+
if (tag && inHl && hl !== null && idx + 1 === hl[0] && B.w > 24) scr.put(B.x + B.w - tag.length, y, tag, st(theme.accent, bg));
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/** ` PASS ` / ` FAIL ` inverse chip; returns the x after it */
|
|
202
|
+
function chip(scr: ScreenLike, x: number, y: number, pass: boolean, theme: Theme): number {
|
|
203
|
+
return scr.put(x, y, pass ? " PASS " : " FAIL ", st(theme.bg, pass ? theme.ok : theme.err, ATTR.BOLD));
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/** Rows the `$ cmd` header may take: two of text and the marker. At the 100-column floor the body
|
|
207
|
+
* is ~50 cells, so two rows show the program and its leading arguments — what identifies a run —
|
|
208
|
+
* and a 900-char pipeline (the screenshot that motivated this) folds into `… +N more lines`
|
|
209
|
+
* instead of a dozen bold rows that push the output under them. */
|
|
210
|
+
const CMD_ROWS = 3;
|
|
211
|
+
|
|
212
|
+
/** the header rows: the wrapped command, clipped to `max` the way the approval card clips its
|
|
213
|
+
* detail (moreMarker on the last budgeted row — the one clip convention on the surface) */
|
|
214
|
+
export function runCmdRows(cmd: string, w: number, max: number): string[] {
|
|
215
|
+
if (max <= 0) return [];
|
|
216
|
+
const all = hardWrap("$ " + cmd, w);
|
|
217
|
+
return all.length > max ? [...all.slice(0, max - 1), moreMarker(all.length - max + 1)] : all;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
/** The run view is a terminal tail with a pinned prompt: the `$ cmd` header stays at the top (the
|
|
221
|
+
* title no longer names the command, so the header must survive the output scrolling past it),
|
|
222
|
+
* then the output verbatim (real newlines stay rows; long rows hard-wrap like a terminal — never
|
|
223
|
+
* one-lined with ⏎) and the tail: the spinner while running or the PASS/FAIL chip from run.status.
|
|
224
|
+
* Output and tail sit against the BOTTOM of the panel — the newest line and the verdict are what
|
|
225
|
+
* the eye looks for, so short output leaves its slack above, not a dead zone below. Lines that
|
|
226
|
+
* start with PASS/FAIL get the chip too (app.js:428-449). */
|
|
227
|
+
function drawRun(scr: ScreenLike, B: Rect, s: SextantState, theme: Theme, now: number): void {
|
|
228
|
+
const run = s.code.run;
|
|
229
|
+
if (!run) { scr.put(B.x, B.y, "nothing has run yet", st(theme.muted), B.w); return; }
|
|
230
|
+
const cmd = runCmdRows(run.cmd, B.w, B.h >= 4 ? Math.min(CMD_ROWS, B.h - 2) : 0); // below 4 rows the output and the verdict win
|
|
231
|
+
cmd.forEach((t, i) => scr.put(B.x, B.y + i, t, t.startsWith("…") ? st(theme.dim) : st(theme.fg, -1, ATTR.BOLD), B.w));
|
|
232
|
+
type Row = { kind: "out" | "tail"; text: string; first: boolean };
|
|
233
|
+
const rows: Row[] = [];
|
|
234
|
+
for (const line of run.lines) for (const [i, t] of hardWrap(line, B.w).entries()) rows.push({ kind: "out", text: t, first: i === 0 });
|
|
235
|
+
rows.push({ kind: "tail", text: "", first: true });
|
|
236
|
+
const outH = B.h - cmd.length;
|
|
237
|
+
const start = Math.max(0, rows.length - outH);
|
|
238
|
+
const y0 = B.y + B.h - Math.min(rows.length, outH);
|
|
239
|
+
for (let i = 0; start + i < rows.length; i++) {
|
|
240
|
+
const r = rows[start + i]!;
|
|
241
|
+
const y = y0 + i;
|
|
242
|
+
if (r.kind === "tail") {
|
|
243
|
+
if (run.status === "running") scr.text(B.x, y, [[spinner(now), st(theme.accent)], [" running", st(theme.muted)]], B.w);
|
|
244
|
+
else { const cx = chip(scr, B.x, y, run.status === "ok", theme); scr.put(cx, y, run.status === "ok" ? " exit 0" : " non-zero exit", st(theme.muted), B.x + B.w - cx); }
|
|
245
|
+
continue;
|
|
246
|
+
}
|
|
247
|
+
const m = r.first ? /^\s*(PASS|FAIL)\b\s?(.*)$/.exec(r.text) : null;
|
|
248
|
+
if (m) { const cx = chip(scr, B.x, y, m[1] === "PASS", theme); scr.put(cx + 1, y, m[2] ?? "", st(theme.fg), B.x + B.w - cx - 1); continue; }
|
|
249
|
+
scr.put(B.x, y, r.text, st(theme.fg2), B.w);
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/** glob/grep result lines: `path:line:` locations muted + the match colored; plain rows get a `·` (app.js:450-464) */
|
|
254
|
+
function drawSearch(scr: ScreenLike, B: Rect, s: SextantState, theme: Theme, top: number, tokenize: TokenizeFn): void {
|
|
255
|
+
const v = s.code.search;
|
|
256
|
+
if (!v) { scr.put(B.x, B.y, "no search yet", st(theme.muted), B.w); return; }
|
|
257
|
+
const locW = Math.min(26, Math.floor(B.w * 0.4));
|
|
258
|
+
let y = B.y;
|
|
259
|
+
for (let i = top; i < v.lines.length && y < B.y + B.h; i++, y++) {
|
|
260
|
+
const line = v.lines[i]!;
|
|
261
|
+
const m = /^(\S+?:\d+(?::\d+)?):\s?(.*)$/.exec(line);
|
|
262
|
+
if (m) { scr.clip(B.x, y, m[1]!, st(theme.muted), locW); putCode(scr, B.x + locW + 1, y, (m[2] ?? "").trimStart(), "ts", -1, B.w - locW - 1, theme, tokenize); }
|
|
263
|
+
else scr.text(B.x, y, [["· ", st(theme.dim)], [line, st(theme.fg2)]], B.w);
|
|
264
|
+
}
|
|
265
|
+
const summary = v.lines.length ? `${v.lines.length} result${v.lines.length === 1 ? "" : "s"}` : "no results";
|
|
266
|
+
if (y < B.y + B.h) scr.put(B.x, Math.min(y + (y > B.y ? 1 : 0), B.y + B.h - 1), summary, st(theme.muted), B.w);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
// ------------------------------------------------------------------ diff
|
|
270
|
+
|
|
271
|
+
interface DiffLine { op: " " | "+" | "-"; an: number | null; bn: number | null; text: string }
|
|
272
|
+
type DiffRow = { t: "hunk"; text: string } | ({ t: "line" } & DiffLine) | { t: "pair"; l: DiffLine | null; r: DiffLine | null };
|
|
273
|
+
|
|
274
|
+
/** unified rows, or side-by-side pairs when `split` (app.js:490-506): equal lines pair with
|
|
275
|
+
* themselves, a run of deletes pairs index-wise with the run of inserts that follows it */
|
|
276
|
+
export function diffRows(hunks: readonly DiffHunk[], split: boolean): DiffRow[] {
|
|
277
|
+
const rows: DiffRow[] = [];
|
|
278
|
+
for (const h of hunks) {
|
|
279
|
+
let a = h.oldStart, b = h.newStart;
|
|
280
|
+
const lines: DiffLine[] = h.rows.map((r) => ({ op: r.op, text: r.text, an: r.op === "+" ? null : a++, bn: r.op === "-" ? null : b++ }));
|
|
281
|
+
const ac = lines.filter((l) => l.op !== "+").length, bc = lines.filter((l) => l.op !== "-").length;
|
|
282
|
+
rows.push({ t: "hunk", text: `@@ -${h.oldStart},${ac} +${h.newStart},${bc} @@` });
|
|
283
|
+
if (!split) { for (const l of lines) rows.push({ t: "line", ...l }); continue; }
|
|
284
|
+
let i = 0;
|
|
285
|
+
while (i < lines.length) {
|
|
286
|
+
if (lines[i]!.op === " ") { rows.push({ t: "pair", l: lines[i]!, r: lines[i]! }); i++; continue; }
|
|
287
|
+
const dels: DiffLine[] = [], inss: DiffLine[] = [];
|
|
288
|
+
while (i < lines.length && lines[i]!.op === "-") dels.push(lines[i++]!);
|
|
289
|
+
while (i < lines.length && lines[i]!.op === "+") inss.push(lines[i++]!);
|
|
290
|
+
for (let k = 0; k < Math.max(dels.length, inss.length); k++) rows.push({ t: "pair", l: dels[k] ?? null, r: inss[k] ?? null });
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
return rows;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
function drawSplitSide(scr: ScreenLike, x: number, y: number, w: number, o: DiffLine | null, side: "del" | "add", lang: string, theme: Theme, tokenize: TokenizeFn): void {
|
|
297
|
+
if (!o || w < 8) return;
|
|
298
|
+
const change = o.op !== " ";
|
|
299
|
+
const bg = !change ? -1 : side === "add" ? theme.addBg : theme.delBg;
|
|
300
|
+
if (bg >= 0) scr.tint(x, y, w, 1, bg);
|
|
301
|
+
scr.put(x, y, String((side === "del" ? o.an : o.bn) ?? "").padStart(4), st(theme.dim, bg));
|
|
302
|
+
scr.put(x + 5, y, change ? (side === "add" ? "+" : "−") : " ", st(side === "add" ? theme.ok : theme.err, bg));
|
|
303
|
+
putCode(scr, x + 7, y, o.text, lang, bg, w - 7, theme, tokenize, side === "del" && change ? theme.muted : undefined);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
function drawDiffRow(scr: ScreenLike, x: number, y: number, w: number, r: DiffRow, lang: string, theme: Theme, tokenize: TokenizeFn): void {
|
|
307
|
+
if (r.t === "hunk") { scr.put(x, y, r.text, st(theme.dim), w); return; }
|
|
308
|
+
if (r.t === "pair") {
|
|
309
|
+
const half = Math.floor((w - 1) / 2);
|
|
310
|
+
drawSplitSide(scr, x, y, half, r.l, "del", lang, theme, tokenize);
|
|
311
|
+
drawSplitSide(scr, x + half + 1, y, w - half - 1, r.r, "add", lang, theme, tokenize);
|
|
312
|
+
return;
|
|
313
|
+
}
|
|
314
|
+
const isIns = r.op === "+", isDel = r.op === "-";
|
|
315
|
+
const bg = isIns ? theme.addBg : isDel ? theme.delBg : -1;
|
|
316
|
+
if (bg >= 0) scr.tint(x, y, w, 1, bg);
|
|
317
|
+
scr.put(x, y, String(r.an ?? "").padStart(4) + " " + String(r.bn ?? "").padStart(4), st(theme.dim, bg), w);
|
|
318
|
+
scr.put(x + 10, y, isIns ? "+" : isDel ? "−" : " ", st(isIns ? theme.ok : theme.err, bg), Math.max(0, w - 10));
|
|
319
|
+
putCode(scr, x + 12, y, r.text, lang, bg, w - 12, theme, tokenize, isDel ? theme.muted : undefined);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/** hunks of s.code.diff, unified (± backgrounds) or split when the body is wider than 110 cells (app.js:531-539) */
|
|
323
|
+
function drawDiff(scr: ScreenLike, B: Rect, s: SextantState, theme: Theme, top: number, tokenize: TokenizeFn): void {
|
|
324
|
+
const d = s.code.diff;
|
|
325
|
+
if (!d || !d.hunks.length) { scr.put(B.x, B.y, "no changes in this file", st(theme.muted), B.w); return; }
|
|
326
|
+
const rows = diffRows(d.hunks, B.w > 110), lang = langOf(d.file);
|
|
327
|
+
for (let i = 0; i < B.h; i++) { const r = rows[top + i]; if (!r) break; drawDiffRow(scr, B.x, B.y + i, B.w, r, lang, theme, tokenize); }
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
/** Parse unified-diff text (previewDiff output, `git diff`) into DiffHunks. File headers, the
|
|
331
|
+
* `\ No newline` note and the `… +N more lines` clip marker are skipped; garbage yields []. */
|
|
332
|
+
export function hunksFromUnified(text: string): DiffHunk[] {
|
|
333
|
+
const hunks: DiffHunk[] = [];
|
|
334
|
+
let cur: DiffHunk | null = null;
|
|
335
|
+
for (const line of text.split(/\r?\n/)) {
|
|
336
|
+
const m = /^@@ -(\d+)(?:,\d+)? \+(\d+)(?:,\d+)? @@/.exec(line);
|
|
337
|
+
if (m) { cur = { rows: [], oldStart: Number(m[1]), newStart: Number(m[2]) }; hunks.push(cur); continue; }
|
|
338
|
+
if (!cur) continue;
|
|
339
|
+
const op = line[0];
|
|
340
|
+
if (op === "+" || op === "-" || op === " ") cur.rows.push({ op, text: line.slice(1) });
|
|
341
|
+
}
|
|
342
|
+
return hunks;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
// ------------------------------------------------------------------ agents (until #46 registers its painter)
|
|
346
|
+
|
|
347
|
+
function drawCrewSummary(scr: ScreenLike, B: Rect, s: SextantState, theme: Theme, now: number): void {
|
|
348
|
+
const n = s.crew.length;
|
|
349
|
+
scr.put(B.x, B.y, `crew: ${n} task${n === 1 ? "" : "s"}`, st(n ? theme.fg2 : theme.muted), B.w);
|
|
350
|
+
s.crew.forEach((t, i) => {
|
|
351
|
+
const y = B.y + 2 + i;
|
|
352
|
+
if (y >= B.y + B.h) return;
|
|
353
|
+
const g = t.status === "running" ? spinner(now) : t.status === "queued" ? "◇" : t.status === "done" ? "◆" : t.status === "failed" ? "×" : "−";
|
|
354
|
+
const gc = t.status === "running" ? theme.accent : t.status === "done" ? theme.ok : t.status === "failed" ? theme.err : theme.dim;
|
|
355
|
+
const statusW = t.status.length;
|
|
356
|
+
scr.text(B.x, y, [[g + " ", st(gc)], [t.label, st(theme.fg2)]], Math.max(0, B.w - statusW - 2));
|
|
357
|
+
scr.put(B.x + B.w - statusW, y, t.status, st(t.status === "failed" ? theme.err : t.status === "done" ? theme.ok : theme.muted));
|
|
358
|
+
});
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
// ------------------------------------------------------------------ the panel
|
|
362
|
+
|
|
363
|
+
/** Paint the code panel into `rect`: frame + title, the mode body, the rail. Pure over its inputs. */
|
|
364
|
+
export function drawCode(scr: ScreenLike, rect: Rect, s: SextantState, theme: Theme, now: number, deps: CodeDeps = {}): void {
|
|
365
|
+
if (rect.w < 4 || rect.h < 3) return;
|
|
366
|
+
const { title, extra } = codeTitle(s, theme, now);
|
|
367
|
+
const B = panel(scr, rect, title, s.focus === "code", extra, theme);
|
|
368
|
+
const rail: Rect = { x: B.x + B.w - RAIL_W, y: B.y, w: RAIL_W, h: B.h };
|
|
369
|
+
const body: Rect = { x: B.x, y: B.y, w: B.w - RAIL_W - 2, h: B.h };
|
|
370
|
+
const top = codeScrollTop(rect, s);
|
|
371
|
+
if (body.w >= 6 && body.h >= 1) {
|
|
372
|
+
const tokenize = deps.tokenize ?? plainTokens;
|
|
373
|
+
switch (s.code.mode) {
|
|
374
|
+
case "run": drawRun(scr, body, s, theme, now); break;
|
|
375
|
+
case "search": drawSearch(scr, body, s, theme, top, tokenize); break;
|
|
376
|
+
case "agents": (agentsPainter ?? drawCrewSummary)(scr, body, s, theme, now); break;
|
|
377
|
+
case "diff": drawDiff(scr, body, s, theme, top, tokenize); break;
|
|
378
|
+
default: drawFileView(scr, body, s, theme, top, tokenize);
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
// scrollbar in the one-column gap between body and rail (code/diff/search only; run/agents tail)
|
|
382
|
+
if (B.w >= RAIL_W + 2 && body.h >= 2 &&
|
|
383
|
+
(s.code.mode === "code" || s.code.mode === "diff" || s.code.mode === "search")) {
|
|
384
|
+
const total = rowCount(s, body.w);
|
|
385
|
+
scrollbar(scr, theme, B.x + B.w - RAIL_W - 1, B.y, body.h, total, body.h, top); // scroll-hits.ts rebuilds this geometry for the drag zone
|
|
386
|
+
}
|
|
387
|
+
if (rail.h >= 2 && B.w >= RAIL_W) drawRail(scr, rail, s, theme, top, body.h);
|
|
388
|
+
}
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
/** The context overlay (/context, ⌃g): what is in the window right now, item by item, and how far our
|
|
2
|
+
* arithmetic is from the provider's own count.
|
|
3
|
+
*
|
|
4
|
+
* Same reading order as `rovecode context` on a shell (src/cli/context-cmd.ts) so the two surfaces teach
|
|
5
|
+
* each other rather than competing: the meter, the slices largest first, drift, then what was billed. The
|
|
6
|
+
* one thing this surface can do that the CLI cannot is count the SYSTEM PROMPT and the TOOL SCHEMAS from
|
|
7
|
+
* the live runtime — headless has to leave them out, and in a fresh session they are most of the window.
|
|
8
|
+
* When they are missing the panel says the total is a floor rather than quietly under-reporting.
|
|
9
|
+
*
|
|
10
|
+
* Like draw-market.ts this file owns FLAT view types and never imports core/context-report.ts: the adapter
|
|
11
|
+
* (context-source.ts) maps the report onto `ContextState`, so the drawer is a pure function of its own data
|
|
12
|
+
* and a test builds a state by hand.
|
|
13
|
+
*
|
|
14
|
+
* Drift is drawn, not hidden. Compaction fires on OUR estimate, so a model whose real prompt is a fifth
|
|
15
|
+
* bigger than we think gets compacted late; past the tolerance the row is painted as a warning and says
|
|
16
|
+
* which way the meter is wrong. No reported usage yet says exactly that instead of a confident zero. */
|
|
17
|
+
|
|
18
|
+
import { st } from "./draw-util.ts";
|
|
19
|
+
import { strWidth } from "./screen.ts";
|
|
20
|
+
import { openOverlay } from "./overlays.ts";
|
|
21
|
+
import { ATTR, type HitZone, type KeyEvent, type Layout, type ScreenLike, type SextantState, type Theme } from "./types.ts";
|
|
22
|
+
|
|
23
|
+
export interface ContextSliceRow {
|
|
24
|
+
label: string;
|
|
25
|
+
tokens: number;
|
|
26
|
+
/** 0..1 of the estimated total */
|
|
27
|
+
share: number;
|
|
28
|
+
/** "not supplied" and the like — printed dim after the numbers */
|
|
29
|
+
note?: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface ContextDriftRow {
|
|
33
|
+
estimated: number;
|
|
34
|
+
reported: number;
|
|
35
|
+
/** reported − estimated; positive means the real prompt is bigger than we think */
|
|
36
|
+
delta: number;
|
|
37
|
+
/** |delta| / reported, 0..1 */
|
|
38
|
+
fraction: number;
|
|
39
|
+
beyondTolerance: boolean;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface ContextState {
|
|
43
|
+
model: string;
|
|
44
|
+
/** what o200k actually counted, BEFORE the per-model correction. Kept beside `estimated` rather than
|
|
45
|
+
* replaced by it: a silently corrected number is not a measurement, and someone comparing this panel
|
|
46
|
+
* with `rovecode context` or with a provider dashboard needs to know which of the two they are reading. */
|
|
47
|
+
raw: number;
|
|
48
|
+
/** the correction applied to `raw` to get `estimated`, and where its factor came from */
|
|
49
|
+
scale: { factor: number; measured: boolean; note: string };
|
|
50
|
+
/** the catalog's window; absent when the model is not in the catalog */
|
|
51
|
+
window?: number;
|
|
52
|
+
estimated: number;
|
|
53
|
+
remaining?: number;
|
|
54
|
+
/** estimated / window, 0..1 */
|
|
55
|
+
fraction?: number;
|
|
56
|
+
nearLimit?: boolean;
|
|
57
|
+
slices: ContextSliceRow[];
|
|
58
|
+
/** images cannot be estimated in tokens; counted so the meter's silence is explained */
|
|
59
|
+
images: number;
|
|
60
|
+
drift?: ContextDriftRow;
|
|
61
|
+
billed: { input: number; output: number; cacheRead: number; cacheWrite: number };
|
|
62
|
+
costUsd?: number;
|
|
63
|
+
unpricedTurns: number;
|
|
64
|
+
/** the runtime supplied the system prompt and the tool schemas, so the total is complete */
|
|
65
|
+
live: boolean;
|
|
66
|
+
/** the tolerance drift was compared against, as a fraction — printed, never assumed by the reader */
|
|
67
|
+
tolerance: number;
|
|
68
|
+
scroll: number;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/** Open it through the ONE transition (overlays.ts openOverlay), like every other overlay: whatever was
|
|
72
|
+
* open closes first, so the help card can never paint over this and swallow its keys. */
|
|
73
|
+
export function openContext(s: SextantState, state: Omit<ContextState, "scroll">): void {
|
|
74
|
+
openOverlay(s, "context");
|
|
75
|
+
s.context = { ...state, scroll: 0 };
|
|
76
|
+
}
|
|
77
|
+
export function closeContext(s: SextantState): void { s.context = null; }
|
|
78
|
+
|
|
79
|
+
const n = (v: number): string => v.toLocaleString("en-US");
|
|
80
|
+
const pct = (v: number): string => `${(v * 100).toFixed(1)}%`;
|
|
81
|
+
|
|
82
|
+
/** the meter, with the CLI's glyphs so a screenshot of one reads as the other */
|
|
83
|
+
export function meterBar(fraction: number, width: number): string {
|
|
84
|
+
const w = Math.max(1, width);
|
|
85
|
+
const filled = Math.max(0, Math.min(w, Math.round((Number.isFinite(fraction) ? Math.max(0, fraction) : 0) * w)));
|
|
86
|
+
return "█".repeat(filled) + "·".repeat(w - filled);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/** a slice's bar, scaled to the LARGEST slice rather than to the window: at 3% of a 1M window every bar
|
|
90
|
+
* would be empty and the panel would say nothing about proportions */
|
|
91
|
+
export function shareBar(share: number, largest: number, width: number): string {
|
|
92
|
+
if (width <= 0 || share <= 0) return "";
|
|
93
|
+
const rel = largest > 0 ? share / largest : 0;
|
|
94
|
+
return "▏".repeat(Math.max(1, Math.min(width, Math.round(rel * width))));
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export type Tone = "normal" | "dim" | "warn" | "head";
|
|
98
|
+
export interface ContextLine { text: string; tone: Tone }
|
|
99
|
+
|
|
100
|
+
/** Every line of the overlay in order, tagged with how it is painted. Pure — a test reads these. */
|
|
101
|
+
export function contextLines(s: ContextState, width: number): ContextLine[] {
|
|
102
|
+
const out: ContextLine[] = [];
|
|
103
|
+
const inner = Math.max(24, width);
|
|
104
|
+
out.push({ text: s.model, tone: "head" });
|
|
105
|
+
|
|
106
|
+
if (s.window !== undefined) {
|
|
107
|
+
const f = s.fraction ?? 0;
|
|
108
|
+
out.push({ text: `${meterBar(f, Math.max(8, Math.min(28, inner - 30)))} ~${n(s.estimated)} of ${n(s.window)} (${pct(f)})`, tone: s.nearLimit ? "warn" : "normal" });
|
|
109
|
+
out.push({ text: `${n(s.remaining ?? 0)} left${s.nearLimit ? " — near the limit, compaction is due" : ""}`, tone: s.nearLimit ? "warn" : "dim" });
|
|
110
|
+
} else {
|
|
111
|
+
out.push({ text: `~${n(s.estimated)} tokens — this model's window is not in the catalog`, tone: "dim" });
|
|
112
|
+
}
|
|
113
|
+
// what the number IS, before anything else is said about it. o200k is our stand-in for every tokenizer
|
|
114
|
+
// that is not OpenAI's, and the factor is measured per model generation — so the panel names both the
|
|
115
|
+
// count and the correction rather than presenting one number as if nothing happened to it.
|
|
116
|
+
if (s.scale.factor !== 1) {
|
|
117
|
+
out.push({ text: `o200k counted ${n(s.raw)}, scaled ${s.scale.factor}× for this model — ${s.scale.note}`, tone: "dim" });
|
|
118
|
+
} else {
|
|
119
|
+
out.push({ text: `o200k counted ${n(s.raw)} — ${s.scale.note}`, tone: "dim" });
|
|
120
|
+
}
|
|
121
|
+
if (!s.live) out.push({ text: "system prompt and tool schemas are not counted — this total is a floor", tone: "warn" });
|
|
122
|
+
else out.push({ text: "MCP tools are not counted — their schemas exist only once a server is connected", tone: "dim" });
|
|
123
|
+
out.push({ text: "", tone: "dim" });
|
|
124
|
+
|
|
125
|
+
const rows = [...s.slices].sort((a, b) => b.tokens - a.tokens);
|
|
126
|
+
const labelW = Math.max(10, ...rows.map((r) => r.label.length));
|
|
127
|
+
const largest = rows[0]?.share ?? 0;
|
|
128
|
+
for (const r of rows) {
|
|
129
|
+
const head = `${r.label.padEnd(labelW)} ${n(r.tokens).padStart(9)} ${pct(r.share).padStart(6)}`;
|
|
130
|
+
const room = inner - strWidth(head) - (r.note ? r.note.length + 4 : 1);
|
|
131
|
+
out.push({ text: `${head} ${shareBar(r.share, largest, Math.min(12, room))}${r.note ? ` — ${r.note}` : ""}`, tone: r.note ? "dim" : "normal" });
|
|
132
|
+
}
|
|
133
|
+
if (rows.length === 0) out.push({ text: "nothing in the window yet", tone: "dim" });
|
|
134
|
+
if (s.images > 0) out.push({ text: `${"images".padEnd(labelW)} ${String(s.images).padStart(9)} — not estimated; image tokens are provider-specific`, tone: "dim" });
|
|
135
|
+
|
|
136
|
+
out.push({ text: "", tone: "dim" });
|
|
137
|
+
if (s.drift) {
|
|
138
|
+
const d = s.drift;
|
|
139
|
+
out.push({ text: `drift provider counted ${n(d.reported)} for the last turn's prompt, we estimated ${n(d.estimated)}`, tone: d.beyondTolerance ? "warn" : "normal" });
|
|
140
|
+
out.push({
|
|
141
|
+
text: ` ${n(Math.abs(d.delta))} ${d.delta > 0 ? "more" : "less"} than we estimate (${pct(d.fraction)})${d.beyondTolerance ? ` — beyond the ${pct(s.tolerance)} tolerance; the meter reads ${d.delta > 0 ? "LOW" : "HIGH"} here` : ""}`,
|
|
142
|
+
tone: d.beyondTolerance ? "warn" : "dim",
|
|
143
|
+
});
|
|
144
|
+
} else {
|
|
145
|
+
out.push({ text: "drift no turn reported usage yet — nothing to compare the estimate against", tone: "dim" });
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
out.push({ text: "", tone: "dim" });
|
|
149
|
+
const b = s.billed;
|
|
150
|
+
out.push({ text: `billed ${n(b.input)} in · ${n(b.output)} out · ${n(b.cacheRead)} cache read · ${n(b.cacheWrite)} cache written`, tone: "normal" });
|
|
151
|
+
out.push({
|
|
152
|
+
text: s.costUsd !== undefined
|
|
153
|
+
? `cost $${s.costUsd.toFixed(4)}${s.unpricedTurns > 0 ? ` — lower bound, ${s.unpricedTurns} turn${s.unpricedTurns > 1 ? "s" : ""} unpriced` : ""}`
|
|
154
|
+
: `cost unknown — no pricing for ${s.model}`,
|
|
155
|
+
tone: s.costUsd === undefined ? "dim" : "normal",
|
|
156
|
+
});
|
|
157
|
+
return out;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/** The one row the usage panel carries. Short, because the panel is narrow — and silent (undefined) when
|
|
161
|
+
* there is nothing honest to say, rather than drawing a placeholder. */
|
|
162
|
+
export function driftRow(d: ContextDriftRow | undefined, tolerance: number): { text: string; warn: boolean } | undefined {
|
|
163
|
+
if (!d) return undefined;
|
|
164
|
+
if (!d.beyondTolerance) return { text: `est ±${pct(d.fraction)} of provider`, warn: false };
|
|
165
|
+
return { text: `est reads ${d.delta > 0 ? "LOW" : "HIGH"} ${pct(d.fraction)}`, warn: true };
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
export function contextMaxScroll(s: ContextState, width: number, height: number): number {
|
|
169
|
+
return Math.max(0, contextLines(s, width).length - height);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/** Paint the overlay. Returns null when it is closed, so the frame loop can use it in the caret ternary
|
|
173
|
+
* exactly like drawMarket. */
|
|
174
|
+
export function drawContext(scr: ScreenLike, L: Layout, C: Theme, s: SextantState, hits?: HitZone[]): { x: number; y: number } | null {
|
|
175
|
+
const c = s.context;
|
|
176
|
+
if (!c) return null;
|
|
177
|
+
hits?.push({ rect: { x: 0, y: 0, w: L.w, h: L.h }, onClick: () => closeContext(s) });
|
|
178
|
+
|
|
179
|
+
const w = Math.min(L.w - 6, 92);
|
|
180
|
+
const bodyW = w - 6;
|
|
181
|
+
const lines = contextLines(c, bodyW);
|
|
182
|
+
const h = Math.max(10, Math.min(L.h - 4, lines.length + 4));
|
|
183
|
+
const x = Math.floor((L.w - w) / 2), y = Math.max(1, Math.floor((L.h - h) / 2));
|
|
184
|
+
scr.box(x, y, w, h, st(C.accent), C.bg2);
|
|
185
|
+
scr.text(x + 2, y, [[" context ", st(C.accent, -1, ATTR.BOLD)]]);
|
|
186
|
+
scr.put(x + w - 14, y, " esc closes ", st(C.dim));
|
|
187
|
+
hits?.push({ rect: { x, y, w, h }, onClick: () => {} });
|
|
188
|
+
|
|
189
|
+
const rows = h - 3;
|
|
190
|
+
const top = Math.max(0, Math.min(Math.max(0, lines.length - rows), c.scroll));
|
|
191
|
+
c.scroll = top;
|
|
192
|
+
lines.slice(top, top + rows).forEach((line, i) => {
|
|
193
|
+
const style = line.tone === "head" ? st(C.fg, C.bg2, ATTR.BOLD)
|
|
194
|
+
: line.tone === "warn" ? st(C.warn, C.bg2)
|
|
195
|
+
: line.tone === "dim" ? st(C.muted, C.bg2)
|
|
196
|
+
: st(C.fg2, C.bg2);
|
|
197
|
+
scr.clip(x + 3, y + 1 + i, line.text, style, bodyW);
|
|
198
|
+
});
|
|
199
|
+
if (lines.length > rows) {
|
|
200
|
+
scr.put(x + w - 22, y + h - 1, ` ${top + rows} of ${lines.length} lines `, st(C.dim, C.bg2));
|
|
201
|
+
}
|
|
202
|
+
return null; // no caret: the overlay takes no typed input
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/** Keys, while the panel is up. It is a reader, not a chooser: there is nothing to select and nothing to
|
|
206
|
+
* confirm, so the whole map is "move through it" and "leave". Anything else is swallowed rather than
|
|
207
|
+
* falling through to the prompt — an overlay that lets keystrokes reach the composer behind it types
|
|
208
|
+
* into a message the human cannot see. */
|
|
209
|
+
export function onContextKey(s: SextantState, ev: KeyEvent, page: number): void {
|
|
210
|
+
const c = s.context;
|
|
211
|
+
if (!c) return;
|
|
212
|
+
const { name, ctrl } = ev;
|
|
213
|
+
if (name === "escape" || name === "enter" || (ctrl && name === "g")) { closeContext(s); return; }
|
|
214
|
+
const step = Math.max(1, page - 1);
|
|
215
|
+
if (name === "up" || name === "k") c.scroll -= 1;
|
|
216
|
+
else if (name === "down" || name === "j") c.scroll += 1;
|
|
217
|
+
else if (name === "pageup") c.scroll -= step;
|
|
218
|
+
else if (name === "pagedown" || name === "space") c.scroll += step;
|
|
219
|
+
else if (name === "home") c.scroll = 0;
|
|
220
|
+
else if (name === "end") c.scroll = Number.MAX_SAFE_INTEGER;
|
|
221
|
+
c.scroll = Math.max(0, c.scroll);
|
|
222
|
+
}
|