@herbertgao/pi-extensions 2026.8.3 → 2026.8.5
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 +45 -4
- package/examples/pi-footer.json +275 -0
- package/node_modules/@herbertgao/pi-cc-extensions/README.en.md +10 -2
- package/node_modules/@herbertgao/pi-cc-extensions/README.md +10 -2
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/config/config.ts +24 -0
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/config/panel.ts +91 -1
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/compact-thinking.ts +7 -3
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/index.ts +7 -6
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/compact-mode.ts +21 -12
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/default-mode.ts +4 -5
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/markdown-enhance.ts +5 -8
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/tool/grouping.ts +22 -12
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/tool/result.ts +2 -4
- package/node_modules/@herbertgao/pi-cc-extensions/package.json +3 -3
- package/node_modules/@herbertgao/pi-subagents/CHANGELOG.md +8 -0
- package/node_modules/@herbertgao/pi-subagents/package.json +8 -4
- package/node_modules/@herbertgao/pi-subagents/src/agent-color.ts +72 -67
- package/node_modules/@herbertgao/pi-subagents/src/agent-file-toggle.ts +255 -0
- package/node_modules/@herbertgao/pi-subagents/src/agent-manager.ts +191 -3
- package/node_modules/@herbertgao/pi-subagents/src/agent-runner.ts +15 -2
- package/node_modules/@herbertgao/pi-subagents/src/index.ts +289 -113
- package/node_modules/@herbertgao/pi-subagents/src/output-file.ts +24 -1
- package/node_modules/@herbertgao/pi-subagents/src/ui/agent-widget.ts +24 -2
- package/node_modules/@herbertgao/pi-subagents/src/ui/schedule-menu.ts +9 -8
- package/node_modules/@herbertgao/pi-subagents/src/ui/select-item.ts +48 -0
- package/node_modules/@juicesharp/rpiv-ask-user-question/docs/keyboard.md +7 -0
- package/node_modules/@juicesharp/rpiv-ask-user-question/package.json +2 -2
- package/node_modules/@juicesharp/rpiv-ask-user-question/state/build-questionnaire.ts +7 -0
- package/node_modules/@juicesharp/rpiv-ask-user-question/state/key-router.ts +16 -5
- package/node_modules/@juicesharp/rpiv-ask-user-question/state/questionnaire-session.ts +4 -2
- package/node_modules/@narumitw/pi-btw/README.md +8 -7
- package/node_modules/@narumitw/pi-btw/package.json +2 -2
- package/node_modules/@narumitw/pi-btw/src/menu.ts +1 -0
- package/node_modules/pi-footer/CHANGELOG.md +145 -0
- package/node_modules/pi-footer/LICENSE +21 -0
- package/node_modules/pi-footer/README.md +354 -0
- package/node_modules/pi-footer/package.json +68 -0
- package/node_modules/pi-footer/src/cache.ts +106 -0
- package/node_modules/pi-footer/src/colors.ts +237 -0
- package/node_modules/pi-footer/src/config.ts +202 -0
- package/node_modules/pi-footer/src/event-widgets.ts +41 -0
- package/node_modules/pi-footer/src/extension-statuses.ts +102 -0
- package/node_modules/pi-footer/src/git.ts +135 -0
- package/node_modules/pi-footer/src/index.ts +268 -0
- package/node_modules/pi-footer/src/metrics.ts +141 -0
- package/node_modules/pi-footer/src/presets.ts +383 -0
- package/node_modules/pi-footer/src/render.ts +114 -0
- package/node_modules/pi-footer/src/separators.ts +52 -0
- package/node_modules/pi-footer/src/types.ts +122 -0
- package/node_modules/pi-footer/src/ui/color-level-confirm.ts +22 -0
- package/node_modules/pi-footer/src/ui/color-options.ts +195 -0
- package/node_modules/pi-footer/src/ui/config-lifecycle.ts +61 -0
- package/node_modules/pi-footer/src/ui/edit-colors.ts +13 -0
- package/node_modules/pi-footer/src/ui/events.ts +35 -0
- package/node_modules/pi-footer/src/ui/extension-status-picker.ts +60 -0
- package/node_modules/pi-footer/src/ui/extension-statuses.ts +73 -0
- package/node_modules/pi-footer/src/ui/fields.ts +252 -0
- package/node_modules/pi-footer/src/ui/global-menu.ts +126 -0
- package/node_modules/pi-footer/src/ui/helpers.ts +44 -0
- package/node_modules/pi-footer/src/ui/layout.ts +17 -0
- package/node_modules/pi-footer/src/ui/line-list.ts +19 -0
- package/node_modules/pi-footer/src/ui/model.ts +64 -0
- package/node_modules/pi-footer/src/ui/navigation.ts +29 -0
- package/node_modules/pi-footer/src/ui/option-edit.ts +93 -0
- package/node_modules/pi-footer/src/ui/overlay-render.ts +103 -0
- package/node_modules/pi-footer/src/ui/screen-context.ts +18 -0
- package/node_modules/pi-footer/src/ui/screen-controller.ts +27 -0
- package/node_modules/pi-footer/src/ui/screen-render.ts +32 -0
- package/node_modules/pi-footer/src/ui/screen-state.ts +20 -0
- package/node_modules/pi-footer/src/ui/screen.ts +243 -0
- package/node_modules/pi-footer/src/ui/screens/add-widget.ts +92 -0
- package/node_modules/pi-footer/src/ui/screens/confirm-exit.ts +52 -0
- package/node_modules/pi-footer/src/ui/screens/controller.ts +12 -0
- package/node_modules/pi-footer/src/ui/screens/edit-colors.ts +68 -0
- package/node_modules/pi-footer/src/ui/screens/edit-widget.ts +115 -0
- package/node_modules/pi-footer/src/ui/screens/extension-status-row.ts +61 -0
- package/node_modules/pi-footer/src/ui/screens/global.ts +75 -0
- package/node_modules/pi-footer/src/ui/screens/line-list.ts +108 -0
- package/node_modules/pi-footer/src/ui/screens/main.ts +99 -0
- package/node_modules/pi-footer/src/ui/screens/terminal.ts +121 -0
- package/node_modules/pi-footer/src/ui/screens/widget-list.ts +154 -0
- package/node_modules/pi-footer/src/ui/terminal-menu.ts +32 -0
- package/node_modules/pi-footer/src/ui/theme.ts +48 -0
- package/node_modules/pi-footer/src/ui/title-bar.ts +100 -0
- package/node_modules/pi-footer/src/ui/widget-actions.ts +76 -0
- package/node_modules/pi-footer/src/ui.ts +66 -0
- package/node_modules/pi-footer/src/widgets/context.ts +28 -0
- package/node_modules/pi-footer/src/widgets/core/active-tools.ts +17 -0
- package/node_modules/pi-footer/src/widgets/core/context-window.ts +24 -0
- package/node_modules/pi-footer/src/widgets/core/cwd-basename.ts +19 -0
- package/node_modules/pi-footer/src/widgets/core/cwd.ts +108 -0
- package/node_modules/pi-footer/src/widgets/core/event.ts +34 -0
- package/node_modules/pi-footer/src/widgets/core/external-status.ts +102 -0
- package/node_modules/pi-footer/src/widgets/core/model-provider.ts +20 -0
- package/node_modules/pi-footer/src/widgets/core/model.ts +35 -0
- package/node_modules/pi-footer/src/widgets/core/provider.ts +17 -0
- package/node_modules/pi-footer/src/widgets/core/session-name.ts +17 -0
- package/node_modules/pi-footer/src/widgets/core/text-verbosity.ts +17 -0
- package/node_modules/pi-footer/src/widgets/core/thinking-level.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/ahead-behind.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/branch.ts +81 -0
- package/node_modules/pi-footer/src/widgets/git/clean.ts +19 -0
- package/node_modules/pi-footer/src/widgets/git/deletions.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/diff.ts +38 -0
- package/node_modules/pi-footer/src/widgets/git/insertions.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/remote.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/root.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/sha.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/staged.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/status.ts +19 -0
- package/node_modules/pi-footer/src/widgets/git/unstaged.ts +17 -0
- package/node_modules/pi-footer/src/widgets/git/untracked.ts +17 -0
- package/node_modules/pi-footer/src/widgets/instance.ts +118 -0
- package/node_modules/pi-footer/src/widgets/layout/custom-text.ts +18 -0
- package/node_modules/pi-footer/src/widgets/layout/flex-separator.ts +32 -0
- package/node_modules/pi-footer/src/widgets/layout/separator.ts +57 -0
- package/node_modules/pi-footer/src/widgets/layout/spacer.ts +31 -0
- package/node_modules/pi-footer/src/widgets/options.ts +122 -0
- package/node_modules/pi-footer/src/widgets/project/runtime.ts +361 -0
- package/node_modules/pi-footer/src/widgets/registry.ts +223 -0
- package/node_modules/pi-footer/src/widgets/session/assistant-messages.ts +17 -0
- package/node_modules/pi-footer/src/widgets/session/compactions.ts +17 -0
- package/node_modules/pi-footer/src/widgets/session/elapsed.ts +18 -0
- package/node_modules/pi-footer/src/widgets/session/last-activity.ts +18 -0
- package/node_modules/pi-footer/src/widgets/session/messages.ts +19 -0
- package/node_modules/pi-footer/src/widgets/session/session-id.ts +17 -0
- package/node_modules/pi-footer/src/widgets/session/session-start.ts +18 -0
- package/node_modules/pi-footer/src/widgets/session/tool-results.ts +17 -0
- package/node_modules/pi-footer/src/widgets/session/total-messages.ts +19 -0
- package/node_modules/pi-footer/src/widgets/session/total-time.ts +18 -0
- package/node_modules/pi-footer/src/widgets/session/user-messages.ts +17 -0
- package/node_modules/pi-footer/src/widgets/store.ts +26 -0
- package/node_modules/pi-footer/src/widgets/tokens/cache-hit-rate.ts +55 -0
- package/node_modules/pi-footer/src/widgets/tokens/cache-read.ts +18 -0
- package/node_modules/pi-footer/src/widgets/tokens/cache-write.ts +18 -0
- package/node_modules/pi-footer/src/widgets/tokens/context-bar.ts +108 -0
- package/node_modules/pi-footer/src/widgets/tokens/context-length.ts +26 -0
- package/node_modules/pi-footer/src/widgets/tokens/context-remaining.ts +29 -0
- package/node_modules/pi-footer/src/widgets/tokens/context.ts +29 -0
- package/node_modules/pi-footer/src/widgets/tokens/cost.ts +51 -0
- package/node_modules/pi-footer/src/widgets/tokens/input-speed.ts +25 -0
- package/node_modules/pi-footer/src/widgets/tokens/input-tokens.ts +18 -0
- package/node_modules/pi-footer/src/widgets/tokens/output-speed.ts +25 -0
- package/node_modules/pi-footer/src/widgets/tokens/output-tokens.ts +18 -0
- package/node_modules/pi-footer/src/widgets/tokens/tokens.ts +20 -0
- package/node_modules/pi-footer/src/widgets/tokens/total-speed.ts +25 -0
- package/node_modules/pi-footer/src/widgets/tokens/total-tokens.ts +18 -0
- package/node_modules/pi-footer/src/widgets/types.ts +181 -0
- package/node_modules/pi-footer/src/widgets/utils/colors.ts +11 -0
- package/node_modules/pi-footer/src/widgets/utils/context.ts +112 -0
- package/node_modules/pi-footer/src/widgets/utils/session.ts +19 -0
- package/node_modules/pi-footer/src/widgets/utils/token-format.ts +78 -0
- package/node_modules/pi-lens/CHANGELOG.md +2440 -954
- package/node_modules/pi-lens/README.md +13 -0
- package/node_modules/pi-lens/dist/clients/actionable-warnings.js +73 -18
- package/node_modules/pi-lens/dist/clients/agent-behavior-client.js +21 -4
- package/node_modules/pi-lens/dist/clients/ast-grep-client.js +68 -16
- package/node_modules/pi-lens/dist/clients/ast-grep-types.js +0 -1
- package/node_modules/pi-lens/dist/clients/ast-grep-yaml-synth.js +37 -10
- package/node_modules/pi-lens/dist/clients/atomic-write-staging.js +63 -0
- package/node_modules/pi-lens/dist/clients/atomic-write.js +114 -14
- package/node_modules/pi-lens/dist/clients/bash-file-access.js +193 -23
- package/node_modules/pi-lens/dist/clients/biome-client.js +29 -25
- package/node_modules/pi-lens/dist/clients/bootstrap.js +11 -2
- package/node_modules/pi-lens/dist/clients/bounded-cache.js +34 -0
- package/node_modules/pi-lens/dist/clients/bounded-pid-file-lock.js +192 -0
- package/node_modules/pi-lens/dist/clients/bus-publish.js +10 -3
- package/node_modules/pi-lens/dist/clients/cache/rule-cache.js +47 -5
- package/node_modules/pi-lens/dist/clients/cache-manager.js +97 -9
- package/node_modules/pi-lens/dist/clients/cache-observability.js +301 -14
- package/node_modules/pi-lens/dist/clients/call-graph.js +449 -117
- package/node_modules/pi-lens/dist/clients/child-unref.js +85 -0
- package/node_modules/pi-lens/dist/clients/codebase-model.js +52 -23
- package/node_modules/pi-lens/dist/clients/collateral-test-role.js +40 -0
- package/node_modules/pi-lens/dist/clients/complexity-client.js +2 -1
- package/node_modules/pi-lens/dist/clients/console-guard-install.js +14 -0
- package/node_modules/pi-lens/dist/clients/cooperative-budget.js +42 -0
- package/node_modules/pi-lens/dist/clients/dead-code-client.js +2 -1
- package/node_modules/pi-lens/dist/clients/debug-handles.js +206 -0
- package/node_modules/pi-lens/dist/clients/debug-heap.js +167 -0
- package/node_modules/pi-lens/dist/clients/degradation-ledger.js +153 -0
- package/node_modules/pi-lens/dist/clients/dependency-checker.js +347 -75
- package/node_modules/pi-lens/dist/clients/diagnostic-dispositions.js +61 -11
- package/node_modules/pi-lens/dist/clients/diagnostics-publish.js +10 -3
- package/node_modules/pi-lens/dist/clients/dispatch/dispatcher.js +63 -20
- package/node_modules/pi-lens/dist/clients/dispatch/facts/function-facts.js +23 -7
- package/node_modules/pi-lens/dist/clients/dispatch/facts/import-facts.js +8 -18
- package/node_modules/pi-lens/dist/clients/dispatch/facts/tree-sitter-facts.js +8 -5
- package/node_modules/pi-lens/dist/clients/dispatch/indent-detect.js +35 -0
- package/node_modules/pi-lens/dist/clients/dispatch/inline-suppressions.js +17 -8
- package/node_modules/pi-lens/dist/clients/dispatch/integration.js +1085 -681
- package/node_modules/pi-lens/dist/clients/dispatch/lazy.js +14 -0
- package/node_modules/pi-lens/dist/clients/dispatch/plan.js +11 -1
- package/node_modules/pi-lens/dist/clients/dispatch/rule-id-normalize.js +50 -0
- package/node_modules/pi-lens/dist/clients/dispatch/rule-policy.js +135 -0
- package/node_modules/pi-lens/dist/clients/dispatch/runners/ast-grep-napi.js +23 -5
- package/node_modules/pi-lens/dist/clients/dispatch/runners/biome-check.js +5 -9
- package/node_modules/pi-lens/dist/clients/dispatch/runners/detekt.js +3 -2
- package/node_modules/pi-lens/dist/clients/dispatch/runners/hadolint.js +2 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/helm-lint.js +154 -0
- package/node_modules/pi-lens/dist/clients/dispatch/runners/htmlhint.js +3 -2
- package/node_modules/pi-lens/dist/clients/dispatch/runners/index.js +5 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/lsp.js +14 -6
- package/node_modules/pi-lens/dist/clients/dispatch/runners/markdownlint.js +4 -9
- package/node_modules/pi-lens/dist/clients/dispatch/runners/pyright.js +9 -5
- package/node_modules/pi-lens/dist/clients/dispatch/runners/ruff.js +4 -8
- package/node_modules/pi-lens/dist/clients/dispatch/runners/shellcheck.js +2 -3
- package/node_modules/pi-lens/dist/clients/dispatch/runners/shfmt.js +2 -3
- package/node_modules/pi-lens/dist/clients/dispatch/runners/spotbugs.js +2 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/taplo.js +2 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/terragrunt.js +163 -0
- package/node_modules/pi-lens/dist/clients/dispatch/runners/tflint.js +37 -5
- package/node_modules/pi-lens/dist/clients/dispatch/runners/tree-sitter.js +3 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/trivy-config.js +13 -7
- package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/lazy-installer.js +3 -0
- package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/runner-helpers.js +277 -26
- package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/spawn-outcome.js +22 -0
- package/node_modules/pi-lens/dist/clients/dispatch/runners/yaml-rule-parser.js +5 -4
- package/node_modules/pi-lens/dist/clients/disposition-publish.js +10 -3
- package/node_modules/pi-lens/dist/clients/durable-store.js +97 -0
- package/node_modules/pi-lens/dist/clients/event-loop-monitor.js +94 -3
- package/node_modules/pi-lens/dist/clients/extension-log.js +139 -0
- package/node_modules/pi-lens/dist/clients/extension-mode.js +73 -0
- package/node_modules/pi-lens/dist/clients/file-kinds.js +57 -0
- package/node_modules/pi-lens/dist/clients/file-role.js +18 -3
- package/node_modules/pi-lens/dist/clients/file-utils.js +56 -34
- package/node_modules/pi-lens/dist/clients/format-events-publish.js +16 -3
- package/node_modules/pi-lens/dist/clients/format-service.js +24 -8
- package/node_modules/pi-lens/dist/clients/formatters-lazy.js +8 -0
- package/node_modules/pi-lens/dist/clients/formatters.js +358 -61
- package/node_modules/pi-lens/dist/clients/generated-artifacts.js +148 -15
- package/node_modules/pi-lens/dist/clients/git-guard.js +681 -11
- package/node_modules/pi-lens/dist/clients/git-tracked-ignore.js +4 -0
- package/node_modules/pi-lens/dist/clients/go-client.js +2 -1
- package/node_modules/pi-lens/dist/clients/govulncheck-client.js +8 -0
- package/node_modules/pi-lens/dist/clients/grammar-source.js +12 -4
- package/node_modules/pi-lens/dist/clients/gzip-stage-write.js +21 -3
- package/node_modules/pi-lens/dist/clients/host-ports.js +31 -0
- package/node_modules/pi-lens/dist/clients/installer/index.js +390 -99
- package/node_modules/pi-lens/dist/clients/instance-reaper.js +142 -172
- package/node_modules/pi-lens/dist/clients/jscpd-client.js +31 -54
- package/node_modules/pi-lens/dist/clients/knip-client.js +15 -36
- package/node_modules/pi-lens/dist/clients/language-policy.js +14 -2
- package/node_modules/pi-lens/dist/clients/language-profile.js +13 -7
- package/node_modules/pi-lens/dist/clients/latency-logger.js +23 -1
- package/node_modules/pi-lens/dist/clients/lens-config.js +12 -1
- package/node_modules/pi-lens/dist/clients/lens-engine.js +86 -17
- package/node_modules/pi-lens/dist/clients/lens-events.js +27 -4
- package/node_modules/pi-lens/dist/clients/lens-flag-registry.js +8 -0
- package/node_modules/pi-lens/dist/clients/lens-map.js +94 -19
- package/node_modules/pi-lens/dist/clients/live-bus-emitter.js +30 -0
- package/node_modules/pi-lens/dist/clients/log-cleanup.js +2 -1
- package/node_modules/pi-lens/dist/clients/lsp/cascade-tier.js +1 -1
- package/node_modules/pi-lens/dist/clients/lsp/client.js +493 -48
- package/node_modules/pi-lens/dist/clients/lsp/config.js +13 -2
- package/node_modules/pi-lens/dist/clients/lsp/diagnostic-binding.js +86 -0
- package/node_modules/pi-lens/dist/clients/lsp/edits.js +1012 -121
- package/node_modules/pi-lens/dist/clients/lsp/index.js +1807 -780
- package/node_modules/pi-lens/dist/clients/lsp/launch.js +32 -26
- package/node_modules/pi-lens/dist/clients/lsp/path-utils.js +1 -1
- package/node_modules/pi-lens/dist/clients/lsp/ruby-drive-dirs.js +83 -0
- package/node_modules/pi-lens/dist/clients/lsp/server.js +196 -32
- package/node_modules/pi-lens/dist/clients/lsp/workspace-diagnostics-cache.js +28 -4
- package/node_modules/pi-lens/dist/clients/lsp-lazy.js +8 -0
- package/node_modules/pi-lens/dist/clients/lsp-mutation.js +248 -0
- package/node_modules/pi-lens/dist/clients/mcp/analyze.js +123 -32
- package/node_modules/pi-lens/dist/clients/mcp/ipc.js +157 -24
- package/node_modules/pi-lens/dist/clients/mcp/session.js +216 -8
- package/node_modules/pi-lens/dist/clients/memory-sampler.js +115 -0
- package/node_modules/pi-lens/dist/clients/metrics-client.js +2 -1
- package/node_modules/pi-lens/dist/clients/metrics-history.js +2 -1
- package/node_modules/pi-lens/dist/clients/module-report-lsp.js +5 -0
- package/node_modules/pi-lens/dist/clients/module-report.js +168 -3
- package/node_modules/pi-lens/dist/clients/ndjson-logger.js +319 -118
- package/node_modules/pi-lens/dist/clients/opengrep-client.js +1 -1
- package/node_modules/pi-lens/dist/clients/partial-edit-apply.js +120 -5
- package/node_modules/pi-lens/dist/clients/path-utils.js +110 -9
- package/node_modules/pi-lens/dist/clients/pipeline.js +47 -13
- package/node_modules/pi-lens/dist/clients/print-mode.js +21 -0
- package/node_modules/pi-lens/dist/clients/project-changes.js +40 -0
- package/node_modules/pi-lens/dist/clients/project-diagnostics/cache.js +3 -2
- package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/call-graph-impact.js +8 -0
- package/node_modules/pi-lens/dist/clients/project-diagnostics/scanner.js +21 -1
- package/node_modules/pi-lens/dist/clients/project-lens-config.js +86 -9
- package/node_modules/pi-lens/dist/clients/project-report.js +27 -13
- package/node_modules/pi-lens/dist/clients/project-snapshot.js +175 -20
- package/node_modules/pi-lens/dist/clients/project-trust.js +181 -0
- package/node_modules/pi-lens/dist/clients/quiet-window.js +18 -4
- package/node_modules/pi-lens/dist/clients/read-bridge.js +147 -0
- package/node_modules/pi-lens/dist/clients/read-guard-logger.js +159 -1
- package/node_modules/pi-lens/dist/clients/read-guard-tool-lines.js +150 -29
- package/node_modules/pi-lens/dist/clients/read-guard.js +185 -4
- package/node_modules/pi-lens/dist/clients/resource-sampler.js +70 -84
- package/node_modules/pi-lens/dist/clients/review-graph/builder.js +1122 -221
- package/node_modules/pi-lens/dist/clients/review-graph/git-identity.js +2 -1
- package/node_modules/pi-lens/dist/clients/review-graph/import-resolvers.js +21 -10
- package/node_modules/pi-lens/dist/clients/review-graph/symbol-id.js +46 -0
- package/node_modules/pi-lens/dist/clients/review-graph/tsconfig-paths.js +57 -6
- package/node_modules/pi-lens/dist/clients/review-graph/workspace-modules.js +51 -3
- package/node_modules/pi-lens/dist/clients/review-graph-logger.js +30 -1
- package/node_modules/pi-lens/dist/clients/ruff-client.js +27 -44
- package/node_modules/pi-lens/dist/clients/runtime-agent-end.js +107 -73
- package/node_modules/pi-lens/dist/clients/runtime-context.js +36 -12
- package/node_modules/pi-lens/dist/clients/runtime-coordinator.js +74 -6
- package/node_modules/pi-lens/dist/clients/runtime-session.js +405 -117
- package/node_modules/pi-lens/dist/clients/runtime-tool-call.js +71 -48
- package/node_modules/pi-lens/dist/clients/runtime-tool-result.js +218 -23
- package/node_modules/pi-lens/dist/clients/runtime-turn.js +237 -64
- package/node_modules/pi-lens/dist/clients/rust-client.js +2 -1
- package/node_modules/pi-lens/dist/clients/safe-spawn.js +777 -62
- package/node_modules/pi-lens/dist/clients/security-scan-client.js +2 -1
- package/node_modules/pi-lens/dist/clients/session-state-store.js +3 -2
- package/node_modules/pi-lens/dist/clients/sg-runner.js +284 -174
- package/node_modules/pi-lens/dist/clients/slow-fs.js +2 -1
- package/node_modules/pi-lens/dist/clients/smells-rollup.js +224 -0
- package/node_modules/pi-lens/dist/clients/source-filter.js +184 -20
- package/node_modules/pi-lens/dist/clients/source-walker.js +66 -10
- package/node_modules/pi-lens/dist/clients/startup-scan.js +15 -16
- package/node_modules/pi-lens/dist/clients/startup-timing.js +1 -1
- package/node_modules/pi-lens/dist/clients/test-runner-client.js +38 -8
- package/node_modules/pi-lens/dist/clients/tool-event.js +35 -0
- package/node_modules/pi-lens/dist/clients/tool-policy.js +388 -39
- package/node_modules/pi-lens/dist/clients/tool-render.js +155 -0
- package/node_modules/pi-lens/dist/clients/tree-sitter-cache.js +6 -1
- package/node_modules/pi-lens/dist/clients/tree-sitter-client.js +419 -50
- package/node_modules/pi-lens/dist/clients/tree-sitter-logger.js +21 -0
- package/node_modules/pi-lens/dist/clients/tree-sitter-query-loader.js +7 -1
- package/node_modules/pi-lens/dist/clients/tree-sitter-shared.js +7 -2
- package/node_modules/pi-lens/dist/clients/tree-sitter-symbol-extractor.js +44 -7
- package/node_modules/pi-lens/dist/clients/user-notify.js +51 -0
- package/node_modules/pi-lens/dist/clients/vanished-instance-marker.js +57 -0
- package/node_modules/pi-lens/dist/clients/warm-attach.js +33 -13
- package/node_modules/pi-lens/dist/clients/widget-state.js +300 -43
- package/node_modules/pi-lens/dist/clients/word-index.js +391 -64
- package/node_modules/pi-lens/dist/clients/workspace-topology.js +89 -6
- package/node_modules/pi-lens/dist/index.js +49361 -36888
- package/node_modules/pi-lens/dist/mcp/analyze-cli.js +182 -29
- package/node_modules/pi-lens/dist/mcp/server.js +211 -44
- package/node_modules/pi-lens/dist/tools/ast-grep-search.js +93 -27
- package/node_modules/pi-lens/dist/tools/lens-diagnostics.js +200 -36
- package/node_modules/pi-lens/dist/tools/lsp-diagnostics.js +153 -40
- package/node_modules/pi-lens/dist/tools/lsp-navigation.js +46 -3
- package/node_modules/pi-lens/dist/tools/module-report.js +9 -0
- package/node_modules/pi-lens/docs/agent-guide.md +2 -2
- package/node_modules/pi-lens/docs/agent-tools.md +21 -10
- package/node_modules/pi-lens/docs/analysisall.md +192 -0
- package/node_modules/pi-lens/docs/api-ports-inventory.md +165 -0
- package/node_modules/pi-lens/docs/ast-grep_rules_catalog.md +5 -2
- package/node_modules/pi-lens/docs/durable-store-audit-1202.md +32 -0
- package/node_modules/pi-lens/docs/environment-variables.md +44 -0
- package/node_modules/pi-lens/docs/fable.md +27 -0
- package/node_modules/pi-lens/docs/features.md +31 -2
- package/node_modules/pi-lens/docs/globalconfig.md +45 -1
- package/node_modules/pi-lens/docs/language-coverage.md +4 -3
- package/node_modules/pi-lens/docs/lsp-capability-matrix.md +2 -2
- package/node_modules/pi-lens/docs/mcp.md +37 -4
- package/node_modules/pi-lens/docs/servercapabilities.md +3 -3
- package/node_modules/pi-lens/docs/settings.md +12 -1
- package/node_modules/pi-lens/docs/tools.md +4 -1
- package/node_modules/pi-lens/docs/usage.md +18 -0
- package/node_modules/pi-lens/package.json +10 -10
- package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-bare-except-test.yml +49 -0
- package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-bare-host-path-in-win32-branch-test.yml +87 -0
- package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-nested-links-test.yml +11 -1
- package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-raw-json-store-write-test.yml +17 -0
- package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-win32-isabsolute-for-qualification-test.yml +16 -0
- package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-bare-except.yml +3 -15
- package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-bare-host-path-in-win32-branch.yml +25 -0
- package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-nested-links.yml +7 -0
- package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-raw-json-store-write.yml +30 -0
- package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-win32-isabsolute-for-qualification.yml +23 -0
- package/node_modules/pi-lens/rules/tree-sitter-queries/tsx/no-nested-links.yml +4 -6
- package/node_modules/pi-lens/rules/tree-sitter-queries/typescript/duplicate-function-arg.yml +2 -2
- package/node_modules/pi-lens/scripts/analyze-pi-lens-logs.mjs +55 -2
- package/node_modules/pi-mcp-adapter/CHANGELOG.md +25 -0
- package/node_modules/pi-mcp-adapter/README.md +34 -3
- package/node_modules/pi-mcp-adapter/agent-plugin-loader.ts +1 -1
- package/node_modules/pi-mcp-adapter/commands.ts +15 -7
- package/node_modules/pi-mcp-adapter/direct-tools.ts +54 -7
- package/node_modules/pi-mcp-adapter/host-html-template.ts +0 -8
- package/node_modules/pi-mcp-adapter/index.ts +8 -3
- package/node_modules/pi-mcp-adapter/init.ts +29 -5
- package/node_modules/pi-mcp-adapter/lifecycle.ts +0 -4
- package/node_modules/pi-mcp-adapter/mcp-auth-flow.ts +1 -2
- package/node_modules/pi-mcp-adapter/mcp-auth.ts +60 -2
- package/node_modules/pi-mcp-adapter/mcp-panel.ts +45 -9
- package/node_modules/pi-mcp-adapter/mcp-script-worker.mjs +22 -20
- package/node_modules/pi-mcp-adapter/metadata-cache.ts +27 -4
- package/node_modules/pi-mcp-adapter/npx-resolver.ts +81 -26
- package/node_modules/pi-mcp-adapter/package.json +3 -3
- package/node_modules/pi-mcp-adapter/proxy-modes.ts +108 -26
- package/node_modules/pi-mcp-adapter/search-ranking.ts +86 -7
- package/node_modules/pi-mcp-adapter/server-manager.ts +36 -7
- package/node_modules/pi-mcp-adapter/session-recovery.ts +8 -2
- package/node_modules/pi-mcp-adapter/tool-approval.ts +48 -7
- package/node_modules/pi-mcp-adapter/tool-metadata.ts +42 -4
- package/node_modules/pi-mcp-adapter/tool-result-renderer.ts +138 -12
- package/node_modules/pi-mcp-adapter/types.ts +93 -27
- package/node_modules/pi-mcp-adapter/ui-server.ts +20 -1
- package/package.json +17 -13
- package/node_modules/pi-lens/dist/clients/ast-grep-parser.js +0 -86
- package/node_modules/pi-lens/dist/clients/lsp/interactive-install.js +0 -367
- package/node_modules/pi-lens/dist/clients/lsp/lsp-index.js +0 -10
- package/node_modules/pi-lens/dist/clients/lsp/server-strategies.js +0 -5
- package/node_modules/pi-lens/dist/clients/project-metadata.js +0 -690
- package/node_modules/pi-lens/dist/clients/source-groups.js +0 -96
- package/node_modules/pi-lens/dist/clients/startup-marker.js +0 -6
- package/node_modules/pi-lens/dist/clients/types.js +0 -11
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
import type { ColorName } from "./colors.js";
|
|
2
|
+
import type { SeparatorStyle, WidgetSeparatorStyle } from "./separators.js";
|
|
3
|
+
import type { IconMode, TerminalOptions, TerminalWidthMode, WidgetOptions } from "./types.js";
|
|
4
|
+
import type { WidgetType } from "./widgets/registry.js";
|
|
5
|
+
|
|
6
|
+
export interface PresetWidget {
|
|
7
|
+
type: WidgetType;
|
|
8
|
+
options?: WidgetOptions;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PresetDefinition {
|
|
12
|
+
separator?: SeparatorStyle;
|
|
13
|
+
iconMode?: IconMode;
|
|
14
|
+
terminal?: Partial<TerminalOptions>;
|
|
15
|
+
lines: PresetWidget[][];
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
interface PowerlineSegment extends PresetWidget {
|
|
19
|
+
options: WidgetOptions & { fg: ColorName; bg: ColorName };
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
interface PowerlineTransitionContext {
|
|
23
|
+
left: PowerlineSegment;
|
|
24
|
+
right: PowerlineSegment;
|
|
25
|
+
index: number;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
interface PowerlineCapOptions {
|
|
29
|
+
separator?: WidgetSeparatorStyle;
|
|
30
|
+
fg?: ColorName;
|
|
31
|
+
bg?: ColorName;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
interface PowerlineLineOptions {
|
|
35
|
+
separator?: WidgetSeparatorStyle;
|
|
36
|
+
start?: boolean | PowerlineCapOptions;
|
|
37
|
+
end?: boolean | PowerlineCapOptions;
|
|
38
|
+
transition?: (
|
|
39
|
+
context: PowerlineTransitionContext,
|
|
40
|
+
) => Partial<WidgetOptions> & { separator?: WidgetSeparatorStyle };
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
const FULL_WIDTH: Partial<TerminalOptions> = { widthMode: "full" satisfies TerminalWidthMode };
|
|
44
|
+
|
|
45
|
+
function widget(type: WidgetType, options: WidgetOptions = {}): PresetWidget {
|
|
46
|
+
return { type, options };
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function powerSegment(
|
|
50
|
+
type: WidgetType,
|
|
51
|
+
options: WidgetOptions & { fg: ColorName; bg: ColorName },
|
|
52
|
+
): PowerlineSegment {
|
|
53
|
+
return { type, options };
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function powerlineLine(
|
|
57
|
+
segments: readonly PowerlineSegment[],
|
|
58
|
+
options: PowerlineLineOptions = {},
|
|
59
|
+
): PresetWidget[] {
|
|
60
|
+
if (segments.length === 0) return [];
|
|
61
|
+
|
|
62
|
+
const separator = options.separator ?? "powerline-right-spaced";
|
|
63
|
+
const line: PresetWidget[] = [];
|
|
64
|
+
const first = segments[0];
|
|
65
|
+
if (!first) return [];
|
|
66
|
+
|
|
67
|
+
if (options.start) line.push(capWidget(first.options.bg, options.start, "powerline-start"));
|
|
68
|
+
|
|
69
|
+
for (let index = 0; index < segments.length; index += 1) {
|
|
70
|
+
const current = segments[index];
|
|
71
|
+
if (!current) continue;
|
|
72
|
+
line.push(current);
|
|
73
|
+
|
|
74
|
+
const next = segments[index + 1];
|
|
75
|
+
if (!next) continue;
|
|
76
|
+
const transition = options.transition?.({ left: current, right: next, index }) ?? {};
|
|
77
|
+
line.push({
|
|
78
|
+
type: "separator",
|
|
79
|
+
options: {
|
|
80
|
+
separator: transition.separator ?? separator,
|
|
81
|
+
fg: current.options.bg,
|
|
82
|
+
bg: next.options.bg,
|
|
83
|
+
...transition,
|
|
84
|
+
},
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
const last = segments.at(-1);
|
|
89
|
+
if (last && options.end) line.push(capWidget(last.options.bg, options.end, "powerline-end"));
|
|
90
|
+
|
|
91
|
+
return line;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function capWidget(
|
|
95
|
+
color: ColorName,
|
|
96
|
+
cap: true | PowerlineCapOptions,
|
|
97
|
+
defaultSeparator: WidgetSeparatorStyle,
|
|
98
|
+
): PresetWidget {
|
|
99
|
+
const options = cap === true ? {} : cap;
|
|
100
|
+
return {
|
|
101
|
+
type: "separator",
|
|
102
|
+
options: {
|
|
103
|
+
separator: options.separator ?? defaultSeparator,
|
|
104
|
+
fg: options.fg ?? color,
|
|
105
|
+
bg: options.bg ?? "default",
|
|
106
|
+
},
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function demoLabelLine(preset: keyof typeof BASE_PRESET_DEFINITIONS): PresetWidget[] {
|
|
111
|
+
return [widget("custom-text", { raw: true, fg: "pi:success", text: `Preset '${preset}':` })];
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
function demoEmptyLine(): PresetWidget[] {
|
|
115
|
+
return [widget("custom-text", { raw: true, fg: "pi:success", text: "" })];
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const BASE_PRESET_DEFINITIONS = {
|
|
119
|
+
default: {
|
|
120
|
+
separator: "dot",
|
|
121
|
+
terminal: FULL_WIDTH,
|
|
122
|
+
lines: [
|
|
123
|
+
[
|
|
124
|
+
widget("model-provider"),
|
|
125
|
+
widget("thinking-level"),
|
|
126
|
+
widget("text-verbosity"),
|
|
127
|
+
widget("context-length"),
|
|
128
|
+
widget("git-branch"),
|
|
129
|
+
widget("git-diff", { gitDiffMode: "compact" }),
|
|
130
|
+
widget("cost"),
|
|
131
|
+
widget("total-time"),
|
|
132
|
+
],
|
|
133
|
+
],
|
|
134
|
+
},
|
|
135
|
+
powerline: {
|
|
136
|
+
separator: "none",
|
|
137
|
+
iconMode: "nerd",
|
|
138
|
+
terminal: FULL_WIDTH,
|
|
139
|
+
lines: [
|
|
140
|
+
powerlineLine([
|
|
141
|
+
powerSegment("model-provider", { fg: "brightWhite", bg: "ansi256:33", bold: true }),
|
|
142
|
+
powerSegment("git-branch", { fg: "brightWhite", bg: "ansi256:61", bold: true }),
|
|
143
|
+
powerSegment("tokens", { fg: "brightWhite", bg: "ansi256:64" }),
|
|
144
|
+
powerSegment("context-bar", {
|
|
145
|
+
fg: "ansi256:234",
|
|
146
|
+
bg: "ansi256:136",
|
|
147
|
+
contextBarMode: "medium",
|
|
148
|
+
}),
|
|
149
|
+
powerSegment("output-speed", { fg: "black", bg: "ansi256:37" }),
|
|
150
|
+
powerSegment("total-time", { fg: "brightWhite", bg: "ansi256:236" }),
|
|
151
|
+
]),
|
|
152
|
+
],
|
|
153
|
+
},
|
|
154
|
+
"powerline-bright": {
|
|
155
|
+
separator: "none",
|
|
156
|
+
iconMode: "nerd",
|
|
157
|
+
terminal: FULL_WIDTH,
|
|
158
|
+
lines: [
|
|
159
|
+
powerlineLine(
|
|
160
|
+
[
|
|
161
|
+
powerSegment("model", { fg: "brightWhite", bg: "ansi256:131", icon: "Model: " }),
|
|
162
|
+
powerSegment("context-length", { fg: "black", bg: "ansi256:220", icon: "Ctx: " }),
|
|
163
|
+
powerSegment("git-branch", { fg: "brightWhite", bg: "ansi256:68" }),
|
|
164
|
+
powerSegment("git-diff", {
|
|
165
|
+
fg: "black",
|
|
166
|
+
bg: "ansi256:108",
|
|
167
|
+
raw: true,
|
|
168
|
+
gitDiffMode: "compact",
|
|
169
|
+
}),
|
|
170
|
+
powerSegment("total-time", { fg: "black", bg: "ansi256:176", raw: true }),
|
|
171
|
+
],
|
|
172
|
+
{ start: true, end: true },
|
|
173
|
+
),
|
|
174
|
+
powerlineLine(
|
|
175
|
+
[
|
|
176
|
+
powerSegment("cwd", { fg: "brightWhite", bg: "ansi256:131", segments: 3, icon: "cwd: " }),
|
|
177
|
+
powerSegment("cost", { fg: "black", bg: "ansi256:220", icon: "Cost: " }),
|
|
178
|
+
],
|
|
179
|
+
{ start: true, end: true },
|
|
180
|
+
),
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
"powerline-blocks": {
|
|
184
|
+
separator: "none",
|
|
185
|
+
iconMode: "nerd",
|
|
186
|
+
terminal: FULL_WIDTH,
|
|
187
|
+
lines: [
|
|
188
|
+
powerlineLine(
|
|
189
|
+
[
|
|
190
|
+
powerSegment("model", { fg: "brightWhite", bg: "ansi256:131", icon: "Model: " }),
|
|
191
|
+
powerSegment("context-length", { fg: "black", bg: "ansi256:222", icon: "Ctx: " }),
|
|
192
|
+
powerSegment("git-branch", { fg: "brightWhite", bg: "ansi256:67" }),
|
|
193
|
+
powerSegment("git-diff", {
|
|
194
|
+
fg: "black",
|
|
195
|
+
bg: "ansi256:151",
|
|
196
|
+
raw: true,
|
|
197
|
+
gitDiffMode: "compact",
|
|
198
|
+
}),
|
|
199
|
+
],
|
|
200
|
+
{ start: true, end: true },
|
|
201
|
+
),
|
|
202
|
+
powerlineLine(
|
|
203
|
+
[
|
|
204
|
+
powerSegment("input-tokens", { fg: "brightWhite", bg: "ansi256:131", icon: "In: " }),
|
|
205
|
+
powerSegment("output-tokens", { fg: "black", bg: "ansi256:222", icon: "Out: " }),
|
|
206
|
+
powerSegment("cache-read", { fg: "brightWhite", bg: "ansi256:67", icon: "Cached: " }),
|
|
207
|
+
powerSegment("total-tokens", { fg: "black", bg: "ansi256:151", icon: "Total: " }),
|
|
208
|
+
],
|
|
209
|
+
{ start: true, end: true },
|
|
210
|
+
),
|
|
211
|
+
powerlineLine(
|
|
212
|
+
[
|
|
213
|
+
powerSegment("context-bar", {
|
|
214
|
+
fg: "brightWhite",
|
|
215
|
+
bg: "ansi256:131",
|
|
216
|
+
icon: "Ctx ",
|
|
217
|
+
contextBarMode: "medium",
|
|
218
|
+
}),
|
|
219
|
+
powerSegment("total-time", { fg: "brightWhite", bg: "ansi256:131", raw: true }),
|
|
220
|
+
],
|
|
221
|
+
{
|
|
222
|
+
start: true,
|
|
223
|
+
end: true,
|
|
224
|
+
transition: () => ({ separator: "powerline-soft-right" }),
|
|
225
|
+
},
|
|
226
|
+
),
|
|
227
|
+
],
|
|
228
|
+
},
|
|
229
|
+
"powerline-mono": {
|
|
230
|
+
separator: "none",
|
|
231
|
+
iconMode: "nerd",
|
|
232
|
+
terminal: FULL_WIDTH,
|
|
233
|
+
lines: [
|
|
234
|
+
powerlineLine(
|
|
235
|
+
[
|
|
236
|
+
powerSegment("model", { fg: "brightWhite", bg: "ansi256:240", icon: "Model: " }),
|
|
237
|
+
powerSegment("context-length", { fg: "black", bg: "ansi256:252", icon: "Ctx: " }),
|
|
238
|
+
powerSegment("git-branch", { fg: "brightWhite", bg: "ansi256:233" }),
|
|
239
|
+
powerSegment("git-diff", {
|
|
240
|
+
fg: "black",
|
|
241
|
+
bg: "ansi256:250",
|
|
242
|
+
raw: true,
|
|
243
|
+
gitDiffMode: "compact",
|
|
244
|
+
}),
|
|
245
|
+
powerSegment("cwd-basename", { fg: "brightWhite", bg: "ansi256:236" }),
|
|
246
|
+
],
|
|
247
|
+
{ start: true, end: true },
|
|
248
|
+
),
|
|
249
|
+
powerlineLine(
|
|
250
|
+
[
|
|
251
|
+
powerSegment("output-tokens", { fg: "brightWhite", bg: "ansi256:240", icon: "👾 Out: " }),
|
|
252
|
+
powerSegment("cache-read", { fg: "black", bg: "ansi256:252", icon: "💰 Cached: " }),
|
|
253
|
+
powerSegment("total-tokens", { fg: "brightWhite", bg: "ansi256:233", icon: "Total: " }),
|
|
254
|
+
powerSegment("context-length", { fg: "black", bg: "ansi256:250", icon: "Ctx: " }),
|
|
255
|
+
],
|
|
256
|
+
{ start: true, end: true },
|
|
257
|
+
),
|
|
258
|
+
],
|
|
259
|
+
},
|
|
260
|
+
"git-heavy": {
|
|
261
|
+
separator: "dot",
|
|
262
|
+
iconMode: "nerd",
|
|
263
|
+
terminal: FULL_WIDTH,
|
|
264
|
+
lines: [
|
|
265
|
+
[
|
|
266
|
+
widget("model-provider"),
|
|
267
|
+
widget("cwd-basename"),
|
|
268
|
+
widget("git-branch"),
|
|
269
|
+
widget("git-sha"),
|
|
270
|
+
widget("git-status"),
|
|
271
|
+
widget("git-diff", { gitDiffMode: "compact" }),
|
|
272
|
+
widget("git-ahead-behind"),
|
|
273
|
+
],
|
|
274
|
+
],
|
|
275
|
+
},
|
|
276
|
+
compact: {
|
|
277
|
+
separator: "space",
|
|
278
|
+
terminal: { widthMode: "full-minus-40" },
|
|
279
|
+
lines: [
|
|
280
|
+
[
|
|
281
|
+
widget("model"),
|
|
282
|
+
widget("thinking-level"),
|
|
283
|
+
widget("text-verbosity"),
|
|
284
|
+
widget("git-branch"),
|
|
285
|
+
widget("context"),
|
|
286
|
+
widget("cost"),
|
|
287
|
+
],
|
|
288
|
+
],
|
|
289
|
+
},
|
|
290
|
+
"pi-footer": {
|
|
291
|
+
separator: "none",
|
|
292
|
+
iconMode: "text",
|
|
293
|
+
terminal: FULL_WIDTH,
|
|
294
|
+
lines: [
|
|
295
|
+
[
|
|
296
|
+
widget("cwd", { raw: true, fg: "pi:dim", cwdDisplayStyle: "full-home" }),
|
|
297
|
+
widget("git-branch", {
|
|
298
|
+
icon: " ",
|
|
299
|
+
fg: "pi:dim",
|
|
300
|
+
hideWhenEmpty: true,
|
|
301
|
+
gitBranchDisplayStyle: "round-brackets",
|
|
302
|
+
}),
|
|
303
|
+
widget("session-name", { icon: " • ", fg: "pi:dim", hideWhenEmpty: true }),
|
|
304
|
+
],
|
|
305
|
+
[
|
|
306
|
+
widget("tokens", { raw: true, fg: "pi:dim", tokenFormatStyle: "compact" }),
|
|
307
|
+
widget("cache-read", {
|
|
308
|
+
icon: " R",
|
|
309
|
+
fg: "pi:dim",
|
|
310
|
+
tokenFormatStyle: "compact",
|
|
311
|
+
hideWhenZero: true,
|
|
312
|
+
}),
|
|
313
|
+
widget("cache-write", {
|
|
314
|
+
icon: " W",
|
|
315
|
+
fg: "pi:dim",
|
|
316
|
+
tokenFormatStyle: "compact",
|
|
317
|
+
hideWhenZero: true,
|
|
318
|
+
}),
|
|
319
|
+
widget("cache-hit-rate", {
|
|
320
|
+
icon: " CH",
|
|
321
|
+
fg: "pi:dim",
|
|
322
|
+
hideWhenZero: true,
|
|
323
|
+
cacheHitSource: "turn",
|
|
324
|
+
}),
|
|
325
|
+
widget("cost", {
|
|
326
|
+
icon: " ",
|
|
327
|
+
fg: "pi:dim",
|
|
328
|
+
costFormatStyle: "compact",
|
|
329
|
+
showSubscription: true,
|
|
330
|
+
}),
|
|
331
|
+
widget("context", {
|
|
332
|
+
icon: " ",
|
|
333
|
+
fg: "pi:dim",
|
|
334
|
+
contextConditionalColors: true,
|
|
335
|
+
warningFg: "pi:warning",
|
|
336
|
+
dangerFg: "pi:error",
|
|
337
|
+
}),
|
|
338
|
+
widget("context-window", {
|
|
339
|
+
icon: "/",
|
|
340
|
+
fg: "pi:dim",
|
|
341
|
+
contextConditionalColors: true,
|
|
342
|
+
warningFg: "pi:warning",
|
|
343
|
+
dangerFg: "pi:error",
|
|
344
|
+
tokenFormatStyle: "compact",
|
|
345
|
+
}),
|
|
346
|
+
widget("flex-separator"),
|
|
347
|
+
widget("model", { raw: true, fg: "pi:dim" }),
|
|
348
|
+
widget("thinking-level", { icon: " • ", fg: "pi:dim", hideWhenEmpty: true }),
|
|
349
|
+
],
|
|
350
|
+
],
|
|
351
|
+
},
|
|
352
|
+
} satisfies Record<string, PresetDefinition>;
|
|
353
|
+
|
|
354
|
+
function demoLines(...presets: Array<keyof typeof BASE_PRESET_DEFINITIONS>): PresetWidget[][] {
|
|
355
|
+
return presets.flatMap((preset, index) => [
|
|
356
|
+
demoLabelLine(preset),
|
|
357
|
+
...BASE_PRESET_DEFINITIONS[preset].lines,
|
|
358
|
+
...(index === presets.length - 1 ? [] : [demoEmptyLine()]),
|
|
359
|
+
]);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export const PRESET_DEFINITIONS = {
|
|
363
|
+
...BASE_PRESET_DEFINITIONS,
|
|
364
|
+
demo: {
|
|
365
|
+
separator: "none",
|
|
366
|
+
iconMode: "nerd",
|
|
367
|
+
terminal: FULL_WIDTH,
|
|
368
|
+
lines: demoLines(
|
|
369
|
+
"pi-footer",
|
|
370
|
+
"powerline",
|
|
371
|
+
"powerline-bright",
|
|
372
|
+
"powerline-blocks",
|
|
373
|
+
"powerline-mono",
|
|
374
|
+
),
|
|
375
|
+
},
|
|
376
|
+
"demo-standard": {
|
|
377
|
+
separator: "dot",
|
|
378
|
+
terminal: FULL_WIDTH,
|
|
379
|
+
lines: demoLines("default", "compact", "git-heavy"),
|
|
380
|
+
},
|
|
381
|
+
} satisfies Record<string, PresetDefinition>;
|
|
382
|
+
|
|
383
|
+
export type Preset = keyof typeof PRESET_DEFINITIONS;
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import type { Theme } from "@earendil-works/pi-coding-agent";
|
|
2
|
+
import { truncateToWidth, visibleWidth } from "@earendil-works/pi-tui";
|
|
3
|
+
|
|
4
|
+
import { applyColors } from "./colors.js";
|
|
5
|
+
import type { GetExtensionStatuses } from "./extension-statuses.js";
|
|
6
|
+
import { separatorText } from "./separators.js";
|
|
7
|
+
import type { StatuslineData, StatuslineSettings } from "./types.js";
|
|
8
|
+
import { contextForDependencies } from "./widgets/context.js";
|
|
9
|
+
import { registry } from "./widgets/registry.js";
|
|
10
|
+
import type { WidgetStore } from "./widgets/store.js";
|
|
11
|
+
import type { BaseWidgetContext, Widget } from "./widgets/types.js";
|
|
12
|
+
|
|
13
|
+
export interface RenderStatuslineOptions {
|
|
14
|
+
getExtensionStatuses?: GetExtensionStatuses;
|
|
15
|
+
theme?: Theme;
|
|
16
|
+
requestRender?: () => void;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export function renderStatuslines(
|
|
20
|
+
store: WidgetStore,
|
|
21
|
+
data: StatuslineData,
|
|
22
|
+
width: number,
|
|
23
|
+
options: RenderStatuslineOptions = {},
|
|
24
|
+
): string[] {
|
|
25
|
+
const settings = store.settings;
|
|
26
|
+
if (!settings.enabled || width <= 0) return [];
|
|
27
|
+
|
|
28
|
+
const baseCtx: BaseWidgetContext = {
|
|
29
|
+
iconMode: settings.iconMode,
|
|
30
|
+
minimalist: settings.minimalist,
|
|
31
|
+
colorLevel: settings.terminal.colorLevel,
|
|
32
|
+
...(options.theme ? { theme: options.theme } : {}),
|
|
33
|
+
...(options.requestRender ? { requestRender: options.requestRender } : {}),
|
|
34
|
+
};
|
|
35
|
+
const lineWidth = effectiveWidth(settings, width);
|
|
36
|
+
return store.lines
|
|
37
|
+
.map((line) => renderLine(line, settings, lineWidth, { baseCtx, data, options }))
|
|
38
|
+
.filter((line) => line.trim().length > 0);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function padRight(left: string, right: string, width: number): string {
|
|
42
|
+
const spaces = Math.max(1, width - visibleWidth(left) - visibleWidth(right));
|
|
43
|
+
return truncateToWidth(`${left}${" ".repeat(spaces)}${right}`, width, "…");
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
interface RenderedSegment {
|
|
47
|
+
widget: Widget;
|
|
48
|
+
segment: string;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
interface RenderLineContext {
|
|
52
|
+
baseCtx: BaseWidgetContext;
|
|
53
|
+
data: StatuslineData;
|
|
54
|
+
options: RenderStatuslineOptions;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function renderLine(
|
|
58
|
+
line: readonly Widget[],
|
|
59
|
+
settings: StatuslineSettings,
|
|
60
|
+
width: number,
|
|
61
|
+
ctx: RenderLineContext,
|
|
62
|
+
): string {
|
|
63
|
+
const rendered = line
|
|
64
|
+
.filter((widget) => widget.enabled)
|
|
65
|
+
.map((widget) => ({
|
|
66
|
+
widget,
|
|
67
|
+
segment:
|
|
68
|
+
widget.render(
|
|
69
|
+
contextForDependencies(
|
|
70
|
+
ctx.baseCtx,
|
|
71
|
+
registry.spec(widget.type).dependencies,
|
|
72
|
+
ctx.data,
|
|
73
|
+
ctx.options,
|
|
74
|
+
),
|
|
75
|
+
) ?? "",
|
|
76
|
+
}));
|
|
77
|
+
|
|
78
|
+
const flexIndex = rendered.findIndex((entry) => entry.widget.type === "flex-separator");
|
|
79
|
+
if (flexIndex === -1) {
|
|
80
|
+
return truncateToWidth(joinSegments(rendered, settings), width, "…");
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
const left = joinSegments(rendered.slice(0, flexIndex), settings);
|
|
84
|
+
const right = joinSegments(rendered.slice(flexIndex + 1), settings);
|
|
85
|
+
return right ? padRight(left, right, width) : truncateToWidth(left, width, "…");
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
function effectiveWidth(settings: StatuslineSettings, width: number): number {
|
|
89
|
+
if (settings.terminal.widthMode === "full-minus-40") return Math.max(1, width - 40);
|
|
90
|
+
return width;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
function joinSegments(entries: readonly RenderedSegment[], settings: StatuslineSettings): string {
|
|
94
|
+
const segments = entries.filter((entry) => entry.segment.length > 0);
|
|
95
|
+
if (segments.length === 0) return "";
|
|
96
|
+
|
|
97
|
+
let output = segments[0]?.segment ?? "";
|
|
98
|
+
for (let index = 1; index < segments.length; index += 1) {
|
|
99
|
+
const previous = segments[index - 1];
|
|
100
|
+
const current = segments[index];
|
|
101
|
+
if (!previous || !current) continue;
|
|
102
|
+
if (previous.widget.type !== "separator" && current.widget.type !== "separator") {
|
|
103
|
+
output += applyColors(
|
|
104
|
+
separatorText(settings.separator),
|
|
105
|
+
settings.separatorFg,
|
|
106
|
+
settings.separatorBg,
|
|
107
|
+
false,
|
|
108
|
+
settings.terminal.colorLevel,
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
output += current.segment;
|
|
112
|
+
}
|
|
113
|
+
return output;
|
|
114
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export const SEPARATOR_VALUES = [
|
|
2
|
+
"none",
|
|
3
|
+
"dot",
|
|
4
|
+
"pipe",
|
|
5
|
+
"space",
|
|
6
|
+
"powerline",
|
|
7
|
+
"dash",
|
|
8
|
+
"comma",
|
|
9
|
+
] as const;
|
|
10
|
+
|
|
11
|
+
export type SeparatorStyle = (typeof SEPARATOR_VALUES)[number];
|
|
12
|
+
|
|
13
|
+
export const WIDGET_SEPARATOR_VALUES = [
|
|
14
|
+
...SEPARATOR_VALUES,
|
|
15
|
+
"powerline-right",
|
|
16
|
+
"powerline-right-spaced",
|
|
17
|
+
"powerline-left",
|
|
18
|
+
"powerline-left-spaced",
|
|
19
|
+
"powerline-soft-right",
|
|
20
|
+
"powerline-soft-left",
|
|
21
|
+
"powerline-start",
|
|
22
|
+
"powerline-end",
|
|
23
|
+
"custom",
|
|
24
|
+
] as const;
|
|
25
|
+
|
|
26
|
+
export type WidgetSeparatorStyle = (typeof WIDGET_SEPARATOR_VALUES)[number];
|
|
27
|
+
|
|
28
|
+
export function separatorText(separator: SeparatorStyle): string {
|
|
29
|
+
if (separator === "none") return "";
|
|
30
|
+
if (separator === "space") return " ";
|
|
31
|
+
if (separator === "pipe") return " | ";
|
|
32
|
+
if (separator === "powerline") return " ";
|
|
33
|
+
if (separator === "dash") return " - ";
|
|
34
|
+
if (separator === "comma") return ", ";
|
|
35
|
+
return " • ";
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function widgetSeparatorText(
|
|
39
|
+
separator: WidgetSeparatorStyle | undefined,
|
|
40
|
+
customText: string,
|
|
41
|
+
): string {
|
|
42
|
+
if (separator === "custom") return customText;
|
|
43
|
+
if (separator === "powerline" || separator === "powerline-right-spaced") return " ";
|
|
44
|
+
if (separator === "powerline-right") return "";
|
|
45
|
+
if (separator === "powerline-left-spaced") return " ";
|
|
46
|
+
if (separator === "powerline-left") return "";
|
|
47
|
+
if (separator === "powerline-soft-right") return "";
|
|
48
|
+
if (separator === "powerline-soft-left") return "";
|
|
49
|
+
if (separator === "powerline-start") return "";
|
|
50
|
+
if (separator === "powerline-end") return "";
|
|
51
|
+
return separatorText(separator ?? "pipe");
|
|
52
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import type { ColorLevel, ColorName } from "./colors.js";
|
|
2
|
+
import type { ExtensionStatusRowConfig } from "./extension-statuses.js";
|
|
3
|
+
import type { Preset } from "./presets.js";
|
|
4
|
+
import type { SeparatorStyle } from "./separators.js";
|
|
5
|
+
import type { WidgetType } from "./widgets/registry.js";
|
|
6
|
+
|
|
7
|
+
export interface WidgetEntry {
|
|
8
|
+
id: string;
|
|
9
|
+
type: WidgetType;
|
|
10
|
+
enabled: boolean;
|
|
11
|
+
options: WidgetOptions;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
type WidgetOptionValue = string | number | boolean | undefined;
|
|
15
|
+
|
|
16
|
+
// Shared style options. These are renderer-level options, not widget-specific metadata.
|
|
17
|
+
export interface WidgetStyle {
|
|
18
|
+
fg?: ColorName;
|
|
19
|
+
bg?: ColorName;
|
|
20
|
+
bold?: boolean;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface WidgetOptions extends WidgetStyle {
|
|
24
|
+
[key: string]: WidgetOptionValue;
|
|
25
|
+
|
|
26
|
+
// Shared/base options. New widget-specific fields must be declared through widget metadata.
|
|
27
|
+
icon?: string;
|
|
28
|
+
raw?: boolean;
|
|
29
|
+
hideWhenEmpty?: boolean;
|
|
30
|
+
hideWhenZero?: boolean;
|
|
31
|
+
text?: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export const TERMINAL_WIDTH_MODE_VALUES = ["full", "full-minus-40"] as const;
|
|
35
|
+
export type TerminalWidthMode = (typeof TERMINAL_WIDTH_MODE_VALUES)[number];
|
|
36
|
+
|
|
37
|
+
export interface TerminalOptions {
|
|
38
|
+
widthMode: TerminalWidthMode;
|
|
39
|
+
colorLevel: ColorLevel;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface StatuslineSettings {
|
|
43
|
+
version: 1;
|
|
44
|
+
enabled: boolean;
|
|
45
|
+
preset: Preset;
|
|
46
|
+
separator: SeparatorStyle;
|
|
47
|
+
separatorFg: ColorName;
|
|
48
|
+
separatorBg: ColorName;
|
|
49
|
+
iconMode: IconMode;
|
|
50
|
+
minimalist: boolean;
|
|
51
|
+
terminal: TerminalOptions;
|
|
52
|
+
extensionStatusRow: ExtensionStatusRowConfig;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface StatuslineConfig extends StatuslineSettings {
|
|
56
|
+
lines: WidgetEntry[][];
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export const ICON_MODE_VALUES = ["emoji", "nerd", "text"] as const;
|
|
60
|
+
|
|
61
|
+
export type IconMode = (typeof ICON_MODE_VALUES)[number];
|
|
62
|
+
|
|
63
|
+
export function isRecord(value: unknown): value is Record<string, unknown> {
|
|
64
|
+
return typeof value === "object" && value !== null;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface SessionMetrics {
|
|
68
|
+
inputTokens: number;
|
|
69
|
+
outputTokens: number;
|
|
70
|
+
cacheReadTokens: number;
|
|
71
|
+
cacheWriteTokens: number;
|
|
72
|
+
totalTokens: number;
|
|
73
|
+
costUsd: number;
|
|
74
|
+
userMessages: number;
|
|
75
|
+
assistantMessages: number;
|
|
76
|
+
toolResults: number;
|
|
77
|
+
firstTimestampMs: number | undefined;
|
|
78
|
+
lastTimestampMs: number | undefined;
|
|
79
|
+
compactions: number;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface TurnMetrics {
|
|
83
|
+
inputTokens: number;
|
|
84
|
+
outputTokens: number;
|
|
85
|
+
cacheReadTokens: number;
|
|
86
|
+
cacheWriteTokens: number;
|
|
87
|
+
totalTokens: number;
|
|
88
|
+
costUsd: number;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export interface GitInfo {
|
|
92
|
+
branch: string | null;
|
|
93
|
+
sha: string | null;
|
|
94
|
+
root: string | null;
|
|
95
|
+
staged: number;
|
|
96
|
+
unstaged: number;
|
|
97
|
+
untracked: number;
|
|
98
|
+
insertions: number;
|
|
99
|
+
deletions: number;
|
|
100
|
+
ahead: number;
|
|
101
|
+
behind: number;
|
|
102
|
+
remote: string | null;
|
|
103
|
+
isRepo: boolean;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export interface StatuslineData {
|
|
107
|
+
model: string | undefined;
|
|
108
|
+
provider: string | undefined;
|
|
109
|
+
sessionName: string | undefined;
|
|
110
|
+
sessionId: string | undefined;
|
|
111
|
+
thinkingLevel: string | undefined;
|
|
112
|
+
textVerbosity: string | undefined;
|
|
113
|
+
git: GitInfo;
|
|
114
|
+
cwd: string;
|
|
115
|
+
activeToolCount: number;
|
|
116
|
+
usingSubscription: boolean;
|
|
117
|
+
contextTokens: number | undefined;
|
|
118
|
+
contextMaxTokens: number | undefined;
|
|
119
|
+
metrics: SessionMetrics;
|
|
120
|
+
turnMetrics: TurnMetrics;
|
|
121
|
+
eventWidgets: ReadonlyMap<string, string>;
|
|
122
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { ColorLevel } from "../colors.js";
|
|
2
|
+
import { COLOR_LEVEL_LABELS } from "./model.js";
|
|
3
|
+
|
|
4
|
+
type ColorLevelConfirmAction = "confirm" | "cancel";
|
|
5
|
+
|
|
6
|
+
export const COLOR_LEVEL_CONFIRM_HINT = "Press enter/y to proceed, esc/n to go back.";
|
|
7
|
+
export const COLOR_LEVEL_CONFIRM_WARNING =
|
|
8
|
+
"Changing color level will reset all custom ANSI256 widget colors.";
|
|
9
|
+
|
|
10
|
+
export function colorLevelConfirmValueLabel(colorLevel: ColorLevel | undefined): string {
|
|
11
|
+
return `New color level: ${colorLevel ? COLOR_LEVEL_LABELS[colorLevel] : "unknown"}`;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export function colorLevelConfirmAction(
|
|
15
|
+
data: string,
|
|
16
|
+
isEscape: boolean,
|
|
17
|
+
isEnter: boolean,
|
|
18
|
+
): ColorLevelConfirmAction | undefined {
|
|
19
|
+
if (isEscape || data === "n") return "cancel";
|
|
20
|
+
if (isEnter || data === "y") return "confirm";
|
|
21
|
+
return undefined;
|
|
22
|
+
}
|