@timurproko/a1 0.1.8-dev.50ebb19 → 0.1.8-dev.512
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 +168 -65
- package/bin/activate.js +8 -0
- package/bin/cli.js +33 -11
- package/bin/guardian.js +16 -6
- package/bin/module-identity.js +76 -69
- package/bin/module-resolver.js +138 -0
- package/bin/pinned-pi-public.d.ts +3 -0
- package/bin/pinned-pi-public.js +93 -0
- package/bin/release-cleanup.js +8 -0
- package/bin/supervisor.js +2 -2
- package/bin/sync-pi-tui-proxy.js +7 -0
- package/bin/ui.js +67 -22
- package/bin/update-recovery.js +343 -0
- package/bin/warmup.js +28 -0
- package/dist/app/session-shell/clipboard-diagnostics.d.ts +16 -0
- package/dist/app/session-shell/clipboard-diagnostics.js +65 -0
- package/dist/app/session-shell/clipboard-image.d.ts +11 -0
- package/dist/app/session-shell/clipboard-image.js +38 -0
- package/dist/app/session-shell/editor-hyperlink-budget.d.ts +9 -0
- package/dist/app/session-shell/editor-hyperlink-budget.js +23 -0
- package/dist/app/session-shell/helper-pool.d.ts +33 -0
- package/dist/app/session-shell/helper-pool.js +98 -0
- package/dist/app/session-shell/image-preparation-client.d.ts +20 -0
- package/dist/app/session-shell/image-preparation-client.js +145 -0
- package/dist/app/session-shell/image-preparation.d.ts +18 -0
- package/dist/app/session-shell/image-preparation.js +126 -0
- package/dist/app/session-shell/image-source.d.ts +13 -0
- package/dist/app/session-shell/image-source.js +171 -0
- package/dist/app/session-shell/image-worker.d.ts +17 -0
- package/dist/app/session-shell/image-worker.js +23 -0
- package/dist/app/session-shell/index.d.ts +7 -0
- package/dist/app/session-shell/index.js +4 -0
- package/dist/app/session-shell/paste-executor.d.ts +18 -0
- package/dist/app/session-shell/paste-executor.js +253 -0
- package/dist/app/session-shell/paste-helper.js +173 -0
- package/dist/app/session-shell/paste-preparation-client.d.ts +31 -0
- package/dist/app/session-shell/paste-preparation-client.js +170 -0
- package/dist/app/session-shell/paste-protocol.d.ts +78 -0
- package/dist/app/session-shell/paste-protocol.js +18 -0
- package/dist/app/session-shell/paste-text-preparation.d.ts +6 -0
- package/dist/app/session-shell/paste-text-preparation.js +134 -0
- package/dist/app/session-shell/paste-text-worker.js +12 -0
- package/dist/app/session-shell/paste-types.d.ts +17 -0
- package/dist/app/session-shell/path-chip-presentation.d.ts +7 -0
- package/dist/app/session-shell/path-chip-presentation.js +24 -0
- package/dist/app/session-shell/prompt-chips.d.ts +76 -0
- package/dist/app/session-shell/prompt-chips.js +507 -0
- package/dist/app/session-shell/prompt-history-controller.d.ts +36 -0
- package/dist/app/session-shell/prompt-history-controller.js +170 -0
- package/dist/app/session-shell/prompt-suggestion-controller.d.ts +35 -0
- package/dist/app/session-shell/prompt-suggestion-controller.js +207 -0
- package/dist/app/session-shell/quit-outro-effects.d.ts +29 -0
- package/dist/app/session-shell/quit-outro-effects.js +242 -0
- package/dist/app/session-shell/quit-outro.d.ts +38 -0
- package/dist/app/session-shell/quit-outro.js +98 -0
- package/dist/app/session-shell/response-copy-coordinator.d.ts +27 -0
- package/dist/app/session-shell/response-copy-coordinator.js +187 -0
- package/dist/app/session-shell/response-copy-helper.js +122 -0
- package/dist/app/session-shell/response-copy-protocol.d.ts +56 -0
- package/dist/app/session-shell/response-copy-protocol.js +5 -0
- package/dist/app/session-shell/response-copy-transport.d.ts +39 -0
- package/dist/app/session-shell/response-copy-transport.js +217 -0
- package/dist/app/session-shell/session-shell-root.d.ts +265 -0
- package/dist/app/session-shell/session-shell-root.js +1366 -0
- package/dist/app/session-shell/session-shell.d.ts +59 -0
- package/dist/app/session-shell/session-shell.js +1917 -0
- package/dist/app/session-shell/session-viewport-controller.d.ts +61 -0
- package/dist/app/session-shell/session-viewport-controller.js +597 -0
- package/dist/app/session-shell/stream-presentation-coalescer.d.ts +29 -0
- package/dist/app/session-shell/stream-presentation-coalescer.js +79 -0
- package/dist/app/session-shell/system-clipboard.d.ts +20 -0
- package/dist/app/session-shell/system-clipboard.js +159 -0
- package/dist/app/session-shell/text-paste.d.ts +5 -0
- package/dist/app/session-shell/text-paste.js +16 -0
- package/dist/cli/capabilities.d.ts +6 -0
- package/dist/cli/capabilities.js +7 -0
- package/dist/cli/dispatch.d.ts +46 -0
- package/dist/cli/dispatch.js +261 -0
- package/dist/cli/index.d.ts +8 -0
- package/dist/cli/index.js +4 -0
- package/dist/cli/package-messages.d.ts +26 -0
- package/dist/cli/package-messages.js +71 -0
- package/dist/cli/packages.d.ts +32 -0
- package/dist/cli/packages.js +81 -0
- package/dist/cli/version-stats.d.ts +22 -0
- package/dist/cli/version-stats.js +112 -0
- package/dist/composition/index.d.ts +2 -0
- package/dist/composition/index.js +2 -0
- package/dist/composition/owned-ui.d.ts +37 -0
- package/dist/composition/owned-ui.js +136 -0
- package/dist/composition/settings-route-host.d.ts +7 -0
- package/dist/composition/settings-route-host.js +110 -0
- package/dist/contracts/agent-engine/capability-ports.d.ts +95 -0
- package/dist/contracts/agent-engine/domain-validation.js +107 -0
- package/dist/contracts/agent-engine/domain.d.ts +138 -0
- package/dist/contracts/agent-engine/index.d.ts +11 -0
- package/dist/contracts/agent-engine/index.js +6 -0
- package/dist/contracts/agent-engine/package-ports.d.ts +60 -0
- package/dist/contracts/agent-engine/ports.js +1 -0
- package/dist/contracts/owned-ui/extension-ui.d.ts +310 -0
- package/dist/contracts/owned-ui/image-attachments.d.ts +36 -0
- package/dist/contracts/owned-ui/image-attachments.js +67 -0
- package/dist/contracts/owned-ui/index.d.ts +12 -0
- package/dist/contracts/owned-ui/index.js +8 -0
- package/dist/contracts/owned-ui/model.d.ts +378 -0
- package/dist/contracts/owned-ui/prompt-history.d.ts +55 -0
- package/dist/contracts/owned-ui/prompt-history.js +23 -0
- package/dist/contracts/owned-ui/prompt-suggestions.d.ts +3 -0
- package/dist/contracts/owned-ui/prompt-suggestions.js +44 -0
- package/dist/contracts/owned-ui/suggestion-diagnostics.d.ts +22 -0
- package/dist/contracts/owned-ui/suggestion-diagnostics.js +9 -0
- package/dist/contracts/owned-ui/transcript-lifecycle.d.ts +5 -0
- package/dist/contracts/owned-ui/transcript-lifecycle.js +33 -0
- package/dist/contracts/owned-ui/validation.d.ts +15 -0
- package/dist/contracts/owned-ui/validation.js +523 -0
- package/dist/contracts/presentation/index.d.ts +104 -0
- package/dist/features/launch/development-launch.js +36 -0
- package/dist/features/launch/index.d.ts +12 -0
- package/dist/features/launch/index.js +6 -0
- package/dist/features/launch/intent.d.ts +12 -0
- package/dist/features/launch/intent.js +8 -0
- package/dist/features/launch/prepare-launch.d.ts +11 -0
- package/dist/features/launch/prepare-launch.js +14 -0
- package/dist/features/launch/profile-paths.d.ts +16 -0
- package/dist/features/launch/profile-paths.js +36 -0
- package/dist/features/launch/runtime-selection.d.ts +16 -0
- package/dist/features/launch/runtime-selection.js +13 -0
- package/dist/features/owned-ui/index.d.ts +6 -0
- package/dist/features/owned-ui/index.js +4 -0
- package/dist/features/owned-ui/project-trust-prompt.d.ts +25 -0
- package/dist/features/owned-ui/project-trust-prompt.js +149 -0
- package/dist/features/owned-ui/run.d.ts +17 -0
- package/dist/features/owned-ui/run.js +64 -0
- package/dist/features/owned-ui/session-fork-prompt.d.ts +8 -0
- package/dist/features/owned-ui/session-fork-prompt.js +34 -0
- package/dist/features/owned-ui/settings-app.d.ts +21 -0
- package/dist/features/owned-ui/settings-app.js +807 -0
- package/dist/features/owned-ui/settings-route.d.ts +2 -0
- package/dist/features/owned-ui/settings-route.js +2 -0
- package/dist/features/prompt-history/image-sidecar.d.ts +32 -0
- package/dist/features/prompt-history/image-sidecar.js +130 -0
- package/dist/features/prompt-history/index.d.ts +4 -0
- package/dist/features/prompt-history/index.js +3 -0
- package/dist/features/prompt-history/paths.d.ts +5 -0
- package/dist/features/prompt-history/paths.js +17 -0
- package/dist/features/prompt-history/service.d.ts +54 -0
- package/dist/features/prompt-history/service.js +425 -0
- package/dist/features/prompt-history/store.d.ts +16 -0
- package/dist/features/prompt-history/store.js +219 -0
- package/dist/features/prompt-history/worker.d.ts +9 -0
- package/dist/features/prompt-history/worker.js +45 -0
- package/dist/features/prompt-suggestions/diagnostics.d.ts +18 -0
- package/dist/features/prompt-suggestions/diagnostics.js +82 -0
- package/dist/features/prompt-suggestions/index.d.ts +2 -0
- package/dist/features/prompt-suggestions/index.js +1 -0
- package/dist/foundation/launch-context/index.d.ts +59 -0
- package/dist/foundation/launch-context/index.js +136 -0
- package/dist/foundation/launch-guardian/index.d.ts +2 -0
- package/dist/foundation/launch-guardian/index.js +1 -0
- package/dist/foundation/launch-guardian/main.d.ts +33 -0
- package/dist/foundation/launch-guardian/main.js +180 -0
- package/dist/foundation/lifecycle/commands.js +1 -0
- package/dist/foundation/lifecycle/index.d.ts +11 -0
- package/dist/foundation/lifecycle/index.js +5 -0
- package/dist/foundation/lifecycle/model.d.ts +64 -0
- package/dist/foundation/lifecycle/model.js +40 -0
- package/dist/foundation/lifecycle/paths.d.ts +30 -0
- package/dist/foundation/lifecycle/paths.js +70 -0
- package/dist/foundation/lifecycle/session-selection.d.ts +9 -0
- package/dist/foundation/lifecycle/session-selection.js +39 -0
- package/dist/foundation/lifecycle/supervisor-startup.d.ts +30 -0
- package/dist/foundation/lifecycle/supervisor-startup.js +106 -0
- package/dist/foundation/process-containment/darwin-process-inspector.d.ts +5 -0
- package/dist/foundation/process-containment/darwin-process-inspector.js +7 -0
- package/dist/foundation/process-containment/index.d.ts +8 -0
- package/dist/foundation/process-containment/index.js +6 -0
- package/dist/foundation/process-containment/linux-process-inspector.d.ts +7 -0
- package/dist/foundation/process-containment/linux-process-inspector.js +27 -0
- package/dist/foundation/process-containment/native-guardian-containment.d.ts +17 -0
- package/dist/foundation/process-containment/native-guardian-containment.js +140 -0
- package/dist/foundation/process-containment/windows-process-inspector.d.ts +19 -0
- package/dist/foundation/process-containment/windows-process-inspector.js +56 -0
- package/dist/foundation/protocol/client.d.ts +18 -0
- package/dist/foundation/protocol/client.js +130 -0
- package/dist/foundation/protocol/index.d.ts +3 -0
- package/dist/foundation/protocol/index.js +2 -0
- package/dist/foundation/protocol/messages.d.ts +90 -0
- package/dist/foundation/protocol/messages.js +100 -0
- package/dist/foundation/release/bootstrap.d.ts +51 -0
- package/dist/foundation/release/bootstrap.js +427 -0
- package/dist/foundation/release/cohort-state.d.ts +157 -0
- package/dist/foundation/release/cohort-state.js +472 -0
- package/dist/foundation/release/dependency-certification-retention.d.ts +7 -0
- package/dist/foundation/release/dependency-certification-retention.js +88 -0
- package/dist/foundation/release/dependency-certification.d.ts +24 -0
- package/dist/foundation/release/dependency-certification.js +266 -0
- package/dist/foundation/release/dependency-layer.d.ts +78 -0
- package/dist/foundation/release/dependency-layer.js +466 -0
- package/dist/foundation/release/endpoints.d.ts +24 -0
- package/dist/foundation/release/endpoints.js +134 -0
- package/dist/foundation/release/immutable-platform.d.ts +6 -0
- package/dist/foundation/release/immutable-platform.js +13 -0
- package/dist/foundation/release/index.d.ts +32 -0
- package/dist/foundation/release/index.js +17 -0
- package/dist/foundation/release/release-gc.d.ts +71 -0
- package/dist/foundation/release/release-gc.js +764 -0
- package/dist/foundation/release/release-store.d.ts +49 -0
- package/dist/foundation/release/release-store.js +235 -0
- package/dist/foundation/release/release.d.ts +43 -0
- package/dist/foundation/release/release.js +215 -0
- package/dist/foundation/release/restart-certification.d.ts +68 -0
- package/dist/foundation/release/restart-certification.js +227 -0
- package/dist/foundation/release/types.d.ts +11 -0
- package/dist/foundation/release/types.js +1 -0
- package/dist/foundation/release/update-activation.d.ts +72 -0
- package/dist/foundation/release/update-activation.js +204 -0
- package/dist/foundation/release/update-launch.d.ts +6 -0
- package/dist/foundation/release/update-launch.js +17 -0
- package/dist/foundation/release/update-recovery.d.ts +76 -0
- package/dist/foundation/release/update-recovery.js +356 -0
- package/dist/foundation/release/update-transaction.d.ts +42 -0
- package/dist/foundation/release/update-transaction.js +101 -0
- package/dist/foundation/release/update.d.ts +114 -0
- package/dist/foundation/release/update.js +633 -0
- package/dist/foundation/release/warmup.d.ts +3 -0
- package/dist/foundation/release/warmup.js +47 -0
- package/dist/foundation/startup/index.d.ts +4 -0
- package/dist/foundation/startup/index.js +2 -0
- package/dist/foundation/startup/startup-budget.d.ts +46 -0
- package/dist/foundation/startup/startup-budget.js +42 -0
- package/dist/foundation/startup/startup-descriptor.js +34 -0
- package/dist/foundation/startup/startup-runtime.d.ts +27 -0
- package/dist/foundation/startup/startup-runtime.js +128 -0
- package/dist/foundation/storage/control-store.d.ts +18 -0
- package/dist/foundation/storage/control-store.js +342 -0
- package/dist/foundation/storage/index.d.ts +1 -0
- package/dist/foundation/storage/index.js +1 -0
- package/dist/foundation/supervision/index.d.ts +3 -0
- package/dist/foundation/supervision/index.js +3 -0
- package/dist/foundation/supervision/main.d.ts +1 -0
- package/dist/foundation/supervision/main.js +84 -0
- package/dist/foundation/supervision/paths.d.ts +1 -0
- package/dist/foundation/supervision/paths.js +1 -0
- package/dist/foundation/supervision/server.d.ts +46 -0
- package/dist/foundation/supervision/server.js +573 -0
- package/dist/foundation/terminal-cleanup/fatal-exit.d.ts +12 -0
- package/dist/foundation/terminal-cleanup/fatal-exit.js +87 -0
- package/dist/foundation/terminal-cleanup/index.d.ts +3 -0
- package/dist/foundation/terminal-cleanup/index.js +2 -0
- package/dist/foundation/terminal-cleanup/terminal-reset.d.ts +4 -0
- package/dist/foundation/terminal-cleanup/terminal-reset.js +40 -0
- package/dist/integrations/pi/components/components.d.ts +4 -0
- package/dist/integrations/pi/components/components.js +64 -0
- package/dist/integrations/pi/components/conformance.d.ts +18 -0
- package/dist/integrations/pi/components/conformance.js +70 -0
- package/dist/integrations/pi/components/editor-interaction.d.ts +38 -0
- package/dist/integrations/pi/components/editor-interaction.js +1 -0
- package/dist/integrations/pi/components/history-editor-loader.d.ts +5 -0
- package/dist/integrations/pi/components/history-editor-loader.js +5 -0
- package/dist/integrations/pi/components/index.d.ts +21 -0
- package/dist/integrations/pi/components/index.js +13 -0
- package/dist/integrations/pi/components/owned-editor-ux.d.ts +74 -0
- package/dist/integrations/pi/components/owned-editor-ux.js +1094 -0
- package/dist/integrations/pi/components/path-word-ranges.d.ts +2 -0
- package/dist/integrations/pi/components/path-word-ranges.js +37 -0
- package/dist/integrations/pi/components/prompt-input-port.d.ts +18 -0
- package/dist/integrations/pi/components/prompt-input-port.js +1 -0
- package/dist/integrations/pi/components/resources/builtin-themes.d.ts +167 -0
- package/dist/integrations/pi/components/resources/builtin-themes.js +168 -0
- package/dist/integrations/pi/components/shell-components.d.ts +7 -0
- package/dist/integrations/pi/components/shell-components.js +7 -0
- package/dist/integrations/pi/components/shell-editor-autocomplete.js +298 -0
- package/dist/integrations/pi/components/shell-extension-ui.d.ts +35 -0
- package/dist/integrations/pi/components/shell-extension-ui.js +280 -0
- package/dist/integrations/pi/components/shell-footer-status.d.ts +7 -0
- package/dist/integrations/pi/components/shell-footer-status.js +248 -0
- package/dist/integrations/pi/components/shell-presenters-info.d.ts +43 -0
- package/dist/integrations/pi/components/shell-presenters-info.js +114 -0
- package/dist/integrations/pi/components/shell-presenters-transcript.d.ts +29 -0
- package/dist/integrations/pi/components/shell-presenters-transcript.js +433 -0
- package/dist/integrations/pi/components/shell-selectors-dialogs.d.ts +123 -0
- package/dist/integrations/pi/components/shell-selectors-dialogs.js +242 -0
- package/dist/integrations/pi/components/shell-shared-facade.d.ts +217 -0
- package/dist/integrations/pi/components/shell-shared-facade.js +92 -0
- package/dist/integrations/pi/components/submitted-prompt-adapter.d.ts +17 -0
- package/dist/integrations/pi/components/submitted-prompt-adapter.js +49 -0
- package/dist/integrations/pi/components/tool-image-presentation.d.ts +21 -0
- package/dist/integrations/pi/components/tool-image-presentation.js +83 -0
- package/dist/integrations/pi/components/tool-result-adapter.d.ts +6 -0
- package/dist/integrations/pi/components/tool-result-adapter.js +27 -0
- package/dist/integrations/pi/components/transcript-image-resolver.d.ts +7 -0
- package/dist/integrations/pi/components/transcript-image-resolver.js +19 -0
- package/dist/integrations/pi/components/upstream/adjacent/core/keybindings.d.ts +445 -0
- package/dist/integrations/pi/components/upstream/adjacent/core/keybindings.js +370 -0
- package/dist/integrations/pi/components/upstream/assets/earendil-image.json +12 -0
- package/dist/integrations/pi/components/upstream/components/countdown-timer.d.ts +13 -0
- package/dist/integrations/pi/components/upstream/components/daxnuts.d.ts +29 -0
- package/dist/integrations/pi/components/upstream/components/daxnuts.js +146 -0
- package/dist/integrations/pi/components/upstream/components/earendil-announcement.d.ts +4 -0
- package/dist/integrations/pi/components/upstream/components/earendil-announcement.js +48 -0
- package/dist/integrations/pi/components/upstream/components/extension-editor.d.ts +20 -0
- package/dist/integrations/pi/components/upstream/components/extension-editor.js +84 -0
- package/dist/integrations/pi/components/upstream/components/mermaid.js +81 -0
- package/dist/integrations/pi/components/upstream/components/owned-editor.d.ts +46 -0
- package/dist/integrations/pi/components/upstream/components/owned-editor.js +187 -0
- package/dist/integrations/pi/components/upstream/components/scoped-models-selector.d.ts +59 -0
- package/dist/integrations/pi/components/upstream/components/scoped-models-selector.js +346 -0
- package/dist/integrations/pi/components/upstream/components/session-footer.d.ts +11 -0
- package/dist/integrations/pi/components/upstream/components/session-footer.js +123 -0
- package/dist/integrations/pi/components/upstream/components/session-selector-search.js +161 -0
- package/dist/integrations/pi/components/upstream/components/session-selector.d.ts +95 -0
- package/dist/integrations/pi/components/upstream/components/session-selector.js +893 -0
- package/dist/integrations/pi/components/upstream/components/skill-invocation-message.d.ts +21 -0
- package/dist/integrations/pi/components/upstream/components/skill-invocation-message.js +46 -0
- package/dist/integrations/pi/components/upstream/components/status-indicator.d.ts +35 -0
- package/dist/integrations/pi/components/upstream/components/status-indicator.js +69 -0
- package/dist/integrations/pi/components/upstream/components/tool-execution.d.ts +67 -0
- package/dist/integrations/pi/components/upstream/components/tool-execution.js +365 -0
- package/dist/integrations/pi/components/upstream/components/tree-selector.d.ts +101 -0
- package/dist/integrations/pi/components/upstream/components/tree-selector.js +1275 -0
- package/dist/integrations/pi/components/upstream/components/trust-selector.d.ts +33 -0
- package/dist/integrations/pi/components/upstream/components/trust-selector.js +81 -0
- package/dist/integrations/pi/components/upstream/external-editor.js +43 -0
- package/dist/integrations/pi/components/upstream/history/editor-core.d.ts +289 -0
- package/dist/integrations/pi/components/upstream/history/editor-core.js +2144 -0
- package/dist/integrations/pi/components/upstream/history/kill-ring.d.ts +35 -0
- package/dist/integrations/pi/components/upstream/history/kill-ring.js +51 -0
- package/dist/integrations/pi/components/upstream/history/printable-key.d.ts +1 -0
- package/dist/integrations/pi/components/upstream/history/printable-key.js +43 -0
- package/dist/integrations/pi/components/upstream/history/text-helpers.d.ts +14 -0
- package/dist/integrations/pi/components/upstream/history/text-helpers.js +31 -0
- package/dist/integrations/pi/components/upstream/history/undo-stack.d.ts +25 -0
- package/dist/integrations/pi/components/upstream/history/undo-stack.js +39 -0
- package/dist/integrations/pi/components/upstream/history/word-navigation.d.ts +24 -0
- package/dist/integrations/pi/components/upstream/history/word-navigation.js +103 -0
- package/dist/integrations/pi/components/upstream/model-search.d.ts +18 -0
- package/dist/integrations/pi/components/upstream/theme/theme-controller.d.ts +33 -0
- package/dist/integrations/pi/components/upstream/theme/theme-controller.js +114 -0
- package/dist/integrations/pi/components/upstream/theme/theme.d.ts +61 -0
- package/dist/integrations/pi/components/upstream/theme/theme.js +337 -0
- package/dist/integrations/pi/engine/adapter.d.ts +135 -0
- package/dist/integrations/pi/engine/adapter.js +648 -0
- package/dist/integrations/pi/engine/changelog.d.ts +2 -0
- package/dist/integrations/pi/engine/changelog.js +63 -0
- package/dist/integrations/pi/engine/command-dispatch.d.ts +41 -0
- package/dist/integrations/pi/engine/command-dispatch.js +125 -0
- package/dist/integrations/pi/engine/compaction-progress.d.ts +28 -0
- package/dist/integrations/pi/engine/compaction-progress.js +96 -0
- package/dist/integrations/pi/engine/conformance.d.ts +39 -0
- package/dist/integrations/pi/engine/conformance.js +140 -0
- package/dist/integrations/pi/engine/event-delivery.d.ts +100 -0
- package/dist/integrations/pi/engine/event-delivery.js +184 -0
- package/dist/integrations/pi/engine/extension-ui-binding.d.ts +35 -0
- package/dist/integrations/pi/engine/extension-ui-binding.js +81 -0
- package/dist/integrations/pi/engine/http-dispatcher.d.ts +4 -0
- package/dist/integrations/pi/engine/http-dispatcher.js +25 -0
- package/dist/integrations/pi/engine/index.d.ts +18 -0
- package/dist/integrations/pi/engine/index.js +10 -0
- package/dist/integrations/pi/engine/message-values.d.ts +29 -0
- package/dist/integrations/pi/engine/message-values.js +168 -0
- package/dist/integrations/pi/engine/package-integration.d.ts +13 -0
- package/dist/integrations/pi/engine/package-integration.js +118 -0
- package/dist/integrations/pi/engine/pending-delivery.d.ts +30 -0
- package/dist/integrations/pi/engine/pending-delivery.js +156 -0
- package/dist/integrations/pi/engine/pi-settings-metadata.json +385 -0
- package/dist/integrations/pi/engine/project-trust-preflight.d.ts +22 -0
- package/dist/integrations/pi/engine/project-trust-preflight.js +50 -0
- package/dist/integrations/pi/engine/prompt-suggestions.d.ts +30 -0
- package/dist/integrations/pi/engine/prompt-suggestions.js +102 -0
- package/dist/integrations/pi/engine/provider-authentication.d.ts +34 -0
- package/dist/integrations/pi/engine/provider-authentication.js +209 -0
- package/dist/integrations/pi/engine/resource-catalog.d.ts +49 -0
- package/dist/integrations/pi/engine/resource-catalog.js +289 -0
- package/dist/integrations/pi/engine/resources/changelog.json +12 -0
- package/dist/integrations/pi/engine/runtime-integration.d.ts +53 -0
- package/dist/integrations/pi/engine/runtime-integration.js +118 -0
- package/dist/integrations/pi/engine/session-events.d.ts +48 -0
- package/dist/integrations/pi/engine/session-events.js +223 -0
- package/dist/integrations/pi/engine/session-integration.d.ts +67 -0
- package/dist/integrations/pi/engine/session-integration.js +195 -0
- package/dist/integrations/pi/engine/session-runtime.d.ts +84 -0
- package/dist/integrations/pi/engine/session-runtime.js +249 -0
- package/dist/integrations/pi/engine/session-selection.d.ts +28 -0
- package/dist/integrations/pi/engine/session-selection.js +90 -0
- package/dist/integrations/pi/engine/settings-bridge.d.ts +121 -0
- package/dist/integrations/pi/engine/settings-bridge.js +514 -0
- package/dist/integrations/pi/engine/settings-metadata.d.ts +31 -0
- package/dist/integrations/pi/engine/settings-metadata.js +67 -0
- package/dist/integrations/pi/engine/settings-port.d.ts +42 -0
- package/dist/integrations/pi/engine/settings-port.js +353 -0
- package/dist/integrations/pi/engine/tool-rendering.d.ts +13 -0
- package/dist/integrations/pi/engine/tool-rendering.js +145 -0
- package/dist/integrations/pi/engine/transcript-image-assets.d.ts +11 -0
- package/dist/integrations/pi/engine/transcript-image-assets.js +86 -0
- package/dist/integrations/pi/engine/transcript-projection.d.ts +39 -0
- package/dist/integrations/pi/engine/transcript-projection.js +405 -0
- package/dist/integrations/pi/engine/usage-view.d.ts +4 -0
- package/dist/integrations/pi/engine/usage-view.js +56 -0
- package/dist/integrations/pi/engine/windows-filesystem-hygiene.d.ts +21 -0
- package/dist/integrations/pi/engine/windows-filesystem-hygiene.js +55 -0
- package/dist/integrations/pi/engine/workflow-contexts.d.ts +59 -0
- package/dist/integrations/pi/engine/workflow-contexts.js +316 -0
- package/dist/integrations/pi/engine/workflow-runner.d.ts +60 -0
- package/dist/integrations/pi/engine/workflow-runner.js +509 -0
- package/dist/integrations/pi/engine/workflow-support.d.ts +33 -0
- package/dist/integrations/pi/engine/workflow-support.js +352 -0
- package/dist/integrations/pi/engine/workflows.d.ts +251 -0
- package/dist/integrations/pi/engine/workflows.js +63 -0
- package/dist/integrations/pi/startup-public.d.ts +2 -0
- package/dist/integrations/pi/startup-public.js +2223 -0
- package/dist/integrations/pi/startup-public.manifest.json +12502 -0
- package/dist/integrations/pi/tui-runtime/adapter.d.ts +56 -0
- package/dist/integrations/pi/tui-runtime/adapter.js +783 -0
- package/dist/integrations/pi/tui-runtime/contracts.d.ts +156 -0
- package/dist/integrations/pi/tui-runtime/contracts.js +1 -0
- package/dist/integrations/pi/tui-runtime/damage-aware-terminal.d.ts +88 -0
- package/dist/integrations/pi/tui-runtime/damage-aware-terminal.js +433 -0
- package/dist/integrations/pi/tui-runtime/index.d.ts +9 -0
- package/dist/integrations/pi/tui-runtime/index.js +5 -0
- package/dist/integrations/pi/tui-runtime/input-presentation-coordinator.d.ts +39 -0
- package/dist/integrations/pi/tui-runtime/input-presentation-coordinator.js +139 -0
- package/dist/integrations/pi/tui-runtime/mouse-report-input.d.ts +13 -0
- package/dist/integrations/pi/tui-runtime/mouse-report-input.js +57 -0
- package/dist/integrations/pi/tui-runtime/overlay-geometry.d.ts +32 -0
- package/dist/integrations/pi/tui-runtime/overlay-geometry.js +158 -0
- package/dist/integrations/pi/tui-runtime/presentation-adapter.d.ts +4 -0
- package/dist/integrations/pi/tui-runtime/presentation-adapter.js +48 -0
- package/dist/native/darwin-arm64/manifest.json +4 -4
- package/dist/native/darwin-arm64/process-guardian +0 -0
- package/dist/native/linux-x64/manifest.json +3 -3
- package/dist/native/linux-x64/process-guardian +0 -0
- package/dist/native/win32-x64/manifest.json +3 -3
- package/dist/native/win32-x64/process-guardian.exe +0 -0
- package/dist/product-identity.d.ts +37 -0
- package/dist/product-identity.js +119 -0
- package/dist/product-identity.json +85 -0
- package/dist/runtime-payload-inventory.json +127148 -0
- package/dist/ui/apps/contracts.d.ts +64 -0
- package/dist/ui/apps/host.d.ts +42 -0
- package/dist/ui/apps/host.js +156 -0
- package/dist/ui/apps/index.d.ts +5 -0
- package/dist/ui/apps/index.js +3 -0
- package/dist/ui/apps/registry.d.ts +12 -0
- package/dist/ui/apps/registry.js +33 -0
- package/dist/ui/components/dialog-panel.js +49 -0
- package/dist/ui/components/frame.d.ts +22 -0
- package/dist/ui/components/frame.js +55 -0
- package/dist/ui/components/index.d.ts +47 -0
- package/dist/ui/components/index.js +25 -0
- package/dist/ui/components/line-input.d.ts +68 -0
- package/dist/ui/components/line-input.js +224 -0
- package/dist/ui/components/list-view.d.ts +60 -0
- package/dist/ui/components/list-view.js +82 -0
- package/dist/ui/components/mouse.d.ts +25 -0
- package/dist/ui/components/mouse.js +70 -0
- package/dist/ui/components/progress-status.d.ts +2 -0
- package/dist/ui/components/progress-status.js +4 -0
- package/dist/ui/components/prompt-input.d.ts +32 -0
- package/dist/ui/components/prompt-input.js +51 -0
- package/dist/ui/components/scrollbar.d.ts +88 -0
- package/dist/ui/components/scrollbar.js +137 -0
- package/dist/ui/components/selection-copy.d.ts +24 -0
- package/dist/ui/components/selection-copy.js +39 -0
- package/dist/ui/components/shortcuts.d.ts +58 -0
- package/dist/ui/components/shortcuts.js +82 -0
- package/dist/ui/components/spans.d.ts +28 -0
- package/dist/ui/components/spans.js +266 -0
- package/dist/ui/components/submitted-prompt.d.ts +23 -0
- package/dist/ui/components/submitted-prompt.js +50 -0
- package/dist/ui/components/surface.d.ts +20 -0
- package/dist/ui/components/surface.js +44 -0
- package/dist/ui/components/text-selection.d.ts +62 -0
- package/dist/ui/components/text-selection.js +210 -0
- package/dist/ui/components/text.d.ts +38 -0
- package/dist/ui/components/text.js +185 -0
- package/dist/ui/components/transcript-viewport.d.ts +173 -0
- package/dist/ui/components/transcript-viewport.js +753 -0
- package/dist/ui/components/visible-hyperlinks.d.ts +26 -0
- package/dist/ui/components/visible-hyperlinks.js +97 -0
- package/dist/ui/settings/declarations.d.ts +141 -0
- package/dist/ui/settings/declarations.js +135 -0
- package/dist/ui/settings/index.d.ts +10 -0
- package/dist/ui/settings/index.js +5 -0
- package/dist/ui/settings/manager.d.ts +54 -0
- package/dist/ui/settings/manager.js +256 -0
- package/dist/ui/settings/migrations.d.ts +13 -0
- package/dist/ui/settings/migrations.js +74 -0
- package/dist/ui/settings/sections.d.ts +52 -0
- package/dist/ui/settings/sections.js +112 -0
- package/docs/architecture/boundaries.md +17 -13
- package/docs/architecture/code-documentation.md +77 -0
- package/docs/architecture/history-editor-provenance.md +100 -0
- package/docs/architecture/internal-naming.md +93 -0
- package/docs/architecture/process-guardian-provenance.md +3 -1
- package/docs/architecture/project-structure.md +69 -30
- package/docs/architecture/prompt-suggestions.md +68 -0
- package/docs/architecture/resource-and-data-policy.md +28 -2
- package/docs/architecture/response-copy-delivery.md +85 -0
- package/docs/architecture/terminal-host-proof-gate.md +1 -1
- package/docs/architecture/terminal-host-spike-evidence.md +1 -1
- package/docs/architecture/tool-image-presentation.md +62 -0
- package/docs/architecture/toolchain.md +32 -10
- package/docs/architecture/ui-reference-provenance.md +60 -6
- package/docs/ci-release-runbook.md +256 -79
- package/docs/features/launch-profiles.md +24 -17
- package/docs/features/modal-content-interaction.md +37 -0
- package/docs/features/prompt-history.md +149 -0
- package/docs/local-worktree-cleanup.md +212 -0
- package/docs/manual-code-streaming-cleanup.md +88 -0
- package/docs/manual-ghost-link-baseline.md +89 -0
- package/docs/manual-launch-instance-acceptance.md +12 -35
- package/docs/manual-owned-ui-checkpoint.md +79 -0
- package/docs/manual-pi-boundary-candidate.md +4 -5
- package/docs/manual-terminal-colour-check.md +4 -3
- package/docs/openspec-archive-automation.md +259 -0
- package/docs/repository-governance-live-acceptance.md +77 -0
- package/docs/validation.md +100 -0
- package/package.json +52 -34
- package/dist/src/cli/capabilities.d.ts +0 -15
- package/dist/src/cli/capabilities.js +0 -7
- package/dist/src/cli/dispatch.d.ts +0 -32
- package/dist/src/cli/dispatch.js +0 -142
- package/dist/src/cli/index.d.ts +0 -5
- package/dist/src/cli/index.js +0 -5
- package/dist/src/cli/packages.d.ts +0 -23
- package/dist/src/cli/packages.js +0 -84
- package/dist/src/cli/version-stats.d.ts +0 -16
- package/dist/src/cli/version-stats.js +0 -72
- package/dist/src/cli/version.d.ts +0 -2
- package/dist/src/cli/version.js +0 -23
- package/dist/src/composition/index.d.ts +0 -48
- package/dist/src/composition/index.js +0 -258
- package/dist/src/features/launch/development-launch.js +0 -28
- package/dist/src/features/launch/index.d.ts +0 -7
- package/dist/src/features/launch/index.js +0 -7
- package/dist/src/features/launch/intent.d.ts +0 -7
- package/dist/src/features/launch/intent.js +0 -4
- package/dist/src/features/launch/prepare-launch.d.ts +0 -13
- package/dist/src/features/launch/prepare-launch.js +0 -21
- package/dist/src/features/launch/profile-paths.d.ts +0 -15
- package/dist/src/features/launch/profile-paths.js +0 -31
- package/dist/src/features/launch/profiles.d.ts +0 -12
- package/dist/src/features/launch/profiles.js +0 -26
- package/dist/src/features/launch/runtime-selection.d.ts +0 -19
- package/dist/src/features/launch/runtime-selection.js +0 -13
- package/dist/src/features/owned-ui/customization.d.ts +0 -38
- package/dist/src/features/owned-ui/customization.js +0 -108
- package/dist/src/features/owned-ui/diagnostics.d.ts +0 -33
- package/dist/src/features/owned-ui/diagnostics.js +0 -94
- package/dist/src/features/owned-ui/index.d.ts +0 -4
- package/dist/src/features/owned-ui/index.js +0 -4
- package/dist/src/features/owned-ui/run.d.ts +0 -11
- package/dist/src/features/owned-ui/run.js +0 -15
- package/dist/src/features/owned-ui/settings-app.d.ts +0 -22
- package/dist/src/features/owned-ui/settings-app.js +0 -633
- package/dist/src/features/workspace/capabilities.d.ts +0 -31
- package/dist/src/features/workspace/capabilities.js +0 -75
- package/dist/src/features/workspace/index.d.ts +0 -6
- package/dist/src/features/workspace/index.js +0 -6
- package/dist/src/features/workspace/presentation.d.ts +0 -30
- package/dist/src/features/workspace/presentation.js +0 -70
- package/dist/src/features/workspace/reconciliation.d.ts +0 -15
- package/dist/src/features/workspace/reconciliation.js +0 -82
- package/dist/src/features/workspace/reducer.d.ts +0 -42
- package/dist/src/features/workspace/reducer.js +0 -213
- package/dist/src/features/workspace/router.d.ts +0 -31
- package/dist/src/features/workspace/router.js +0 -124
- package/dist/src/features/workspace/store.d.ts +0 -17
- package/dist/src/features/workspace/store.js +0 -54
- package/dist/src/foundation/agent-engine-contracts/capability-ports.d.ts +0 -95
- package/dist/src/foundation/agent-engine-contracts/domain-validation.js +0 -89
- package/dist/src/foundation/agent-engine-contracts/domain.d.ts +0 -116
- package/dist/src/foundation/agent-engine-contracts/index.d.ts +0 -8
- package/dist/src/foundation/agent-engine-contracts/index.js +0 -8
- package/dist/src/foundation/agent-engine-contracts/package-ports.d.ts +0 -54
- package/dist/src/foundation/launch-guardian/index.d.ts +0 -1
- package/dist/src/foundation/launch-guardian/index.js +0 -1
- package/dist/src/foundation/launch-guardian/main.d.ts +0 -31
- package/dist/src/foundation/launch-guardian/main.js +0 -165
- package/dist/src/foundation/lifecycle/index.d.ts +0 -4
- package/dist/src/foundation/lifecycle/index.js +0 -4
- package/dist/src/foundation/lifecycle/model.d.ts +0 -64
- package/dist/src/foundation/lifecycle/model.js +0 -40
- package/dist/src/foundation/lifecycle/paths.d.ts +0 -10
- package/dist/src/foundation/lifecycle/paths.js +0 -42
- package/dist/src/foundation/native-host-protocol/codec.d.ts +0 -11
- package/dist/src/foundation/native-host-protocol/codec.js +0 -56
- package/dist/src/foundation/native-host-protocol/evidence.d.ts +0 -67
- package/dist/src/foundation/native-host-protocol/evidence.js +0 -141
- package/dist/src/foundation/native-host-protocol/index.d.ts +0 -4
- package/dist/src/foundation/native-host-protocol/index.js +0 -4
- package/dist/src/foundation/native-host-protocol/messages.d.ts +0 -56
- package/dist/src/foundation/native-host-protocol/messages.js +0 -149
- package/dist/src/foundation/native-host-protocol/proof-gate.d.ts +0 -13
- package/dist/src/foundation/native-host-protocol/proof-gate.js +0 -33
- package/dist/src/foundation/owned-ui-contracts/extension-ui.d.ts +0 -302
- package/dist/src/foundation/owned-ui-contracts/index.d.ts +0 -3
- package/dist/src/foundation/owned-ui-contracts/index.js +0 -3
- package/dist/src/foundation/owned-ui-contracts/model.d.ts +0 -241
- package/dist/src/foundation/owned-ui-contracts/validation.d.ts +0 -11
- package/dist/src/foundation/owned-ui-contracts/validation.js +0 -395
- package/dist/src/foundation/owned-ui-settings/declarations.d.ts +0 -13
- package/dist/src/foundation/owned-ui-settings/declarations.js +0 -39
- package/dist/src/foundation/owned-ui-settings/index.d.ts +0 -6
- package/dist/src/foundation/owned-ui-settings/index.js +0 -6
- package/dist/src/foundation/owned-ui-settings/migrations.d.ts +0 -13
- package/dist/src/foundation/owned-ui-settings/migrations.js +0 -28
- package/dist/src/foundation/owned-ui-settings/sections.d.ts +0 -70
- package/dist/src/foundation/owned-ui-settings/sections.js +0 -93
- package/dist/src/foundation/owned-ui-settings/session.d.ts +0 -44
- package/dist/src/foundation/owned-ui-settings/session.js +0 -145
- package/dist/src/foundation/owned-ui-settings/store.d.ts +0 -28
- package/dist/src/foundation/owned-ui-settings/store.js +0 -90
- package/dist/src/foundation/pi-component-adapter/components.d.ts +0 -4
- package/dist/src/foundation/pi-component-adapter/components.js +0 -64
- package/dist/src/foundation/pi-component-adapter/conformance.d.ts +0 -17
- package/dist/src/foundation/pi-component-adapter/conformance.js +0 -69
- package/dist/src/foundation/pi-component-adapter/index.d.ts +0 -13
- package/dist/src/foundation/pi-component-adapter/index.js +0 -13
- package/dist/src/foundation/pi-component-adapter/resources/builtin-themes.d.ts +0 -165
- package/dist/src/foundation/pi-component-adapter/resources/builtin-themes.js +0 -166
- package/dist/src/foundation/pi-component-adapter/shell-components.d.ts +0 -6
- package/dist/src/foundation/pi-component-adapter/shell-components.js +0 -6
- package/dist/src/foundation/pi-component-adapter/shell-editor-autocomplete.js +0 -162
- package/dist/src/foundation/pi-component-adapter/shell-extension-ui.d.ts +0 -35
- package/dist/src/foundation/pi-component-adapter/shell-extension-ui.js +0 -279
- package/dist/src/foundation/pi-component-adapter/shell-footer-status.d.ts +0 -7
- package/dist/src/foundation/pi-component-adapter/shell-footer-status.js +0 -189
- package/dist/src/foundation/pi-component-adapter/shell-presenters-transcript.d.ts +0 -57
- package/dist/src/foundation/pi-component-adapter/shell-presenters-transcript.js +0 -429
- package/dist/src/foundation/pi-component-adapter/shell-selectors-dialogs.d.ts +0 -113
- package/dist/src/foundation/pi-component-adapter/shell-selectors-dialogs.js +0 -235
- package/dist/src/foundation/pi-component-adapter/shell-shared-facade.d.ts +0 -116
- package/dist/src/foundation/pi-component-adapter/shell-shared-facade.js +0 -87
- package/dist/src/foundation/pi-component-adapter/upstream/adjacent/core/keybindings.d.ts +0 -422
- package/dist/src/foundation/pi-component-adapter/upstream/adjacent/core/keybindings.js +0 -296
- package/dist/src/foundation/pi-component-adapter/upstream/components/countdown-timer.d.ts +0 -10
- package/dist/src/foundation/pi-component-adapter/upstream/components/custom-entry.d.ts +0 -17
- package/dist/src/foundation/pi-component-adapter/upstream/components/custom-entry.js +0 -51
- package/dist/src/foundation/pi-component-adapter/upstream/components/daxnuts.d.ts +0 -22
- package/dist/src/foundation/pi-component-adapter/upstream/components/daxnuts.js +0 -142
- package/dist/src/foundation/pi-component-adapter/upstream/components/earendil-announcement.d.ts +0 -4
- package/dist/src/foundation/pi-component-adapter/upstream/components/earendil-announcement.js +0 -19
- package/dist/src/foundation/pi-component-adapter/upstream/components/extension-editor.d.ts +0 -17
- package/dist/src/foundation/pi-component-adapter/upstream/components/extension-editor.js +0 -81
- package/dist/src/foundation/pi-component-adapter/upstream/components/first-time-setup.d.ts +0 -24
- package/dist/src/foundation/pi-component-adapter/upstream/components/first-time-setup.js +0 -105
- package/dist/src/foundation/pi-component-adapter/upstream/components/markdown-transform.d.ts +0 -2
- package/dist/src/foundation/pi-component-adapter/upstream/components/markdown-transform.js +0 -18
- package/dist/src/foundation/pi-component-adapter/upstream/components/mermaid.js +0 -77
- package/dist/src/foundation/pi-component-adapter/upstream/components/owned-editor.d.ts +0 -18
- package/dist/src/foundation/pi-component-adapter/upstream/components/owned-editor.js +0 -55
- package/dist/src/foundation/pi-component-adapter/upstream/components/scoped-models-selector.d.ts +0 -55
- package/dist/src/foundation/pi-component-adapter/upstream/components/scoped-models-selector.js +0 -342
- package/dist/src/foundation/pi-component-adapter/upstream/components/session-footer.d.ts +0 -10
- package/dist/src/foundation/pi-component-adapter/upstream/components/session-footer.js +0 -120
- package/dist/src/foundation/pi-component-adapter/upstream/components/session-selector-search.js +0 -159
- package/dist/src/foundation/pi-component-adapter/upstream/components/session-selector.d.ts +0 -95
- package/dist/src/foundation/pi-component-adapter/upstream/components/session-selector.js +0 -889
- package/dist/src/foundation/pi-component-adapter/upstream/components/skill-invocation-message.d.ts +0 -19
- package/dist/src/foundation/pi-component-adapter/upstream/components/skill-invocation-message.js +0 -44
- package/dist/src/foundation/pi-component-adapter/upstream/components/status-indicator.d.ts +0 -30
- package/dist/src/foundation/pi-component-adapter/upstream/components/status-indicator.js +0 -59
- package/dist/src/foundation/pi-component-adapter/upstream/components/tree-selector.d.ts +0 -98
- package/dist/src/foundation/pi-component-adapter/upstream/components/tree-selector.js +0 -1272
- package/dist/src/foundation/pi-component-adapter/upstream/components/trust-selector.d.ts +0 -33
- package/dist/src/foundation/pi-component-adapter/upstream/components/trust-selector.js +0 -76
- package/dist/src/foundation/pi-component-adapter/upstream/external-editor.js +0 -39
- package/dist/src/foundation/pi-component-adapter/upstream/model-search.d.ts +0 -15
- package/dist/src/foundation/pi-component-adapter/upstream/theme/theme-controller.d.ts +0 -25
- package/dist/src/foundation/pi-component-adapter/upstream/theme/theme-controller.js +0 -117
- package/dist/src/foundation/pi-component-adapter/upstream/theme/theme.d.ts +0 -61
- package/dist/src/foundation/pi-component-adapter/upstream/theme/theme.js +0 -326
- package/dist/src/foundation/pi-engine-adapter/adapter.d.ts +0 -164
- package/dist/src/foundation/pi-engine-adapter/adapter.js +0 -2367
- package/dist/src/foundation/pi-engine-adapter/conformance.d.ts +0 -37
- package/dist/src/foundation/pi-engine-adapter/conformance.js +0 -130
- package/dist/src/foundation/pi-engine-adapter/index.d.ts +0 -10
- package/dist/src/foundation/pi-engine-adapter/index.js +0 -10
- package/dist/src/foundation/pi-engine-adapter/model-auth-integration.d.ts +0 -30
- package/dist/src/foundation/pi-engine-adapter/model-auth-integration.js +0 -61
- package/dist/src/foundation/pi-engine-adapter/package-integration.d.ts +0 -13
- package/dist/src/foundation/pi-engine-adapter/package-integration.js +0 -112
- package/dist/src/foundation/pi-engine-adapter/pi-settings-metadata.json +0 -374
- package/dist/src/foundation/pi-engine-adapter/resource-extension-integration.d.ts +0 -31
- package/dist/src/foundation/pi-engine-adapter/resource-extension-integration.js +0 -80
- package/dist/src/foundation/pi-engine-adapter/runtime-integration.d.ts +0 -35
- package/dist/src/foundation/pi-engine-adapter/runtime-integration.js +0 -67
- package/dist/src/foundation/pi-engine-adapter/session-integration.d.ts +0 -43
- package/dist/src/foundation/pi-engine-adapter/session-integration.js +0 -97
- package/dist/src/foundation/pi-engine-adapter/settings-integration.d.ts +0 -55
- package/dist/src/foundation/pi-engine-adapter/settings-integration.js +0 -233
- package/dist/src/foundation/pi-engine-adapter/workflow-controllers.d.ts +0 -20
- package/dist/src/foundation/pi-engine-adapter/workflow-controllers.js +0 -48
- package/dist/src/foundation/pi-engine-adapter/workflows.d.ts +0 -173
- package/dist/src/foundation/pi-engine-adapter/workflows.js +0 -60
- package/dist/src/foundation/pi-owned-ui-integration/index.d.ts +0 -2
- package/dist/src/foundation/pi-owned-ui-integration/index.js +0 -2
- package/dist/src/foundation/pi-owned-ui-integration/route-host.d.ts +0 -29
- package/dist/src/foundation/pi-owned-ui-integration/session-shell.d.ts +0 -106
- package/dist/src/foundation/pi-owned-ui-integration/session-shell.js +0 -1518
- package/dist/src/foundation/pi-tui-runtime-adapter/adapter.d.ts +0 -39
- package/dist/src/foundation/pi-tui-runtime-adapter/adapter.js +0 -493
- package/dist/src/foundation/pi-tui-runtime-adapter/conformance.d.ts +0 -18
- package/dist/src/foundation/pi-tui-runtime-adapter/conformance.js +0 -145
- package/dist/src/foundation/pi-tui-runtime-adapter/contracts.d.ts +0 -120
- package/dist/src/foundation/pi-tui-runtime-adapter/index.d.ts +0 -4
- package/dist/src/foundation/pi-tui-runtime-adapter/index.js +0 -4
- package/dist/src/foundation/pi-tui-runtime-adapter/presentation-adapter.d.ts +0 -4
- package/dist/src/foundation/pi-tui-runtime-adapter/presentation-adapter.js +0 -48
- package/dist/src/foundation/presentation-contracts/index.d.ts +0 -96
- package/dist/src/foundation/process-containment/index.d.ts +0 -5
- package/dist/src/foundation/process-containment/index.js +0 -5
- package/dist/src/foundation/process-containment/linux-process-inspector.d.ts +0 -6
- package/dist/src/foundation/process-containment/linux-process-inspector.js +0 -26
- package/dist/src/foundation/process-containment/native-guardian-containment.d.ts +0 -16
- package/dist/src/foundation/process-containment/native-guardian-containment.js +0 -139
- package/dist/src/foundation/process-containment/windows-process-inspector.d.ts +0 -17
- package/dist/src/foundation/process-containment/windows-process-inspector.js +0 -53
- package/dist/src/foundation/protocol/client.d.ts +0 -17
- package/dist/src/foundation/protocol/client.js +0 -129
- package/dist/src/foundation/protocol/index.d.ts +0 -2
- package/dist/src/foundation/protocol/index.js +0 -2
- package/dist/src/foundation/protocol/messages.d.ts +0 -89
- package/dist/src/foundation/protocol/messages.js +0 -99
- package/dist/src/foundation/release/bootstrap.d.ts +0 -29
- package/dist/src/foundation/release/bootstrap.js +0 -335
- package/dist/src/foundation/release/cohort-state.d.ts +0 -70
- package/dist/src/foundation/release/cohort-state.js +0 -202
- package/dist/src/foundation/release/index.d.ts +0 -10
- package/dist/src/foundation/release/index.js +0 -10
- package/dist/src/foundation/release/release-gc.d.ts +0 -5
- package/dist/src/foundation/release/release-gc.js +0 -16
- package/dist/src/foundation/release/release-store.d.ts +0 -43
- package/dist/src/foundation/release/release-store.js +0 -175
- package/dist/src/foundation/release/release.d.ts +0 -38
- package/dist/src/foundation/release/release.js +0 -204
- package/dist/src/foundation/release/update-transaction.d.ts +0 -31
- package/dist/src/foundation/release/update-transaction.js +0 -89
- package/dist/src/foundation/release/update.d.ts +0 -82
- package/dist/src/foundation/release/update.js +0 -527
- package/dist/src/foundation/storage/control-store.d.ts +0 -61
- package/dist/src/foundation/storage/control-store.js +0 -530
- package/dist/src/foundation/storage/index.d.ts +0 -1
- package/dist/src/foundation/storage/index.js +0 -1
- package/dist/src/foundation/structured-agent-runtime/backpressure.d.ts +0 -46
- package/dist/src/foundation/structured-agent-runtime/backpressure.js +0 -118
- package/dist/src/foundation/structured-agent-runtime/commands.d.ts +0 -52
- package/dist/src/foundation/structured-agent-runtime/commands.js +0 -164
- package/dist/src/foundation/structured-agent-runtime/handshake.d.ts +0 -41
- package/dist/src/foundation/structured-agent-runtime/handshake.js +0 -151
- package/dist/src/foundation/structured-agent-runtime/index.d.ts +0 -5
- package/dist/src/foundation/structured-agent-runtime/index.js +0 -5
- package/dist/src/foundation/structured-agent-runtime/reconnection.d.ts +0 -37
- package/dist/src/foundation/structured-agent-runtime/reconnection.js +0 -129
- package/dist/src/foundation/structured-agent-runtime/state.d.ts +0 -56
- package/dist/src/foundation/structured-agent-runtime/state.js +0 -118
- package/dist/src/foundation/supervision/index.d.ts +0 -3
- package/dist/src/foundation/supervision/index.js +0 -3
- package/dist/src/foundation/supervision/main.d.ts +0 -1
- package/dist/src/foundation/supervision/main.js +0 -41
- package/dist/src/foundation/supervision/paths.d.ts +0 -1
- package/dist/src/foundation/supervision/paths.js +0 -1
- package/dist/src/foundation/supervision/server.d.ts +0 -22
- package/dist/src/foundation/supervision/server.js +0 -451
- package/dist/src/foundation/ui-apps/contracts.d.ts +0 -42
- package/dist/src/foundation/ui-apps/host.d.ts +0 -42
- package/dist/src/foundation/ui-apps/host.js +0 -152
- package/dist/src/foundation/ui-apps/index.d.ts +0 -3
- package/dist/src/foundation/ui-apps/index.js +0 -3
- package/dist/src/foundation/ui-apps/registry.d.ts +0 -11
- package/dist/src/foundation/ui-apps/registry.js +0 -32
- package/dist/src/foundation/ui-components/dialog-panel.js +0 -47
- package/dist/src/foundation/ui-components/frame.d.ts +0 -21
- package/dist/src/foundation/ui-components/frame.js +0 -54
- package/dist/src/foundation/ui-components/index.d.ts +0 -18
- package/dist/src/foundation/ui-components/index.js +0 -18
- package/dist/src/foundation/ui-components/line-input.d.ts +0 -74
- package/dist/src/foundation/ui-components/line-input.js +0 -245
- package/dist/src/foundation/ui-components/list-view.d.ts +0 -66
- package/dist/src/foundation/ui-components/list-view.js +0 -76
- package/dist/src/foundation/ui-components/mouse.d.ts +0 -15
- package/dist/src/foundation/ui-components/mouse.js +0 -46
- package/dist/src/foundation/ui-components/scrollbar.d.ts +0 -62
- package/dist/src/foundation/ui-components/scrollbar.js +0 -102
- package/dist/src/foundation/ui-components/shortcuts.d.ts +0 -57
- package/dist/src/foundation/ui-components/shortcuts.js +0 -81
- package/dist/src/foundation/ui-components/spans.d.ts +0 -7
- package/dist/src/foundation/ui-components/spans.js +0 -59
- package/dist/src/foundation/ui-components/surface.d.ts +0 -20
- package/dist/src/foundation/ui-components/surface.js +0 -38
- package/dist/src/foundation/ui-components/text.d.ts +0 -24
- package/dist/src/foundation/ui-components/text.js +0 -123
- package/dist/src/foundation/workspace-contracts/index.d.ts +0 -2
- package/dist/src/foundation/workspace-contracts/index.js +0 -2
- package/dist/src/foundation/workspace-contracts/model.d.ts +0 -248
- package/dist/src/foundation/workspace-contracts/model.js +0 -2
- package/dist/src/foundation/workspace-contracts/validation.d.ts +0 -13
- package/dist/src/foundation/workspace-contracts/validation.js +0 -335
- package/dist/src/product-identity.d.ts +0 -37
- package/dist/src/product-identity.js +0 -150
- package/dist/src/product-identity.json +0 -99
- package/docs/manual-transparent-checkpoint.md +0 -53
- /package/dist/{src/foundation/agent-engine-contracts/domain.js → app/session-shell/paste-helper.d.ts} +0 -0
- /package/dist/{src/foundation/agent-engine-contracts/ports.js → app/session-shell/paste-text-worker.d.ts} +0 -0
- /package/dist/{src/foundation/lifecycle/commands.js → app/session-shell/paste-types.js} +0 -0
- /package/dist/{src/foundation/pi-owned-ui-integration/route-host.js → app/session-shell/response-copy-helper.d.ts} +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/capability-ports.js +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/domain-validation.d.ts +0 -0
- /package/dist/{src/foundation/pi-tui-runtime-adapter/contracts.js → contracts/agent-engine/domain.js} +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/model.d.ts +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/model.js +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/package-ports.js +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/ports.d.ts +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/serialization.d.ts +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/serialization.js +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/validation.d.ts +0 -0
- /package/dist/{src/foundation/agent-engine-contracts → contracts/agent-engine}/validation.js +0 -0
- /package/dist/{src/foundation/owned-ui-contracts → contracts/owned-ui}/extension-ui.js +0 -0
- /package/dist/{src/foundation/owned-ui-contracts → contracts/owned-ui}/model.js +0 -0
- /package/dist/{src/foundation/presentation-contracts → contracts/presentation}/index.js +0 -0
- /package/dist/{src/features → features}/launch/development-launch.d.ts +0 -0
- /package/dist/{src/features → features}/launch/initialize-profile.d.ts +0 -0
- /package/dist/{src/features → features}/launch/initialize-profile.js +0 -0
- /package/dist/{src/foundation → foundation}/lifecycle/commands.d.ts +0 -0
- /package/dist/{src/foundation → foundation}/lifecycle/launch-instance.d.ts +0 -0
- /package/dist/{src/foundation → foundation}/lifecycle/launch-instance.js +0 -0
- /package/dist/{src/foundation → foundation}/process-containment/artifact.d.ts +0 -0
- /package/dist/{src/foundation → foundation}/process-containment/artifact.js +0 -0
- /package/dist/{src/foundation → foundation}/process-containment/contracts.d.ts +0 -0
- /package/dist/{src/foundation → foundation}/process-containment/contracts.js +0 -0
- /package/dist/{src/foundation → foundation}/release/cohort-selection.d.ts +0 -0
- /package/dist/{src/foundation → foundation}/release/cohort-selection.js +0 -0
- /package/dist/{src/foundation → foundation}/release/concurrency.d.ts +0 -0
- /package/dist/{src/foundation → foundation}/release/concurrency.js +0 -0
- /package/dist/{src/foundation → foundation}/release/process-cleanup.d.ts +0 -0
- /package/dist/{src/foundation → foundation}/release/process-cleanup.js +0 -0
- /package/dist/{src/foundation → foundation}/release/stable-release.d.ts +0 -0
- /package/dist/{src/foundation → foundation}/release/stable-release.js +0 -0
- /package/dist/{src/foundation/pi-component-adapter → integrations/pi/components}/shell-editor-autocomplete.d.ts +0 -0
- /package/dist/{src/foundation/pi-component-adapter → integrations/pi/components}/theme.d.ts +0 -0
- /package/dist/{src/foundation/pi-component-adapter → integrations/pi/components}/theme.js +0 -0
- /package/dist/{src/foundation/pi-component-adapter → integrations/pi/components}/upstream/components/countdown-timer.js +0 -0
- /package/dist/{src/foundation/pi-component-adapter → integrations/pi/components}/upstream/components/mermaid.d.ts +0 -0
- /package/dist/{src/foundation/pi-component-adapter → integrations/pi/components}/upstream/components/session-selector-search.d.ts +0 -0
- /package/dist/{src/foundation/pi-component-adapter → integrations/pi/components}/upstream/external-editor.d.ts +0 -0
- /package/dist/{src/foundation/pi-component-adapter → integrations/pi/components}/upstream/model-search.js +0 -0
- /package/dist/{src/foundation/pi-engine-adapter → integrations/pi/engine}/public-main-entry.d.ts +0 -0
- /package/dist/{src/foundation/pi-engine-adapter → integrations/pi/engine}/public-main-entry.js +0 -0
- /package/dist/{src/foundation/ui-apps → ui/apps}/contracts.js +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/dialog-panel.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/label.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/label.js +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/list-block.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/list-block.js +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/pane.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/pane.js +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/revision.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/revision.js +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/status-line.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/status-line.js +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/stepper.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/stepper.js +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/theme.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/theme.js +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/value-menu.d.ts +0 -0
- /package/dist/{src/foundation/ui-components → ui/components}/value-menu.js +0 -0
- /package/dist/{src/foundation/owned-ui-settings → ui/settings}/resolution.d.ts +0 -0
- /package/dist/{src/foundation/owned-ui-settings → ui/settings}/resolution.js +0 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import type { SettingsManager } from "../startup-public.js";
|
|
2
|
+
import type { AgentJsonValue, AgentSettingApplicationBoundary, AgentSettingChangeOutcome, AgentSettingDescriptor, AgentSettingOwner, AgentSettingsPort } from "../../../contracts/agent-engine/index.js";
|
|
3
|
+
export type PiSettingKey = "autoCompact" | "showImages" | "imageWidthCells" | "autoResizeImages" | "blockImages" | "enableSkillCommands" | "steeringMode" | "followUpMode" | "transport" | "httpIdleTimeoutMs" | "modelThinkingLevels" | "theme" | "hideThinkingBlock" | "mermaidRenderingMode" | "showCacheMissNotices" | "collapseChangelog" | "enableInstallTelemetry" | "quietStartup" | "defaultProjectTrust" | "doubleEscapeAction" | "treeFilterMode" | "showHardwareCursor" | "editorPaddingX" | "outputPad" | "autocompleteMaxVisible" | "clearOnShrink" | "showTerminalProgress" | "tuiMode" | "fullscreenExitOutput" | "fullscreenScrollbar" | "fullscreenCopyOnSelect" | "warnings";
|
|
4
|
+
export type PiSettingVisualClass = "none" | "transcript" | "transcript-geometry" | "editor-menu" | "queue-transcript" | "status-error" | "retry-error" | "footer-transcript" | "markdown" | "transcript-notice" | "startup-transcript" | "startup-selector" | "selector" | "terminal-cursor" | "editor-geometry" | "menu-geometry" | "terminal-frame" | "terminal-status" | "hidden";
|
|
5
|
+
export interface PiSettingVisualEvidence {
|
|
6
|
+
/** Reviewed visual family; `none` still names the behavior that can emit styled diagnostics. */
|
|
7
|
+
readonly class: PiSettingVisualClass;
|
|
8
|
+
/** Pinned component, lifecycle, or provider-visible failure surface used as the visual authority. */
|
|
9
|
+
readonly pinnedSurface: string;
|
|
10
|
+
/** Independent pinned/A1 test or physical checkpoint that owns acceptance. */
|
|
11
|
+
readonly evidence: string;
|
|
12
|
+
}
|
|
13
|
+
export interface PiSettingEffectDefinition {
|
|
14
|
+
readonly application: AgentSettingApplicationBoundary;
|
|
15
|
+
readonly owner: AgentSettingOwner;
|
|
16
|
+
readonly visual: PiSettingVisualEvidence;
|
|
17
|
+
/** Bare A1 deliberately replaces this Pi behavior, so its settings UI omits the entry. */
|
|
18
|
+
readonly hiddenInBare?: true;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Reviewed effect authority for every generated Pi setting. Presentation remains
|
|
22
|
+
* generated; this table states who must make each accepted value observable.
|
|
23
|
+
*/
|
|
24
|
+
export declare const PI_SETTING_EFFECTS: Readonly<Record<PiSettingKey, PiSettingEffectDefinition>>;
|
|
25
|
+
export interface PiSettingEffectHandler {
|
|
26
|
+
/** Install one value in the active owner. Handlers must be idempotent and reversible. */
|
|
27
|
+
apply(value: AgentJsonValue): void | Promise<void>;
|
|
28
|
+
}
|
|
29
|
+
export type PiSettingOwnerHandlers = Partial<Record<PiSettingKey, PiSettingEffectHandler>>;
|
|
30
|
+
export interface PiSettingStorageOperation {
|
|
31
|
+
readonly key: PiSettingKey;
|
|
32
|
+
read(): AgentJsonValue;
|
|
33
|
+
validate(value: AgentJsonValue): void;
|
|
34
|
+
write(value: AgentJsonValue): void;
|
|
35
|
+
}
|
|
36
|
+
export interface PiSettingsCoordinatorOptions {
|
|
37
|
+
readonly productMode?: "bare" | "comparison";
|
|
38
|
+
readonly flush: () => Promise<void>;
|
|
39
|
+
readonly drainErrors?: () => readonly {
|
|
40
|
+
readonly error: Error;
|
|
41
|
+
}[];
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* One transactional authority for Pi setting validation, active effects,
|
|
45
|
+
* persistence, durability, rollback, and owner lifecycle.
|
|
46
|
+
*/
|
|
47
|
+
export declare class PiSettingsCoordinator {
|
|
48
|
+
#private;
|
|
49
|
+
constructor(operations: readonly PiSettingStorageOperation[], options: PiSettingsCoordinatorOptions);
|
|
50
|
+
bindOwner(owner: AgentSettingOwner, handlers: PiSettingOwnerHandlers): () => void;
|
|
51
|
+
unbindOwner(owner: AgentSettingOwner, keys?: readonly PiSettingKey[]): void;
|
|
52
|
+
definition(key: PiSettingKey): PiSettingEffectDefinition;
|
|
53
|
+
storedValue(key: PiSettingKey): AgentJsonValue;
|
|
54
|
+
effectiveValue(key: PiSettingKey): AgentJsonValue;
|
|
55
|
+
limitationReason(key: PiSettingKey): string | null;
|
|
56
|
+
available(key: PiSettingKey): boolean;
|
|
57
|
+
validate(key: PiSettingKey, value: AgentJsonValue): void;
|
|
58
|
+
apply(key: PiSettingKey, value: AgentJsonValue): Promise<AgentSettingChangeOutcome>;
|
|
59
|
+
flush(): Promise<void>;
|
|
60
|
+
rollback(key: PiSettingKey, value: AgentJsonValue): Promise<void>;
|
|
61
|
+
}
|
|
62
|
+
export declare function settingsEffectInventoryDrift(presented: readonly string[], reviewed?: readonly string[]): {
|
|
63
|
+
readonly unmapped: readonly string[];
|
|
64
|
+
readonly stale: readonly string[];
|
|
65
|
+
readonly duplicated: readonly string[];
|
|
66
|
+
};
|
|
67
|
+
export declare function settingsVisualInventoryViolations(presented: readonly string[], reviewed?: Readonly<Partial<Record<PiSettingKey, PiSettingEffectDefinition>>>): readonly string[];
|
|
68
|
+
/** Values only the running engine knows. */
|
|
69
|
+
export interface PiSettingsProviders {
|
|
70
|
+
readonly themes?: () => readonly string[];
|
|
71
|
+
/** Models a per-model thinking override may name, with the levels each one supports. */
|
|
72
|
+
readonly models?: () => readonly PiSettingsModelChoice[];
|
|
73
|
+
readonly productMode?: "bare" | "comparison";
|
|
74
|
+
}
|
|
75
|
+
export interface PiSettingsModelChoice {
|
|
76
|
+
/** `provider/modelId`, the key the engine stores the override under. */
|
|
77
|
+
readonly key: string;
|
|
78
|
+
readonly label: string;
|
|
79
|
+
readonly description: string;
|
|
80
|
+
readonly levels: readonly string[];
|
|
81
|
+
}
|
|
82
|
+
/** The choice that clears a per-model override; the engine then applies its global default. */
|
|
83
|
+
export declare const MODEL_THINKING_DEFAULT = "default";
|
|
84
|
+
export declare const AUTOMATIC_THEME = "automatic";
|
|
85
|
+
interface AutomaticTheme {
|
|
86
|
+
readonly light: string;
|
|
87
|
+
readonly dark: string;
|
|
88
|
+
}
|
|
89
|
+
export declare function parseAutomaticTheme(stored: string): AutomaticTheme | null;
|
|
90
|
+
/** The keys the pinned engine presents, in the engine's order, read from the generated metadata. */
|
|
91
|
+
export declare const EXPOSED_SETTING_KEYS: readonly string[];
|
|
92
|
+
export declare function settingsInventoryDrift(presented: readonly string[], mapped: readonly string[]): {
|
|
93
|
+
readonly unmapped: readonly string[];
|
|
94
|
+
readonly stale: readonly string[];
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* The one Pi settings boundary the owned UI reads and writes through: the agent settings
|
|
98
|
+
* port over the pinned settings manager, backed by the transactional coordinator. The
|
|
99
|
+
* generated metadata owns presentation while the reviewed effect table owns timing,
|
|
100
|
+
* availability, owner, and active behavior.
|
|
101
|
+
*/
|
|
102
|
+
export declare class PiSettingsBridge implements AgentSettingsPort {
|
|
103
|
+
#private;
|
|
104
|
+
readonly capabilities: {
|
|
105
|
+
write: boolean;
|
|
106
|
+
flush: boolean;
|
|
107
|
+
};
|
|
108
|
+
private readonly settings;
|
|
109
|
+
constructor(settings: SettingsManager, providers?: PiSettingsProviders);
|
|
110
|
+
bindOwner(owner: AgentSettingOwner, handlers: PiSettingOwnerHandlers): () => void;
|
|
111
|
+
unbindOwner(owner: AgentSettingOwner): void;
|
|
112
|
+
listSettings(): Promise<readonly AgentSettingDescriptor[]>;
|
|
113
|
+
readSetting(key: string): Promise<AgentJsonValue | undefined>;
|
|
114
|
+
writeSetting(key: string, value: AgentJsonValue): Promise<AgentSettingChangeOutcome>;
|
|
115
|
+
/** Shared route used by the pinned selector and owned settings surface. */
|
|
116
|
+
writeSettingNow(key: string, value: AgentJsonValue): Promise<AgentSettingChangeOutcome>;
|
|
117
|
+
flush(): Promise<void>;
|
|
118
|
+
}
|
|
119
|
+
/** The engine keys overrides as `provider/modelId`; the model id may itself contain slashes. */
|
|
120
|
+
export declare function splitModelKey(key: string): [provider: string, modelId: string];
|
|
121
|
+
export {};
|
|
@@ -0,0 +1,514 @@
|
|
|
1
|
+
import { loadPiSettingsMetadata } from "./settings-metadata.js";
|
|
2
|
+
/**
|
|
3
|
+
* Reviewed effect authority for every generated Pi setting. Presentation remains
|
|
4
|
+
* generated; this table states who must make each accepted value observable.
|
|
5
|
+
*/
|
|
6
|
+
export const PI_SETTING_EFFECTS = Object.freeze({
|
|
7
|
+
autoCompact: effect("live", "agent", "transcript", "compaction status, summary, completion, and failure rows", "pinned-transcript-lifecycle-parity"),
|
|
8
|
+
showImages: effect("live", "shell", "transcript", "pinned inline image and textual fallback components", "pinned-transcript-image-parity"),
|
|
9
|
+
imageWidthCells: effect("live", "shell", "transcript-geometry", "pinned image component width and clipping", "pinned-transcript-image-parity"),
|
|
10
|
+
autoResizeImages: effect("live", "agent", "none", "provider image preparation and pinned warning row", "settings-effects-provider-parity"),
|
|
11
|
+
blockImages: effect("live", "agent", "none", "provider context conversion and pinned blocked-image notice", "settings-effects-provider-parity"),
|
|
12
|
+
enableSkillCommands: effect("live", "shell", "editor-menu", "pinned command autocomplete list", "pinned-editor-input-parity"),
|
|
13
|
+
steeringMode: effect("live", "agent", "queue-transcript", "pinned steering queue and submitted prompt rows", "pinned-status-indicator-parity"),
|
|
14
|
+
followUpMode: effect("live", "agent", "queue-transcript", "pinned follow-up queue and submitted prompt rows", "pinned-status-indicator-parity"),
|
|
15
|
+
transport: effect("live", "agent", "status-error", "pinned provider request status and failure rows", "settings-effects-provider-parity"),
|
|
16
|
+
httpIdleTimeoutMs: effect("live", "agent", "retry-error", "pinned timeout, retry, and terminal failure rows", "pinned-transcript-lifecycle-parity"),
|
|
17
|
+
modelThinkingLevels: effect("live", "agent", "footer-transcript", "pinned per-model thinking override, footer indicator, and thinking rows", "pinned-status-indicator-parity"),
|
|
18
|
+
theme: hiddenEffect("live", "shell", "pinned theme selector and complete themed shell", "pinned-theme-parity"),
|
|
19
|
+
hideThinkingBlock: effect("live", "shell", "transcript", "pinned thinking block presence and spacing", "pinned-transcript-lifecycle-parity"),
|
|
20
|
+
mermaidRenderingMode: effect("live", "shell", "markdown", "pinned Mermaid Markdown transformation", "pinned-assistant-content-parity"),
|
|
21
|
+
showCacheMissNotices: effect("live", "shell", "transcript-notice", "pinned cache-miss transcript notice", "pinned-transcript-lifecycle-parity"),
|
|
22
|
+
collapseChangelog: effect("next-start", "startup", "startup-transcript", "pinned startup and command changelog components", "pi-startup-composition-parity"),
|
|
23
|
+
enableInstallTelemetry: effect("next-start", "installation", "none", "install lifecycle and its pinned failure diagnostic", "settings-effects-installation-parity"),
|
|
24
|
+
quietStartup: hiddenEffect("next-start", "startup", "pinned startup suppression lifecycle", "pi-startup-composition-parity"),
|
|
25
|
+
defaultProjectTrust: effect("next-start", "startup", "startup-selector", "pinned pre-resource project trust selector", "project-trust-startup-parity"),
|
|
26
|
+
doubleEscapeAction: effect("live", "shell", "selector", "pinned tree or fork selector", "pinned-selector-parity"),
|
|
27
|
+
treeFilterMode: effect("live", "shell", "selector", "pinned tree selector filter, rows, and hints", "pinned-selector-parity"),
|
|
28
|
+
showHardwareCursor: effect("live", "terminal", "terminal-cursor", "pinned editor, overlay, blur, failure, and exit cursor operations", "pi-terminal-operation-parity"),
|
|
29
|
+
editorPaddingX: effect("live", "shell", "editor-geometry", "pinned editor border, padding, wrapping, and cursor column", "pinned-editor-input-parity"),
|
|
30
|
+
outputPad: effect("live", "shell", "transcript-geometry", "pinned transcript, tool, status, and error horizontal padding", "pinned-transcript-lifecycle-parity"),
|
|
31
|
+
autocompleteMaxVisible: effect("live", "shell", "menu-geometry", "pinned autocomplete clipping and editor anchoring", "pinned-editor-input-parity"),
|
|
32
|
+
clearOnShrink: effect("live", "terminal", "terminal-frame", "pinned resize clearing and resulting terminal frame", "pi-terminal-operation-parity"),
|
|
33
|
+
showTerminalProgress: effect("live", "terminal", "terminal-status", "pinned OSC progress lifecycle", "pi-terminal-operation-parity"),
|
|
34
|
+
tuiMode: hiddenEffect("next-session", "shell", "pinned regular/fullscreen selector and terminal lifecycle", "pi-terminal-operation-parity"),
|
|
35
|
+
fullscreenExitOutput: hiddenEffect("current-exit", "shutdown", "pinned styled transcript and compact dim resume hint", "pinned-fullscreen-exit-parity"),
|
|
36
|
+
fullscreenScrollbar: hiddenEffect("live", "shell", "pinned fullscreen scrollbar reservation", "pi-terminal-operation-parity"),
|
|
37
|
+
fullscreenCopyOnSelect: hiddenEffect("live", "shell", "pinned fullscreen copy-on-select toggle", "pi-terminal-operation-parity"),
|
|
38
|
+
warnings: effect("live", "agent", "transcript-notice", "pinned warning rows by warning part", "pinned-transcript-lifecycle-parity"),
|
|
39
|
+
});
|
|
40
|
+
function effect(application, owner, visualClass, pinnedSurface, evidence) {
|
|
41
|
+
return { application, owner, visual: { class: visualClass, pinnedSurface, evidence } };
|
|
42
|
+
}
|
|
43
|
+
function hiddenEffect(application, owner, pinnedSurface, evidence) {
|
|
44
|
+
return { application, owner, hiddenInBare: true, visual: { class: "hidden", pinnedSurface, evidence } };
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* One transactional authority for Pi setting validation, active effects,
|
|
48
|
+
* persistence, durability, rollback, and owner lifecycle.
|
|
49
|
+
*/
|
|
50
|
+
export class PiSettingsCoordinator {
|
|
51
|
+
#operations;
|
|
52
|
+
#handlers = new Map();
|
|
53
|
+
#state = new Map();
|
|
54
|
+
#productMode;
|
|
55
|
+
#flushStorage;
|
|
56
|
+
#drainErrors;
|
|
57
|
+
constructor(operations, options) {
|
|
58
|
+
this.#operations = new Map(operations.map(operation => [operation.key, operation]));
|
|
59
|
+
this.#productMode = options.productMode ?? "bare";
|
|
60
|
+
this.#flushStorage = options.flush;
|
|
61
|
+
this.#drainErrors = options.drainErrors;
|
|
62
|
+
for (const operation of operations) {
|
|
63
|
+
const stored = operation.read();
|
|
64
|
+
this.#state.set(operation.key, { stored, effective: stored, inconsistentReason: null });
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
bindOwner(owner, handlers) {
|
|
68
|
+
const bound = [];
|
|
69
|
+
for (const [candidate, handler] of Object.entries(handlers)) {
|
|
70
|
+
if (handler === undefined)
|
|
71
|
+
continue;
|
|
72
|
+
const key = candidate;
|
|
73
|
+
const definition = PI_SETTING_EFFECTS[key];
|
|
74
|
+
if (definition === undefined)
|
|
75
|
+
throw new Error(`unknown Pi setting effect: ${key}`);
|
|
76
|
+
if (definition.owner !== owner)
|
|
77
|
+
throw new Error(`${key} belongs to ${definition.owner}, not ${owner}`);
|
|
78
|
+
if (this.#productMode === "bare" && definition.hiddenInBare === true) {
|
|
79
|
+
throw new Error(`${key} is hidden in bare A1`);
|
|
80
|
+
}
|
|
81
|
+
this.#handlers.set(key, handler);
|
|
82
|
+
bound.push(key);
|
|
83
|
+
}
|
|
84
|
+
return () => this.unbindOwner(owner, bound);
|
|
85
|
+
}
|
|
86
|
+
unbindOwner(owner, keys) {
|
|
87
|
+
const candidates = keys ?? [...this.#handlers.keys()];
|
|
88
|
+
for (const key of candidates)
|
|
89
|
+
if (PI_SETTING_EFFECTS[key].owner === owner)
|
|
90
|
+
this.#handlers.delete(key);
|
|
91
|
+
}
|
|
92
|
+
definition(key) {
|
|
93
|
+
return PI_SETTING_EFFECTS[key];
|
|
94
|
+
}
|
|
95
|
+
storedValue(key) {
|
|
96
|
+
const operation = this.#requireOperation(key);
|
|
97
|
+
const stored = operation.read();
|
|
98
|
+
const state = this.#requireState(key);
|
|
99
|
+
state.stored = stored;
|
|
100
|
+
return stored;
|
|
101
|
+
}
|
|
102
|
+
effectiveValue(key) {
|
|
103
|
+
return this.#requireState(key).effective;
|
|
104
|
+
}
|
|
105
|
+
limitationReason(key) {
|
|
106
|
+
const definition = PI_SETTING_EFFECTS[key];
|
|
107
|
+
if (this.#productMode === "bare" && definition.hiddenInBare === true)
|
|
108
|
+
return "setting is not available in the active product mode";
|
|
109
|
+
const inconsistent = this.#requireState(key).inconsistentReason;
|
|
110
|
+
if (inconsistent !== null)
|
|
111
|
+
return inconsistent;
|
|
112
|
+
if (!this.#handlers.has(key))
|
|
113
|
+
return `${definition.owner} effect is not bound for ${definition.application} application`;
|
|
114
|
+
return null;
|
|
115
|
+
}
|
|
116
|
+
available(key) {
|
|
117
|
+
return this.limitationReason(key) === null;
|
|
118
|
+
}
|
|
119
|
+
validate(key, value) {
|
|
120
|
+
this.#requireOperation(key).validate(value);
|
|
121
|
+
}
|
|
122
|
+
async apply(key, value) {
|
|
123
|
+
const operation = this.#requireOperation(key);
|
|
124
|
+
operation.validate(value);
|
|
125
|
+
const definition = PI_SETTING_EFFECTS[key];
|
|
126
|
+
const previousStored = operation.read();
|
|
127
|
+
const state = this.#requireState(key);
|
|
128
|
+
const previousEffective = state.effective;
|
|
129
|
+
const limitationReason = this.limitationReason(key);
|
|
130
|
+
if (limitationReason !== null) {
|
|
131
|
+
return outcome("unavailable", definition.application, previousStored, previousEffective, null, limitationReason);
|
|
132
|
+
}
|
|
133
|
+
const handler = this.#handlers.get(key);
|
|
134
|
+
if (definition.application !== "live") {
|
|
135
|
+
try {
|
|
136
|
+
operation.write(value);
|
|
137
|
+
await this.flush();
|
|
138
|
+
state.stored = value;
|
|
139
|
+
return outcome("deferred", definition.application, value, previousEffective, null, null);
|
|
140
|
+
}
|
|
141
|
+
catch (error) {
|
|
142
|
+
const failure = await this.#restorePersistence(operation, previousStored, error);
|
|
143
|
+
state.stored = operation.read();
|
|
144
|
+
return outcome("failed", definition.application, state.stored, previousEffective, failure, null);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
try {
|
|
148
|
+
await handler.apply(value);
|
|
149
|
+
}
|
|
150
|
+
catch (error) {
|
|
151
|
+
return outcome("failed", definition.application, previousStored, previousEffective, describe(error), null);
|
|
152
|
+
}
|
|
153
|
+
state.effective = value;
|
|
154
|
+
try {
|
|
155
|
+
operation.write(value);
|
|
156
|
+
await this.flush();
|
|
157
|
+
state.stored = value;
|
|
158
|
+
state.inconsistentReason = null;
|
|
159
|
+
return outcome("applied", definition.application, value, value, null, null);
|
|
160
|
+
}
|
|
161
|
+
catch (error) {
|
|
162
|
+
const persistenceFailure = await this.#restorePersistence(operation, previousStored, error);
|
|
163
|
+
try {
|
|
164
|
+
await handler.apply(previousEffective);
|
|
165
|
+
state.effective = previousEffective;
|
|
166
|
+
state.stored = operation.read();
|
|
167
|
+
return outcome("failed", definition.application, state.stored, previousEffective, persistenceFailure, null);
|
|
168
|
+
}
|
|
169
|
+
catch (rollbackError) {
|
|
170
|
+
state.stored = operation.read();
|
|
171
|
+
state.inconsistentReason = `rollback failed after ${persistenceFailure}: ${describe(rollbackError)}`;
|
|
172
|
+
return outcome("failed", definition.application, state.stored, state.effective, state.inconsistentReason, state.inconsistentReason);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
async flush() {
|
|
177
|
+
await this.#flushStorage();
|
|
178
|
+
const errors = this.#drainErrors?.() ?? [];
|
|
179
|
+
if (errors.length > 0)
|
|
180
|
+
throw new Error(errors.map(value => value.error.message).join("; "));
|
|
181
|
+
}
|
|
182
|
+
async rollback(key, value) {
|
|
183
|
+
const handler = this.#handlers.get(key);
|
|
184
|
+
if (handler === undefined)
|
|
185
|
+
throw new Error(`cannot roll back unbound setting: ${key}`);
|
|
186
|
+
await handler.apply(value);
|
|
187
|
+
this.#requireState(key).effective = value;
|
|
188
|
+
}
|
|
189
|
+
async #restorePersistence(operation, previous, cause) {
|
|
190
|
+
const original = describe(cause);
|
|
191
|
+
try {
|
|
192
|
+
operation.write(previous);
|
|
193
|
+
await this.flush();
|
|
194
|
+
return original;
|
|
195
|
+
}
|
|
196
|
+
catch (rollbackError) {
|
|
197
|
+
return `${original}; persistence rollback failed: ${describe(rollbackError)}`;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
#requireOperation(key) {
|
|
201
|
+
const operation = this.#operations.get(key);
|
|
202
|
+
if (operation === undefined)
|
|
203
|
+
throw new Error(`setting is unavailable: ${key}`);
|
|
204
|
+
return operation;
|
|
205
|
+
}
|
|
206
|
+
#requireState(key) {
|
|
207
|
+
const state = this.#state.get(key);
|
|
208
|
+
if (state === undefined)
|
|
209
|
+
throw new Error(`setting state is unavailable: ${key}`);
|
|
210
|
+
return state;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
export function settingsEffectInventoryDrift(presented, reviewed = Object.keys(PI_SETTING_EFFECTS)) {
|
|
214
|
+
const reviewedSet = new Set(reviewed);
|
|
215
|
+
const presentedSet = new Set(presented);
|
|
216
|
+
const counts = new Map();
|
|
217
|
+
for (const key of reviewed)
|
|
218
|
+
counts.set(key, (counts.get(key) ?? 0) + 1);
|
|
219
|
+
return {
|
|
220
|
+
unmapped: presented.filter(key => !reviewedSet.has(key)),
|
|
221
|
+
stale: reviewed.filter(key => !presentedSet.has(key)),
|
|
222
|
+
duplicated: [...counts].filter(([, count]) => count > 1).map(([key]) => key),
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
export function settingsVisualInventoryViolations(presented, reviewed = PI_SETTING_EFFECTS) {
|
|
226
|
+
const violations = [];
|
|
227
|
+
for (const candidate of presented) {
|
|
228
|
+
const key = candidate;
|
|
229
|
+
const definition = reviewed[key];
|
|
230
|
+
if (definition === undefined) {
|
|
231
|
+
violations.push(`${candidate}: missing visual classification`);
|
|
232
|
+
continue;
|
|
233
|
+
}
|
|
234
|
+
const visual = definition.visual;
|
|
235
|
+
if (!visual || visual.pinnedSurface.trim().length === 0)
|
|
236
|
+
violations.push(`${candidate}: missing pinned visual source`);
|
|
237
|
+
if (!visual || visual.evidence.trim().length === 0)
|
|
238
|
+
violations.push(`${candidate}: missing independent visual evidence`);
|
|
239
|
+
if (definition.hiddenInBare === true && visual?.class !== "hidden")
|
|
240
|
+
violations.push(`${candidate}: hidden setting declares a visible frame`);
|
|
241
|
+
if (definition.hiddenInBare !== true && visual?.class === "hidden")
|
|
242
|
+
violations.push(`${candidate}: visible setting declares hidden evidence`);
|
|
243
|
+
}
|
|
244
|
+
return violations;
|
|
245
|
+
}
|
|
246
|
+
function outcome(status, application, storedValue, effectiveValue, failure, limitationReason) {
|
|
247
|
+
return { status, application, storedValue, effectiveValue, failure, limitationReason };
|
|
248
|
+
}
|
|
249
|
+
function describe(error) {
|
|
250
|
+
return error instanceof Error ? error.message : String(error);
|
|
251
|
+
}
|
|
252
|
+
/** The choice that clears a per-model override; the engine then applies its global default. */
|
|
253
|
+
export const MODEL_THINKING_DEFAULT = "default";
|
|
254
|
+
export const AUTOMATIC_THEME = "automatic";
|
|
255
|
+
const LIGHT_APPEARANCE_THEME = "light";
|
|
256
|
+
const DARK_APPEARANCE_THEME = "dark";
|
|
257
|
+
const THEME_KEY = "theme";
|
|
258
|
+
const MODEL_THINKING_KEY = "modelThinkingLevels";
|
|
259
|
+
export function parseAutomaticTheme(stored) {
|
|
260
|
+
const at = stored.indexOf("/");
|
|
261
|
+
if (at < 0 || stored.indexOf("/", at + 1) >= 0)
|
|
262
|
+
return null;
|
|
263
|
+
const light = stored.slice(0, at).trim();
|
|
264
|
+
const dark = stored.slice(at + 1).trim();
|
|
265
|
+
return light.length > 0 && dark.length > 0 ? { light, dark } : null;
|
|
266
|
+
}
|
|
267
|
+
const PRESENTATION = loadPiSettingsMetadata();
|
|
268
|
+
/** The keys the pinned engine presents, in the engine's order, read from the generated metadata. */
|
|
269
|
+
export const EXPOSED_SETTING_KEYS = PRESENTATION.presented;
|
|
270
|
+
export function settingsInventoryDrift(presented, mapped) {
|
|
271
|
+
const has = new Set(mapped);
|
|
272
|
+
const engine = new Set(presented);
|
|
273
|
+
return {
|
|
274
|
+
unmapped: presented.filter(key => !has.has(key)),
|
|
275
|
+
stale: mapped.filter(key => !engine.has(key)),
|
|
276
|
+
};
|
|
277
|
+
}
|
|
278
|
+
function offered(key) {
|
|
279
|
+
return PRESENTATION.settings[key]?.values ?? [];
|
|
280
|
+
}
|
|
281
|
+
function offeredNumbers(key) {
|
|
282
|
+
return offered(key).map(value => Number.parseInt(value, 10)).filter(value => Number.isSafeInteger(value));
|
|
283
|
+
}
|
|
284
|
+
/**
|
|
285
|
+
* The one Pi settings boundary the owned UI reads and writes through: the agent settings
|
|
286
|
+
* port over the pinned settings manager, backed by the transactional coordinator. The
|
|
287
|
+
* generated metadata owns presentation while the reviewed effect table owns timing,
|
|
288
|
+
* availability, owner, and active behavior.
|
|
289
|
+
*/
|
|
290
|
+
export class PiSettingsBridge {
|
|
291
|
+
capabilities = { write: true, flush: true };
|
|
292
|
+
#operations;
|
|
293
|
+
#providers;
|
|
294
|
+
#coordinator;
|
|
295
|
+
settings;
|
|
296
|
+
constructor(settings, providers = {}) {
|
|
297
|
+
this.settings = settings;
|
|
298
|
+
this.#providers = providers;
|
|
299
|
+
const mapped = operations(settings, providers);
|
|
300
|
+
this.#operations = new Map(mapped.map(operation => [operation.key, operation]));
|
|
301
|
+
const presentationDrift = settingsInventoryDrift(EXPOSED_SETTING_KEYS, mapped.map(operation => operation.key));
|
|
302
|
+
const effectDrift = settingsEffectInventoryDrift(EXPOSED_SETTING_KEYS);
|
|
303
|
+
if (presentationDrift.unmapped.length > 0 || presentationDrift.stale.length > 0
|
|
304
|
+
|| effectDrift.unmapped.length > 0 || effectDrift.stale.length > 0 || effectDrift.duplicated.length > 0) {
|
|
305
|
+
throw new Error([
|
|
306
|
+
`unmapped operations: ${presentationDrift.unmapped.join(", ")}`,
|
|
307
|
+
`stale operations: ${presentationDrift.stale.join(", ")}`,
|
|
308
|
+
`unmapped effects: ${effectDrift.unmapped.join(", ")}`,
|
|
309
|
+
`stale effects: ${effectDrift.stale.join(", ")}`,
|
|
310
|
+
`duplicated effects: ${effectDrift.duplicated.join(", ")}`,
|
|
311
|
+
].join("; "));
|
|
312
|
+
}
|
|
313
|
+
this.#coordinator = new PiSettingsCoordinator(mapped, {
|
|
314
|
+
productMode: providers.productMode ?? "bare",
|
|
315
|
+
flush: () => settings.flush(),
|
|
316
|
+
drainErrors: () => settings.drainErrors(),
|
|
317
|
+
});
|
|
318
|
+
}
|
|
319
|
+
bindOwner(owner, handlers) {
|
|
320
|
+
return this.#coordinator.bindOwner(owner, handlers);
|
|
321
|
+
}
|
|
322
|
+
unbindOwner(owner) {
|
|
323
|
+
this.#coordinator.unbindOwner(owner);
|
|
324
|
+
}
|
|
325
|
+
async listSettings() {
|
|
326
|
+
const rank = (key) => {
|
|
327
|
+
const at = PRESENTATION.order.indexOf(key);
|
|
328
|
+
return at < 0 ? PRESENTATION.order.length : at;
|
|
329
|
+
};
|
|
330
|
+
return [...this.#operations.values()]
|
|
331
|
+
.filter(operation => this.#coordinator.available(operation.key))
|
|
332
|
+
.map(operation => {
|
|
333
|
+
const key = operation.key;
|
|
334
|
+
const wording = PRESENTATION.settings[key];
|
|
335
|
+
const flags = PRESENTATION.dialogs[key];
|
|
336
|
+
const bounds = PRESENTATION.bounds[key];
|
|
337
|
+
const descriptor = {
|
|
338
|
+
...operation.descriptor,
|
|
339
|
+
application: PI_SETTING_EFFECTS[key].application,
|
|
340
|
+
owner: PI_SETTING_EFFECTS[key].owner,
|
|
341
|
+
available: true,
|
|
342
|
+
limitationReason: null,
|
|
343
|
+
writable: true,
|
|
344
|
+
storedValue: this.#coordinator.storedValue(key),
|
|
345
|
+
effectiveValue: this.#coordinator.effectiveValue(key),
|
|
346
|
+
...(bounds === undefined ? {} : bounds),
|
|
347
|
+
...(wording === undefined ? {} : { label: wording.label, description: wording.description }),
|
|
348
|
+
...(flags === undefined ? {} : { flags }),
|
|
349
|
+
};
|
|
350
|
+
return this.#resolved(descriptor);
|
|
351
|
+
})
|
|
352
|
+
.sort((left, right) => rank(left.key) - rank(right.key));
|
|
353
|
+
}
|
|
354
|
+
#resolved(descriptor) {
|
|
355
|
+
if (descriptor.key === THEME_KEY) {
|
|
356
|
+
const themes = this.#themes();
|
|
357
|
+
if (themes.length === 0)
|
|
358
|
+
return descriptor;
|
|
359
|
+
return { ...descriptor, valueType: "enum", resolvedWhenRead: true, choices: [AUTOMATIC_THEME, ...themes] };
|
|
360
|
+
}
|
|
361
|
+
if (descriptor.key === MODEL_THINKING_KEY) {
|
|
362
|
+
const models = this.#providers.models?.() ?? [];
|
|
363
|
+
if (models.length === 0)
|
|
364
|
+
return descriptor;
|
|
365
|
+
// Rationale: the rows are the models the running engine offers, each with the levels it supports.
|
|
366
|
+
return { ...descriptor, resolvedWhenRead: true, flags: models.map(model => ({
|
|
367
|
+
key: model.key, label: model.label, description: model.description, fallback: MODEL_THINKING_DEFAULT, choices: [MODEL_THINKING_DEFAULT, ...model.levels],
|
|
368
|
+
})) };
|
|
369
|
+
}
|
|
370
|
+
return descriptor;
|
|
371
|
+
}
|
|
372
|
+
#themes() {
|
|
373
|
+
return this.#providers.themes?.() ?? [];
|
|
374
|
+
}
|
|
375
|
+
async readSetting(key) {
|
|
376
|
+
return isPiSettingKey(key) && this.#operations.has(key) ? this.#coordinator.storedValue(key) : undefined;
|
|
377
|
+
}
|
|
378
|
+
async writeSetting(key, value) {
|
|
379
|
+
if (!isPiSettingKey(key) || !this.#operations.has(key))
|
|
380
|
+
throw new Error(`setting is unavailable: ${key}`);
|
|
381
|
+
return await this.#coordinator.apply(key, value);
|
|
382
|
+
}
|
|
383
|
+
/** Shared route used by the pinned selector and owned settings surface. */
|
|
384
|
+
async writeSettingNow(key, value) {
|
|
385
|
+
return await this.writeSetting(key, value);
|
|
386
|
+
}
|
|
387
|
+
async flush() {
|
|
388
|
+
await this.#coordinator.flush();
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
function operations(settings, providers) {
|
|
392
|
+
const themes = () => providers.themes?.() ?? [];
|
|
393
|
+
return [
|
|
394
|
+
bool("autoCompact", () => settings.getCompactionEnabled(), value => settings.setCompactionEnabled(value)),
|
|
395
|
+
bool("showImages", () => settings.getShowImages(), value => settings.setShowImages(value)),
|
|
396
|
+
numberSetting("imageWidthCells", () => settings.getImageWidthCells(), value => settings.setImageWidthCells(value), 1),
|
|
397
|
+
bool("autoResizeImages", () => settings.getImageAutoResize(), value => settings.setImageAutoResize(value)),
|
|
398
|
+
bool("blockImages", () => settings.getBlockImages(), value => settings.setBlockImages(value)),
|
|
399
|
+
bool("enableSkillCommands", () => settings.getEnableSkillCommands(), value => settings.setEnableSkillCommands(value)),
|
|
400
|
+
choice("steeringMode", offered("steeringMode"), () => settings.getSteeringMode(), value => settings.setSteeringMode(value)),
|
|
401
|
+
choice("followUpMode", offered("followUpMode"), () => settings.getFollowUpMode(), value => settings.setFollowUpMode(value)),
|
|
402
|
+
choice("transport", offered("transport"), () => settings.getTransport(), value => settings.setTransport(value)),
|
|
403
|
+
numberSetting("httpIdleTimeoutMs", () => settings.getHttpIdleTimeoutMs(), value => settings.setHttpIdleTimeoutMs(value), 0),
|
|
404
|
+
modelThinkingLevels(settings),
|
|
405
|
+
themeSetting(settings, themes),
|
|
406
|
+
bool("hideThinkingBlock", () => settings.getHideThinkingBlock(), value => settings.setHideThinkingBlock(value)),
|
|
407
|
+
choice("mermaidRenderingMode", offered("mermaidRenderingMode"), () => settings.getMermaidRenderingMode(), value => settings.setMermaidRenderingMode(value)),
|
|
408
|
+
bool("showCacheMissNotices", () => settings.getShowCacheMissNotices(), value => settings.setShowCacheMissNotices(value)),
|
|
409
|
+
bool("collapseChangelog", () => settings.getCollapseChangelog(), value => settings.setCollapseChangelog(value)),
|
|
410
|
+
bool("enableInstallTelemetry", () => settings.getEnableInstallTelemetry(), value => settings.setEnableInstallTelemetry(value)),
|
|
411
|
+
bool("quietStartup", () => settings.getQuietStartup(), value => settings.setQuietStartup(value)),
|
|
412
|
+
choice("defaultProjectTrust", offered("defaultProjectTrust"), () => settings.getDefaultProjectTrust(), value => settings.setDefaultProjectTrust(value)),
|
|
413
|
+
choice("doubleEscapeAction", offered("doubleEscapeAction"), () => settings.getDoubleEscapeAction(), value => settings.setDoubleEscapeAction(value)),
|
|
414
|
+
choice("treeFilterMode", offered("treeFilterMode"), () => settings.getTreeFilterMode(), value => settings.setTreeFilterMode(value)),
|
|
415
|
+
bool("showHardwareCursor", () => settings.getShowHardwareCursor(), value => settings.setShowHardwareCursor(value)),
|
|
416
|
+
numberSetting("editorPaddingX", () => settings.getEditorPaddingX(), value => settings.setEditorPaddingX(value), 0),
|
|
417
|
+
choice("outputPad", offeredNumbers("outputPad"), () => settings.getOutputPad(), value => settings.setOutputPad(value)),
|
|
418
|
+
numberSetting("autocompleteMaxVisible", () => settings.getAutocompleteMaxVisible(), value => settings.setAutocompleteMaxVisible(value), 1),
|
|
419
|
+
bool("clearOnShrink", () => settings.getClearOnShrink(), value => settings.setClearOnShrink(value)),
|
|
420
|
+
bool("showTerminalProgress", () => settings.getShowTerminalProgress(), value => settings.setShowTerminalProgress(value)),
|
|
421
|
+
choice("tuiMode", offered("tuiMode"), () => settings.getTuiMode(), value => settings.setTuiMode(value)),
|
|
422
|
+
choice("fullscreenExitOutput", offered("fullscreenExitOutput"), () => settings.getFullscreenExitOutput(), value => settings.setFullscreenExitOutput(value)),
|
|
423
|
+
choice("fullscreenScrollbar", offered("fullscreenScrollbar"), () => settings.getFullscreenScrollbar(), value => settings.setFullscreenScrollbar(value)),
|
|
424
|
+
bool("fullscreenCopyOnSelect", () => settings.getFullscreenCopyOnSelect(), value => settings.setFullscreenCopyOnSelect(value)),
|
|
425
|
+
jsonObject("warnings", () => settings.getWarnings(), value => settings.setWarnings(value)),
|
|
426
|
+
];
|
|
427
|
+
}
|
|
428
|
+
const THINKING_LEVELS = ["off", "minimal", "low", "medium", "high", "xhigh", "max"];
|
|
429
|
+
/**
|
|
430
|
+
* Per-model thinking overrides as one record keyed `provider/modelId`. Writing a record removes the
|
|
431
|
+
* overrides it no longer names and sets the ones it does, so the stored set equals the written set.
|
|
432
|
+
*/
|
|
433
|
+
function modelThinkingLevels(settings) {
|
|
434
|
+
// Compatibility: an in-memory manager with no overrides reports nothing rather than an empty record.
|
|
435
|
+
const read = () => ({ ...(settings.getAllModelThinkingLevels() ?? {}) });
|
|
436
|
+
return operation("modelThinkingLevels", "json", read, value => {
|
|
437
|
+
if (typeof value !== "object" || value === null || Array.isArray(value))
|
|
438
|
+
invalid("modelThinkingLevels");
|
|
439
|
+
for (const [key, level] of Object.entries(value)) {
|
|
440
|
+
if (!key.includes("/") || typeof level !== "string" || !THINKING_LEVELS.includes(level))
|
|
441
|
+
invalid("modelThinkingLevels");
|
|
442
|
+
}
|
|
443
|
+
}, value => {
|
|
444
|
+
const next = value;
|
|
445
|
+
for (const key of Object.keys(settings.getAllModelThinkingLevels() ?? {})) {
|
|
446
|
+
if (!(key in next))
|
|
447
|
+
settings.removeModelThinkingLevel(...splitModelKey(key));
|
|
448
|
+
}
|
|
449
|
+
for (const [key, level] of Object.entries(next))
|
|
450
|
+
settings.setModelThinkingLevel(...splitModelKey(key), level);
|
|
451
|
+
});
|
|
452
|
+
}
|
|
453
|
+
/** The engine keys overrides as `provider/modelId`; the model id may itself contain slashes. */
|
|
454
|
+
export function splitModelKey(key) {
|
|
455
|
+
const at = key.indexOf("/");
|
|
456
|
+
return [key.slice(0, at), key.slice(at + 1)];
|
|
457
|
+
}
|
|
458
|
+
function bool(key, read, write) {
|
|
459
|
+
return operation(key, "boolean", read, value => { if (typeof value !== "boolean")
|
|
460
|
+
invalid(key); }, value => write(value));
|
|
461
|
+
}
|
|
462
|
+
function numberSetting(key, read, write, minimum) {
|
|
463
|
+
const declared = PRESENTATION.bounds[key];
|
|
464
|
+
const low = declared?.minimum ?? minimum;
|
|
465
|
+
const high = declared?.maximum;
|
|
466
|
+
return operation(key, "number", read, value => {
|
|
467
|
+
if (typeof value !== "number" || !Number.isSafeInteger(value) || value < low || (high !== undefined && value > high))
|
|
468
|
+
invalid(key);
|
|
469
|
+
}, value => write(value));
|
|
470
|
+
}
|
|
471
|
+
function jsonObject(key, read, write) {
|
|
472
|
+
const boundedRead = () => Object.fromEntries(Object.entries(read()).filter((entry) => typeof entry[1] === "boolean"));
|
|
473
|
+
return operation(key, "json", boundedRead, value => {
|
|
474
|
+
if (!value || typeof value !== "object" || Array.isArray(value))
|
|
475
|
+
invalid(key);
|
|
476
|
+
}, write);
|
|
477
|
+
}
|
|
478
|
+
function choice(key, choices, read, write) {
|
|
479
|
+
return {
|
|
480
|
+
...operation(key, "enum", read, value => { if (!choices.includes(value))
|
|
481
|
+
invalid(key); }, write),
|
|
482
|
+
descriptor: { key, valueType: "enum", choices },
|
|
483
|
+
};
|
|
484
|
+
}
|
|
485
|
+
function themeSetting(settings, themes) {
|
|
486
|
+
const raw = () => settings.getThemeSetting() ?? "default";
|
|
487
|
+
const read = () => parseAutomaticTheme(raw()) === null ? raw() : AUTOMATIC_THEME;
|
|
488
|
+
return operation(THEME_KEY, "string", read, value => {
|
|
489
|
+
if (typeof value !== "string" || value.length === 0)
|
|
490
|
+
invalid(THEME_KEY);
|
|
491
|
+
}, value => {
|
|
492
|
+
const selected = value;
|
|
493
|
+
if (selected !== AUTOMATIC_THEME) {
|
|
494
|
+
settings.setTheme(selected);
|
|
495
|
+
return;
|
|
496
|
+
}
|
|
497
|
+
if (parseAutomaticTheme(raw()) !== null)
|
|
498
|
+
return;
|
|
499
|
+
const installed = themes();
|
|
500
|
+
const current = raw();
|
|
501
|
+
const light = installed.includes(LIGHT_APPEARANCE_THEME) ? LIGHT_APPEARANCE_THEME : current;
|
|
502
|
+
const dark = installed.includes(DARK_APPEARANCE_THEME) ? DARK_APPEARANCE_THEME : current;
|
|
503
|
+
settings.setTheme(`${light}/${dark}`);
|
|
504
|
+
});
|
|
505
|
+
}
|
|
506
|
+
function operation(key, valueType, read, validate, write) {
|
|
507
|
+
return { key, descriptor: { key, valueType }, read, validate, write };
|
|
508
|
+
}
|
|
509
|
+
function isPiSettingKey(key) {
|
|
510
|
+
return Object.hasOwn(PI_SETTING_EFFECTS, key);
|
|
511
|
+
}
|
|
512
|
+
function invalid(key) {
|
|
513
|
+
throw new TypeError(`setting value is invalid: ${key}`);
|
|
514
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { AgentSettingFlag } from "../../../contracts/agent-engine/index.js";
|
|
2
|
+
export interface PiSettingPresentation {
|
|
3
|
+
readonly label: string;
|
|
4
|
+
readonly description: string;
|
|
5
|
+
readonly opensDialog: boolean;
|
|
6
|
+
readonly values?: readonly string[];
|
|
7
|
+
}
|
|
8
|
+
export interface PiSettingBounds {
|
|
9
|
+
readonly minimum: number;
|
|
10
|
+
readonly maximum?: number;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* The pinned engine's own presentation of its settings: which keys it presents, in which
|
|
14
|
+
* order, with which wording, dialog parts, and numeric bounds.
|
|
15
|
+
*/
|
|
16
|
+
export interface PiSettingsMetadata {
|
|
17
|
+
readonly presented: readonly string[];
|
|
18
|
+
readonly order: readonly string[];
|
|
19
|
+
readonly settings: Readonly<Record<string, PiSettingPresentation>>;
|
|
20
|
+
readonly dialogs: Readonly<Record<string, readonly AgentSettingFlag[]>>;
|
|
21
|
+
readonly bounds: Readonly<Record<string, PiSettingBounds>>;
|
|
22
|
+
}
|
|
23
|
+
/** File name of the metadata beside this module, written by `scripts/pi/build-pi-settings-metadata.mjs`. */
|
|
24
|
+
export declare const PI_SETTINGS_METADATA_FILE = "pi-settings-metadata.json";
|
|
25
|
+
/**
|
|
26
|
+
* Reads the generated metadata beside this module. It is produced from the pinned engine at
|
|
27
|
+
* build time rather than committed, so what A1 presents cannot drift from what the engine
|
|
28
|
+
* presents; a source tree that has not been built reports the missing file by name.
|
|
29
|
+
*/
|
|
30
|
+
export declare function loadPiSettingsMetadata(): PiSettingsMetadata;
|
|
31
|
+
export declare function assertPiSettingsMetadata(value: unknown): PiSettingsMetadata;
|