@bingjiang0611/rotom 0.1.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +61 -0
- package/THIRD_PARTY_NOTICES.md +94 -0
- package/bin/pi-agent +355 -0
- package/bin/rotom +24 -0
- package/extensions/browser/browser-relay.ts +440 -0
- package/extensions/browser/chrome-extension/coordinate-click.js +48 -0
- package/extensions/browser/chrome-extension/full-read.js +113 -0
- package/extensions/browser/chrome-extension/interaction-observation.js +5 -0
- package/extensions/browser/chrome-extension/interaction-scroll-target.js +54 -0
- package/extensions/browser/chrome-extension/interaction-target-state.js +88 -0
- package/extensions/browser/chrome-extension/manifest.json +23 -0
- package/extensions/browser/chrome-extension/operation-chrome.js +18 -0
- package/extensions/browser/chrome-extension/operation-guard.js +12 -0
- package/extensions/browser/chrome-extension/page-alerts.js +89 -0
- package/extensions/browser/chrome-extension/relay-deadline.js +55 -0
- package/extensions/browser/chrome-extension/rendered-text.js +42 -0
- package/extensions/browser/chrome-extension/scoped-ax-ref.js +14 -0
- package/extensions/browser/chrome-extension/service-worker.js +1244 -0
- package/extensions/browser/chrome-extension/shared-tab-group.js +18 -0
- package/extensions/browser/chrome-extension/tab-list-status.js +58 -0
- package/extensions/browser/chrome-extension/window-open-correlation.js +15 -0
- package/extensions/browser/index.ts +505 -0
- package/extensions/browser/install-chrome-relay.mjs +216 -0
- package/extensions/browser/native-host.mjs +192 -0
- package/extensions/browser/relay-protocol.mjs +19 -0
- package/extensions/browser/relay-setup-probe.mjs +38 -0
- package/extensions/coding-policy/index.ts +38 -0
- package/extensions/coding-policy/pi-runtime-drift.ts +75 -0
- package/extensions/coding-policy/repair-hints.ts +252 -0
- package/extensions/observability/dashboard.mjs +788 -0
- package/extensions/observability/index.ts +677 -0
- package/extensions/third-party/ask-continuation.ts +78 -0
- package/extensions/third-party/computer-use-recovery.ts +339 -0
- package/extensions/third-party/deferred-tools.ts +197 -0
- package/extensions/third-party/index.ts +84 -0
- package/extensions/third-party/node_modules/.package-lock.json +175 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/LICENSE +21 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/README.md +92 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/assets/reference/img.jpg +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/architecture.md +158 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/configuration.md +92 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/development.md +123 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/linux.md +65 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/troubleshooting.md +156 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/usage.md +140 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/windows-bridge.md +65 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/extensions/computer-use.ts +203 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/Cargo.lock +1204 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/Cargo.toml +18 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/atspi.rs +640 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/error.rs +65 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/lib.rs +11 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/main.rs +1074 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/protocol.rs +49 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/state.rs +293 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/wayland.rs +89 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/x11.rs +909 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/tests/protocol_tests.rs +73 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/macos/bridge.swift +3611 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/Cargo.lock +396 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/Cargo.toml +30 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/capture.rs +518 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/error.rs +81 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/input.rs +501 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/lib.rs +16 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/main.rs +1683 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/protocol.rs +53 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/refs.rs +237 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/state.rs +55 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/uia.rs +1252 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/window.rs +718 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/protocol_tests.rs +252 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/refs_tests.rs +86 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/state_tests.rs +33 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/package.json +84 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/linux/arm64/linux-bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/linux/x64/linux-bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/arm64/bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/Info.plist +13 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/MacOS/bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/_CodeSignature/CodeResources +115 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/x64/bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/scripts/build-native.mjs +277 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/scripts/setup-helper.mjs +617 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/actions.ts +130 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/bridge.ts +2423 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/cdp.ts +658 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/config.ts +113 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/contract.ts +104 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/note.ts +195 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/outline.ts +651 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/output.ts +134 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/permissions.ts +111 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/architecture.ts +23 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/coerce.ts +16 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/index.ts +59 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/linux/backend.ts +186 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/linux/helper.ts +238 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/backend.ts +131 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/browser.ts +110 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper-path.d.mts +9 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper-path.mjs +34 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper.ts +291 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/permissions.ts +146 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/types.ts +222 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/windows/backend.ts +142 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/windows/helper.ts +140 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/runtime.ts +129 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/state.ts +146 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/view.ts +147 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/LICENSE +21 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/README.md +94 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/ask-user-question.ts +336 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/config.ts +75 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/configuration.md +120 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/hosts.md +93 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/keyboard.md +103 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/localization.md +83 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/tool-schema.md +121 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/events.ts +55 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/index.ts +54 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/de.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/en.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/es.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/fr.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/pt-BR.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/pt.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/ru.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/uk.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/zh.json +33 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/package.json +100 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/reconcile.ts +47 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/rpc-fallback.ts +166 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/build-questionnaire.ts +323 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/external-editor.ts +62 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/i18n-bridge.ts +51 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/key-router.ts +310 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/questionnaire-session.ts +250 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/row-intent.ts +143 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/contract.ts +24 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/derivations.ts +40 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/focus.ts +17 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/projections.ts +99 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/state-reducer.ts +331 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/state.ts +57 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/format-answer.ts +29 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/response-envelope.ts +47 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/types.ts +145 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/validate-questionnaire.ts +56 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/component-binding.ts +45 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/inline-input.ts +66 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/multi-select-view.ts +177 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/option-list-view.ts +68 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/markdown-content-cache.ts +77 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-block-renderer.ts +109 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-box-renderer.ts +86 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-layout-decider.ts +207 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-pane.ts +233 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/submit-picker.ts +65 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/tab-bar.ts +57 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/wrapping-select.ts +288 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/dialog-builder.ts +224 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/props-adapter.ts +117 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/stateful-view.ts +24 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-components.ts +16 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-content-strategy.ts +249 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/CHANGELOG.md +118 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/README.md +70 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/config.ts +309 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/index.ts +13 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/package.json +39 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/LICENSE +21 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/README.md +361 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/package.json +56 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/accounting.ts +106 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/command-registration.ts +129 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/command.ts +151 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/commands.ts +482 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/errors.ts +176 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/goal.ts +52 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/index.ts +1 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/lifecycle.ts +575 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/markers.ts +25 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/menu.ts +685 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/persistence.ts +283 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/prompts.ts +115 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/run-protocol.ts +380 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/runtime.ts +1493 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/safety.ts +78 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/settings-ui.ts +515 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/settings.ts +201 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/tool-policy.ts +180 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/tools.ts +416 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/wait.ts +75 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/LICENSE +21 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/README.md +739 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/browse.d.ts +5 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/browse.js +356 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/contracts.d.ts +77 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/contracts.js +10 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-formatting.d.ts +13 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-formatting.js +181 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-sanitization.d.ts +1 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-sanitization.js +19 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/dynamic-border.d.ts +8 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/dynamic-border.js +11 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/index.d.ts +11 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/index.js +618 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/input.d.ts +8 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/input.js +94 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/mermaid.d.ts +8 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/mermaid.js +106 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/multi-select.d.ts +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/multi-select.js +233 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/rendering.d.ts +13 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/rendering.js +50 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/review.d.ts +9 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/review.js +203 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/selection-controller.d.ts +17 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/selection-controller.js +38 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/syntax-highlighting.d.ts +4 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/syntax-highlighting.js +227 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/task-loader.d.ts +19 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/task-loader.js +55 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/confirmation.d.ts +30 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/confirmation.js +118 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/custom-interaction.d.ts +40 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/custom-interaction.js +174 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/index.d.ts +11 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/index.js +10 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction-hints.d.ts +14 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction-hints.js +33 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction.d.ts +40 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction.js +169 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/live-choice.d.ts +63 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/live-choice.js +408 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/model.d.ts +4 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/model.js +113 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/navigator.d.ts +10 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/navigator.js +58 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/runtime.d.ts +27 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/runtime.js +479 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/task.d.ts +29 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/task.js +158 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/terminal-text.d.ts +6 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/terminal-text.js +104 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/index.d.ts +3 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/index.js +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/rpc-harness.d.ts +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/rpc-harness.js +134 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/tui-harness.d.ts +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/tui-harness.js +314 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/types.d.ts +72 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/types.js +1 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/text.d.ts +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/text.js +9 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/types.d.ts +192 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/types.js +1 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/package.json +67 -0
- package/extensions/third-party/node_modules/acorn/CHANGELOG.md +998 -0
- package/extensions/third-party/node_modules/acorn/LICENSE +21 -0
- package/extensions/third-party/node_modules/acorn/README.md +309 -0
- package/extensions/third-party/node_modules/acorn/bin/acorn +4 -0
- package/extensions/third-party/node_modules/acorn/dist/acorn.d.mts +897 -0
- package/extensions/third-party/node_modules/acorn/dist/acorn.d.ts +897 -0
- package/extensions/third-party/node_modules/acorn/dist/acorn.js +6342 -0
- package/extensions/third-party/node_modules/acorn/dist/acorn.mjs +6313 -0
- package/extensions/third-party/node_modules/acorn/dist/bin.js +90 -0
- package/extensions/third-party/node_modules/acorn/package.json +50 -0
- package/extensions/third-party/node_modules/grok-mermaid/CHANGELOG.md +46 -0
- package/extensions/third-party/node_modules/grok-mermaid/LICENSE +205 -0
- package/extensions/third-party/node_modules/grok-mermaid/README.md +191 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.d.ts +16 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.js +23 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.d.ts +87 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.js +366 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/graph.d.ts +74 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/graph.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/graph.js +91 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/graph.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/index.d.ts +32 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/index.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/index.js +100 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/index.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/labels.d.ts +62 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/labels.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/labels.js +324 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/labels.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.d.ts +12 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.js +194 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout.d.ts +87 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout.js +881 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/parse.d.ts +83 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/parse.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/parse.js +1151 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/parse.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.d.ts +18 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.js +78 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/types.d.ts +42 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/types.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/types.js +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/types.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.d.ts +2 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.js +994 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width.d.ts +18 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width.js +76 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/package.json +49 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/ansi.ts +34 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/canvas.ts +373 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/graph.ts +142 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/index.ts +104 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/labels.ts +326 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/layout-seq.ts +203 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/layout.ts +1015 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/parse.ts +1189 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/source-box.ts +89 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/types.ts +43 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/width-data.ts +993 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/width.ts +74 -0
- package/extensions/third-party/node_modules/highlight.js/CHANGES.md +3787 -0
- package/extensions/third-party/node_modules/highlight.js/LICENSE +29 -0
- package/extensions/third-party/node_modules/highlight.js/README.md +521 -0
- package/extensions/third-party/node_modules/highlight.js/SECURITY.md +19 -0
- package/extensions/third-party/node_modules/highlight.js/SUPPORTED_LANGUAGES.md +310 -0
- package/extensions/third-party/node_modules/highlight.js/VERSION_10_UPGRADE.md +58 -0
- package/extensions/third-party/node_modules/highlight.js/VERSION_11_UPGRADE.md +203 -0
- package/extensions/third-party/node_modules/highlight.js/es/common.d.ts +3 -0
- package/extensions/third-party/node_modules/highlight.js/es/common.js +4 -0
- package/extensions/third-party/node_modules/highlight.js/es/core.d.ts +3 -0
- package/extensions/third-party/node_modules/highlight.js/es/core.js +4 -0
- package/extensions/third-party/node_modules/highlight.js/es/index.js +4 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/1c.js +544 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/1c.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/abnf.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/abnf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/accesslog.js +92 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/accesslog.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/actionscript.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/actionscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ada.js +266 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ada.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/angelscript.js +178 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/angelscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/apache.js +105 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/apache.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/applescript.js +149 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/applescript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/arcade.js +428 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/arcade.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/arduino.js +1040 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/arduino.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/armasm.js +124 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/armasm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/asciidoc.js +261 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/asciidoc.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/aspectj.js +231 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/aspectj.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/autohotkey.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/autohotkey.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/autoit.js +178 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/autoit.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/avrasm.js +78 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/avrasm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/awk.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/awk.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/axapta.js +188 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/axapta.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/bash.js +409 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/bash.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/basic.js +236 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/basic.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/bnf.js +39 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/bnf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/brainfuck.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/brainfuck.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/c.js +411 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/c.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cal.js +160 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cal.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/capnproto.js +99 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/capnproto.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ceylon.js +140 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ceylon.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clean.js +67 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clean.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clojure-repl.js +27 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clojure-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clojure.js +184 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clojure.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cmake.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cmake.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/coffeescript.js +368 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/coffeescript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/coq.js +445 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/coq.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cos.js +140 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cos.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cpp.js +637 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cpp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/crmsh.js +100 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/crmsh.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/crystal.js +329 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/crystal.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/csharp.js +418 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/csharp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/csp.js +65 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/csp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/css.js +960 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/css.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/d.js +272 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/d.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dart.js +293 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dart.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/delphi.js +246 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/delphi.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/diff.js +65 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/diff.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/django.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/django.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dns.js +133 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dns.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dockerfile.js +44 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dockerfile.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dos.js +165 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dos.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dsconfig.js +66 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dsconfig.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dts.js +157 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dts.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dust.js +47 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dust.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ebnf.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ebnf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/elixir.js +286 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/elixir.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/elm.js +143 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/elm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erb.js +29 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erb.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erlang-repl.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erlang-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erlang.js +235 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erlang.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/excel.js +580 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/excel.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fix.js +39 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fix.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/flix.js +79 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/flix.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fortran.js +574 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fortran.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/freedesktop.js +113 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/freedesktop.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fsharp.js +639 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fsharp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gams.js +181 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gams.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gauss.js +306 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gauss.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gcode.js +189 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gcode.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gherkin.js +120 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gherkin.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/glsl.js +128 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/glsl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gml.js +3130 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/go.js +160 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/go.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/golo.js +81 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/golo.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gradle.js +190 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gradle.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/graphql.js +78 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/graphql.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/groovy.js +225 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/groovy.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haml.js +113 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/handlebars.js +258 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/handlebars.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haskell.js +217 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haskell.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haxe.js +167 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haxe.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/hsp.js +59 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/hsp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/http.js +97 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/http.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/hy.js +137 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/hy.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/inform7.js +70 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/inform7.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ini.js +121 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ini.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/irpf90.js +107 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/irpf90.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/isbl.js +3205 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/isbl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/java.js +314 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/java.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/javascript.js +772 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/javascript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/jboss-cli.js +63 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/jboss-cli.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/json.js +63 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/json.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/julia-repl.js +51 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/julia-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/julia.js +442 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/julia.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/kotlin.js +288 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/kotlin.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lasso.js +171 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lasso.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/latex.js +278 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/latex.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ldif.js +31 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ldif.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/leaf.js +98 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/leaf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/less.js +1061 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/less.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lisp.js +139 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lisp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/livecodeserver.js +173 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/livecodeserver.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/livescript.js +380 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/livescript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/llvm.js +136 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/llvm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lsl.js +76 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lsl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lua.js +81 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lua.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/makefile.js +89 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/makefile.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/markdown.js +250 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/markdown.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mathematica.js +7359 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mathematica.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/matlab.js +107 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/matlab.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/maxima.js +414 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/maxima.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mel.js +235 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mel.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mercury.js +108 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mercury.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mipsasm.js +104 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mipsasm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mizar.js +27 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mizar.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mojolicious.js +36 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mojolicious.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/monkey.js +184 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/monkey.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/moonscript.js +141 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/moonscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/n1ql.js +365 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/n1ql.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nestedtext.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nestedtext.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nginx.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nginx.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nim.js +187 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nim.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nix.js +372 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nix.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/node-repl.js +33 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/node-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nsis.js +591 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nsis.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/objectivec.js +253 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/objectivec.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ocaml.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ocaml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/openscad.js +77 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/openscad.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/oxygene.js +87 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/oxygene.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/parser3.js +55 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/parser3.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/perl.js +504 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/perl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pf.js +60 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pgsql.js +525 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pgsql.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/php-template.js +57 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/php-template.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/php.js +635 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/php.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/plaintext.js +19 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/plaintext.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pony.js +90 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pony.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/powershell.js +317 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/powershell.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/processing.js +434 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/processing.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/profile.js +43 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/profile.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/prolog.js +97 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/prolog.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/properties.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/properties.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/protobuf.js +79 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/protobuf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/puppet.js +146 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/puppet.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/purebasic.js +100 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/purebasic.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/python-repl.js +32 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/python-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/python.js +441 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/python.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/q.js +38 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/q.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/qml.js +189 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/qml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/r.js +257 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/r.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/reasonml.js +142 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/reasonml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rib.js +37 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rib.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/roboconf.js +82 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/roboconf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/routeros.js +164 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/routeros.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rsl.js +149 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rsl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ruby.js +449 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ruby.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ruleslanguage.js +76 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ruleslanguage.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rust.js +340 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rust.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sas.js +557 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sas.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scala.js +214 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scala.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scheme.js +196 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scheme.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scilab.js +73 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scilab.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scss.js +950 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scss.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/shell.js +33 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/shell.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/smali.js +126 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/smali.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/smalltalk.js +69 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/smalltalk.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sml.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sqf.js +2828 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sqf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sql.js +693 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sql.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stan.js +521 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stan.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stata.js +53 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stata.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/step21.js +67 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/step21.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stylus.js +1010 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stylus.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/subunit.js +44 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/subunit.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/swift.js +984 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/swift.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/taggerscript.js +59 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/taggerscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tap.js +47 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tap.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tcl.js +191 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tcl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/thrift.js +77 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/thrift.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tp.js +172 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/twig.js +260 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/twig.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/typescript.js +916 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/typescript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vala.js +61 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vala.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbnet.js +157 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbnet.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript-html.js +24 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript-html.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript.js +220 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/verilog.js +550 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/verilog.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vhdl.js +216 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vhdl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vim.js +129 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vim.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/wasm.js +139 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/wasm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/wren.js +302 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/wren.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/x86asm.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/x86asm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xl.js +205 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xml.js +234 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xquery.js +360 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xquery.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/yaml.js +213 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/yaml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/zephir.js +129 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/zephir.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/package.json +1 -0
- package/extensions/third-party/node_modules/highlight.js/es/utils/regex.js +158 -0
- package/extensions/third-party/node_modules/highlight.js/lib/common.d.ts +3 -0
- package/extensions/third-party/node_modules/highlight.js/lib/common.js +42 -0
- package/extensions/third-party/node_modules/highlight.js/lib/core.d.ts +3 -0
- package/extensions/third-party/node_modules/highlight.js/lib/core.js +2603 -0
- package/extensions/third-party/node_modules/highlight.js/lib/index.js +199 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/1c.js +544 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/1c.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/abnf.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/abnf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/accesslog.js +92 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/accesslog.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/actionscript.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/actionscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ada.js +266 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ada.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/angelscript.js +178 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/angelscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/apache.js +105 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/apache.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/applescript.js +149 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/applescript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/arcade.js +428 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/arcade.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/arduino.js +1040 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/arduino.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/armasm.js +124 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/armasm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/asciidoc.js +261 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/asciidoc.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/aspectj.js +231 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/aspectj.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/autohotkey.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/autohotkey.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/autoit.js +178 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/autoit.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/avrasm.js +78 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/avrasm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/awk.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/awk.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/axapta.js +188 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/axapta.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/bash.js +409 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/bash.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/basic.js +236 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/basic.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/bnf.js +39 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/bnf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/brainfuck.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/brainfuck.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/c.js +411 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/c.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cal.js +160 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cal.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/capnproto.js +99 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/capnproto.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ceylon.js +140 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ceylon.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clean.js +67 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clean.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure.js +184 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cmake.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cmake.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/coffeescript.js +368 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/coffeescript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/coq.js +445 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/coq.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cos.js +140 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cos.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cpp.js +637 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cpp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/crmsh.js +100 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/crmsh.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/crystal.js +329 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/crystal.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/csharp.js +418 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/csharp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/csp.js +65 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/csp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/css.js +960 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/css.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/d.js +272 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/d.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dart.js +293 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dart.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/delphi.js +246 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/delphi.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/diff.js +65 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/diff.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/django.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/django.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dns.js +133 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dns.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dockerfile.js +44 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dockerfile.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dos.js +165 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dos.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dsconfig.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dts.js +157 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dts.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dust.js +47 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dust.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ebnf.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ebnf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/elixir.js +286 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/elixir.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/elm.js +143 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/elm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erb.js +29 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erb.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang-repl.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang.js +235 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/excel.js +580 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/excel.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fix.js +39 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fix.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/flix.js +79 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/flix.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fortran.js +574 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fortran.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/freedesktop.js +113 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/freedesktop.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fsharp.js +639 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fsharp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gams.js +181 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gams.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gauss.js +306 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gauss.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gcode.js +189 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gcode.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gherkin.js +120 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gherkin.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/glsl.js +128 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/glsl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gml.js +3130 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/go.js +160 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/go.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/golo.js +81 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/golo.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gradle.js +190 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gradle.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/graphql.js +78 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/graphql.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/groovy.js +225 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/groovy.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haml.js +113 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/handlebars.js +258 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/handlebars.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haskell.js +217 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haskell.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haxe.js +167 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haxe.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/hsp.js +59 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/hsp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/http.js +97 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/http.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/hy.js +137 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/hy.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/inform7.js +70 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/inform7.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ini.js +121 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ini.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/irpf90.js +107 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/irpf90.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/isbl.js +3205 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/isbl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/java.js +314 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/java.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/javascript.js +772 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/javascript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/jboss-cli.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/json.js +63 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/json.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/julia-repl.js +51 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/julia-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/julia.js +442 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/julia.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/kotlin.js +288 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/kotlin.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lasso.js +171 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lasso.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/latex.js +278 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/latex.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ldif.js +31 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ldif.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/leaf.js +98 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/leaf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/less.js +1061 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/less.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lisp.js +139 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lisp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/livecodeserver.js +173 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/livecodeserver.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/livescript.js +380 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/livescript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/llvm.js +136 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/llvm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lsl.js +76 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lsl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lua.js +81 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lua.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/makefile.js +89 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/makefile.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/markdown.js +250 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/markdown.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mathematica.js +7359 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mathematica.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/matlab.js +107 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/matlab.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/maxima.js +414 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/maxima.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mel.js +235 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mel.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mercury.js +108 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mercury.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mipsasm.js +104 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mipsasm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mizar.js +27 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mizar.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mojolicious.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/monkey.js +184 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/monkey.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/moonscript.js +141 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/moonscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/n1ql.js +365 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/n1ql.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nestedtext.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nestedtext.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nginx.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nginx.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nim.js +187 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nim.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nix.js +372 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nix.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/node-repl.js +33 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/node-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nsis.js +591 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nsis.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/objectivec.js +253 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/objectivec.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ocaml.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ocaml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/openscad.js +77 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/openscad.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/oxygene.js +87 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/oxygene.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/parser3.js +55 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/parser3.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/perl.js +504 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/perl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pf.js +60 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pgsql.js +525 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pgsql.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/php-template.js +57 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/php-template.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/php.js +635 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/php.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/plaintext.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pony.js +90 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pony.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/powershell.js +317 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/powershell.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/processing.js +434 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/processing.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/profile.js +43 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/profile.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/prolog.js +97 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/prolog.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/properties.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/properties.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/protobuf.js +79 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/protobuf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/puppet.js +146 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/puppet.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/purebasic.js +100 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/purebasic.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/python-repl.js +32 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/python-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/python.js +441 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/python.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/q.js +38 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/q.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/qml.js +189 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/qml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/r.js +257 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/r.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/reasonml.js +142 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/reasonml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rib.js +37 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rib.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/roboconf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/routeros.js +164 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/routeros.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rsl.js +149 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rsl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ruby.js +449 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ruby.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ruleslanguage.js +76 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ruleslanguage.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rust.js +340 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rust.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sas.js +557 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sas.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scala.js +214 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scala.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scheme.js +196 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scheme.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scilab.js +73 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scilab.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scss.js +950 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scss.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/shell.js +33 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/shell.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/smali.js +126 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/smali.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/smalltalk.js +69 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/smalltalk.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sml.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sqf.js +2828 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sqf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sql.js +693 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sql.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stan.js +521 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stan.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stata.js +53 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stata.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/step21.js +67 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/step21.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stylus.js +1010 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stylus.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/subunit.js +44 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/subunit.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/swift.js +984 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/swift.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/taggerscript.js +59 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/taggerscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tap.js +47 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tap.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tcl.js +191 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tcl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/thrift.js +77 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/thrift.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tp.js +172 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/twig.js +260 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/twig.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/typescript.js +916 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/typescript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vala.js +61 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vala.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbnet.js +157 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbnet.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript-html.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript.js +220 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/verilog.js +550 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/verilog.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vhdl.js +216 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vhdl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vim.js +129 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vim.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/wasm.js +139 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/wasm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/wren.js +302 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/wren.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/x86asm.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/x86asm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xl.js +205 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xml.js +234 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xquery.js +360 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xquery.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/yaml.js +213 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/yaml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/zephir.js +129 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/zephir.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/package.json +119 -0
- package/extensions/third-party/node_modules/highlight.js/scss/1c-light.scss +107 -0
- package/extensions/third-party/node_modules/highlight.js/scss/a11y-dark.scss +94 -0
- package/extensions/third-party/node_modules/highlight.js/scss/a11y-light.scss +94 -0
- package/extensions/third-party/node_modules/highlight.js/scss/agate.scss +127 -0
- package/extensions/third-party/node_modules/highlight.js/scss/an-old-hope.scss +75 -0
- package/extensions/third-party/node_modules/highlight.js/scss/androidstudio.scss +60 -0
- package/extensions/third-party/node_modules/highlight.js/scss/arduino-light.scss +78 -0
- package/extensions/third-party/node_modules/highlight.js/scss/arta.scss +66 -0
- package/extensions/third-party/node_modules/highlight.js/scss/ascetic.scss +45 -0
- package/extensions/third-party/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +105 -0
- package/extensions/third-party/node_modules/highlight.js/scss/atom-one-dark.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/atom-one-light.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/3024.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/apathy.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/apprentice.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ashes.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-cave-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-cave.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-dune-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-dune.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-estuary-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-estuary.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-forest-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-forest.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-heath-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-heath.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-lakeside-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-lakeside.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-plateau-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-plateau.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-savanna-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-savanna.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-seaside-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-seaside.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-sulphurpool-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-sulphurpool.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atlas.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/bespin.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-bathory.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-burzum.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-dark-funeral.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-gorgoroth.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-immortal.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-khold.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-marduk.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-mayhem.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-nile.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-venom.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/brewer.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/bright.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/brogrammer.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/brush-trees-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/brush-trees.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/chalk.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/circus.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/classic-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/classic-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/codeschool.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/colors.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/cupcake.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/cupertino.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/danqing.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/darcula.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/dark-violet.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/darkmoss.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/darktooth.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/decaf.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/default-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/default-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/dirtysea.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/dracula.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/edge-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/edge-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/eighties.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/embers.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-gray-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-gray-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/espresso.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/eva-dim.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/eva.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/flat.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/framer.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/fruit-soda.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gigavolt.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/github.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/google-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/google-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/grayscale-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/grayscale-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/green-screen.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-hard.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-medium.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-pale.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-soft.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-hard.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-medium.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-soft.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/hardcore.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/harmonic16-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/harmonic16-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/heetch-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/heetch-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/helios.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/hopscotch.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/horizon-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/horizon-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/humanoid-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/humanoid-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ia-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ia-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/icy-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ir-black.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/isotope.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/kimber.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/london-tube.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/macintosh.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/marrakesh.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/materia.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material-darker.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material-lighter.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material-palenight.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material-vivid.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/mellow-purple.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/mexico-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/mocha.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/monokai.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/nebula.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/nord.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/nova.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ocean.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/oceanicnext.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/one-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/onedark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/outrun-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/papercolor-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/papercolor-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/paraiso.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/pasque.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/phd.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/pico.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/pop.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/porple.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/qualia.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/railscasts.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/rebecca.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine-dawn.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine-moon.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/sagelight.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/sandcastle.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/seti-ui.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/shapeshifter.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/silk-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/silk-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/snazzy.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/solar-flare-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/solar-flare.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/solarized-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/solarized-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/spacemacs.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/summercamp.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/summerfruit-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/summerfruit-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/synth-midnight-terminal-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/synth-midnight-terminal-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/tango.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/tender.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/tomorrow-night.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/tomorrow.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/twilight.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/unikitty-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/unikitty-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/vulcan.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-10-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-10.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-95-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-95.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-high-contrast-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-high-contrast.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-nt-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-nt.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/woodland.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/xcode-dusk.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/zenburn.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/brown-paper.scss +63 -0
- package/extensions/third-party/node_modules/highlight.js/scss/codepen-embed.scss +57 -0
- package/extensions/third-party/node_modules/highlight.js/scss/color-brewer.scss +66 -0
- package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-cherry.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-dimmer.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-icecap.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-saturated.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/dark.scss +62 -0
- package/extensions/third-party/node_modules/highlight.js/scss/default.scss +117 -0
- package/extensions/third-party/node_modules/highlight.js/scss/devibeans.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/docco.scss +83 -0
- package/extensions/third-party/node_modules/highlight.js/scss/equinox.scss +71 -0
- package/extensions/third-party/node_modules/highlight.js/scss/far.scss +67 -0
- package/extensions/third-party/node_modules/highlight.js/scss/felipec.scss +94 -0
- package/extensions/third-party/node_modules/highlight.js/scss/foundation.scss +80 -0
- package/extensions/third-party/node_modules/highlight.js/scss/github-dark-dimmed.scss +117 -0
- package/extensions/third-party/node_modules/highlight.js/scss/github-dark.scss +118 -0
- package/extensions/third-party/node_modules/highlight.js/scss/github.scss +118 -0
- package/extensions/third-party/node_modules/highlight.js/scss/gml.scss +72 -0
- package/extensions/third-party/node_modules/highlight.js/scss/googlecode.scss +79 -0
- package/extensions/third-party/node_modules/highlight.js/scss/gradient-dark.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/gradient-light.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/grayscale.scss +89 -0
- package/extensions/third-party/node_modules/highlight.js/scss/hybrid.scss +88 -0
- package/extensions/third-party/node_modules/highlight.js/scss/idea.scss +86 -0
- package/extensions/third-party/node_modules/highlight.js/scss/intellij-light.scss +107 -0
- package/extensions/third-party/node_modules/highlight.js/scss/ir-black.scss +66 -0
- package/extensions/third-party/node_modules/highlight.js/scss/isbl-editor-dark.scss +94 -0
- package/extensions/third-party/node_modules/highlight.js/scss/isbl-editor-light.scss +93 -0
- package/extensions/third-party/node_modules/highlight.js/scss/kimbie-dark.scss +69 -0
- package/extensions/third-party/node_modules/highlight.js/scss/kimbie-light.scss +69 -0
- package/extensions/third-party/node_modules/highlight.js/scss/lightfair.scss +81 -0
- package/extensions/third-party/node_modules/highlight.js/scss/lioshi.scss +76 -0
- package/extensions/third-party/node_modules/highlight.js/scss/magula.scss +66 -0
- package/extensions/third-party/node_modules/highlight.js/scss/mono-blue.scss +56 -0
- package/extensions/third-party/node_modules/highlight.js/scss/monokai-sublime.scss +76 -0
- package/extensions/third-party/node_modules/highlight.js/scss/monokai.scss +70 -0
- package/extensions/third-party/node_modules/highlight.js/scss/night-owl.scss +174 -0
- package/extensions/third-party/node_modules/highlight.js/scss/nnfx-dark.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/nnfx-light.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/nord.scss +275 -0
- package/extensions/third-party/node_modules/highlight.js/scss/obsidian.scss +79 -0
- package/extensions/third-party/node_modules/highlight.js/scss/panda-syntax-dark.scss +92 -0
- package/extensions/third-party/node_modules/highlight.js/scss/panda-syntax-light.scss +89 -0
- package/extensions/third-party/node_modules/highlight.js/scss/paraiso-dark.scss +67 -0
- package/extensions/third-party/node_modules/highlight.js/scss/paraiso-light.scss +67 -0
- package/extensions/third-party/node_modules/highlight.js/scss/pojoaque.scss +76 -0
- package/extensions/third-party/node_modules/highlight.js/scss/purebasic.scss +103 -0
- package/extensions/third-party/node_modules/highlight.js/scss/qtcreator-dark.scss +76 -0
- package/extensions/third-party/node_modules/highlight.js/scss/qtcreator-light.scss +74 -0
- package/extensions/third-party/node_modules/highlight.js/scss/rainbow.scss +77 -0
- package/extensions/third-party/node_modules/highlight.js/scss/rose-pine-dawn.scss +107 -0
- package/extensions/third-party/node_modules/highlight.js/scss/rose-pine-moon.scss +109 -0
- package/extensions/third-party/node_modules/highlight.js/scss/rose-pine.scss +109 -0
- package/extensions/third-party/node_modules/highlight.js/scss/routeros.scss +86 -0
- package/extensions/third-party/node_modules/highlight.js/scss/school-book.scss +62 -0
- package/extensions/third-party/node_modules/highlight.js/scss/shades-of-purple.scss +84 -0
- package/extensions/third-party/node_modules/highlight.js/scss/srcery.scss +89 -0
- package/extensions/third-party/node_modules/highlight.js/scss/stackoverflow-dark.scss +117 -0
- package/extensions/third-party/node_modules/highlight.js/scss/stackoverflow-light.scss +117 -0
- package/extensions/third-party/node_modules/highlight.js/scss/sunburst.scss +89 -0
- package/extensions/third-party/node_modules/highlight.js/scss/tokyo-night-dark.scss +114 -0
- package/extensions/third-party/node_modules/highlight.js/scss/tokyo-night-light.scss +114 -0
- package/extensions/third-party/node_modules/highlight.js/scss/tomorrow-night-blue.scss +69 -0
- package/extensions/third-party/node_modules/highlight.js/scss/tomorrow-night-bright.scss +68 -0
- package/extensions/third-party/node_modules/highlight.js/scss/vs-dark.scss +61 -0
- package/extensions/third-party/node_modules/highlight.js/scss/vs.scss +63 -0
- package/extensions/third-party/node_modules/highlight.js/scss/vs2015.scss +100 -0
- package/extensions/third-party/node_modules/highlight.js/scss/xcode.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/xt256.scss +79 -0
- package/extensions/third-party/node_modules/highlight.js/styles/1c-light.css +107 -0
- package/extensions/third-party/node_modules/highlight.js/styles/1c-light.min.css +9 -0
- package/extensions/third-party/node_modules/highlight.js/styles/a11y-dark.css +94 -0
- package/extensions/third-party/node_modules/highlight.js/styles/a11y-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/a11y-light.css +94 -0
- package/extensions/third-party/node_modules/highlight.js/styles/a11y-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/agate.css +127 -0
- package/extensions/third-party/node_modules/highlight.js/styles/agate.min.css +20 -0
- package/extensions/third-party/node_modules/highlight.js/styles/an-old-hope.css +75 -0
- package/extensions/third-party/node_modules/highlight.js/styles/an-old-hope.min.css +9 -0
- package/extensions/third-party/node_modules/highlight.js/styles/androidstudio.css +60 -0
- package/extensions/third-party/node_modules/highlight.js/styles/androidstudio.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/arduino-light.css +78 -0
- package/extensions/third-party/node_modules/highlight.js/styles/arduino-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/arta.css +66 -0
- package/extensions/third-party/node_modules/highlight.js/styles/arta.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/ascetic.css +45 -0
- package/extensions/third-party/node_modules/highlight.js/styles/ascetic.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +105 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-light.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/3024.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/3024.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/apathy.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/apathy.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/apprentice.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/apprentice.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ashes.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ashes.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atlas.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atlas.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/bespin.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/bespin.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-bathory.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-burzum.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-immortal.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-khold.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-marduk.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-mayhem.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-nile.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-venom.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brewer.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brewer.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/bright.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/bright.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brogrammer.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brogrammer.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/chalk.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/chalk.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/circus.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/circus.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/codeschool.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/codeschool.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/colors.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/colors.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/cupcake.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/cupcake.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/cupertino.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/cupertino.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/danqing.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/danqing.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darcula.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darcula.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dark-violet.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dark-violet.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darkmoss.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darkmoss.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darktooth.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darktooth.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/decaf.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/decaf.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/default-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/default-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/default-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/default-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dirtysea.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dirtysea.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dracula.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dracula.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eighties.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eighties.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/embers.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/embers.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/espresso.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/espresso.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eva-dim.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eva-dim.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eva.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eva.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/flat.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/flat.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/framer.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/framer.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/fruit-soda.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/fruit-soda.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gigavolt.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gigavolt.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/github.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/github.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/google-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/google-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/google-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/google-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/green-screen.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/green-screen.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-hard.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-medium.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-soft.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/hardcore.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/hardcore.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/helios.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/helios.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/hopscotch.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/hopscotch.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/icy-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/icy-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ir-black.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ir-black.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/isotope.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/isotope.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/kimber.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/kimber.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/london-tube.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/london-tube.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/macintosh.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/macintosh.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/marrakesh.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/marrakesh.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/materia.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/materia.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-darker.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-darker.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-lighter.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-lighter.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-palenight.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-palenight.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-vivid.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-vivid.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mellow-purple.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mellow-purple.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mexico-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mexico-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mocha.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mocha.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/monokai.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/monokai.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nebula.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nebula.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nord.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nord.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nova.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nova.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ocean.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ocean.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/oceanicnext.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/oceanicnext.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/one-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/one-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/onedark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/onedark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/outrun-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/outrun-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/paraiso.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/paraiso.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pasque.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pasque.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/phd.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/phd.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pico.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pico.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pop.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pop.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/porple.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/porple.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/qualia.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/qualia.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/railscasts.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/railscasts.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/rebecca.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/rebecca.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-dawn.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-moon.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/sagelight.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/sagelight.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/sandcastle.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/sandcastle.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/seti-ui.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/seti-ui.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/shapeshifter.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/shapeshifter.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/snazzy.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/snazzy.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/spacemacs.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/spacemacs.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summercamp.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summercamp.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tango.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tango.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tender.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tender.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow-night.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/twilight.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/twilight.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/vulcan.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/vulcan.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/woodland.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/woodland.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/xcode-dusk.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/zenburn.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/zenburn.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/brown-paper.css +63 -0
- package/extensions/third-party/node_modules/highlight.js/styles/brown-paper.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/brown-papersq.png +0 -0
- package/extensions/third-party/node_modules/highlight.js/styles/codepen-embed.css +57 -0
- package/extensions/third-party/node_modules/highlight.js/styles/codepen-embed.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/color-brewer.css +66 -0
- package/extensions/third-party/node_modules/highlight.js/styles/color-brewer.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-cherry.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-cherry.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-dimmer.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-dimmer.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-icecap.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-icecap.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-saturated.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-saturated.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/dark.css +62 -0
- package/extensions/third-party/node_modules/highlight.js/styles/dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/default.css +117 -0
- package/extensions/third-party/node_modules/highlight.js/styles/default.min.css +9 -0
- package/extensions/third-party/node_modules/highlight.js/styles/devibeans.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/devibeans.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/docco.css +83 -0
- package/extensions/third-party/node_modules/highlight.js/styles/docco.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/equinox.css +71 -0
- package/extensions/third-party/node_modules/highlight.js/styles/equinox.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/far.css +67 -0
- package/extensions/third-party/node_modules/highlight.js/styles/far.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/felipec.css +94 -0
- package/extensions/third-party/node_modules/highlight.js/styles/felipec.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/foundation.css +80 -0
- package/extensions/third-party/node_modules/highlight.js/styles/foundation.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github-dark-dimmed.css +117 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github-dark-dimmed.min.css +9 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github-dark.css +118 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github-dark.min.css +10 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github.css +118 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github.min.css +10 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gml.css +72 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gml.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/googlecode.css +79 -0
- package/extensions/third-party/node_modules/highlight.js/styles/googlecode.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gradient-dark.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gradient-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gradient-light.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gradient-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/grayscale.css +89 -0
- package/extensions/third-party/node_modules/highlight.js/styles/grayscale.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/hybrid.css +88 -0
- package/extensions/third-party/node_modules/highlight.js/styles/hybrid.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/idea.css +86 -0
- package/extensions/third-party/node_modules/highlight.js/styles/idea.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/intellij-light.css +107 -0
- package/extensions/third-party/node_modules/highlight.js/styles/intellij-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/ir-black.css +66 -0
- package/extensions/third-party/node_modules/highlight.js/styles/ir-black.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-dark.css +94 -0
- package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-light.css +93 -0
- package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/kimbie-dark.css +69 -0
- package/extensions/third-party/node_modules/highlight.js/styles/kimbie-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/kimbie-light.css +69 -0
- package/extensions/third-party/node_modules/highlight.js/styles/kimbie-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/lightfair.css +81 -0
- package/extensions/third-party/node_modules/highlight.js/styles/lightfair.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/lioshi.css +76 -0
- package/extensions/third-party/node_modules/highlight.js/styles/lioshi.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/magula.css +66 -0
- package/extensions/third-party/node_modules/highlight.js/styles/magula.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/mono-blue.css +56 -0
- package/extensions/third-party/node_modules/highlight.js/styles/mono-blue.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/monokai-sublime.css +76 -0
- package/extensions/third-party/node_modules/highlight.js/styles/monokai-sublime.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/monokai.css +70 -0
- package/extensions/third-party/node_modules/highlight.js/styles/monokai.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/night-owl.css +174 -0
- package/extensions/third-party/node_modules/highlight.js/styles/night-owl.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nnfx-dark.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nnfx-dark.min.css +10 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nnfx-light.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nnfx-light.min.css +10 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nord.css +275 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nord.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/obsidian.css +79 -0
- package/extensions/third-party/node_modules/highlight.js/styles/obsidian.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-dark.css +92 -0
- package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-light.css +89 -0
- package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/paraiso-dark.css +67 -0
- package/extensions/third-party/node_modules/highlight.js/styles/paraiso-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/paraiso-light.css +67 -0
- package/extensions/third-party/node_modules/highlight.js/styles/paraiso-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.css +76 -0
- package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
- package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/purebasic.css +103 -0
- package/extensions/third-party/node_modules/highlight.js/styles/purebasic.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-dark.css +76 -0
- package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-light.css +74 -0
- package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rainbow.css +77 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rainbow.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-dawn.css +107 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-dawn.min.css +4 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-moon.css +109 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-moon.min.css +4 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine.css +109 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine.min.css +4 -0
- package/extensions/third-party/node_modules/highlight.js/styles/routeros.css +86 -0
- package/extensions/third-party/node_modules/highlight.js/styles/routeros.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/school-book.css +62 -0
- package/extensions/third-party/node_modules/highlight.js/styles/school-book.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/shades-of-purple.css +84 -0
- package/extensions/third-party/node_modules/highlight.js/styles/shades-of-purple.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/srcery.css +89 -0
- package/extensions/third-party/node_modules/highlight.js/styles/srcery.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-dark.css +117 -0
- package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-dark.min.css +13 -0
- package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-light.css +117 -0
- package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-light.min.css +13 -0
- package/extensions/third-party/node_modules/highlight.js/styles/sunburst.css +89 -0
- package/extensions/third-party/node_modules/highlight.js/styles/sunburst.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-dark.css +114 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-dark.min.css +8 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-light.css +114 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-light.min.css +8 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-blue.css +69 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-bright.css +68 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs-dark.css +61 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs.css +63 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs2015.css +100 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs2015.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/xcode.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/xcode.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/xt256.css +79 -0
- package/extensions/third-party/node_modules/highlight.js/styles/xt256.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/types/index.d.ts +274 -0
- package/extensions/third-party/node_modules/jiti/LICENSE +21 -0
- package/extensions/third-party/node_modules/jiti/README.md +258 -0
- package/extensions/third-party/node_modules/jiti/dist/babel.cjs +257 -0
- package/extensions/third-party/node_modules/jiti/dist/jiti.cjs +1 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-cli.mjs +34 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-hooks.mjs +124 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-native.mjs +121 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-register.d.mts +1 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-register.mjs +4 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-static.mjs +23 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti.cjs +30 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti.d.cts +8 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti.d.mts +8 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti.mjs +29 -0
- package/extensions/third-party/node_modules/jiti/lib/types.d.ts +420 -0
- package/extensions/third-party/node_modules/jiti/package.json +146 -0
- package/extensions/third-party/node_modules/pi-subagents/CHANGELOG.md +1905 -0
- package/extensions/third-party/node_modules/pi-subagents/LICENSE +21 -0
- package/extensions/third-party/node_modules/pi-subagents/README.md +122 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/delegate.md +14 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/oracle.md +78 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/researcher.md +52 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/reviewer.md +79 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/scout.md +50 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/worker.md +59 -0
- package/extensions/third-party/node_modules/pi-subagents/async-retention-discovery-worker.mjs +180 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/agents.md +383 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/configuration.md +457 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/extension-api.md +385 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/missions.md +121 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/models.md +194 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/observability.md +250 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/tool-reference.md +359 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/watchdog.md +176 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/workflows.md +331 -0
- package/extensions/third-party/node_modules/pi-subagents/index.ts +1 -0
- package/extensions/third-party/node_modules/pi-subagents/inspector-runner.mjs +11 -0
- package/extensions/third-party/node_modules/pi-subagents/install.mjs +93 -0
- package/extensions/third-party/node_modules/pi-subagents/package.json +106 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/gather-context-and-clarify.md +13 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-cleanup.md +59 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-research.md +50 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-review.md +54 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/review-loop.md +43 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/SKILL.md +45 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/constraints-and-recipes.md +258 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/execution-controls.md +443 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/management-authoring-rpc.md +161 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/multi-lane-orchestration.md +39 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/prompting-and-roles.md +260 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-management.ts +1029 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-memory.ts +254 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-refinements.ts +624 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-scope.ts +6 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-selection.ts +25 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-serializer.ts +165 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agents.ts +2055 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/chain-serializer.ts +280 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/frontmatter.ts +153 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/identity.ts +30 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/proactive-skills.ts +194 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/skills.ts +754 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/background-work.ts +197 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/capability-ceiling.ts +17 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/control-channel.ts +4 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/delegation.ts +119 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/external-job-provider.ts +186 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/external-runs.ts +219 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/intercom-bridge.ts +3 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/pi-args.ts +5 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/preflight.ts +437 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/project-panes.ts +30 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/shared-types.ts +21 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/config.ts +162 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/control-notices.ts +58 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/doctor.ts +267 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/fanout-child.ts +202 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/index.ts +1006 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/public-execution.ts +133 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/rpc.ts +652 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/schemas.ts +379 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/steering-notices.ts +35 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/subagent-guide.ts +39 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/tool-description.ts +197 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/actions.ts +234 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/client.ts +130 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/inspector-runner.ts +155 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/project-panes.ts +546 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/shell-command.ts +16 -0
- package/extensions/third-party/node_modules/pi-subagents/src/integrations/herdr-status.ts +330 -0
- package/extensions/third-party/node_modules/pi-subagents/src/intercom/intercom-bridge.ts +191 -0
- package/extensions/third-party/node_modules/pi-subagents/src/intercom/native-supervisor-channel.ts +812 -0
- package/extensions/third-party/node_modules/pi-subagents/src/intercom/result-intercom.ts +421 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/actions.ts +433 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/goal-driver.ts +164 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/lifecycle.ts +367 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/store.ts +584 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/types.ts +190 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/workflow-state.ts +260 -0
- package/extensions/third-party/node_modules/pi-subagents/src/policy/authority.ts +46 -0
- package/extensions/third-party/node_modules/pi-subagents/src/profiles/profiles.ts +663 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/active-async-capacity.ts +431 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/active-run-index.ts +139 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-execution.ts +1739 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-job-tracker.ts +692 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-resume.ts +601 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-retention.ts +886 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-status-snapshot.ts +277 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-status.ts +577 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/auto-drain.ts +67 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/chain-append.ts +316 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/chain-root-attachment.ts +199 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-batcher.ts +168 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-dedupe.ts +58 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-replay.ts +287 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/control-channel.ts +679 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/fleet-view.ts +604 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/index-segment.ts +59 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/inspect-rpc.ts +443 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/notify.ts +358 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/owned-process-tree.ts +104 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/parallel-groups.ts +45 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/process-terminal.ts +294 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/result-files.ts +505 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/result-watcher.ts +760 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/resume-guidance.ts +56 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/retained-children.ts +135 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-id-query.ts +7 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-id-resolver.ts +175 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-status.ts +632 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/scheduled-runs.ts +823 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/stale-run-reconciler.ts +416 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/steering.ts +249 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/subagent-runner.ts +5179 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/subagent-wait.ts +702 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/terminal-run-index.ts +129 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/top-level-async.ts +14 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-completions.ts +166 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-config.ts +36 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-subscriptions.ts +464 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-tool.ts +36 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-dismiss-action.ts +86 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-steering-action.ts +262 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-stop-action.ts +65 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/execution.ts +2196 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/foreground-control.ts +144 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/foreground-history.ts +137 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/prompt-audit.ts +172 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/subagent-executor.ts +5736 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/workflow-detach-reconcile.ts +194 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/workflow-foreground-steering.ts +188 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/acceptance.ts +1374 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/agent-contract.ts +38 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/capability-ceiling.ts +209 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/chain-outputs.ts +116 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/child-protocol.ts +401 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/completion-guard.ts +201 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/context-mode.ts +44 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/dynamic-fanout.ts +297 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-cli-runner.ts +134 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-job-bridge.ts +444 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-job-runner.ts +286 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/llm-intent-arbiter.ts +302 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/long-running-guard.ts +220 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/mcp-direct-tool-allowlist.ts +420 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/model-fallback.ts +432 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/model-scope.ts +138 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-events.ts +1080 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-path.ts +52 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-render.ts +123 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/orca-progress-tabs.ts +437 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/owner-lifeline.ts +104 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/parallel-handoff.ts +280 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/parallel-utils.ts +250 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/permissions.ts +99 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/pi-args.ts +856 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/pi-spawn.ts +163 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/process-signal.ts +19 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/run-fanout-budget.ts +280 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/run-history.ts +181 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/runtime-acknowledged-extensions.ts +71 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/session-lease.ts +293 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/single-output.ts +237 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/spawn-budget.ts +128 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/startup-transport.ts +158 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/structured-output.ts +182 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-control.ts +269 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-prompt-runtime.ts +685 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-startup-retry.ts +116 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/task-intent.ts +197 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-availability.ts +83 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-budget.ts +80 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-timeout.ts +93 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/turn-budget.ts +98 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/usage-budget.ts +65 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/workflow-graph.ts +209 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/worktree.ts +784 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/accessible-dir.ts +47 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/agent-stream-options.ts +5 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/artifacts.ts +281 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/atomic-json.ts +81 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/capacity-resilient-json.ts +102 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/child-transcript.ts +264 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/completion-owner.ts +14 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/display-text.ts +150 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/file-coalescer.ts +49 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/file-system-retry.ts +95 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/fork-context.ts +268 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/formatters.ts +131 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/jsonl-writer.ts +81 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/launch-contract.ts +124 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/model-info.ts +81 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/node-executable.ts +21 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/post-exit-stdio-guard.ts +85 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/prompt-resources.ts +11 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/session-identity.ts +10 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/session-tokens.ts +44 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/settings.ts +490 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/status-format.ts +55 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/types.ts +2307 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/utf8.ts +11 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/utils.ts +633 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/watch-strategy.ts +10 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-adapters.ts +434 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-json.ts +108 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-request.ts +166 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/prompt-template-bridge.ts +383 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/prompt-workflows.ts +287 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/selector.ts +147 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-bridge.ts +193 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-commands.ts +1049 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-live-state.ts +299 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/subagents-admin.ts +432 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet-status.ts +691 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet-transcript.ts +530 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet.ts +1362 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/render-helpers.ts +80 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/render.ts +2224 -0
- package/extensions/third-party/node_modules/pi-subagents/src/types/pi-runtime-compat.d.ts +8 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/change-signature.ts +221 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/child-status.ts +205 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/emission-guard.ts +123 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/lsp-diagnostics.ts +538 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/model-selection.ts +167 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/permission-arbiter.ts +146 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/register-child.ts +117 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/register-main.ts +440 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/render.ts +54 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/review.ts +303 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/runtime.ts +868 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/scope.ts +62 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/settings.ts +568 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/tool-actions.ts +155 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/turn-delta.ts +161 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/types.ts +198 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/warning-format.ts +73 -0
- package/extensions/third-party/node_modules/pi-subagents/src/workflows/chat-progress.ts +148 -0
- package/extensions/third-party/node_modules/pi-subagents/src/workflows/scripted-workflow.ts +1069 -0
- package/extensions/third-party/node_modules/typebox/build/compile/code.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/compile/code.mjs +65 -0
- package/extensions/third-party/node_modules/typebox/build/compile/compile.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/compile/compile.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/compile/index.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/compile/index.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/compile/validator.d.mts +43 -0
- package/extensions/third-party/node_modules/typebox/build/compile/validator.mjs +121 -0
- package/extensions/third-party/node_modules/typebox/build/error/errors.d.mts +214 -0
- package/extensions/third-party/node_modules/typebox/build/error/errors.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/error/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/error/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/format/_idna.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/format/_idna.mjs +216 -0
- package/extensions/third-party/node_modules/typebox/build/format/_puny.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/format/_puny.mjs +74 -0
- package/extensions/third-party/node_modules/typebox/build/format/_registry.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/format/_registry.mjs +96 -0
- package/extensions/third-party/node_modules/typebox/build/format/date.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/date.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/format/date_time.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/date_time.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/format/duration.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/duration.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/format/email.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/email.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/format/format.d.mts +22 -0
- package/extensions/third-party/node_modules/typebox/build/format/format.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/format/hostname.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/format/hostname.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/format/idn_email.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/idn_email.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/format/idn_hostname.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/format/idn_hostname.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/format/index.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/format/index.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/format/ipv4.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/ipv4.mjs +38 -0
- package/extensions/third-party/node_modules/typebox/build/format/ipv6.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/ipv6.mjs +67 -0
- package/extensions/third-party/node_modules/typebox/build/format/iri.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/iri.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/iri_reference.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/json_pointer.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/regex.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/regex.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/time.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/time.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri.mjs +135 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri_reference.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri_template.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri_template.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/format/url.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/url.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/uuid.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/uuid.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/guard/emit.d.mts +58 -0
- package/extensions/third-party/node_modules/typebox/build/guard/emit.mjs +194 -0
- package/extensions/third-party/node_modules/typebox/build/guard/globals.d.mts +35 -0
- package/extensions/third-party/node_modules/typebox/build/guard/globals.mjs +90 -0
- package/extensions/third-party/node_modules/typebox/build/guard/guard.d.mts +69 -0
- package/extensions/third-party/node_modules/typebox/build/guard/guard.mjs +217 -0
- package/extensions/third-party/node_modules/typebox/build/guard/index.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/guard/index.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/guard/native.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/guard/native.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/guard/string.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/guard/string.mjs +164 -0
- package/extensions/third-party/node_modules/typebox/build/index.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/index.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/build.d.mts +39 -0
- package/extensions/third-party/node_modules/typebox/build/schema/build.mjs +118 -0
- package/extensions/third-party/node_modules/typebox/build/schema/check.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/check.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/compile.d.mts +22 -0
- package/extensions/third-party/node_modules/typebox/build/schema/compile.mjs +46 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_functions.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_guard.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_guard.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalItems.mjs +50 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalProperties.mjs +110 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/const.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/contains.mjs +42 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/format.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/if.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/index.d.mts +49 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/index.mjs +55 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/items.mjs +68 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minContains.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/not.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/oneOf.mjs +58 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/pattern.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/patternProperties.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/ref.mjs +58 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/required.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/schema.mjs +352 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/type.mjs +74 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/schema/errors.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/errors.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/schema/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/index.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/parse.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/parse.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/ref.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/ref.mjs +146 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/schema.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/schema/schema.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/const.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/const.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/enum.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/if.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/if.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/items.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/items.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/properties.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/ref.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/required.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/required.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/schema.d.mts +56 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/schema.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/static.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/static.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/type.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/type.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/_guard.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/_guard.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/const.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/const.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contains.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contentEncoding.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contentEncoding.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contentMediaType.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contentMediaType.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/default.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/default.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/defs.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/else.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/else.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/enum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/format.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/format.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/id.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/id.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/if.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/if.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/index.d.mts +54 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/index.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/items.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/items.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/not.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/not.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/properties.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/ref.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/required.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/required.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/schema.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/then.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/then.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/type.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/type.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/arguments/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/environment.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
- package/extensions/third-party/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/hashing/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/index.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/system/index.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/_config.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ar_001.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/bn_BD.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/cs_CZ.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/de_DE.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/el_GR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/en_US.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_419.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_AR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_ES.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_MX.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fa_IR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fil_PH.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fr_CA.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fr_FR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ha_NG.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/hi_IN.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/hu_HU.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/id_ID.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/it_IT.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ja_JP.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ko_KR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ms_MY.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/nl_NL.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pl_PL.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pt_BR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pt_PT.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ro_RO.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ru_RU.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/sv_SE.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/sw_TZ.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/th_TH.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/tr_TR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/uk_UA.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ur_PK.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/vi_VN.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/yo_NG.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hans.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hant.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/assign.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/clone.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/clone.mjs +63 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/create.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/create.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/discard.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/memory.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/update.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/update.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/system/settings/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/settings/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/settings/settings.d.mts +56 -0
- package/extensions/third-party/node_modules/typebox/build/system/settings/settings.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/system/system.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/system/system.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/_optional.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/_optional.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/_readonly.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/_readonly.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/awaited.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/awaited.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/conditional.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/conditional.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/exclude.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/extract.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/extract.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/index.d.mts +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/index.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/indexed.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/interface.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/interface.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/keyof.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/mapped.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/mapped.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/module.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/module.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/omit.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/omit.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/options.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/options.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/parameters.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/partial.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/partial.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/pick.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/pick.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/readonly_object.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/required.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/required.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/return_type.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/instantiate.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/instantiate.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +53 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/instantiate.d.mts +23 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/instantiate.mjs +48 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/check.d.mts +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/check.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +53 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +31 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/extends.mjs +53 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/enum_to_union.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/enum_to_union.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/compare.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/composite.mjs +63 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/operation.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/operation.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/operation.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/operation.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/index.d.mts +31 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/index.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_type.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instantiate.d.mts +165 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instantiate.mjs +159 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +34 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/module/instantiate.d.mts +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/module/instantiate.mjs +34 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_type.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_type.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/options/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/options/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/options/instantiate.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/options/instantiate.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_type.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_type.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_intersect.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_type.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_type.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/this/expand_this.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/this/expand_this.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/any.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/any.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/array.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/array.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/async_iterator.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/async_iterator.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/enum.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends_left.d.mts +55 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends_left.mjs +83 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends_right.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends_right.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/function.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/function.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/inference.mjs +62 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/integer.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/iterator.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/iterator.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/literal.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/never.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/never.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/null.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/null.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/number.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/number.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/object.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/object.mjs +87 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/promise.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/promise.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/result.d.mts +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/result.mjs +36 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/string.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/string.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/tuple.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/tuple.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/union.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/union.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/void.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/void.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/index.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/index.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/mapping.d.mts +365 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/mapping.mjs +532 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/parser.d.mts +260 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/parser.mjs +135 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/script.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/script.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/const.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/index.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/number.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/span.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/string.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/until.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_codec.mjs +61 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_immutable.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_immutable.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_optional.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_optional.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_readonly.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_readonly.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_refine.d.mts +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_refine.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/any.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/any.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/array.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/array.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/async_iterator.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/async_iterator.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/base.d.mts +50 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/base.mjs +84 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/bigint.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/boolean.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/call.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/call.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/constructor.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/deferred.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/deferred.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/enum.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/enum.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/function.d.mts +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/function.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/generic.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/generic.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/identifier.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/index.d.mts +48 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/index.mjs +54 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/infer.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/infer.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/integer.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/integer.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/intersect.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/iterator.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/iterator.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/literal.d.mts +31 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/literal.mjs +62 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/never.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/never.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/null.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/null.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/number.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/number.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/object.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/object.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/parameter.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/promise.d.mts +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/promise.mjs +29 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/properties.d.mts +43 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/properties.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/record.d.mts +46 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/record.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/ref.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/ref.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/rest.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/rest.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/schema.d.mts +176 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/schema.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/static.d.mts +48 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/static.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/string.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/string.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/symbol.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/this.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/this.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/tuple.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/undefined.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/union.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/union.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/unknown.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/void.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/void.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/typebox.d.mts +73 -0
- package/extensions/third-party/node_modules/typebox/build/typebox.mjs +89 -0
- package/extensions/third-party/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/value/assert/assert.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/value/assert/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/assert/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/check/check.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/check/check.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/check/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/check/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/additional.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/clean.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_base.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_type.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_union.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/clone/clone.mjs +83 -0
- package/extensions/third-party/node_modules/typebox/build/value/clone/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/clone/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/callback.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/decode.mjs +50 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/encode.mjs +50 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_array.mjs +38 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_object.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_record.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_tuple.mjs +35 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_union.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/has.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/has.mjs +93 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/index.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/convert.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_base.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_enum.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_template_literal.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_type.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/create.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/create.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/error.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/error.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_array.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_async_iterator.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_async_iterator.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_base.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_default.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_function.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_iterator.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_iterator.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_never.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_null.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_number.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_object.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_promise.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_promise.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_record.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_string.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_type.mjs +69 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_union.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_void.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/default.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/default.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_array.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_base.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_default.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_object.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_record.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_type.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_union.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/diff.mjs +135 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/edit.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/index.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/patch.mjs +42 -0
- package/extensions/third-party/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/equal/equal.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/equal/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/equal/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/value/errors/errors.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/value/errors/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/errors/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/hash/hash.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/hash/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/hash/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/index.d.mts +21 -0
- package/extensions/third-party/node_modules/typebox/build/value/index.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/error.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/error.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_array.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_object.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_unknown.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_unknown.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_value.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_value.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/mutate.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/mutate.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/value/parse/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/parse/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/parse/parse.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/pointer/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/error.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/error.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_base.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_enum.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_type.mjs +86 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/repair.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/index.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/union_priority_sort.mjs +36 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/value/value.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/value/value.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/license +23 -0
- package/extensions/third-party/node_modules/typebox/package.json +87 -0
- package/extensions/third-party/node_modules/typebox/readme.md +356 -0
- package/extensions/third-party/node_modules/yaml/LICENSE +13 -0
- package/extensions/third-party/node_modules/yaml/README.md +172 -0
- package/extensions/third-party/node_modules/yaml/bin.mjs +11 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/errors.js +57 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/index.js +17 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/log.js +11 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Alias.js +114 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/parser.js +967 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/util.js +11 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/visit.js +233 -0
- package/extensions/third-party/node_modules/yaml/browser/index.js +5 -0
- package/extensions/third-party/node_modules/yaml/browser/package.json +3 -0
- package/extensions/third-party/node_modules/yaml/dist/cli.d.ts +8 -0
- package/extensions/third-party/node_modules/yaml/dist/cli.mjs +201 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-node.js +112 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/composer.js +222 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/Document.js +337 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/directives.js +178 -0
- package/extensions/third-party/node_modules/yaml/dist/errors.d.ts +21 -0
- package/extensions/third-party/node_modules/yaml/dist/errors.js +62 -0
- package/extensions/third-party/node_modules/yaml/dist/index.d.ts +25 -0
- package/extensions/third-party/node_modules/yaml/dist/index.js +50 -0
- package/extensions/third-party/node_modules/yaml/dist/log.d.ts +3 -0
- package/extensions/third-party/node_modules/yaml/dist/log.js +19 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Alias.js +116 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Scalar.d.ts +43 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/extensions/third-party/node_modules/yaml/dist/options.d.ts +350 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst.js +112 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/lexer.js +719 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/parser.js +972 -0
- package/extensions/third-party/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/extensions/third-party/node_modules/yaml/dist/public-api.js +107 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/tags.js +99 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/extensions/third-party/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/test-events.js +134 -0
- package/extensions/third-party/node_modules/yaml/dist/util.d.ts +16 -0
- package/extensions/third-party/node_modules/yaml/dist/util.js +28 -0
- package/extensions/third-party/node_modules/yaml/dist/visit.d.ts +102 -0
- package/extensions/third-party/node_modules/yaml/dist/visit.js +236 -0
- package/extensions/third-party/node_modules/yaml/package.json +97 -0
- package/extensions/third-party/node_modules/yaml/util.js +2 -0
- package/extensions/third-party/package-lock.json +184 -0
- package/extensions/third-party/package.json +11 -0
- package/extensions/third-party/subagent-policy.ts +165 -0
- package/extensions/third-party/vendor/README.md +16 -0
- package/extensions/third-party/vendor/pi-subagents-0.52.1-dev-agent-followthrough.2.tgz +0 -0
- package/npm-shrinkwrap.json +2259 -0
- package/package.json +73 -0
- package/runtime/process-tree.ts +143 -0
- package/runtime/product-config.mjs +21 -0
- package/runtime/resolve-installed-pi.mjs +77 -0
- package/runtime/verify-pi-runtime.mjs +257 -0
- package/skills/pi-subagents/SKILL.md +44 -0
|
@@ -0,0 +1,2196 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core execution logic for running subagents
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { spawn } from "node:child_process";
|
|
6
|
+
import { existsSync, unlinkSync } from "node:fs";
|
|
7
|
+
import * as path from "node:path";
|
|
8
|
+
import type { Message } from "@earendil-works/pi-ai";
|
|
9
|
+
import type { AgentConfig } from "../../agents/agents.ts";
|
|
10
|
+
import { appendAgentRefinementOverlay } from "../../agents/agent-refinements.ts";
|
|
11
|
+
import { alignForkedSessionCwd } from "../../shared/fork-context.ts";
|
|
12
|
+
import {
|
|
13
|
+
ensureArtifactsDir,
|
|
14
|
+
formatOutputArtifactContent,
|
|
15
|
+
getArtifactPaths,
|
|
16
|
+
writeArtifact,
|
|
17
|
+
writeMetadata,
|
|
18
|
+
} from "../../shared/artifacts.ts";
|
|
19
|
+
import { createChildTranscriptWriter, type ChildTranscriptWriter } from "../../shared/child-transcript.ts";
|
|
20
|
+
import {
|
|
21
|
+
type AgentProgress,
|
|
22
|
+
type ArtifactPaths,
|
|
23
|
+
type ControlEvent,
|
|
24
|
+
type ModelAttempt,
|
|
25
|
+
type RunSyncOptions,
|
|
26
|
+
type SingleResult,
|
|
27
|
+
type Usage,
|
|
28
|
+
DEFAULT_MAX_OUTPUT,
|
|
29
|
+
INTERCOM_DETACH_REQUEST_EVENT,
|
|
30
|
+
INTERCOM_DETACH_RESPONSE_EVENT,
|
|
31
|
+
type AcceptanceLedger,
|
|
32
|
+
type ResolvedAcceptanceConfig,
|
|
33
|
+
truncateOutput,
|
|
34
|
+
getSubagentDepthEnv,
|
|
35
|
+
} from "../../shared/types.ts";
|
|
36
|
+
import {
|
|
37
|
+
DEFAULT_CONTROL_CONFIG,
|
|
38
|
+
buildControlEvent,
|
|
39
|
+
claimControlNotification,
|
|
40
|
+
deriveActivityState,
|
|
41
|
+
shouldEmitOpenToolAttention,
|
|
42
|
+
shouldNotifyControlEvent,
|
|
43
|
+
} from "../shared/subagent-control.ts";
|
|
44
|
+
import {
|
|
45
|
+
getFinalOutput,
|
|
46
|
+
findLatestSessionFile,
|
|
47
|
+
detectSubagentError,
|
|
48
|
+
hasEmptyTerminalAssistantResponse,
|
|
49
|
+
extractToolArgsPreview,
|
|
50
|
+
extractTextFromContent,
|
|
51
|
+
boundStreamedRecentTools,
|
|
52
|
+
boundStreamedRecentOutput,
|
|
53
|
+
boundStreamedToolCalls,
|
|
54
|
+
} from "../../shared/utils.ts";
|
|
55
|
+
import { buildSkillInjection, resolveSkillsWithFallback } from "../../agents/skills.ts";
|
|
56
|
+
import { buildAgentMemoryInjection } from "../../agents/agent-memory.ts";
|
|
57
|
+
import { effectiveToolTimeoutMs, formatToolTimeoutMessage, resolveToolTimeoutMs, toolTimeoutCallKey, toolTimeoutFromEnv } from "../shared/tool-timeout.ts";
|
|
58
|
+
import { evaluateCompletionMutationGuard } from "../shared/completion-guard.ts";
|
|
59
|
+
import { arbitrateCompletionGuardRescue } from "../shared/llm-intent-arbiter.ts";
|
|
60
|
+
import { getPiSpawnCommand } from "../shared/pi-spawn.ts";
|
|
61
|
+
import { OWNER_LIFELINE_ENV, trackOwnedLifeline } from "../shared/owner-lifeline.ts";
|
|
62
|
+
import { randomUUID } from "node:crypto";
|
|
63
|
+
import { STARTUP_GATE_ENV, STARTUP_TOKEN_ENV, createStartupTransport } from "../shared/startup-transport.ts";
|
|
64
|
+
import { createJsonlWriter } from "../../shared/jsonl-writer.ts";
|
|
65
|
+
import { createOrcaProgressTab, type OrcaProgressTab } from "../shared/orca-progress-tabs.ts";
|
|
66
|
+
import { attachPostExitStdioGuard, trySignalChild } from "../../shared/post-exit-stdio-guard.ts";
|
|
67
|
+
import { resolvePermissionRules } from "../shared/permissions.ts";
|
|
68
|
+
import { applyThinkingSuffix, buildPiArgs, cleanupTempDir, projectLaunchResolvedChildExtensions, resolvePiLaunchToolPlan, type SubagentTaskDelivery } from "../shared/pi-args.ts";
|
|
69
|
+
import { readRuntimeAcknowledgedExtensions } from "../shared/runtime-acknowledged-extensions.ts";
|
|
70
|
+
import { assertAgentAllowedByCapabilityCeiling, decodeSubagentCapabilityCeiling, intersectSubagentCapabilityCeilings, resolveCurrentSubagentCapabilityCeiling, SUBAGENT_CAPABILITY_CEILING_ENV } from "../shared/capability-ceiling.ts";
|
|
71
|
+
import { resolveEffectiveThinking } from "../../shared/model-info.ts";
|
|
72
|
+
import { MISSING_STRUCTURED_OUTPUT_CALL_ERROR, readStructuredOutput } from "../shared/structured-output.ts";
|
|
73
|
+
import { formatProcessSignalError, isUnexplainedProcessSignal } from "../shared/process-signal.ts";
|
|
74
|
+
import { readChildToolDiagnosticError } from "../shared/tool-availability.ts";
|
|
75
|
+
import { captureSingleOutputSnapshot, extractChildWrittenOutput, finalizeSingleOutput, formatSavedOutputReference, injectOutputPathSystemPrompt, resolveSingleOutput, validateFileOnlyOutputMode, type SingleOutputSnapshot } from "../shared/single-output.ts";
|
|
76
|
+
import {
|
|
77
|
+
buildModelCandidates,
|
|
78
|
+
formatModelAttemptNote,
|
|
79
|
+
isRetryableModelFailure,
|
|
80
|
+
} from "../shared/model-fallback.ts";
|
|
81
|
+
import {
|
|
82
|
+
SUBAGENT_STARTUP_RETRY_DELAYS_MS,
|
|
83
|
+
formatSubagentExtensionConflictError,
|
|
84
|
+
formatSubagentStartupRetryExhaustedError,
|
|
85
|
+
formatSubagentStartupRetryNote,
|
|
86
|
+
isRetryableSubagentStartupFailure,
|
|
87
|
+
waitForSubagentStartupRetry,
|
|
88
|
+
} from "../shared/subagent-startup-retry.ts";
|
|
89
|
+
import {
|
|
90
|
+
createMutatingFailureState,
|
|
91
|
+
didMutatingToolFail,
|
|
92
|
+
isMutatingTool,
|
|
93
|
+
nextLongRunningTrigger,
|
|
94
|
+
recordMutatingFailure,
|
|
95
|
+
resetMutatingFailureState,
|
|
96
|
+
resolveCurrentPath,
|
|
97
|
+
shouldEscalateMutatingFailures,
|
|
98
|
+
summarizeRecentMutatingFailures,
|
|
99
|
+
} from "../shared/long-running-guard.ts";
|
|
100
|
+
import { acceptanceFailureMessage, buildSkippedAcceptanceLedger, evaluateAcceptance, formatAcceptancePrompt, resolveEffectiveAcceptance, stripAcceptanceReport, validateAcceptanceInput } from "../shared/acceptance.ts";
|
|
101
|
+
import { PROMPT_REDACTED } from "../../shared/utils.ts";
|
|
102
|
+
import { attachContractProjections, isAgentContractV1 } from "../shared/agent-contract.ts";
|
|
103
|
+
import { appendTurnBudgetSystemPrompt, formatTurnBudgetOutput, initialTurnBudgetState, turnBudgetDecision, turnBudgetDeferredNote, turnBudgetDeferredState, turnBudgetExceededMessage, turnBudgetSoftNote, turnBudgetState } from "../shared/turn-budget.ts";
|
|
104
|
+
import { initialToolBudgetState, toolBudgetState } from "../shared/tool-budget.ts";
|
|
105
|
+
import { resolveWatchdogConfig } from "../../watchdog/settings.ts";
|
|
106
|
+
import { agentDefinitionDigest, launchBindingDigest } from "../../shared/launch-contract.ts";
|
|
107
|
+
import { createBoundedByteTail, createBoundedLineReader, formatProtocolOutputLimit, MAX_CHILD_STDERR_BYTES, PI_AGGREGATE_EVENT_PROJECTOR, projectChildLifecycle, type ChildLifecycleAction, type ProtocolOutputLimit } from "../shared/child-protocol.ts";
|
|
108
|
+
import {
|
|
109
|
+
acceptChildWatchdogEvent,
|
|
110
|
+
childWatchdogIsActive,
|
|
111
|
+
isChildWatchdogStatusEvent,
|
|
112
|
+
resolveChildWatchdogConfig,
|
|
113
|
+
type ChildWatchdogStateSnapshot,
|
|
114
|
+
} from "../../watchdog/child-status.ts";
|
|
115
|
+
|
|
116
|
+
const artifactOutputByResult = new WeakMap<SingleResult, string>();
|
|
117
|
+
const acceptanceOutputByResult = new WeakMap<SingleResult, string>();
|
|
118
|
+
|
|
119
|
+
function emptyUsage(): Usage {
|
|
120
|
+
return { input: 0, output: 0, cacheRead: 0, cacheWrite: 0, cost: 0, turns: 0 };
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
function withRunContext<T extends SingleResult>(result: T, context: RunSyncOptions["context"]): T {
|
|
124
|
+
if (!context) return result;
|
|
125
|
+
result.context = context;
|
|
126
|
+
return result;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
function redactResultPrompt<T extends SingleResult>(result: T): T {
|
|
130
|
+
result.task = PROMPT_REDACTED;
|
|
131
|
+
if (result.progress) result.progress.task = PROMPT_REDACTED;
|
|
132
|
+
return result;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
function sumUsage(target: Usage, source: Usage): void {
|
|
136
|
+
target.input += source.input;
|
|
137
|
+
target.output += source.output;
|
|
138
|
+
target.cacheRead += source.cacheRead;
|
|
139
|
+
target.cacheWrite += source.cacheWrite;
|
|
140
|
+
target.cost += source.cost;
|
|
141
|
+
target.turns += source.turns;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
function persistSingleResultMetadata(input: {
|
|
145
|
+
metadataPath?: string;
|
|
146
|
+
enabled: boolean;
|
|
147
|
+
runId?: string;
|
|
148
|
+
agent: string;
|
|
149
|
+
task: string;
|
|
150
|
+
result: SingleResult;
|
|
151
|
+
}): void {
|
|
152
|
+
if (!input.enabled || !input.metadataPath) return;
|
|
153
|
+
const target = input.result;
|
|
154
|
+
writeMetadata(input.metadataPath, {
|
|
155
|
+
runId: input.runId,
|
|
156
|
+
agent: input.agent,
|
|
157
|
+
task: PROMPT_REDACTED,
|
|
158
|
+
exitCode: target.exitCode,
|
|
159
|
+
processSignal: target.processSignal,
|
|
160
|
+
usage: target.usage,
|
|
161
|
+
model: target.model,
|
|
162
|
+
attemptedModels: target.attemptedModels,
|
|
163
|
+
modelAttempts: target.modelAttempts,
|
|
164
|
+
durationMs: target.progressSummary?.durationMs,
|
|
165
|
+
toolCount: target.progressSummary?.toolCount,
|
|
166
|
+
error: target.error,
|
|
167
|
+
agentContract: target.agentContract,
|
|
168
|
+
launchContractDigest: target.launchContractDigest,
|
|
169
|
+
launchResolvedExtensions: target.launchResolvedExtensions,
|
|
170
|
+
runtimeAcknowledgedExtensions: target.runtimeAcknowledgedExtensions,
|
|
171
|
+
execution: target.execution,
|
|
172
|
+
acceptance: target.acceptance,
|
|
173
|
+
capabilityCeiling: target.capabilityCeiling,
|
|
174
|
+
capabilityAudit: target.capabilityAudit,
|
|
175
|
+
review: target.review,
|
|
176
|
+
effects: target.effects,
|
|
177
|
+
transcriptPath: target.transcriptPath,
|
|
178
|
+
transcriptError: target.transcriptError,
|
|
179
|
+
skills: target.skills,
|
|
180
|
+
skillsWarning: target.skillsWarning,
|
|
181
|
+
timestamp: Date.now(),
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
function formatTimeoutMessage(timeoutMs: number): string {
|
|
186
|
+
return `Subagent timed out after ${timeoutMs}ms.`;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
function resolveAttemptTimeout(options: RunSyncOptions): { timeoutMs: number; remainingMs: number; message: string } | undefined {
|
|
190
|
+
if (options.timeoutMs === undefined) return undefined;
|
|
191
|
+
const deadlineAt = options.deadlineAt ?? Date.now() + options.timeoutMs;
|
|
192
|
+
return {
|
|
193
|
+
timeoutMs: options.timeoutMs,
|
|
194
|
+
remainingMs: Math.max(0, deadlineAt - Date.now()),
|
|
195
|
+
message: formatTimeoutMessage(options.timeoutMs),
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
function buildPendingAcceptanceLedger(acceptance: ResolvedAcceptanceConfig): AcceptanceLedger {
|
|
200
|
+
return {
|
|
201
|
+
status: "pending",
|
|
202
|
+
evidenceStatus: "pending",
|
|
203
|
+
explicit: acceptance.explicit,
|
|
204
|
+
effectiveAcceptance: acceptance,
|
|
205
|
+
inferredReason: acceptance.inferredReason,
|
|
206
|
+
criteria: acceptance.criteria,
|
|
207
|
+
runtimeChecks: [],
|
|
208
|
+
verifyRuns: [],
|
|
209
|
+
};
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
function buildInterruptedAcceptanceLedger(acceptance: ResolvedAcceptanceConfig): AcceptanceLedger {
|
|
213
|
+
const pending = buildPendingAcceptanceLedger(acceptance);
|
|
214
|
+
if (acceptance.level === "none") {
|
|
215
|
+
pending.status = "not-required";
|
|
216
|
+
pending.evidenceStatus = "not-required";
|
|
217
|
+
} else {
|
|
218
|
+
pending.runtimeChecks = [{
|
|
219
|
+
id: "interrupted",
|
|
220
|
+
status: "not-applicable",
|
|
221
|
+
message: "Acceptance was not evaluated because the subagent was interrupted.",
|
|
222
|
+
}];
|
|
223
|
+
}
|
|
224
|
+
return pending;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
function appendRecentOutput(progress: AgentProgress, lines: string[]): void {
|
|
228
|
+
if (lines.length === 0) return;
|
|
229
|
+
progress.recentOutput.push(...lines.filter((line) => line.trim()));
|
|
230
|
+
if (progress.recentOutput.length > 50) {
|
|
231
|
+
progress.recentOutput.splice(0, progress.recentOutput.length - 50);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
function stripAcceptanceReportsFromMessages(messages: Message[] | undefined): void {
|
|
236
|
+
for (const message of messages ?? []) {
|
|
237
|
+
if (message.role !== "assistant" || !Array.isArray(message.content)) continue;
|
|
238
|
+
for (const part of message.content) {
|
|
239
|
+
if (part.type === "text" && "text" in part && typeof part.text === "string") {
|
|
240
|
+
part.text = stripAcceptanceReport(part.text);
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
function snapshotProgress(progress: AgentProgress): AgentProgress {
|
|
247
|
+
return {
|
|
248
|
+
...progress,
|
|
249
|
+
task: PROMPT_REDACTED,
|
|
250
|
+
skills: progress.skills ? [...progress.skills] : undefined,
|
|
251
|
+
recentTools: boundStreamedRecentTools(progress.recentTools),
|
|
252
|
+
recentOutput: boundStreamedRecentOutput(progress.recentOutput),
|
|
253
|
+
};
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function snapshotResult(result: SingleResult, progress: AgentProgress): SingleResult {
|
|
257
|
+
return {
|
|
258
|
+
...result,
|
|
259
|
+
task: PROMPT_REDACTED,
|
|
260
|
+
messages: result.outputMode === "file-only" && result.savedOutputPath ? undefined : result.messages ? [...result.messages] : undefined,
|
|
261
|
+
usage: { ...result.usage },
|
|
262
|
+
skills: result.skills ? [...result.skills] : undefined,
|
|
263
|
+
attemptedModels: result.attemptedModels ? [...result.attemptedModels] : undefined,
|
|
264
|
+
modelAttempts: result.modelAttempts
|
|
265
|
+
? result.modelAttempts.map((attempt) => ({
|
|
266
|
+
...attempt,
|
|
267
|
+
usage: attempt.usage ? { ...attempt.usage } : undefined,
|
|
268
|
+
}))
|
|
269
|
+
: undefined,
|
|
270
|
+
controlEvents: result.controlEvents ? result.controlEvents.map((event) => ({ ...event })) : undefined,
|
|
271
|
+
progress,
|
|
272
|
+
progressSummary: result.progressSummary ? { ...result.progressSummary } : undefined,
|
|
273
|
+
artifactPaths: result.artifactPaths ? { ...result.artifactPaths } : undefined,
|
|
274
|
+
truncation: result.truncation ? { ...result.truncation } : undefined,
|
|
275
|
+
outputReference: result.outputReference ? { ...result.outputReference } : undefined,
|
|
276
|
+
};
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* Streaming variant of snapshotResult for `onUpdate` progress events: it drops the
|
|
281
|
+
* unbounded `messages` transcript in favour of compact tool-call summaries so a
|
|
282
|
+
* single `tool_execution_update` line stays well under the child-stdout protocol
|
|
283
|
+
* cap (`MAX_CHILD_PENDING_LINE_BYTES`). Non-streaming consumers such as
|
|
284
|
+
* foreground detach receipts and terminal consumers use snapshotResult directly.
|
|
285
|
+
*/
|
|
286
|
+
function snapshotStreamResult(result: SingleResult, progress: AgentProgress): SingleResult {
|
|
287
|
+
const snapshot = snapshotResult(result, progress);
|
|
288
|
+
snapshot.messages = undefined;
|
|
289
|
+
snapshot.toolCalls = boundStreamedToolCalls(result);
|
|
290
|
+
return snapshot;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
async function runSingleAttempt(
|
|
294
|
+
runtimeCwd: string,
|
|
295
|
+
agent: AgentConfig,
|
|
296
|
+
task: string,
|
|
297
|
+
model: string | undefined,
|
|
298
|
+
options: RunSyncOptions,
|
|
299
|
+
shared: {
|
|
300
|
+
sessionEnabled: boolean;
|
|
301
|
+
systemPrompt: string;
|
|
302
|
+
resolvedSkillNames?: string[];
|
|
303
|
+
modelCandidates?: string[];
|
|
304
|
+
skillsWarning?: string;
|
|
305
|
+
jsonlPath?: string;
|
|
306
|
+
artifactPaths?: ArtifactPaths;
|
|
307
|
+
transcriptWriter?: ChildTranscriptWriter;
|
|
308
|
+
attemptNotes: string[];
|
|
309
|
+
outputSnapshot?: SingleOutputSnapshot;
|
|
310
|
+
originalTask?: string;
|
|
311
|
+
taskDelivery?: SubagentTaskDelivery;
|
|
312
|
+
orcaProgressTab?: OrcaProgressTab;
|
|
313
|
+
},
|
|
314
|
+
): Promise<SingleResult> {
|
|
315
|
+
const effectiveThinking = options.thinkingOverride ?? agent.thinking;
|
|
316
|
+
const modelArg = applyThinkingSuffix(model, effectiveThinking, options.thinkingOverride !== undefined);
|
|
317
|
+
const resolvedThinking = resolveEffectiveThinking(modelArg, effectiveThinking);
|
|
318
|
+
const watchdogConfig = resolveWatchdogConfig(options.cwd ?? runtimeCwd);
|
|
319
|
+
const childWatchdog = watchdogConfig.ok
|
|
320
|
+
? resolveChildWatchdogConfig({
|
|
321
|
+
config: watchdogConfig.config,
|
|
322
|
+
agent: agent.name,
|
|
323
|
+
runId: options.runId,
|
|
324
|
+
childIndex: options.index ?? 0,
|
|
325
|
+
})
|
|
326
|
+
: undefined;
|
|
327
|
+
const permissionRules = resolvePermissionRules(options.permissions, agent.permissions);
|
|
328
|
+
const permissionAuditPath = permissionRules && options.artifactsDir
|
|
329
|
+
? path.join(options.artifactsDir, "permission-audit", `${options.runId}-${options.index ?? 0}.jsonl`)
|
|
330
|
+
: undefined;
|
|
331
|
+
const startupGate = process.env[STARTUP_GATE_ENV] === "1";
|
|
332
|
+
if (startupGate && process.platform === "win32") throw new Error("Experimental startup gate requires POSIX owner transport.");
|
|
333
|
+
const startupToken = startupGate ? randomUUID() : undefined;
|
|
334
|
+
const { args, env: sharedEnv, tempDir, toolDiagnosticPath, runtimeAcknowledgedExtensionsPath, capabilityAudit } = buildPiArgs({
|
|
335
|
+
baseArgs: startupGate ? ["--mode", "rpc"] : ["--mode", "json", "-p"],
|
|
336
|
+
deferTask: startupGate,
|
|
337
|
+
task,
|
|
338
|
+
taskDelivery: shared.taskDelivery,
|
|
339
|
+
sessionEnabled: shared.sessionEnabled,
|
|
340
|
+
sessionDir: options.sessionDir,
|
|
341
|
+
sessionFile: options.sessionFile,
|
|
342
|
+
model: modelArg,
|
|
343
|
+
thinking: effectiveThinking,
|
|
344
|
+
systemPromptMode: agent.systemPromptMode,
|
|
345
|
+
inheritProjectContext: agent.inheritProjectContext,
|
|
346
|
+
inheritSkills: agent.inheritSkills,
|
|
347
|
+
requireReadTool: Boolean(shared.resolvedSkillNames?.length),
|
|
348
|
+
tools: agent.tools,
|
|
349
|
+
extensions: agent.extensions,
|
|
350
|
+
subagentOnlyExtensions: agent.subagentOnlyExtensions,
|
|
351
|
+
systemPrompt: appendTurnBudgetSystemPrompt(shared.systemPrompt, options.turnBudget),
|
|
352
|
+
mcpDirectTools: agent.mcpDirectTools,
|
|
353
|
+
cwd: options.cwd ?? runtimeCwd,
|
|
354
|
+
promptFileStem: agent.name,
|
|
355
|
+
intercomSessionName: options.intercomSessionName,
|
|
356
|
+
orchestratorIntercomTarget: options.orchestratorIntercomTarget,
|
|
357
|
+
runId: options.runId,
|
|
358
|
+
childAgentName: agent.name,
|
|
359
|
+
childIndex: options.index ?? 0,
|
|
360
|
+
parentEventSink: options.nestedRoute?.eventSink,
|
|
361
|
+
parentControlInbox: options.nestedRoute?.controlInbox,
|
|
362
|
+
parentRootRunId: options.nestedRoute?.rootRunId,
|
|
363
|
+
parentCapabilityToken: options.nestedRoute?.capabilityToken,
|
|
364
|
+
runFanoutBudget: options.runFanoutBudget,
|
|
365
|
+
parentSessionId: options.parentSessionId,
|
|
366
|
+
steerInboxDir: options.steerInboxDir,
|
|
367
|
+
steerCapabilityPath: options.steerCapabilityPath,
|
|
368
|
+
steerAckDir: options.steerAckDir,
|
|
369
|
+
structuredOutput: options.structuredOutput,
|
|
370
|
+
toolBudget: options.toolBudget,
|
|
371
|
+
allowZeroToolBudget: options.allowZeroToolBudget,
|
|
372
|
+
permissionRules,
|
|
373
|
+
permissionAuditPath,
|
|
374
|
+
childWatchdog,
|
|
375
|
+
waitToolEnabled: options.waitToolEnabled,
|
|
376
|
+
capabilityCeiling: options.capabilityCeiling,
|
|
377
|
+
});
|
|
378
|
+
|
|
379
|
+
const effectiveSystemPrompt = appendTurnBudgetSystemPrompt(shared.systemPrompt, options.turnBudget);
|
|
380
|
+
const toolPlan = resolvePiLaunchToolPlan({
|
|
381
|
+
tools: agent.tools,
|
|
382
|
+
extensions: agent.extensions,
|
|
383
|
+
subagentOnlyExtensions: agent.subagentOnlyExtensions,
|
|
384
|
+
mcpDirectTools: agent.mcpDirectTools,
|
|
385
|
+
cwd: options.cwd ?? runtimeCwd,
|
|
386
|
+
requireReadTool: Boolean(shared.resolvedSkillNames?.length),
|
|
387
|
+
structuredOutput: Boolean(options.structuredOutput),
|
|
388
|
+
capabilityCeiling: options.capabilityCeiling,
|
|
389
|
+
inheritedCapabilityCeiling: decodeSubagentCapabilityCeiling(process.env[SUBAGENT_CAPABILITY_CEILING_ENV]),
|
|
390
|
+
agentName: agent.name,
|
|
391
|
+
});
|
|
392
|
+
if (startupGate && toolPlan.fanoutAuthorized) {
|
|
393
|
+
cleanupTempDir(tempDir);
|
|
394
|
+
throw new Error("Experimental startup gate does not support child fanout.");
|
|
395
|
+
}
|
|
396
|
+
const launchResolvedExtensions = projectLaunchResolvedChildExtensions(toolPlan);
|
|
397
|
+
const launchContractDigest = launchBindingDigest({
|
|
398
|
+
definitionDigest: agentDefinitionDigest(agent),
|
|
399
|
+
task: shared.originalTask ?? task,
|
|
400
|
+
...(modelArg ? { model: modelArg } : {}),
|
|
401
|
+
modelCandidates: shared.modelCandidates,
|
|
402
|
+
...(resolvedThinking ? { thinking: resolvedThinking } : {}),
|
|
403
|
+
systemPrompt: effectiveSystemPrompt,
|
|
404
|
+
systemPromptMode: agent.systemPromptMode,
|
|
405
|
+
inheritProjectContext: agent.inheritProjectContext,
|
|
406
|
+
inheritSkills: agent.inheritSkills,
|
|
407
|
+
skills: shared.resolvedSkillNames ?? [],
|
|
408
|
+
tools: toolPlan.effectiveToolAllowlist,
|
|
409
|
+
extensions: toolPlan.extensionArgs,
|
|
410
|
+
mcpDirectTools: toolPlan.effectiveMcpTools,
|
|
411
|
+
...(options.outputPath ? { outputPath: options.outputPath } : {}),
|
|
412
|
+
outputMode: options.outputMode ?? "inline",
|
|
413
|
+
...(options.structuredOutput ? { structuredOutputSchema: options.structuredOutput.schema } : {}),
|
|
414
|
+
});
|
|
415
|
+
const result: SingleResult = withRunContext({
|
|
416
|
+
index: options.index ?? 0,
|
|
417
|
+
agent: agent.name,
|
|
418
|
+
task: shared.originalTask ?? task,
|
|
419
|
+
...(options.agentContract ? { agentContract: options.agentContract } : {}),
|
|
420
|
+
launchContractDigest,
|
|
421
|
+
launchResolvedExtensions,
|
|
422
|
+
exitCode: 0,
|
|
423
|
+
outputState: "absent",
|
|
424
|
+
messages: [],
|
|
425
|
+
usage: emptyUsage(),
|
|
426
|
+
model: modelArg,
|
|
427
|
+
...(resolvedThinking ? { thinking: resolvedThinking } : {}),
|
|
428
|
+
artifactPaths: shared.artifactPaths,
|
|
429
|
+
transcriptPath: shared.transcriptWriter ? shared.artifactPaths?.transcriptPath : undefined,
|
|
430
|
+
skills: shared.resolvedSkillNames,
|
|
431
|
+
skillsWarning: shared.skillsWarning,
|
|
432
|
+
...(options.turnBudget ? { turnBudget: initialTurnBudgetState(options.turnBudget) } : {}),
|
|
433
|
+
...(options.toolBudget ? { toolBudget: initialToolBudgetState(options.toolBudget) } : {}),
|
|
434
|
+
...(options.capabilityCeiling ? { capabilityCeiling: options.capabilityCeiling } : {}),
|
|
435
|
+
...(capabilityAudit ? { capabilityAudit } : {}),
|
|
436
|
+
}, options.context);
|
|
437
|
+
const startTime = Date.now();
|
|
438
|
+
if (options.structuredOutput) {
|
|
439
|
+
try {
|
|
440
|
+
if (existsSync(options.structuredOutput.outputPath)) unlinkSync(options.structuredOutput.outputPath);
|
|
441
|
+
} catch {
|
|
442
|
+
// Missing/stale structured-output files are handled after the child exits.
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
const controlConfig = options.controlConfig ?? DEFAULT_CONTROL_CONFIG;
|
|
446
|
+
let interruptedByControl = false;
|
|
447
|
+
const allControlEvents: ControlEvent[] = [];
|
|
448
|
+
let pendingControlEvents: ControlEvent[] = [];
|
|
449
|
+
const emittedControlEventKeys = new Set<string>();
|
|
450
|
+
const emitControlEvent = (event: ControlEvent) => {
|
|
451
|
+
if (!shouldNotifyControlEvent(controlConfig, event)) return;
|
|
452
|
+
if (!claimControlNotification(controlConfig, event, emittedControlEventKeys)) return;
|
|
453
|
+
allControlEvents.push(event);
|
|
454
|
+
pendingControlEvents.push(event);
|
|
455
|
+
options.onControlEvent?.(event);
|
|
456
|
+
};
|
|
457
|
+
|
|
458
|
+
const progress: AgentProgress = {
|
|
459
|
+
index: options.index ?? 0,
|
|
460
|
+
agent: agent.name,
|
|
461
|
+
status: "running",
|
|
462
|
+
task,
|
|
463
|
+
skills: shared.resolvedSkillNames,
|
|
464
|
+
recentTools: [],
|
|
465
|
+
recentOutput: [...shared.attemptNotes],
|
|
466
|
+
toolCount: 0,
|
|
467
|
+
tokens: 0,
|
|
468
|
+
...(modelArg ? { model: modelArg } : {}),
|
|
469
|
+
...(resolvedThinking ? { thinking: resolvedThinking } : {}),
|
|
470
|
+
inputTokens: 0,
|
|
471
|
+
outputTokens: 0,
|
|
472
|
+
durationMs: 0,
|
|
473
|
+
lastActivityAt: startTime,
|
|
474
|
+
};
|
|
475
|
+
result.progress = progress;
|
|
476
|
+
const attemptTimeout = resolveAttemptTimeout(options);
|
|
477
|
+
if (attemptTimeout?.remainingMs === 0) {
|
|
478
|
+
cleanupTempDir(tempDir);
|
|
479
|
+
result.exitCode = 1;
|
|
480
|
+
result.timedOut = true;
|
|
481
|
+
result.error = attemptTimeout.message;
|
|
482
|
+
result.finalOutput = attemptTimeout.message;
|
|
483
|
+
progress.status = "failed";
|
|
484
|
+
progress.error = attemptTimeout.message;
|
|
485
|
+
result.progressSummary = {
|
|
486
|
+
toolCount: progress.toolCount,
|
|
487
|
+
tokens: progress.tokens,
|
|
488
|
+
durationMs: progress.durationMs,
|
|
489
|
+
};
|
|
490
|
+
return result;
|
|
491
|
+
}
|
|
492
|
+
// The pipe is owned by this coordinator, never inferred from a reusable PID.
|
|
493
|
+
const ownerLinked = process.platform !== "win32";
|
|
494
|
+
const spawnEnv = { ...process.env, ...sharedEnv, ...getSubagentDepthEnv(options.maxSubagentDepth), [OWNER_LIFELINE_ENV]: ownerLinked ? "3" : undefined, [STARTUP_TOKEN_ENV]: startupToken };
|
|
495
|
+
let observedMutationAttempt = false;
|
|
496
|
+
let structuredOutputToolInvoked = false;
|
|
497
|
+
let structuredOutputMessageStartIndex: number | undefined;
|
|
498
|
+
|
|
499
|
+
const exitCode = await new Promise<number>((resolve) => {
|
|
500
|
+
const spawnSpec = getPiSpawnCommand(args);
|
|
501
|
+
const proc = spawn(spawnSpec.command, spawnSpec.args, {
|
|
502
|
+
cwd: options.cwd ?? runtimeCwd,
|
|
503
|
+
env: spawnEnv,
|
|
504
|
+
stdio: ownerLinked ? [startupGate ? "pipe" : "ignore", "pipe", "pipe", "pipe"] : ["ignore", "pipe", "pipe"],
|
|
505
|
+
windowsHide: true,
|
|
506
|
+
});
|
|
507
|
+
if (ownerLinked) trackOwnedLifeline(proc);
|
|
508
|
+
let startupTransport: ReturnType<typeof createStartupTransport> | undefined;
|
|
509
|
+
// Both stdio variants explicitly allocate stdout/stderr pipes; the extra
|
|
510
|
+
// descriptor selects Node's less-specific ChildProcess type overload.
|
|
511
|
+
const jsonlWriter = createJsonlWriter(shared.jsonlPath, proc.stdout!);
|
|
512
|
+
let processClosed = false;
|
|
513
|
+
let lifecycleFinished = false;
|
|
514
|
+
let detached = false;
|
|
515
|
+
let intercomStarted = false;
|
|
516
|
+
let assistantError: string | undefined;
|
|
517
|
+
let removeAbortListener: (() => void) | undefined;
|
|
518
|
+
let removeInterruptListener: (() => void) | undefined;
|
|
519
|
+
let activityTimer: NodeJS.Timeout | undefined;
|
|
520
|
+
let timeoutTimer: NodeJS.Timeout | undefined;
|
|
521
|
+
let timeoutTerminationTimer: NodeJS.Timeout | undefined;
|
|
522
|
+
let timeoutHardKillTimer: NodeJS.Timeout | undefined;
|
|
523
|
+
let turnBudgetSoftReached = false;
|
|
524
|
+
let turnBudgetTerminationTimer: NodeJS.Timeout | undefined;
|
|
525
|
+
let turnBudgetHardKillTimer: NodeJS.Timeout | undefined;
|
|
526
|
+
let protocolHardKillTimer: NodeJS.Timeout | undefined;
|
|
527
|
+
const clearTurnBudgetTimers = () => {
|
|
528
|
+
if (turnBudgetTerminationTimer) {
|
|
529
|
+
clearTimeout(turnBudgetTerminationTimer);
|
|
530
|
+
turnBudgetTerminationTimer = undefined;
|
|
531
|
+
}
|
|
532
|
+
if (turnBudgetHardKillTimer) {
|
|
533
|
+
clearTimeout(turnBudgetHardKillTimer);
|
|
534
|
+
turnBudgetHardKillTimer = undefined;
|
|
535
|
+
}
|
|
536
|
+
};
|
|
537
|
+
const clearTimeoutTimers = () => {
|
|
538
|
+
if (timeoutTimer) {
|
|
539
|
+
clearTimeout(timeoutTimer);
|
|
540
|
+
timeoutTimer = undefined;
|
|
541
|
+
}
|
|
542
|
+
if (timeoutTerminationTimer) {
|
|
543
|
+
clearTimeout(timeoutTerminationTimer);
|
|
544
|
+
timeoutTerminationTimer = undefined;
|
|
545
|
+
}
|
|
546
|
+
if (timeoutHardKillTimer) {
|
|
547
|
+
clearTimeout(timeoutHardKillTimer);
|
|
548
|
+
timeoutHardKillTimer = undefined;
|
|
549
|
+
}
|
|
550
|
+
};
|
|
551
|
+
|
|
552
|
+
const detachForeground = (reason: string): boolean => {
|
|
553
|
+
if (detached || processClosed || lifecycleFinished || options.signal?.aborted) return false;
|
|
554
|
+
const receiptProgress = snapshotProgress(progress);
|
|
555
|
+
receiptProgress.status = "detached";
|
|
556
|
+
receiptProgress.durationMs = Date.now() - startTime;
|
|
557
|
+
const receipt = snapshotResult(result, receiptProgress);
|
|
558
|
+
receipt.exitCode = -2;
|
|
559
|
+
receipt.detached = true;
|
|
560
|
+
receipt.detachedReason = reason;
|
|
561
|
+
receipt.finalOutput = reason === "intercom coordination"
|
|
562
|
+
? "Detached for intercom coordination before task completion."
|
|
563
|
+
: reason === "user request"
|
|
564
|
+
? "Detached at user request before task completion."
|
|
565
|
+
: `Detached for ${reason} before task completion.`;
|
|
566
|
+
receipt.outputMode = options.outputMode ?? "inline";
|
|
567
|
+
if (options.outputPath) {
|
|
568
|
+
receipt.outputSaveError = reason === "user request"
|
|
569
|
+
? "Output file was not finalized because the subagent detached at user request."
|
|
570
|
+
: `Output file was not finalized because the subagent detached for ${reason}.`;
|
|
571
|
+
}
|
|
572
|
+
receipt.progressSummary = {
|
|
573
|
+
toolCount: receiptProgress.toolCount,
|
|
574
|
+
tokens: receiptProgress.tokens,
|
|
575
|
+
durationMs: receiptProgress.durationMs,
|
|
576
|
+
};
|
|
577
|
+
// The attempt is not detached until the outer coordinator has accepted and
|
|
578
|
+
// synchronously published the receipt. A persistence/callback failure must
|
|
579
|
+
// leave this attempt attached and abortable rather than orphaning it.
|
|
580
|
+
let accepted = false;
|
|
581
|
+
try {
|
|
582
|
+
accepted = options.onDetachReceipt?.(receipt) === true;
|
|
583
|
+
} catch {
|
|
584
|
+
return false;
|
|
585
|
+
}
|
|
586
|
+
if (!accepted) return false;
|
|
587
|
+
detached = true;
|
|
588
|
+
return true;
|
|
589
|
+
};
|
|
590
|
+
|
|
591
|
+
// If the child emits a terminal assistant stop but never exits,
|
|
592
|
+
// give it a short grace period to flush naturally, then clean it up.
|
|
593
|
+
const FINAL_STOP_GRACE_MS = 1000;
|
|
594
|
+
const HARD_KILL_MS = 3000;
|
|
595
|
+
let childExited = false;
|
|
596
|
+
let forcedTerminationSignal = false;
|
|
597
|
+
let cleanTerminalAssistantStopReceived = false;
|
|
598
|
+
let agentSettledReceived = false;
|
|
599
|
+
let finalDrainTimer: NodeJS.Timeout | undefined;
|
|
600
|
+
let finalHardKillTimer: NodeJS.Timeout | undefined;
|
|
601
|
+
let watchdogTailTimer: NodeJS.Timeout | undefined;
|
|
602
|
+
let childWatchdogState: ChildWatchdogStateSnapshot | undefined;
|
|
603
|
+
const updateChildWatchdogState = (snapshot: ChildWatchdogStateSnapshot): void => {
|
|
604
|
+
childWatchdogState = snapshot;
|
|
605
|
+
result.watchdog = snapshot;
|
|
606
|
+
progress.watchdog = snapshot;
|
|
607
|
+
};
|
|
608
|
+
const clearWatchdogTailTimer = () => {
|
|
609
|
+
if (watchdogTailTimer) {
|
|
610
|
+
clearTimeout(watchdogTailTimer);
|
|
611
|
+
watchdogTailTimer = undefined;
|
|
612
|
+
}
|
|
613
|
+
};
|
|
614
|
+
const clearFinalDrainTimers = () => {
|
|
615
|
+
if (finalDrainTimer) {
|
|
616
|
+
clearTimeout(finalDrainTimer);
|
|
617
|
+
finalDrainTimer = undefined;
|
|
618
|
+
}
|
|
619
|
+
if (finalHardKillTimer) {
|
|
620
|
+
clearTimeout(finalHardKillTimer);
|
|
621
|
+
finalHardKillTimer = undefined;
|
|
622
|
+
}
|
|
623
|
+
};
|
|
624
|
+
const startFinalDrain = () => {
|
|
625
|
+
if (startupGate && !agentSettledReceived) return;
|
|
626
|
+
if (childWatchdogIsActive(childWatchdogState)) {
|
|
627
|
+
armWatchdogTail();
|
|
628
|
+
return;
|
|
629
|
+
}
|
|
630
|
+
if (childExited || finalDrainTimer || lifecycleFinished || processClosed) return;
|
|
631
|
+
finalDrainTimer = setTimeout(() => {
|
|
632
|
+
if (lifecycleFinished || processClosed) return;
|
|
633
|
+
const termSent = trySignalChild(proc, "SIGTERM");
|
|
634
|
+
if (!termSent) return;
|
|
635
|
+
forcedTerminationSignal = true;
|
|
636
|
+
if (!cleanTerminalAssistantStopReceived && !agentSettledReceived && !assistantError) {
|
|
637
|
+
result.error = result.error ?? `Subagent process did not exit within ${FINAL_STOP_GRACE_MS}ms after its terminal event. Forcing termination.`;
|
|
638
|
+
}
|
|
639
|
+
finalHardKillTimer = setTimeout(() => {
|
|
640
|
+
if (lifecycleFinished || processClosed) return;
|
|
641
|
+
forcedTerminationSignal = trySignalChild(proc, "SIGKILL") || forcedTerminationSignal;
|
|
642
|
+
}, HARD_KILL_MS);
|
|
643
|
+
finalHardKillTimer.unref?.();
|
|
644
|
+
}, FINAL_STOP_GRACE_MS);
|
|
645
|
+
finalDrainTimer.unref?.();
|
|
646
|
+
};
|
|
647
|
+
function armWatchdogTail(): void {
|
|
648
|
+
if ((!cleanTerminalAssistantStopReceived && !agentSettledReceived) || watchdogTailTimer || lifecycleFinished || processClosed) return;
|
|
649
|
+
watchdogTailTimer = setTimeout(() => {
|
|
650
|
+
watchdogTailTimer = undefined;
|
|
651
|
+
updateChildWatchdogState({
|
|
652
|
+
phase: "stale",
|
|
653
|
+
seq: (childWatchdogState?.seq ?? 0) + 1,
|
|
654
|
+
lastUpdate: Date.now(),
|
|
655
|
+
followUpPending: false,
|
|
656
|
+
reason: "child watchdog tail timeout",
|
|
657
|
+
timedOut: true,
|
|
658
|
+
});
|
|
659
|
+
startFinalDrain();
|
|
660
|
+
fireUpdate();
|
|
661
|
+
}, childWatchdog?.watchdogTailTimeoutMs ?? 120_000);
|
|
662
|
+
watchdogTailTimer.unref?.();
|
|
663
|
+
}
|
|
664
|
+
const applyChildLifecycle = (action: ChildLifecycleAction): void => {
|
|
665
|
+
if (action === "cancel-drain") {
|
|
666
|
+
clearFinalDrainTimers();
|
|
667
|
+
clearWatchdogTailTimer();
|
|
668
|
+
return;
|
|
669
|
+
}
|
|
670
|
+
if (action === "start-drain") startFinalDrain();
|
|
671
|
+
};
|
|
672
|
+
|
|
673
|
+
const unsubscribeIntercomDetach = options.intercomEvents?.on?.(INTERCOM_DETACH_REQUEST_EVENT, (payload) => {
|
|
674
|
+
if (!options.allowIntercomDetach || processClosed) return;
|
|
675
|
+
if (!payload || typeof payload !== "object") return;
|
|
676
|
+
const event = payload as { requestId?: unknown; runId?: unknown; agent?: unknown; childIndex?: unknown };
|
|
677
|
+
const requestId = event.requestId;
|
|
678
|
+
if (typeof requestId !== "string" || requestId.length === 0) return;
|
|
679
|
+
const hasRoute = event.runId !== undefined || event.agent !== undefined || event.childIndex !== undefined;
|
|
680
|
+
if (hasRoute) {
|
|
681
|
+
if (typeof event.runId === "string" && event.runId !== options.runId) return;
|
|
682
|
+
if (typeof event.agent === "string" && event.agent !== agent.name) return;
|
|
683
|
+
if (typeof event.childIndex === "number" && event.childIndex !== (options.index ?? 0)) return;
|
|
684
|
+
} else if (!intercomStarted) return;
|
|
685
|
+
const accepted = detachForeground("intercom coordination");
|
|
686
|
+
options.intercomEvents?.emit(INTERCOM_DETACH_RESPONSE_EVENT, { requestId, accepted, runId: options.runId, agent: agent.name, childIndex: options.index ?? 0 });
|
|
687
|
+
});
|
|
688
|
+
|
|
689
|
+
const finish = (code: number) => {
|
|
690
|
+
if (lifecycleFinished) return;
|
|
691
|
+
lifecycleFinished = true;
|
|
692
|
+
startupTransport?.dispose();
|
|
693
|
+
clearFinalDrainTimers();
|
|
694
|
+
clearWatchdogTailTimer();
|
|
695
|
+
clearStdioGuard();
|
|
696
|
+
clearTimeoutTimers();
|
|
697
|
+
clearAllToolTimeouts();
|
|
698
|
+
clearTurnBudgetTimers();
|
|
699
|
+
if (protocolHardKillTimer) {
|
|
700
|
+
clearTimeout(protocolHardKillTimer);
|
|
701
|
+
protocolHardKillTimer = undefined;
|
|
702
|
+
}
|
|
703
|
+
if (activityTimer) {
|
|
704
|
+
clearInterval(activityTimer);
|
|
705
|
+
activityTimer = undefined;
|
|
706
|
+
}
|
|
707
|
+
unsubscribeIntercomDetach?.();
|
|
708
|
+
removeAbortListener?.();
|
|
709
|
+
removeInterruptListener?.();
|
|
710
|
+
resolve(code);
|
|
711
|
+
};
|
|
712
|
+
|
|
713
|
+
const drainPendingControlEvents = (): ControlEvent[] | undefined => {
|
|
714
|
+
if (pendingControlEvents.length === 0) return undefined;
|
|
715
|
+
const events = pendingControlEvents;
|
|
716
|
+
pendingControlEvents = [];
|
|
717
|
+
return events;
|
|
718
|
+
};
|
|
719
|
+
|
|
720
|
+
let activeLongRunningNotified = false;
|
|
721
|
+
let pendingToolResult: { tool: string; path?: string; mutates: boolean; startedAt?: number } | undefined;
|
|
722
|
+
type ActiveToolCall = { key: string; tool: string; args: string; startedAt: number; path?: string };
|
|
723
|
+
let activeToolSequence = 0;
|
|
724
|
+
const activeToolCalls = new Map<string, ActiveToolCall>();
|
|
725
|
+
const activeToolKeysByName = new Map<string, string[]>();
|
|
726
|
+
const latestActiveToolCall = (): ActiveToolCall | undefined => [...activeToolCalls.values()].sort((left, right) => right.startedAt - left.startedAt)[0];
|
|
727
|
+
const refreshCurrentTool = (): void => {
|
|
728
|
+
const active = latestActiveToolCall();
|
|
729
|
+
if (!active) {
|
|
730
|
+
progress.currentTool = undefined;
|
|
731
|
+
progress.currentToolArgs = undefined;
|
|
732
|
+
progress.currentToolStartedAt = undefined;
|
|
733
|
+
progress.currentPath = undefined;
|
|
734
|
+
return;
|
|
735
|
+
}
|
|
736
|
+
progress.currentTool = active.tool;
|
|
737
|
+
progress.currentToolArgs = active.args;
|
|
738
|
+
progress.currentToolStartedAt = active.startedAt;
|
|
739
|
+
progress.currentPath = active.path;
|
|
740
|
+
};
|
|
741
|
+
const recordActiveToolCall = (event: { toolCallId?: unknown; toolName: string }, args: Record<string, unknown>, now: number): ActiveToolCall => {
|
|
742
|
+
const key = toolTimeoutCallKey(event, ++activeToolSequence);
|
|
743
|
+
const path = resolveCurrentPath(event.toolName, args);
|
|
744
|
+
const active: ActiveToolCall = {
|
|
745
|
+
key,
|
|
746
|
+
tool: event.toolName,
|
|
747
|
+
args: extractToolArgsPreview(args),
|
|
748
|
+
startedAt: now,
|
|
749
|
+
...(path !== undefined ? { path } : {}),
|
|
750
|
+
};
|
|
751
|
+
activeToolCalls.set(key, active);
|
|
752
|
+
const keys = activeToolKeysByName.get(active.tool) ?? [];
|
|
753
|
+
keys.push(key);
|
|
754
|
+
activeToolKeysByName.set(active.tool, keys);
|
|
755
|
+
refreshCurrentTool();
|
|
756
|
+
return active;
|
|
757
|
+
};
|
|
758
|
+
const removeActiveToolCallKey = (key: string): ActiveToolCall | undefined => {
|
|
759
|
+
const active = activeToolCalls.get(key);
|
|
760
|
+
if (!active) return undefined;
|
|
761
|
+
activeToolCalls.delete(key);
|
|
762
|
+
const keys = activeToolKeysByName.get(active.tool)?.filter((candidate) => candidate !== key) ?? [];
|
|
763
|
+
if (keys.length > 0) activeToolKeysByName.set(active.tool, keys);
|
|
764
|
+
else activeToolKeysByName.delete(active.tool);
|
|
765
|
+
return active;
|
|
766
|
+
};
|
|
767
|
+
const removeActiveToolCall = (event: { toolCallId?: unknown; toolName?: unknown }): ActiveToolCall | undefined => {
|
|
768
|
+
const key = typeof event.toolCallId === "string" && event.toolCallId.length > 0
|
|
769
|
+
? `id:${event.toolCallId}`
|
|
770
|
+
: typeof event.toolName === "string"
|
|
771
|
+
? activeToolKeysByName.get(event.toolName)?.[0]
|
|
772
|
+
: activeToolCalls.size === 1
|
|
773
|
+
? [...activeToolCalls.keys()][0]
|
|
774
|
+
: undefined;
|
|
775
|
+
return key ? removeActiveToolCallKey(key) : undefined;
|
|
776
|
+
};
|
|
777
|
+
const openToolAttentionTarget = (now: number): ActiveToolCall | undefined => [...activeToolCalls.values()]
|
|
778
|
+
.filter((active) => shouldEmitOpenToolAttention({ config: controlConfig, currentTool: active.tool, currentToolStartedAt: active.startedAt, now }))
|
|
779
|
+
.sort((left, right) => left.startedAt - right.startedAt)[0];
|
|
780
|
+
const mutatingFailures = createMutatingFailureState();
|
|
781
|
+
const mutatingFailureWindowMs = 5 * 60_000;
|
|
782
|
+
const currentToolDurationMs = (now: number) => progress.currentToolStartedAt ? Math.max(0, now - progress.currentToolStartedAt) : undefined;
|
|
783
|
+
const emitNeedsAttention = (now: number, input: { message?: string; reason?: ControlEvent["reason"]; recentFailureSummary?: string; currentTool?: string; currentPath?: string; currentToolDurationMs?: number } = {}): boolean => {
|
|
784
|
+
if (!controlConfig.enabled) return false;
|
|
785
|
+
const previous = progress.activityState;
|
|
786
|
+
progress.activityState = "needs_attention";
|
|
787
|
+
const event = buildControlEvent({
|
|
788
|
+
type: "needs_attention",
|
|
789
|
+
from: previous,
|
|
790
|
+
to: "needs_attention",
|
|
791
|
+
runId: options.runId,
|
|
792
|
+
agent: agent.name,
|
|
793
|
+
index: options.index,
|
|
794
|
+
ts: now,
|
|
795
|
+
lastActivityAt: progress.lastActivityAt,
|
|
796
|
+
message: input.message,
|
|
797
|
+
reason: input.reason ?? "idle",
|
|
798
|
+
turns: result.usage.turns,
|
|
799
|
+
tokens: progress.tokens,
|
|
800
|
+
toolCount: progress.toolCount,
|
|
801
|
+
currentTool: input.currentTool ?? progress.currentTool,
|
|
802
|
+
currentToolDurationMs: input.currentToolDurationMs ?? currentToolDurationMs(now),
|
|
803
|
+
currentPath: input.currentPath ?? progress.currentPath,
|
|
804
|
+
recentFailureSummary: input.recentFailureSummary,
|
|
805
|
+
taskPreview: task,
|
|
806
|
+
});
|
|
807
|
+
emitControlEvent(event);
|
|
808
|
+
return previous !== "needs_attention";
|
|
809
|
+
};
|
|
810
|
+
const emitActiveLongRunning = (now: number, reason: ControlEvent["reason"]): boolean => {
|
|
811
|
+
if (!controlConfig.enabled || activeLongRunningNotified || progress.activityState === "needs_attention") return false;
|
|
812
|
+
activeLongRunningNotified = true;
|
|
813
|
+
const previous = progress.activityState;
|
|
814
|
+
progress.activityState = "active_long_running";
|
|
815
|
+
emitControlEvent(buildControlEvent({
|
|
816
|
+
type: "active_long_running",
|
|
817
|
+
from: previous,
|
|
818
|
+
to: "active_long_running",
|
|
819
|
+
runId: options.runId,
|
|
820
|
+
agent: agent.name,
|
|
821
|
+
index: options.index,
|
|
822
|
+
ts: now,
|
|
823
|
+
message: `${agent.name} is still active but long-running`,
|
|
824
|
+
reason,
|
|
825
|
+
turns: result.usage.turns,
|
|
826
|
+
tokens: progress.tokens,
|
|
827
|
+
toolCount: progress.toolCount,
|
|
828
|
+
currentTool: progress.currentTool,
|
|
829
|
+
currentToolDurationMs: currentToolDurationMs(now),
|
|
830
|
+
currentPath: progress.currentPath,
|
|
831
|
+
elapsedMs: now - startTime,
|
|
832
|
+
taskPreview: task,
|
|
833
|
+
}));
|
|
834
|
+
return true;
|
|
835
|
+
};
|
|
836
|
+
const requestTurnBudgetAbort = (turnCount: number) => {
|
|
837
|
+
const budget = options.turnBudget;
|
|
838
|
+
if (!budget || result.timedOut || result.turnBudgetExceeded || interruptedByControl || processClosed || lifecycleFinished) return;
|
|
839
|
+
const message = turnBudgetExceededMessage(budget, turnCount);
|
|
840
|
+
result.turnBudgetExceeded = true;
|
|
841
|
+
result.wrapUpRequested = true;
|
|
842
|
+
result.turnBudget = turnBudgetState(budget, turnCount, true);
|
|
843
|
+
result.error = message;
|
|
844
|
+
result.finalOutput = message;
|
|
845
|
+
progress.status = "failed";
|
|
846
|
+
progress.error = message;
|
|
847
|
+
progress.durationMs = Date.now() - startTime;
|
|
848
|
+
fireUpdate();
|
|
849
|
+
trySignalChild(proc, "SIGINT");
|
|
850
|
+
turnBudgetTerminationTimer = setTimeout(() => {
|
|
851
|
+
if (processClosed || lifecycleFinished || result.timedOut) return;
|
|
852
|
+
trySignalChild(proc, "SIGTERM");
|
|
853
|
+
}, 1000);
|
|
854
|
+
turnBudgetTerminationTimer.unref?.();
|
|
855
|
+
turnBudgetHardKillTimer = setTimeout(() => {
|
|
856
|
+
if (processClosed || lifecycleFinished || result.timedOut) return;
|
|
857
|
+
trySignalChild(proc, "SIGKILL");
|
|
858
|
+
}, 4000);
|
|
859
|
+
turnBudgetHardKillTimer.unref?.();
|
|
860
|
+
};
|
|
861
|
+
|
|
862
|
+
const updateTurnBudget = (turnCount: number, terminalAssistantStop: boolean, toolWorkActiveOrStarting: boolean) => {
|
|
863
|
+
const budget = options.turnBudget;
|
|
864
|
+
if (!budget || result.timedOut || result.turnBudgetExceeded) return;
|
|
865
|
+
if (turnCount < budget.maxTurns) {
|
|
866
|
+
result.turnBudget = { ...budget, outcome: "within-budget", turnCount };
|
|
867
|
+
return;
|
|
868
|
+
}
|
|
869
|
+
if (!turnBudgetSoftReached) {
|
|
870
|
+
turnBudgetSoftReached = true;
|
|
871
|
+
result.wrapUpRequested = true;
|
|
872
|
+
appendRecentOutput(progress, [turnBudgetSoftNote(budget, turnCount)]);
|
|
873
|
+
}
|
|
874
|
+
const decision = turnBudgetDecision(budget, turnCount, terminalAssistantStop, toolWorkActiveOrStarting, options.enforceHardTurnLimit);
|
|
875
|
+
if (decision === "defer") {
|
|
876
|
+
result.turnBudget = turnBudgetDeferredState(
|
|
877
|
+
budget,
|
|
878
|
+
turnCount,
|
|
879
|
+
result.turnBudget?.terminationDeferredAtTurn,
|
|
880
|
+
);
|
|
881
|
+
return;
|
|
882
|
+
}
|
|
883
|
+
result.turnBudget = turnBudgetState(budget, turnCount, false);
|
|
884
|
+
if (decision === "abort") requestTurnBudgetAbort(turnCount);
|
|
885
|
+
};
|
|
886
|
+
|
|
887
|
+
const updateActivityState = (now: number): boolean => {
|
|
888
|
+
if (!controlConfig.enabled) return false;
|
|
889
|
+
const idleState = deriveActivityState({
|
|
890
|
+
config: controlConfig,
|
|
891
|
+
startedAt: startTime,
|
|
892
|
+
lastActivityAt: progress.lastActivityAt,
|
|
893
|
+
currentTool: progress.currentTool,
|
|
894
|
+
now,
|
|
895
|
+
});
|
|
896
|
+
if (idleState === "needs_attention") {
|
|
897
|
+
return progress.activityState === "needs_attention" ? false : emitNeedsAttention(now);
|
|
898
|
+
}
|
|
899
|
+
const toolAttentionTarget = progress.activityState !== "needs_attention" ? openToolAttentionTarget(now) : undefined;
|
|
900
|
+
if (toolAttentionTarget) {
|
|
901
|
+
const durationMs = Math.max(0, now - toolAttentionTarget.startedAt);
|
|
902
|
+
return emitNeedsAttention(now, {
|
|
903
|
+
message: `${agent.name} has had tool '${toolAttentionTarget.tool}' open for ${Math.floor(durationMs / 1000)}s`,
|
|
904
|
+
reason: "tool_open_threshold",
|
|
905
|
+
currentTool: toolAttentionTarget.tool,
|
|
906
|
+
currentPath: toolAttentionTarget.path,
|
|
907
|
+
currentToolDurationMs: durationMs,
|
|
908
|
+
});
|
|
909
|
+
}
|
|
910
|
+
const activeReason = nextLongRunningTrigger(controlConfig, {
|
|
911
|
+
startedAt: startTime,
|
|
912
|
+
now,
|
|
913
|
+
turns: result.usage.turns,
|
|
914
|
+
tokens: progress.tokens,
|
|
915
|
+
});
|
|
916
|
+
return activeReason ? emitActiveLongRunning(now, activeReason) : false;
|
|
917
|
+
};
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
const emitUpdateSnapshot = (text: string) => {
|
|
921
|
+
if (!options.onUpdate || processClosed) return;
|
|
922
|
+
const progressSnapshot = snapshotProgress(progress);
|
|
923
|
+
const resultSnapshot = snapshotStreamResult(result, progressSnapshot);
|
|
924
|
+
const controlEvents = drainPendingControlEvents();
|
|
925
|
+
options.onUpdate({
|
|
926
|
+
content: [{ type: "text", text }],
|
|
927
|
+
details: {
|
|
928
|
+
mode: "single",
|
|
929
|
+
results: [resultSnapshot],
|
|
930
|
+
progress: [progressSnapshot],
|
|
931
|
+
controlEvents,
|
|
932
|
+
},
|
|
933
|
+
});
|
|
934
|
+
};
|
|
935
|
+
|
|
936
|
+
const fireUpdate = () => {
|
|
937
|
+
if (!options.onUpdate || processClosed) return;
|
|
938
|
+
progress.durationMs = Date.now() - startTime;
|
|
939
|
+
const output = (result.timedOut || result.turnBudgetExceeded) && result.finalOutput ? result.finalOutput : getFinalOutput(result.messages ?? []);
|
|
940
|
+
emitUpdateSnapshot(output || "(running...)");
|
|
941
|
+
};
|
|
942
|
+
|
|
943
|
+
const rawStdoutTail = createBoundedByteTail();
|
|
944
|
+
const processLine = (line: string) => {
|
|
945
|
+
if (!line.trim()) return;
|
|
946
|
+
let evt: { type?: string; message?: Message; toolName?: string; toolCallId?: string; args?: unknown; willRetry?: unknown };
|
|
947
|
+
try {
|
|
948
|
+
evt = JSON.parse(line) as { type?: string; message?: Message; toolName?: string; toolCallId?: string; args?: unknown; willRetry?: unknown };
|
|
949
|
+
} catch {
|
|
950
|
+
jsonlWriter.writeLine(line);
|
|
951
|
+
rawStdoutTail.push(`${line}\n`);
|
|
952
|
+
shared.transcriptWriter?.writeStdoutLine(line);
|
|
953
|
+
shared.orcaProgressTab?.append(`${line}\n`);
|
|
954
|
+
// Non-JSON stdout lines are expected; only structured events are parsed.
|
|
955
|
+
return;
|
|
956
|
+
}
|
|
957
|
+
if (startupTransport?.record(evt)) return;
|
|
958
|
+
jsonlWriter.writeLine(line);
|
|
959
|
+
if (startupGate && evt.type === "agent_start") agentSettledReceived = false;
|
|
960
|
+
shared.transcriptWriter?.writeChildEvent(evt);
|
|
961
|
+
shared.orcaProgressTab?.event(evt);
|
|
962
|
+
if (evt.type === "agent_settled") agentSettledReceived = true;
|
|
963
|
+
applyChildLifecycle(projectChildLifecycle(evt));
|
|
964
|
+
|
|
965
|
+
if (isChildWatchdogStatusEvent(evt)) {
|
|
966
|
+
if (!childWatchdog) return;
|
|
967
|
+
const next = acceptChildWatchdogEvent({
|
|
968
|
+
current: childWatchdogState,
|
|
969
|
+
event: evt,
|
|
970
|
+
runId: options.runId,
|
|
971
|
+
agent: agent.name,
|
|
972
|
+
childIndex: options.index ?? 0,
|
|
973
|
+
});
|
|
974
|
+
if (!next) return;
|
|
975
|
+
updateChildWatchdogState(next);
|
|
976
|
+
if (childWatchdogIsActive(next)) {
|
|
977
|
+
clearFinalDrainTimers();
|
|
978
|
+
armWatchdogTail();
|
|
979
|
+
} else {
|
|
980
|
+
clearWatchdogTailTimer();
|
|
981
|
+
if (cleanTerminalAssistantStopReceived || agentSettledReceived) startFinalDrain();
|
|
982
|
+
}
|
|
983
|
+
fireUpdate();
|
|
984
|
+
return;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
const now = Date.now();
|
|
988
|
+
progress.durationMs = now - startTime;
|
|
989
|
+
progress.lastActivityAt = now;
|
|
990
|
+
updateActivityState(now);
|
|
991
|
+
|
|
992
|
+
if (evt.type === "tool_execution_start") {
|
|
993
|
+
const toolArgs = evt.args && typeof evt.args === "object" && !Array.isArray(evt.args)
|
|
994
|
+
? evt.args as Record<string, unknown>
|
|
995
|
+
: {};
|
|
996
|
+
const activeTool = evt.toolName !== undefined ? recordActiveToolCall(evt as { toolCallId?: unknown; toolName: string }, toolArgs, now) : undefined;
|
|
997
|
+
if (evt.toolName !== undefined) armToolTimeout(evt as { toolCallId?: unknown; toolName: string });
|
|
998
|
+
if (options.structuredOutput && evt.toolName === "structured_output") {
|
|
999
|
+
structuredOutputToolInvoked = true;
|
|
1000
|
+
structuredOutputMessageStartIndex = result.messages?.length ?? 0;
|
|
1001
|
+
}
|
|
1002
|
+
if (options.allowIntercomDetach && (evt.toolName === "intercom" || evt.toolName === "contact_supervisor")) {
|
|
1003
|
+
intercomStarted = true;
|
|
1004
|
+
}
|
|
1005
|
+
progress.toolCount++;
|
|
1006
|
+
if (options.toolBudget) {
|
|
1007
|
+
result.toolBudget = toolBudgetState(options.toolBudget, progress.toolCount);
|
|
1008
|
+
}
|
|
1009
|
+
const mutates = isMutatingTool(evt.toolName, toolArgs);
|
|
1010
|
+
observedMutationAttempt = observedMutationAttempt || mutates;
|
|
1011
|
+
pendingToolResult = { tool: evt.toolName ?? "tool", path: activeTool?.path, mutates, startedAt: now };
|
|
1012
|
+
fireUpdate();
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
if (evt.type === "tool_execution_end") {
|
|
1016
|
+
clearActiveToolTimeout(evt);
|
|
1017
|
+
const endedTool = removeActiveToolCall(evt);
|
|
1018
|
+
if (endedTool) {
|
|
1019
|
+
progress.recentTools.push({
|
|
1020
|
+
tool: endedTool.tool,
|
|
1021
|
+
args: endedTool.args,
|
|
1022
|
+
endMs: now,
|
|
1023
|
+
});
|
|
1024
|
+
}
|
|
1025
|
+
refreshCurrentTool();
|
|
1026
|
+
fireUpdate();
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
if (evt.type === "message_end" && evt.message) {
|
|
1030
|
+
result.messages!.push(evt.message);
|
|
1031
|
+
if (evt.message.role === "assistant") {
|
|
1032
|
+
result.usage.turns++;
|
|
1033
|
+
progress.turnCount = result.usage.turns;
|
|
1034
|
+
const stopReason = (evt.message as { stopReason?: string }).stopReason;
|
|
1035
|
+
const toolCalls = Array.isArray(evt.message.content)
|
|
1036
|
+
? evt.message.content.filter((part) => (part as { type?: string }).type === "toolCall")
|
|
1037
|
+
: [];
|
|
1038
|
+
const hasToolCall = toolCalls.length > 0;
|
|
1039
|
+
const terminalAssistantStop = stopReason === "stop" && !hasToolCall;
|
|
1040
|
+
const terminalStructuredOutputCall = Boolean(options.structuredOutput)
|
|
1041
|
+
&& toolCalls.length === 1
|
|
1042
|
+
&& (toolCalls[0] as { name?: string }).name === "structured_output";
|
|
1043
|
+
updateTurnBudget(result.usage.turns, terminalAssistantStop || terminalStructuredOutputCall, hasToolCall || Boolean(progress.currentTool));
|
|
1044
|
+
const u = evt.message.usage;
|
|
1045
|
+
if (u) {
|
|
1046
|
+
result.usage.input += u.input || 0;
|
|
1047
|
+
result.usage.output += u.output || 0;
|
|
1048
|
+
result.usage.cacheRead += u.cacheRead || 0;
|
|
1049
|
+
result.usage.cacheWrite += u.cacheWrite || 0;
|
|
1050
|
+
result.usage.cost += u.cost?.total || 0;
|
|
1051
|
+
progress.tokens = result.usage.input + result.usage.output;
|
|
1052
|
+
progress.inputTokens = result.usage.input;
|
|
1053
|
+
progress.outputTokens = result.usage.output;
|
|
1054
|
+
}
|
|
1055
|
+
if (evt.message.model) {
|
|
1056
|
+
progress.model = evt.message.model;
|
|
1057
|
+
if (!result.model) result.model = evt.message.model;
|
|
1058
|
+
}
|
|
1059
|
+
if (evt.message.errorMessage) assistantError = evt.message.errorMessage;
|
|
1060
|
+
const assistantText = extractTextFromContent(evt.message.content);
|
|
1061
|
+
appendRecentOutput(progress, assistantText.split("\n").slice(-10));
|
|
1062
|
+
// Final assistant message: start the exit drain window.
|
|
1063
|
+
if (terminalAssistantStop) {
|
|
1064
|
+
if (!evt.message.errorMessage && assistantText.trim()) assistantError = undefined;
|
|
1065
|
+
cleanTerminalAssistantStopReceived ||= !evt.message.errorMessage;
|
|
1066
|
+
applyChildLifecycle(projectChildLifecycle(evt, true));
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
updateActivityState(now);
|
|
1070
|
+
fireUpdate();
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
if (evt.type === "tool_result_end" && evt.message) {
|
|
1074
|
+
result.messages!.push(evt.message);
|
|
1075
|
+
const resultText = extractTextFromContent(evt.message.content);
|
|
1076
|
+
if (options.toolBudget && pendingToolResult && resultText.includes("Tool budget hard limit reached")) {
|
|
1077
|
+
result.toolBudgetBlocked = true;
|
|
1078
|
+
result.toolBudget = toolBudgetState(options.toolBudget, progress.toolCount, pendingToolResult.tool);
|
|
1079
|
+
}
|
|
1080
|
+
appendRecentOutput(progress, resultText.split("\n").slice(-10));
|
|
1081
|
+
const toolSnapshot = pendingToolResult;
|
|
1082
|
+
pendingToolResult = undefined;
|
|
1083
|
+
if (toolSnapshot?.mutates && didMutatingToolFail(resultText)) {
|
|
1084
|
+
recordMutatingFailure(mutatingFailures, {
|
|
1085
|
+
tool: toolSnapshot.tool,
|
|
1086
|
+
path: toolSnapshot.path,
|
|
1087
|
+
error: resultText.split("\n").find((line) => line.trim())?.trim().slice(0, 180) ?? "mutating tool failed",
|
|
1088
|
+
ts: now,
|
|
1089
|
+
}, mutatingFailureWindowMs);
|
|
1090
|
+
if (shouldEscalateMutatingFailures(mutatingFailures, controlConfig.failedToolAttemptsBeforeAttention)) {
|
|
1091
|
+
emitNeedsAttention(now, {
|
|
1092
|
+
message: `${agent.name} needs attention after repeated mutating tool failures`,
|
|
1093
|
+
reason: "tool_failures",
|
|
1094
|
+
currentTool: toolSnapshot.tool,
|
|
1095
|
+
currentPath: toolSnapshot.path,
|
|
1096
|
+
currentToolDurationMs: toolSnapshot.startedAt ? Math.max(0, now - toolSnapshot.startedAt) : undefined,
|
|
1097
|
+
recentFailureSummary: summarizeRecentMutatingFailures(mutatingFailures),
|
|
1098
|
+
});
|
|
1099
|
+
}
|
|
1100
|
+
} else if (toolSnapshot?.mutates) {
|
|
1101
|
+
resetMutatingFailureState(mutatingFailures);
|
|
1102
|
+
}
|
|
1103
|
+
fireUpdate();
|
|
1104
|
+
}
|
|
1105
|
+
};
|
|
1106
|
+
|
|
1107
|
+
fireUpdate();
|
|
1108
|
+
if (controlConfig.enabled || options.onUpdate) {
|
|
1109
|
+
activityTimer = setInterval(() => {
|
|
1110
|
+
if (processClosed || lifecycleFinished) {
|
|
1111
|
+
return;
|
|
1112
|
+
}
|
|
1113
|
+
updateActivityState(Date.now());
|
|
1114
|
+
fireUpdate();
|
|
1115
|
+
}, 1000);
|
|
1116
|
+
activityTimer.unref?.();
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
if (attemptTimeout) {
|
|
1120
|
+
timeoutTimer = setTimeout(() => {
|
|
1121
|
+
if (processClosed || lifecycleFinished || interruptedByControl) return;
|
|
1122
|
+
result.timedOut = true;
|
|
1123
|
+
startupTransport?.dispose();
|
|
1124
|
+
clearAllToolTimeouts();
|
|
1125
|
+
result.error = attemptTimeout.message;
|
|
1126
|
+
result.finalOutput = attemptTimeout.message;
|
|
1127
|
+
progress.status = "failed";
|
|
1128
|
+
progress.error = attemptTimeout.message;
|
|
1129
|
+
progress.durationMs = Date.now() - startTime;
|
|
1130
|
+
fireUpdate();
|
|
1131
|
+
trySignalChild(proc, "SIGINT");
|
|
1132
|
+
timeoutTerminationTimer = setTimeout(() => {
|
|
1133
|
+
if (processClosed || lifecycleFinished) return;
|
|
1134
|
+
trySignalChild(proc, "SIGTERM");
|
|
1135
|
+
}, 1000);
|
|
1136
|
+
timeoutTerminationTimer.unref?.();
|
|
1137
|
+
timeoutHardKillTimer = setTimeout(() => {
|
|
1138
|
+
if (processClosed || lifecycleFinished) return;
|
|
1139
|
+
trySignalChild(proc, "SIGKILL");
|
|
1140
|
+
}, 4000);
|
|
1141
|
+
timeoutHardKillTimer.unref?.();
|
|
1142
|
+
}, attemptTimeout.remainingMs);
|
|
1143
|
+
timeoutTimer.unref?.();
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
let toolTimeoutSequence = 0;
|
|
1147
|
+
const activeToolTimeouts = new Map<string, { toolName: string; timer: ReturnType<typeof setTimeout> }>();
|
|
1148
|
+
const activeToolTimeoutKeysByName = new Map<string, string[]>();
|
|
1149
|
+
let toolTimeoutTerminationTimer: ReturnType<typeof setTimeout> | undefined;
|
|
1150
|
+
let toolTimeoutHardKillTimer: ReturnType<typeof setTimeout> | undefined;
|
|
1151
|
+
const removeToolTimeoutKey = (key: string): void => {
|
|
1152
|
+
const active = activeToolTimeouts.get(key);
|
|
1153
|
+
if (!active) return;
|
|
1154
|
+
clearTimeout(active.timer);
|
|
1155
|
+
activeToolTimeouts.delete(key);
|
|
1156
|
+
const keys = activeToolTimeoutKeysByName.get(active.toolName)?.filter((candidate) => candidate !== key) ?? [];
|
|
1157
|
+
if (keys.length > 0) activeToolTimeoutKeysByName.set(active.toolName, keys);
|
|
1158
|
+
else activeToolTimeoutKeysByName.delete(active.toolName);
|
|
1159
|
+
};
|
|
1160
|
+
const clearActiveToolTimeout = (event: { toolCallId?: unknown; toolName?: unknown }): void => {
|
|
1161
|
+
const key = typeof event.toolCallId === "string" && event.toolCallId.length > 0
|
|
1162
|
+
? `id:${event.toolCallId}`
|
|
1163
|
+
: typeof event.toolName === "string"
|
|
1164
|
+
? activeToolTimeoutKeysByName.get(event.toolName)?.[0]
|
|
1165
|
+
: activeToolTimeouts.size === 1
|
|
1166
|
+
? [...activeToolTimeouts.keys()][0]
|
|
1167
|
+
: undefined;
|
|
1168
|
+
if (key) removeToolTimeoutKey(key);
|
|
1169
|
+
};
|
|
1170
|
+
const clearAllToolTimeouts = (): void => {
|
|
1171
|
+
for (const key of [...activeToolTimeouts.keys()]) removeToolTimeoutKey(key);
|
|
1172
|
+
if (toolTimeoutTerminationTimer) {
|
|
1173
|
+
clearTimeout(toolTimeoutTerminationTimer);
|
|
1174
|
+
toolTimeoutTerminationTimer = undefined;
|
|
1175
|
+
}
|
|
1176
|
+
if (toolTimeoutHardKillTimer) {
|
|
1177
|
+
clearTimeout(toolTimeoutHardKillTimer);
|
|
1178
|
+
toolTimeoutHardKillTimer = undefined;
|
|
1179
|
+
}
|
|
1180
|
+
};
|
|
1181
|
+
const terminateForToolTimeout = (message: string): void => {
|
|
1182
|
+
if (processClosed || lifecycleFinished || interruptedByControl) return;
|
|
1183
|
+
result.timedOut = true;
|
|
1184
|
+
result.error = message;
|
|
1185
|
+
result.finalOutput = message;
|
|
1186
|
+
progress.status = "failed";
|
|
1187
|
+
progress.error = message;
|
|
1188
|
+
progress.durationMs = Date.now() - startTime;
|
|
1189
|
+
fireUpdate();
|
|
1190
|
+
trySignalChild(proc, "SIGINT");
|
|
1191
|
+
toolTimeoutTerminationTimer = setTimeout(() => {
|
|
1192
|
+
if (processClosed || lifecycleFinished) return;
|
|
1193
|
+
trySignalChild(proc, "SIGTERM");
|
|
1194
|
+
}, 1000);
|
|
1195
|
+
toolTimeoutTerminationTimer.unref?.();
|
|
1196
|
+
toolTimeoutHardKillTimer = setTimeout(() => {
|
|
1197
|
+
if (processClosed || lifecycleFinished) return;
|
|
1198
|
+
trySignalChild(proc, "SIGKILL");
|
|
1199
|
+
}, 4000);
|
|
1200
|
+
toolTimeoutHardKillTimer.unref?.();
|
|
1201
|
+
};
|
|
1202
|
+
const armToolTimeout = (event: { toolCallId?: unknown; toolName: string }): void => {
|
|
1203
|
+
const timeoutForTool = effectiveToolTimeoutMs(event.toolName, options.toolTimeoutMs);
|
|
1204
|
+
if (timeoutForTool === undefined) return;
|
|
1205
|
+
const elapsed = Date.now() - startTime;
|
|
1206
|
+
const runRemaining = attemptTimeout ? Math.max(0, attemptTimeout.remainingMs - elapsed) : undefined;
|
|
1207
|
+
if (runRemaining !== undefined && timeoutForTool >= runRemaining) return;
|
|
1208
|
+
const key = toolTimeoutCallKey(event, ++toolTimeoutSequence);
|
|
1209
|
+
const toolName = event.toolName;
|
|
1210
|
+
const timer = setTimeout(() => {
|
|
1211
|
+
removeToolTimeoutKey(key);
|
|
1212
|
+
terminateForToolTimeout(formatToolTimeoutMessage(toolName, timeoutForTool));
|
|
1213
|
+
}, timeoutForTool);
|
|
1214
|
+
timer.unref?.();
|
|
1215
|
+
activeToolTimeouts.set(key, { toolName, timer });
|
|
1216
|
+
const keys = activeToolTimeoutKeysByName.get(toolName) ?? [];
|
|
1217
|
+
keys.push(key);
|
|
1218
|
+
activeToolTimeoutKeysByName.set(toolName, keys);
|
|
1219
|
+
};
|
|
1220
|
+
|
|
1221
|
+
const stderrTail = createBoundedByteTail();
|
|
1222
|
+
const failProtocol = (limit: ProtocolOutputLimit): void => {
|
|
1223
|
+
if (result.protocolError) return;
|
|
1224
|
+
startupTransport?.dispose();
|
|
1225
|
+
result.protocolError = limit;
|
|
1226
|
+
result.error = formatProtocolOutputLimit(limit);
|
|
1227
|
+
progress.status = "failed";
|
|
1228
|
+
progress.error = result.error;
|
|
1229
|
+
progress.durationMs = Date.now() - startTime;
|
|
1230
|
+
fireUpdate();
|
|
1231
|
+
if (!childExited) {
|
|
1232
|
+
trySignalChild(proc, "SIGTERM");
|
|
1233
|
+
protocolHardKillTimer = setTimeout(() => {
|
|
1234
|
+
if (!childExited) trySignalChild(proc, "SIGKILL");
|
|
1235
|
+
}, 3000);
|
|
1236
|
+
protocolHardKillTimer.unref?.();
|
|
1237
|
+
}
|
|
1238
|
+
};
|
|
1239
|
+
const stdoutReader = createBoundedLineReader({
|
|
1240
|
+
oversizedLineProjector: PI_AGGREGATE_EVENT_PROJECTOR,
|
|
1241
|
+
onLine: processLine,
|
|
1242
|
+
onLimit: failProtocol,
|
|
1243
|
+
});
|
|
1244
|
+
const stderrReader = createBoundedLineReader({
|
|
1245
|
+
stream: "stderr",
|
|
1246
|
+
maxPendingLineBytes: MAX_CHILD_STDERR_BYTES,
|
|
1247
|
+
onLine: (line) => shared.transcriptWriter?.writeStderrLine(line),
|
|
1248
|
+
onLimit: (limit) => shared.transcriptWriter?.writeStderrLine(formatProtocolOutputLimit(limit)),
|
|
1249
|
+
});
|
|
1250
|
+
|
|
1251
|
+
const clearStdioGuard = attachPostExitStdioGuard(proc, { idleMs: 2000, hardMs: 8000 });
|
|
1252
|
+
proc.stdout!.on("data", (chunk: Buffer) => stdoutReader.push(chunk));
|
|
1253
|
+
proc.stderr!.on("data", (chunk: Buffer) => {
|
|
1254
|
+
stderrTail.push(chunk);
|
|
1255
|
+
stderrReader.push(chunk);
|
|
1256
|
+
shared.orcaProgressTab?.append(chunk.toString("utf-8"));
|
|
1257
|
+
});
|
|
1258
|
+
proc.on("exit", () => {
|
|
1259
|
+
childExited = true;
|
|
1260
|
+
clearFinalDrainTimers();
|
|
1261
|
+
});
|
|
1262
|
+
proc.on("close", (code, signal) => {
|
|
1263
|
+
if (lifecycleFinished) return;
|
|
1264
|
+
processClosed = true;
|
|
1265
|
+
clearFinalDrainTimers();
|
|
1266
|
+
clearStdioGuard();
|
|
1267
|
+
void jsonlWriter.close().catch(() => {
|
|
1268
|
+
// JSONL artifact flush is best effort.
|
|
1269
|
+
});
|
|
1270
|
+
const toolDiagnosticError = readChildToolDiagnosticError(toolDiagnosticPath);
|
|
1271
|
+
result.runtimeAcknowledgedExtensions = readRuntimeAcknowledgedExtensions(runtimeAcknowledgedExtensionsPath);
|
|
1272
|
+
cleanupTempDir(tempDir);
|
|
1273
|
+
stdoutReader.end();
|
|
1274
|
+
stderrReader.end();
|
|
1275
|
+
startupTransport?.closed();
|
|
1276
|
+
const stderr = stderrTail.text();
|
|
1277
|
+
const rawStdout = rawStdoutTail.text();
|
|
1278
|
+
let closeError = result.error ?? toolDiagnosticError ?? assistantError;
|
|
1279
|
+
const forcedDrainAfterFinalSuccess = Boolean(forcedTerminationSignal || signal) && (cleanTerminalAssistantStopReceived || agentSettledReceived) && !closeError;
|
|
1280
|
+
if (signal) result.processSignal = signal;
|
|
1281
|
+
if (!closeError && isUnexplainedProcessSignal({
|
|
1282
|
+
processSignal: signal,
|
|
1283
|
+
interrupted: result.interrupted,
|
|
1284
|
+
timedOut: result.timedOut,
|
|
1285
|
+
stopped: result.stopped,
|
|
1286
|
+
turnBudgetExceeded: result.turnBudgetExceeded,
|
|
1287
|
+
forcedDrainAfterFinalSuccess,
|
|
1288
|
+
})) {
|
|
1289
|
+
closeError = formatProcessSignalError(signal!);
|
|
1290
|
+
}
|
|
1291
|
+
if (code !== 0 && rawStdout.trim() && !closeError && !forcedDrainAfterFinalSuccess) {
|
|
1292
|
+
closeError = rawStdout.trim();
|
|
1293
|
+
}
|
|
1294
|
+
if (code !== 0 && stderr.trim() && !closeError && !forcedDrainAfterFinalSuccess) {
|
|
1295
|
+
closeError = stderr.trim();
|
|
1296
|
+
}
|
|
1297
|
+
const finalCode = forcedDrainAfterFinalSuccess ? 0 : forcedTerminationSignal || signal ? (code ?? 1) : (code ?? 0);
|
|
1298
|
+
if (!result.error && closeError) result.error = closeError;
|
|
1299
|
+
finish(finalCode);
|
|
1300
|
+
});
|
|
1301
|
+
proc.on("error", (error) => {
|
|
1302
|
+
if (lifecycleFinished) return;
|
|
1303
|
+
processClosed = true;
|
|
1304
|
+
clearFinalDrainTimers();
|
|
1305
|
+
clearStdioGuard();
|
|
1306
|
+
void jsonlWriter.close().catch(() => {
|
|
1307
|
+
// JSONL artifact flush is best effort.
|
|
1308
|
+
});
|
|
1309
|
+
cleanupTempDir(tempDir);
|
|
1310
|
+
stdoutReader.end();
|
|
1311
|
+
stderrReader.end();
|
|
1312
|
+
if (!result.error) {
|
|
1313
|
+
result.error = error instanceof Error ? error.message : String(error);
|
|
1314
|
+
}
|
|
1315
|
+
finish(1);
|
|
1316
|
+
});
|
|
1317
|
+
|
|
1318
|
+
if (startupGate) {
|
|
1319
|
+
startupTransport = createStartupTransport({ stdin: proc.stdin!, token: startupToken!, task,
|
|
1320
|
+
fail(message) {
|
|
1321
|
+
result.error ??= message;
|
|
1322
|
+
progress.error = result.error;
|
|
1323
|
+
progress.status = "failed";
|
|
1324
|
+
if (!childExited) {
|
|
1325
|
+
trySignalChild(proc, "SIGTERM");
|
|
1326
|
+
protocolHardKillTimer = setTimeout(() => { if (!childExited) trySignalChild(proc, "SIGKILL"); }, 3000);
|
|
1327
|
+
protocolHardKillTimer.unref?.();
|
|
1328
|
+
}
|
|
1329
|
+
},
|
|
1330
|
+
});
|
|
1331
|
+
startupTransport.start();
|
|
1332
|
+
}
|
|
1333
|
+
if (options.signal) {
|
|
1334
|
+
const kill = () => {
|
|
1335
|
+
if (processClosed || lifecycleFinished) return;
|
|
1336
|
+
startupTransport?.dispose();
|
|
1337
|
+
proc.kill("SIGTERM");
|
|
1338
|
+
setTimeout(() => !proc.killed && proc.kill("SIGKILL"), 3000);
|
|
1339
|
+
};
|
|
1340
|
+
if (options.signal.aborted) kill();
|
|
1341
|
+
else {
|
|
1342
|
+
options.signal.addEventListener("abort", kill, { once: true });
|
|
1343
|
+
removeAbortListener = () => options.signal?.removeEventListener("abort", kill);
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
if (options.interruptSignal) {
|
|
1348
|
+
const interrupt = () => {
|
|
1349
|
+
if (processClosed || lifecycleFinished) return;
|
|
1350
|
+
if (result.timedOut) return;
|
|
1351
|
+
interruptedByControl = true;
|
|
1352
|
+
startupTransport?.dispose();
|
|
1353
|
+
clearTimeoutTimers();
|
|
1354
|
+
clearAllToolTimeouts();
|
|
1355
|
+
progress.status = "running";
|
|
1356
|
+
progress.durationMs = Date.now() - startTime;
|
|
1357
|
+
result.interrupted = true;
|
|
1358
|
+
result.finalOutput = "Interrupted. Waiting for explicit next action.";
|
|
1359
|
+
progress.activityState = undefined;
|
|
1360
|
+
fireUpdate();
|
|
1361
|
+
trySignalChild(proc, "SIGINT");
|
|
1362
|
+
setTimeout(() => {
|
|
1363
|
+
if (lifecycleFinished || processClosed) return;
|
|
1364
|
+
trySignalChild(proc, "SIGTERM");
|
|
1365
|
+
}, 1000).unref?.();
|
|
1366
|
+
};
|
|
1367
|
+
if (options.interruptSignal.aborted) interrupt();
|
|
1368
|
+
else {
|
|
1369
|
+
options.interruptSignal.addEventListener("abort", interrupt, { once: true });
|
|
1370
|
+
removeInterruptListener = () => options.interruptSignal?.removeEventListener("abort", interrupt);
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
// Publish only after every callback and cleanup guard captured by detach or
|
|
1375
|
+
// later lifecycle events has initialized. Consumers may invoke synchronously.
|
|
1376
|
+
try {
|
|
1377
|
+
options.onDetachReady?.((reason = "user request") => detachForeground(reason));
|
|
1378
|
+
} catch (error) {
|
|
1379
|
+
// A consumer callback is advisory. Keep the child attached and observable
|
|
1380
|
+
// rather than rejecting this attempt and orphaning its live process.
|
|
1381
|
+
appendRecentOutput(progress, [`Foreground detach callback failed: ${error instanceof Error ? error.message : String(error)}`]);
|
|
1382
|
+
}
|
|
1383
|
+
});
|
|
1384
|
+
result.exitCode = exitCode;
|
|
1385
|
+
if (interruptedByControl) {
|
|
1386
|
+
result.exitCode = 0;
|
|
1387
|
+
result.interrupted = true;
|
|
1388
|
+
result.error = undefined;
|
|
1389
|
+
result.finalOutput = result.finalOutput || "Interrupted. Waiting for explicit next action.";
|
|
1390
|
+
result.controlEvents = allControlEvents.length ? allControlEvents : undefined;
|
|
1391
|
+
progress.activityState = undefined;
|
|
1392
|
+
progress.durationMs = Date.now() - startTime;
|
|
1393
|
+
result.progressSummary = {
|
|
1394
|
+
toolCount: progress.toolCount,
|
|
1395
|
+
tokens: progress.tokens,
|
|
1396
|
+
durationMs: progress.durationMs,
|
|
1397
|
+
};
|
|
1398
|
+
return result;
|
|
1399
|
+
}
|
|
1400
|
+
result.error = formatSubagentExtensionConflictError(result.error, {
|
|
1401
|
+
agent: agent.name,
|
|
1402
|
+
ambientExtensionsEnabled: !launchResolvedExtensions.disableAmbientExtensions,
|
|
1403
|
+
});
|
|
1404
|
+
if (result.error && result.exitCode === 0) {
|
|
1405
|
+
result.exitCode = 1;
|
|
1406
|
+
}
|
|
1407
|
+
let validatedStructuredOutput = false;
|
|
1408
|
+
if (options.structuredOutput && result.exitCode === 0 && !result.error) {
|
|
1409
|
+
result.structuredOutputSchemaPath = options.structuredOutput.schemaPath;
|
|
1410
|
+
result.structuredOutputPath = options.structuredOutput.outputPath;
|
|
1411
|
+
if (!structuredOutputToolInvoked) {
|
|
1412
|
+
result.exitCode = 1;
|
|
1413
|
+
result.error = MISSING_STRUCTURED_OUTPUT_CALL_ERROR;
|
|
1414
|
+
result.structuredOutputFailed = true;
|
|
1415
|
+
} else {
|
|
1416
|
+
const structured = await readStructuredOutput({
|
|
1417
|
+
schema: options.structuredOutput.schema,
|
|
1418
|
+
schemaPath: options.structuredOutput.schemaPath,
|
|
1419
|
+
outputPath: options.structuredOutput.outputPath,
|
|
1420
|
+
});
|
|
1421
|
+
if (structured.error) {
|
|
1422
|
+
result.exitCode = 1;
|
|
1423
|
+
result.error = structured.error;
|
|
1424
|
+
result.structuredOutputFailed = true;
|
|
1425
|
+
} else {
|
|
1426
|
+
result.structuredOutput = structured.value;
|
|
1427
|
+
validatedStructuredOutput = true;
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
}
|
|
1431
|
+
if (result.exitCode === 0 && !result.error) {
|
|
1432
|
+
const messages = result.messages ?? [];
|
|
1433
|
+
const finalText = getFinalOutput(messages);
|
|
1434
|
+
const errorMessages = validatedStructuredOutput
|
|
1435
|
+
? messages.slice(structuredOutputMessageStartIndex ?? messages.length)
|
|
1436
|
+
: messages;
|
|
1437
|
+
const errInfo = detectSubagentError(errorMessages);
|
|
1438
|
+
const missingOutput = !finalText?.trim() && !validatedStructuredOutput;
|
|
1439
|
+
if (missingOutput && (!errInfo.hasError || hasEmptyTerminalAssistantResponse(messages))) {
|
|
1440
|
+
result.exitCode = 1;
|
|
1441
|
+
result.error = "Subagent produced no output (possible model cold-start or empty response).";
|
|
1442
|
+
} else if (errInfo.hasError) {
|
|
1443
|
+
result.exitCode = errInfo.exitCode ?? 1;
|
|
1444
|
+
result.error = errInfo.details
|
|
1445
|
+
? `${errInfo.errorType} failed (exit ${errInfo.exitCode}): ${errInfo.details}`
|
|
1446
|
+
: `${errInfo.errorType} failed with exit code ${errInfo.exitCode}`;
|
|
1447
|
+
}
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
progress.status = result.exitCode === 0 ? "completed" : "failed";
|
|
1451
|
+
progress.durationMs = Date.now() - startTime;
|
|
1452
|
+
if (result.error) {
|
|
1453
|
+
progress.error = result.error;
|
|
1454
|
+
if (progress.currentTool) {
|
|
1455
|
+
progress.failedTool = progress.currentTool;
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
result.progressSummary = {
|
|
1460
|
+
toolCount: progress.toolCount,
|
|
1461
|
+
tokens: progress.tokens,
|
|
1462
|
+
durationMs: progress.durationMs,
|
|
1463
|
+
};
|
|
1464
|
+
|
|
1465
|
+
const acceptanceOutput = getFinalOutput(result.messages ?? []);
|
|
1466
|
+
let fullOutput = stripAcceptanceReport(acceptanceOutput);
|
|
1467
|
+
if (!fullOutput.trim() && result.structuredOutput !== undefined) fullOutput = JSON.stringify(result.structuredOutput, null, 2);
|
|
1468
|
+
result.outputState = fullOutput.trim() || result.structuredOutput !== undefined ? "present" : "absent";
|
|
1469
|
+
if (result.timedOut) {
|
|
1470
|
+
const timeoutMessage = formatTimeoutMessage(options.timeoutMs ?? 0);
|
|
1471
|
+
fullOutput = fullOutput.trim()
|
|
1472
|
+
? `${timeoutMessage}\n\nPartial output before timeout:\n${fullOutput}`
|
|
1473
|
+
: timeoutMessage;
|
|
1474
|
+
} else if (result.turnBudgetExceeded && result.turnBudget) {
|
|
1475
|
+
fullOutput = formatTurnBudgetOutput(turnBudgetExceededMessage(result.turnBudget, result.turnBudget.turnCount), fullOutput);
|
|
1476
|
+
} else if (result.turnBudget?.outcome === "termination-deferred") {
|
|
1477
|
+
const note = turnBudgetDeferredNote(result.turnBudget, result.turnBudget.terminationDeferredAtTurn ?? result.turnBudget.turnCount);
|
|
1478
|
+
fullOutput = fullOutput.trim() ? `${note}\n\n${fullOutput}` : note;
|
|
1479
|
+
} else if (result.wrapUpRequested && result.turnBudget?.outcome === "wrap-up-requested") {
|
|
1480
|
+
const note = turnBudgetSoftNote(result.turnBudget, result.turnBudget.wrapUpRequestedAtTurn ?? result.turnBudget.turnCount);
|
|
1481
|
+
fullOutput = fullOutput.trim() ? `${note}\n\n${fullOutput}` : note;
|
|
1482
|
+
}
|
|
1483
|
+
const completionGuardEnabled = isAgentContractV1(options.agentContract) ? agent.completionGuard === true : agent.completionGuard !== false;
|
|
1484
|
+
const completionGuard = result.exitCode === 0 && !result.error && completionGuardEnabled
|
|
1485
|
+
? evaluateCompletionMutationGuard({
|
|
1486
|
+
agent: agent.name,
|
|
1487
|
+
task: shared.originalTask ?? task,
|
|
1488
|
+
messages: result.messages ?? [],
|
|
1489
|
+
tools: agent.tools,
|
|
1490
|
+
mcpDirectTools: agent.mcpDirectTools,
|
|
1491
|
+
})
|
|
1492
|
+
: undefined;
|
|
1493
|
+
let completionGuardTriggered = completionGuard?.triggered === true && !observedMutationAttempt;
|
|
1494
|
+
// The classifier is deliberately narrow, so a read-only review task can
|
|
1495
|
+
// still be misread as implementation. Arbitrate BEFORE any failure side
|
|
1496
|
+
// effect is published (effects, exit code, progress, notifications,
|
|
1497
|
+
// acceptance, output persistence): only a confident read-only verdict
|
|
1498
|
+
// rescues, and the task text alone is evidence — never the child's own
|
|
1499
|
+
// final message.
|
|
1500
|
+
let arbiterRescued = false;
|
|
1501
|
+
if (completionGuardTriggered) {
|
|
1502
|
+
const arbitration = await arbitrateCompletionGuardRescue({
|
|
1503
|
+
guardTriggered: true,
|
|
1504
|
+
task: shared.originalTask ?? task,
|
|
1505
|
+
arbiter: options.llmIntentArbiter,
|
|
1506
|
+
});
|
|
1507
|
+
completionGuardTriggered = arbitration.triggered;
|
|
1508
|
+
arbiterRescued = arbitration.rescued;
|
|
1509
|
+
}
|
|
1510
|
+
if (completionGuard) {
|
|
1511
|
+
result.effects = {
|
|
1512
|
+
...(result.effects ?? {}),
|
|
1513
|
+
fileMutation: {
|
|
1514
|
+
status: completionGuard.expectedMutation
|
|
1515
|
+
? completionGuardTriggered
|
|
1516
|
+
? "missing"
|
|
1517
|
+
: arbiterRescued
|
|
1518
|
+
? "not-applicable"
|
|
1519
|
+
: "observed"
|
|
1520
|
+
: "not-applicable",
|
|
1521
|
+
expected: completionGuard.expectedMutation,
|
|
1522
|
+
attempted: completionGuard.attemptedMutation || observedMutationAttempt,
|
|
1523
|
+
...(completionGuardTriggered ? { message: "Subagent completed without making edits for an implementation task." } : {}),
|
|
1524
|
+
...(arbiterRescued ? { resolvedBy: "llm-intent-arbiter" } : {}),
|
|
1525
|
+
},
|
|
1526
|
+
};
|
|
1527
|
+
}
|
|
1528
|
+
if (completionGuardTriggered && !isAgentContractV1(options.agentContract)) {
|
|
1529
|
+
result.exitCode = 1;
|
|
1530
|
+
result.error = "Subagent completed without making edits for an implementation task.\nIt appears to have returned planning or scratchpad output instead of applying changes.";
|
|
1531
|
+
progress.status = "failed";
|
|
1532
|
+
progress.error = result.error;
|
|
1533
|
+
emitControlEvent(buildControlEvent({
|
|
1534
|
+
from: progress.activityState,
|
|
1535
|
+
to: "needs_attention",
|
|
1536
|
+
runId: options.runId ?? agent.name,
|
|
1537
|
+
agent: agent.name,
|
|
1538
|
+
index: options.index,
|
|
1539
|
+
ts: Date.now(),
|
|
1540
|
+
message: `${agent.name} completed without making edits for an implementation task`,
|
|
1541
|
+
reason: "completion_guard",
|
|
1542
|
+
}));
|
|
1543
|
+
}
|
|
1544
|
+
if (options.outputPath && result.exitCode === 0) {
|
|
1545
|
+
const resolvedOutput = resolveSingleOutput(options.outputPath, fullOutput, shared.outputSnapshot);
|
|
1546
|
+
fullOutput = stripAcceptanceReport(resolvedOutput.fullOutput);
|
|
1547
|
+
result.savedOutputPath = resolvedOutput.savedPath;
|
|
1548
|
+
result.outputSaveError = resolvedOutput.saveError;
|
|
1549
|
+
if (resolvedOutput.savedPath) {
|
|
1550
|
+
result.outputReference = formatSavedOutputReference(resolvedOutput.savedPath, fullOutput);
|
|
1551
|
+
if (result.outputState === "absent") result.outputState = "unknown";
|
|
1552
|
+
}
|
|
1553
|
+
}
|
|
1554
|
+
artifactOutputByResult.set(result, fullOutput);
|
|
1555
|
+
acceptanceOutputByResult.set(result, acceptanceOutput);
|
|
1556
|
+
result.outputMode = options.outputMode ?? "inline";
|
|
1557
|
+
result.finalOutput = options.outputMode === "file-only" && result.savedOutputPath && result.outputReference
|
|
1558
|
+
? result.outputReference.message
|
|
1559
|
+
: fullOutput;
|
|
1560
|
+
result.controlEvents = allControlEvents.length ? allControlEvents : undefined;
|
|
1561
|
+
if (options.onUpdate) {
|
|
1562
|
+
const finalText = result.finalOutput || result.error || "(no output)";
|
|
1563
|
+
const progressSnapshot = snapshotProgress(progress);
|
|
1564
|
+
const resultSnapshot = snapshotStreamResult(result, progressSnapshot);
|
|
1565
|
+
options.onUpdate({
|
|
1566
|
+
content: [{ type: "text", text: finalText }],
|
|
1567
|
+
details: {
|
|
1568
|
+
mode: "single",
|
|
1569
|
+
results: [resultSnapshot],
|
|
1570
|
+
progress: [progressSnapshot],
|
|
1571
|
+
controlEvents: allControlEvents.length ? allControlEvents : undefined,
|
|
1572
|
+
},
|
|
1573
|
+
});
|
|
1574
|
+
}
|
|
1575
|
+
return result;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
/**
|
|
1579
|
+
* Run a subagent synchronously (blocking until complete)
|
|
1580
|
+
*/
|
|
1581
|
+
async function runSyncCompletionInner(
|
|
1582
|
+
runtimeCwd: string,
|
|
1583
|
+
agents: AgentConfig[],
|
|
1584
|
+
agentName: string,
|
|
1585
|
+
task: string,
|
|
1586
|
+
options: RunSyncOptions,
|
|
1587
|
+
): Promise<SingleResult> {
|
|
1588
|
+
options = {
|
|
1589
|
+
...options,
|
|
1590
|
+
capabilityCeiling: intersectSubagentCapabilityCeilings(options.capabilityCeiling ?? resolveCurrentSubagentCapabilityCeiling(options.parentSessionId), decodeSubagentCapabilityCeiling(process.env[SUBAGENT_CAPABILITY_CEILING_ENV])),
|
|
1591
|
+
};
|
|
1592
|
+
const agent = agents.find((a) => a.name === agentName);
|
|
1593
|
+
if (!agent) {
|
|
1594
|
+
return redactResultPrompt(withRunContext({
|
|
1595
|
+
index: options.index ?? 0,
|
|
1596
|
+
agent: agentName,
|
|
1597
|
+
task,
|
|
1598
|
+
exitCode: 1,
|
|
1599
|
+
messages: [],
|
|
1600
|
+
usage: emptyUsage(),
|
|
1601
|
+
error: `Unknown agent: ${agentName}`,
|
|
1602
|
+
}, options.context));
|
|
1603
|
+
}
|
|
1604
|
+
try {
|
|
1605
|
+
assertAgentAllowedByCapabilityCeiling(agent.name, options.capabilityCeiling);
|
|
1606
|
+
} catch (error) {
|
|
1607
|
+
return redactResultPrompt(withRunContext({
|
|
1608
|
+
index: options.index ?? 0,
|
|
1609
|
+
agent: agent.name,
|
|
1610
|
+
task,
|
|
1611
|
+
exitCode: 1,
|
|
1612
|
+
messages: [],
|
|
1613
|
+
usage: emptyUsage(),
|
|
1614
|
+
error: error instanceof Error ? error.message : String(error),
|
|
1615
|
+
...(options.capabilityCeiling ? { capabilityCeiling: options.capabilityCeiling } : {}),
|
|
1616
|
+
}, options.context));
|
|
1617
|
+
}
|
|
1618
|
+
const acceptanceErrors = validateAcceptanceInput(options.acceptance);
|
|
1619
|
+
if (acceptanceErrors.length > 0) {
|
|
1620
|
+
return redactResultPrompt(withRunContext({
|
|
1621
|
+
index: options.index ?? 0,
|
|
1622
|
+
agent: agentName,
|
|
1623
|
+
task,
|
|
1624
|
+
exitCode: 1,
|
|
1625
|
+
messages: [],
|
|
1626
|
+
usage: emptyUsage(),
|
|
1627
|
+
error: acceptanceErrors.join(" "),
|
|
1628
|
+
}, options.context));
|
|
1629
|
+
}
|
|
1630
|
+
const toolTimeout = resolveToolTimeoutMs({
|
|
1631
|
+
callValue: options.toolTimeoutMs,
|
|
1632
|
+
agentValue: agent.defaultToolTimeoutMs,
|
|
1633
|
+
configValue: options.configToolTimeoutMs,
|
|
1634
|
+
envValue: toolTimeoutFromEnv(),
|
|
1635
|
+
});
|
|
1636
|
+
if (toolTimeout.error) {
|
|
1637
|
+
return redactResultPrompt(withRunContext({
|
|
1638
|
+
index: options.index ?? 0,
|
|
1639
|
+
agent: agentName,
|
|
1640
|
+
task,
|
|
1641
|
+
exitCode: 1,
|
|
1642
|
+
messages: [],
|
|
1643
|
+
usage: emptyUsage(),
|
|
1644
|
+
error: toolTimeout.error,
|
|
1645
|
+
}, options.context));
|
|
1646
|
+
}
|
|
1647
|
+
options = { ...options, toolTimeoutMs: toolTimeout.toolTimeoutMs };
|
|
1648
|
+
const outputModeValidationError = validateFileOnlyOutputMode(options.outputMode, options.outputPath, `Single run (${agentName})`);
|
|
1649
|
+
if (outputModeValidationError) {
|
|
1650
|
+
return redactResultPrompt(withRunContext({
|
|
1651
|
+
index: options.index ?? 0,
|
|
1652
|
+
agent: agentName,
|
|
1653
|
+
task,
|
|
1654
|
+
exitCode: 1,
|
|
1655
|
+
messages: [],
|
|
1656
|
+
usage: emptyUsage(),
|
|
1657
|
+
outputMode: options.outputMode,
|
|
1658
|
+
error: outputModeValidationError,
|
|
1659
|
+
}, options.context));
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
const shareEnabled = options.share === true;
|
|
1663
|
+
const effectiveAcceptance = resolveEffectiveAcceptance({
|
|
1664
|
+
explicit: options.acceptance,
|
|
1665
|
+
agentName,
|
|
1666
|
+
acceptanceRole: agent.acceptanceRole,
|
|
1667
|
+
task,
|
|
1668
|
+
mode: options.acceptanceContext?.mode ?? "single",
|
|
1669
|
+
async: options.acceptanceContext?.async,
|
|
1670
|
+
dynamic: options.acceptanceContext?.dynamic,
|
|
1671
|
+
dynamicGroup: options.acceptanceContext?.dynamicGroup,
|
|
1672
|
+
agentContract: options.agentContract,
|
|
1673
|
+
});
|
|
1674
|
+
const acceptancePrompt = formatAcceptancePrompt(effectiveAcceptance, { reportOptional: isAgentContractV1(options.agentContract) });
|
|
1675
|
+
const taskWithAcceptance = acceptancePrompt ? `${task}\n${acceptancePrompt}` : task;
|
|
1676
|
+
options.onEffectivePrompt?.(taskWithAcceptance);
|
|
1677
|
+
const sessionEnabled = Boolean(options.sessionFile || options.sessionDir) || shareEnabled;
|
|
1678
|
+
if (options.context === "fork" && options.sessionFile && existsSync(options.sessionFile)) {
|
|
1679
|
+
alignForkedSessionCwd(options.sessionFile, options.cwd ?? runtimeCwd);
|
|
1680
|
+
}
|
|
1681
|
+
const skillNames = options.skills ?? agent.skills ?? [];
|
|
1682
|
+
const skillCwd = options.cwd ?? runtimeCwd;
|
|
1683
|
+
const { resolved: resolvedSkills, missing: missingSkills } = resolveSkillsWithFallback(
|
|
1684
|
+
skillNames,
|
|
1685
|
+
skillCwd,
|
|
1686
|
+
runtimeCwd,
|
|
1687
|
+
agent.skillPath,
|
|
1688
|
+
agent.filePath ? path.dirname(agent.filePath) : skillCwd,
|
|
1689
|
+
);
|
|
1690
|
+
if (skillNames.some((skill) => skill.trim() === "pi-subagents") && missingSkills.includes("pi-subagents")) {
|
|
1691
|
+
return redactResultPrompt(withRunContext({
|
|
1692
|
+
index: options.index ?? 0,
|
|
1693
|
+
agent: agentName,
|
|
1694
|
+
task,
|
|
1695
|
+
exitCode: 1,
|
|
1696
|
+
messages: [],
|
|
1697
|
+
usage: emptyUsage(),
|
|
1698
|
+
error: "Skills not found: pi-subagents",
|
|
1699
|
+
}, options.context));
|
|
1700
|
+
}
|
|
1701
|
+
let systemPrompt = agent.systemPrompt?.trim() || "";
|
|
1702
|
+
if (resolvedSkills.length > 0) {
|
|
1703
|
+
const skillInjection = buildSkillInjection(resolvedSkills);
|
|
1704
|
+
systemPrompt = systemPrompt ? `${systemPrompt}\n\n${skillInjection}` : skillInjection;
|
|
1705
|
+
}
|
|
1706
|
+
const memoryInjection = buildAgentMemoryInjection(agent, skillCwd);
|
|
1707
|
+
if (memoryInjection) {
|
|
1708
|
+
systemPrompt = systemPrompt ? `${systemPrompt}\n\n${memoryInjection}` : memoryInjection;
|
|
1709
|
+
}
|
|
1710
|
+
systemPrompt = appendAgentRefinementOverlay(systemPrompt, { cwd: skillCwd, agentName });
|
|
1711
|
+
systemPrompt = injectOutputPathSystemPrompt(systemPrompt, options.outputPath, agent);
|
|
1712
|
+
|
|
1713
|
+
const candidates = buildModelCandidates(
|
|
1714
|
+
options.modelOverride ?? agent.model,
|
|
1715
|
+
agent.fallbackModels,
|
|
1716
|
+
options.availableModels,
|
|
1717
|
+
options.preferredModelProvider,
|
|
1718
|
+
{ scope: options.modelScope, primaryModelFromParent: options.modelOverrideFromParent },
|
|
1719
|
+
);
|
|
1720
|
+
const attemptedModels: string[] = [];
|
|
1721
|
+
const modelAttempts: ModelAttempt[] = [];
|
|
1722
|
+
const aggregateUsage = emptyUsage();
|
|
1723
|
+
const attemptNotes: string[] = [];
|
|
1724
|
+
let totalToolCount = 0;
|
|
1725
|
+
let totalDurationMs = 0;
|
|
1726
|
+
|
|
1727
|
+
let artifactPathsResult: ArtifactPaths | undefined;
|
|
1728
|
+
let jsonlPath: string | undefined;
|
|
1729
|
+
let transcriptWriter: ChildTranscriptWriter | undefined;
|
|
1730
|
+
if (options.artifactsDir && options.artifactConfig?.enabled !== false) {
|
|
1731
|
+
artifactPathsResult = getArtifactPaths(options.artifactsDir, options.runId, agentName, options.index);
|
|
1732
|
+
ensureArtifactsDir(options.artifactsDir);
|
|
1733
|
+
if (options.artifactConfig?.includeInput !== false) {
|
|
1734
|
+
writeArtifact(artifactPathsResult.inputPath, `# Task for ${agentName}\n\n${PROMPT_REDACTED}; live Prompt Audit only.\n`);
|
|
1735
|
+
}
|
|
1736
|
+
if (options.artifactConfig?.includeJsonl !== false) {
|
|
1737
|
+
jsonlPath = artifactPathsResult.jsonlPath;
|
|
1738
|
+
}
|
|
1739
|
+
if (options.artifactConfig?.includeTranscript !== false) {
|
|
1740
|
+
transcriptWriter = createChildTranscriptWriter({
|
|
1741
|
+
transcriptPath: artifactPathsResult.transcriptPath,
|
|
1742
|
+
source: "foreground",
|
|
1743
|
+
runId: options.runId,
|
|
1744
|
+
agent: agentName,
|
|
1745
|
+
childIndex: options.index,
|
|
1746
|
+
cwd: options.cwd ?? runtimeCwd,
|
|
1747
|
+
});
|
|
1748
|
+
transcriptWriter.writeInitialUserMessage(`${PROMPT_REDACTED}; live Prompt Audit only.`);
|
|
1749
|
+
}
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
const orcaProgressTab = createOrcaProgressTab({
|
|
1753
|
+
cwd: options.cwd ?? runtimeCwd,
|
|
1754
|
+
runId: options.runId,
|
|
1755
|
+
agent: agentName,
|
|
1756
|
+
index: options.index ?? 0,
|
|
1757
|
+
});
|
|
1758
|
+
if (orcaProgressTab) options.onOrcaProgressTabCreated?.(orcaProgressTab);
|
|
1759
|
+
|
|
1760
|
+
const persistResultMetadata = (target: SingleResult): void => {
|
|
1761
|
+
persistSingleResultMetadata({
|
|
1762
|
+
metadataPath: artifactPathsResult?.metadataPath,
|
|
1763
|
+
enabled: options.artifactConfig?.enabled !== false && options.artifactConfig?.includeMetadata !== false,
|
|
1764
|
+
runId: options.runId,
|
|
1765
|
+
agent: agentName,
|
|
1766
|
+
task,
|
|
1767
|
+
result: target,
|
|
1768
|
+
});
|
|
1769
|
+
};
|
|
1770
|
+
|
|
1771
|
+
let intercomDetached = false;
|
|
1772
|
+
let detachedReason: string | undefined;
|
|
1773
|
+
const attemptOptions: RunSyncOptions = {
|
|
1774
|
+
...options,
|
|
1775
|
+
onDetachReceipt: (receipt) => {
|
|
1776
|
+
receipt.acceptance = buildPendingAcceptanceLedger(effectiveAcceptance);
|
|
1777
|
+
try {
|
|
1778
|
+
persistResultMetadata(receipt);
|
|
1779
|
+
} catch (error) {
|
|
1780
|
+
receipt.metadataSaveError = error instanceof Error ? error.message : String(error);
|
|
1781
|
+
}
|
|
1782
|
+
const accepted = options.onDetachReceipt?.(receipt) === true;
|
|
1783
|
+
if (accepted) {
|
|
1784
|
+
detachedReason = receipt.detachedReason;
|
|
1785
|
+
if (receipt.detachedReason === "intercom coordination") intercomDetached = true;
|
|
1786
|
+
}
|
|
1787
|
+
return accepted;
|
|
1788
|
+
},
|
|
1789
|
+
};
|
|
1790
|
+
let lastResult: SingleResult | undefined;
|
|
1791
|
+
const modelsToTry = candidates.length > 0 ? candidates : [undefined];
|
|
1792
|
+
// Escalated to "file" after an unexplained zero-activity startup failure so
|
|
1793
|
+
// retries keep the task text out of argv (endpoint pre-exec scans may deny it).
|
|
1794
|
+
let taskDeliveryOverride: SubagentTaskDelivery | undefined;
|
|
1795
|
+
modelAttemptsLoop: for (let modelIndex = 0; modelIndex < modelsToTry.length; modelIndex++) {
|
|
1796
|
+
const candidate = modelsToTry[modelIndex];
|
|
1797
|
+
for (let startupAttemptIndex = 0; ; startupAttemptIndex++) {
|
|
1798
|
+
const outputSnapshot = captureSingleOutputSnapshot(options.outputPath);
|
|
1799
|
+
const result = await runSingleAttempt(runtimeCwd, agent, taskWithAcceptance, candidate, attemptOptions, {
|
|
1800
|
+
sessionEnabled,
|
|
1801
|
+
systemPrompt,
|
|
1802
|
+
resolvedSkillNames: resolvedSkills.length > 0 ? resolvedSkills.map((skill) => skill.name) : undefined,
|
|
1803
|
+
skillsWarning: missingSkills.length > 0 ? `Skills not found: ${missingSkills.join(", ")}` : undefined,
|
|
1804
|
+
jsonlPath,
|
|
1805
|
+
artifactPaths: artifactPathsResult,
|
|
1806
|
+
transcriptWriter,
|
|
1807
|
+
attemptNotes,
|
|
1808
|
+
modelCandidates: candidates
|
|
1809
|
+
.map((modelCandidate) => applyThinkingSuffix(modelCandidate, options.thinkingOverride ?? agent.thinking, options.thinkingOverride !== undefined))
|
|
1810
|
+
.filter((modelCandidate): modelCandidate is string => Boolean(modelCandidate)),
|
|
1811
|
+
outputSnapshot,
|
|
1812
|
+
originalTask: task,
|
|
1813
|
+
taskDelivery: taskDeliveryOverride,
|
|
1814
|
+
orcaProgressTab,
|
|
1815
|
+
});
|
|
1816
|
+
lastResult = result;
|
|
1817
|
+
if (startupAttemptIndex === 0) {
|
|
1818
|
+
if (result.model) attemptedModels.push(result.model);
|
|
1819
|
+
else if (candidate) attemptedModels.push(candidate);
|
|
1820
|
+
}
|
|
1821
|
+
sumUsage(aggregateUsage, result.usage);
|
|
1822
|
+
totalToolCount += result.progressSummary?.toolCount ?? 0;
|
|
1823
|
+
totalDurationMs += result.progressSummary?.durationMs ?? 0;
|
|
1824
|
+
const attemptSucceeded = result.exitCode === 0 && !result.error;
|
|
1825
|
+
const attempt: ModelAttempt = {
|
|
1826
|
+
model: result.model ?? candidate ?? agent.model ?? "default",
|
|
1827
|
+
success: attemptSucceeded,
|
|
1828
|
+
exitCode: result.exitCode,
|
|
1829
|
+
error: result.error,
|
|
1830
|
+
usage: { ...result.usage },
|
|
1831
|
+
};
|
|
1832
|
+
modelAttempts.push(attempt);
|
|
1833
|
+
// Preserve the legacy intercom handoff contract: once this logical run has
|
|
1834
|
+
// been handed to a supervisor, terminating that attempt must not launch a
|
|
1835
|
+
// startup retry or model fallback. Explicit user detach retains fallback.
|
|
1836
|
+
if (intercomDetached || result.timedOut || result.turnBudgetExceeded) break modelAttemptsLoop;
|
|
1837
|
+
if (attemptSucceeded) break modelAttemptsLoop;
|
|
1838
|
+
|
|
1839
|
+
const startupFailure = isRetryableSubagentStartupFailure({
|
|
1840
|
+
exitCode: result.exitCode,
|
|
1841
|
+
error: result.error,
|
|
1842
|
+
finalOutput: result.finalOutput,
|
|
1843
|
+
messageCount: result.messages?.length ?? 0,
|
|
1844
|
+
toolCount: result.progressSummary?.toolCount ?? 0,
|
|
1845
|
+
usage: result.usage,
|
|
1846
|
+
durationMs: result.progressSummary?.durationMs ?? Number.POSITIVE_INFINITY,
|
|
1847
|
+
protocolError: result.protocolError,
|
|
1848
|
+
processSignal: result.processSignal,
|
|
1849
|
+
detached: result.detached,
|
|
1850
|
+
interrupted: result.interrupted,
|
|
1851
|
+
timedOut: result.timedOut,
|
|
1852
|
+
stopped: result.stopped,
|
|
1853
|
+
turnBudgetExceeded: result.turnBudgetExceeded,
|
|
1854
|
+
});
|
|
1855
|
+
// A lost RPC response cannot authorize a second task dispatch or model fallback.
|
|
1856
|
+
if (process.env[STARTUP_GATE_ENV] === "1") break modelAttemptsLoop;
|
|
1857
|
+
const retryDelayMs = SUBAGENT_STARTUP_RETRY_DELAYS_MS[startupAttemptIndex];
|
|
1858
|
+
if (startupFailure && retryDelayMs !== undefined) {
|
|
1859
|
+
const retryNote = formatSubagentStartupRetryNote({
|
|
1860
|
+
model: attempt.model,
|
|
1861
|
+
attempt: startupAttemptIndex + 1,
|
|
1862
|
+
maxAttempts: SUBAGENT_STARTUP_RETRY_DELAYS_MS.length + 1,
|
|
1863
|
+
delayMs: retryDelayMs,
|
|
1864
|
+
});
|
|
1865
|
+
const shouldRetry = await waitForSubagentStartupRetry(retryDelayMs, [options.signal, options.interruptSignal]);
|
|
1866
|
+
if (!shouldRetry) {
|
|
1867
|
+
if (options.interruptSignal?.aborted) {
|
|
1868
|
+
result.exitCode = 0;
|
|
1869
|
+
result.interrupted = true;
|
|
1870
|
+
result.error = undefined;
|
|
1871
|
+
result.finalOutput = "Interrupted. Waiting for explicit next action.";
|
|
1872
|
+
if (result.progress) {
|
|
1873
|
+
result.progress.status = "running";
|
|
1874
|
+
result.progress.error = undefined;
|
|
1875
|
+
}
|
|
1876
|
+
} else {
|
|
1877
|
+
const cancellationError = "Subagent startup retry cancelled before relaunch.";
|
|
1878
|
+
result.error = cancellationError;
|
|
1879
|
+
result.finalOutput = cancellationError;
|
|
1880
|
+
attempt.error = cancellationError;
|
|
1881
|
+
if (result.progress) result.progress.error = cancellationError;
|
|
1882
|
+
}
|
|
1883
|
+
break modelAttemptsLoop;
|
|
1884
|
+
}
|
|
1885
|
+
if (!taskDeliveryOverride && result.processSignal === "SIGKILL") {
|
|
1886
|
+
taskDeliveryOverride = "file";
|
|
1887
|
+
attemptNotes.push("[startup-retry] retrying with file task delivery to keep the task text out of the child process argv.");
|
|
1888
|
+
}
|
|
1889
|
+
attempt.error = retryNote;
|
|
1890
|
+
attemptNotes.push(retryNote);
|
|
1891
|
+
continue;
|
|
1892
|
+
}
|
|
1893
|
+
if (startupFailure) {
|
|
1894
|
+
const startupError = formatSubagentStartupRetryExhaustedError({
|
|
1895
|
+
model: attempt.model,
|
|
1896
|
+
attempts: startupAttemptIndex + 1,
|
|
1897
|
+
});
|
|
1898
|
+
result.error = startupError;
|
|
1899
|
+
result.finalOutput = startupError;
|
|
1900
|
+
if (result.progress) {
|
|
1901
|
+
result.progress.error = startupError;
|
|
1902
|
+
result.progress.status = "failed";
|
|
1903
|
+
}
|
|
1904
|
+
attempt.error = startupError;
|
|
1905
|
+
break modelAttemptsLoop;
|
|
1906
|
+
}
|
|
1907
|
+
if (!isRetryableModelFailure(result.error) || modelIndex === modelsToTry.length - 1) break modelAttemptsLoop;
|
|
1908
|
+
attemptNotes.push(formatModelAttemptNote(attempt, modelsToTry[modelIndex + 1]));
|
|
1909
|
+
break;
|
|
1910
|
+
}
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
const result = withRunContext(lastResult ?? {
|
|
1914
|
+
index: options.index ?? 0,
|
|
1915
|
+
agent: agentName,
|
|
1916
|
+
task,
|
|
1917
|
+
exitCode: 1,
|
|
1918
|
+
messages: [],
|
|
1919
|
+
usage: emptyUsage(),
|
|
1920
|
+
error: "Subagent did not produce a result.",
|
|
1921
|
+
} satisfies SingleResult, options.context);
|
|
1922
|
+
|
|
1923
|
+
result.usage = aggregateUsage;
|
|
1924
|
+
result.attemptedModels = attemptedModels.length > 0 ? attemptedModels : undefined;
|
|
1925
|
+
result.modelAttempts = modelAttempts.length > 0 ? modelAttempts : undefined;
|
|
1926
|
+
result.progressSummary = {
|
|
1927
|
+
toolCount: totalToolCount,
|
|
1928
|
+
tokens: aggregateUsage.input + aggregateUsage.output,
|
|
1929
|
+
durationMs: totalDurationMs,
|
|
1930
|
+
};
|
|
1931
|
+
if (transcriptWriter) result.transcriptPath = artifactPathsResult?.transcriptPath;
|
|
1932
|
+
if (transcriptWriter?.getError()) result.transcriptError = transcriptWriter.getError();
|
|
1933
|
+
|
|
1934
|
+
try {
|
|
1935
|
+
if (artifactPathsResult && options.artifactConfig?.enabled !== false) {
|
|
1936
|
+
result.artifactPaths = artifactPathsResult;
|
|
1937
|
+
if (options.artifactConfig?.includeOutput !== false) {
|
|
1938
|
+
writeArtifact(artifactPathsResult.outputPath, formatOutputArtifactContent({
|
|
1939
|
+
output: artifactOutputByResult.get(result) ?? result.finalOutput ?? "",
|
|
1940
|
+
error: result.error,
|
|
1941
|
+
transcriptPath: result.transcriptPath,
|
|
1942
|
+
metadataPath: options.artifactConfig?.includeMetadata === false ? undefined : artifactPathsResult.metadataPath,
|
|
1943
|
+
}));
|
|
1944
|
+
}
|
|
1945
|
+
if (options.maxOutput) {
|
|
1946
|
+
const config = { ...DEFAULT_MAX_OUTPUT, ...options.maxOutput };
|
|
1947
|
+
const truncationResult = truncateOutput(result.finalOutput ?? "", config, artifactPathsResult.outputPath);
|
|
1948
|
+
if (truncationResult.truncated) result.truncation = truncationResult;
|
|
1949
|
+
}
|
|
1950
|
+
} else if (options.maxOutput) {
|
|
1951
|
+
const config = { ...DEFAULT_MAX_OUTPUT, ...options.maxOutput };
|
|
1952
|
+
const truncationResult = truncateOutput(result.finalOutput ?? "", config);
|
|
1953
|
+
if (truncationResult.truncated) result.truncation = truncationResult;
|
|
1954
|
+
}
|
|
1955
|
+
} catch (error) {
|
|
1956
|
+
const message = `Artifact output post-processing failed: ${error instanceof Error ? error.message : String(error)}`;
|
|
1957
|
+
result.outputSaveError = result.outputSaveError ? `${result.outputSaveError}\n${message}` : message;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
if (options.sessionFile && (existsSync(options.sessionFile) || result.messages?.length)) {
|
|
1961
|
+
result.sessionFile = options.sessionFile;
|
|
1962
|
+
} else if (shareEnabled && options.sessionDir) {
|
|
1963
|
+
const sessionFile = findLatestSessionFile(options.sessionDir);
|
|
1964
|
+
if (sessionFile) result.sessionFile = sessionFile;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
const childWrittenOutput = options.outputPath
|
|
1968
|
+
? extractChildWrittenOutput(result.messages, options.outputPath, options.cwd ?? runtimeCwd)
|
|
1969
|
+
: undefined;
|
|
1970
|
+
try {
|
|
1971
|
+
if (result.interrupted && detachedReason === "user request") {
|
|
1972
|
+
// Only an accepted user-detach receipt needs a non-rejecting terminal
|
|
1973
|
+
// ledger. Attached and background execution retain their baseline
|
|
1974
|
+
// acceptance behavior.
|
|
1975
|
+
result.acceptance = buildInterruptedAcceptanceLedger(effectiveAcceptance);
|
|
1976
|
+
} else if (result.stopped) {
|
|
1977
|
+
result.acceptance = buildSkippedAcceptanceLedger(effectiveAcceptance, { id: "stopped", message: "Acceptance was not evaluated because the subagent was stopped." });
|
|
1978
|
+
} else if (result.timedOut) {
|
|
1979
|
+
result.acceptance = buildSkippedAcceptanceLedger(effectiveAcceptance, { id: "timeout", message: "Acceptance was not evaluated because the subagent timed out." });
|
|
1980
|
+
} else if (result.turnBudgetExceeded) {
|
|
1981
|
+
result.acceptance = buildSkippedAcceptanceLedger(effectiveAcceptance, { id: "turn-budget", message: "Acceptance was not evaluated because the subagent exceeded its turn budget." });
|
|
1982
|
+
} else {
|
|
1983
|
+
result.acceptance = await evaluateAcceptance({
|
|
1984
|
+
acceptance: effectiveAcceptance,
|
|
1985
|
+
output: acceptanceOutputByResult.get(result) ?? result.finalOutput ?? "",
|
|
1986
|
+
fileOutput: childWrittenOutput !== undefined && options.outputPath
|
|
1987
|
+
? { content: childWrittenOutput, path: options.outputPath, authoritative: options.outputMode === "file-only" }
|
|
1988
|
+
: undefined,
|
|
1989
|
+
cwd: options.cwd ?? runtimeCwd,
|
|
1990
|
+
reportOptional: isAgentContractV1(options.agentContract),
|
|
1991
|
+
artifactsDir: options.artifactsDir,
|
|
1992
|
+
runId: options.runId,
|
|
1993
|
+
});
|
|
1994
|
+
}
|
|
1995
|
+
} catch (error) {
|
|
1996
|
+
const message = `Acceptance evaluation failed: ${error instanceof Error ? error.message : String(error)}`;
|
|
1997
|
+
result.acceptance = buildSkippedAcceptanceLedger(effectiveAcceptance, { id: "acceptance-evaluation", message });
|
|
1998
|
+
}
|
|
1999
|
+
const acceptanceFailure = acceptanceFailureMessage(result.acceptance);
|
|
2000
|
+
stripAcceptanceReportsFromMessages(result.messages);
|
|
2001
|
+
if (acceptanceFailure && result.acceptance.explicit && result.exitCode === 0 && !result.interrupted && !result.timedOut && !isAgentContractV1(options.agentContract)) {
|
|
2002
|
+
result.exitCode = 1;
|
|
2003
|
+
if (result.savedOutputPath) {
|
|
2004
|
+
result.finalOutput = finalizeSingleOutput({
|
|
2005
|
+
fullOutput: result.finalOutput ?? "",
|
|
2006
|
+
outputPath: options.outputPath,
|
|
2007
|
+
outputMode: result.outputMode,
|
|
2008
|
+
exitCode: result.exitCode,
|
|
2009
|
+
preserveSavedOutput: true,
|
|
2010
|
+
savedPath: result.savedOutputPath,
|
|
2011
|
+
outputReference: result.outputReference,
|
|
2012
|
+
}).displayOutput;
|
|
2013
|
+
artifactOutputByResult.set(result, result.finalOutput);
|
|
2014
|
+
}
|
|
2015
|
+
result.error = result.error ? `${result.error}\n${acceptanceFailure}` : acceptanceFailure;
|
|
2016
|
+
if (artifactPathsResult && options.artifactConfig?.enabled !== false && options.artifactConfig?.includeOutput !== false) {
|
|
2017
|
+
try {
|
|
2018
|
+
writeArtifact(artifactPathsResult.outputPath, formatOutputArtifactContent({
|
|
2019
|
+
output: artifactOutputByResult.get(result) ?? result.finalOutput ?? "",
|
|
2020
|
+
error: result.error,
|
|
2021
|
+
transcriptPath: result.transcriptPath,
|
|
2022
|
+
metadataPath: options.artifactConfig?.includeMetadata === false ? undefined : artifactPathsResult.metadataPath,
|
|
2023
|
+
}));
|
|
2024
|
+
} catch (error) {
|
|
2025
|
+
const message = `Artifact output post-processing failed: ${error instanceof Error ? error.message : String(error)}`;
|
|
2026
|
+
result.outputSaveError = result.outputSaveError ? `${result.outputSaveError}\n${message}` : message;
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
if (result.progress) {
|
|
2030
|
+
result.progress.status = "failed";
|
|
2031
|
+
result.progress.error = result.error;
|
|
2032
|
+
}
|
|
2033
|
+
}
|
|
2034
|
+
if (isAgentContractV1(options.agentContract)) attachContractProjections(result);
|
|
2035
|
+
redactResultPrompt(result);
|
|
2036
|
+
try {
|
|
2037
|
+
persistResultMetadata(result);
|
|
2038
|
+
} catch (error) {
|
|
2039
|
+
result.metadataSaveError = error instanceof Error ? error.message : String(error);
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
return result;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
async function runSyncCompletion(
|
|
2046
|
+
runtimeCwd: string,
|
|
2047
|
+
agents: AgentConfig[],
|
|
2048
|
+
agentName: string,
|
|
2049
|
+
task: string,
|
|
2050
|
+
options: RunSyncOptions,
|
|
2051
|
+
): Promise<SingleResult> {
|
|
2052
|
+
let orcaProgressTab: OrcaProgressTab | undefined;
|
|
2053
|
+
try {
|
|
2054
|
+
const result = await runSyncCompletionInner(runtimeCwd, agents, agentName, task, {
|
|
2055
|
+
...options,
|
|
2056
|
+
onOrcaProgressTabCreated: (tab) => { orcaProgressTab = tab; },
|
|
2057
|
+
});
|
|
2058
|
+
orcaProgressTab?.finish(result.stopped ? "stopped" : result.exitCode === 0 && !result.error ? "completed" : "failed", result.sessionFile);
|
|
2059
|
+
return result;
|
|
2060
|
+
} catch (error) {
|
|
2061
|
+
orcaProgressTab?.finish("failed");
|
|
2062
|
+
throw error;
|
|
2063
|
+
}
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
/**
|
|
2067
|
+
* Runs the authoritative completion pipeline independently from the foreground
|
|
2068
|
+
* receipt. Detachment is same-runtime only: it does not adopt or daemonize work.
|
|
2069
|
+
*/
|
|
2070
|
+
export async function runSync(
|
|
2071
|
+
runtimeCwd: string,
|
|
2072
|
+
agents: AgentConfig[],
|
|
2073
|
+
agentName: string,
|
|
2074
|
+
task: string,
|
|
2075
|
+
options: RunSyncOptions,
|
|
2076
|
+
): Promise<SingleResult> {
|
|
2077
|
+
// Capture the strict contract before consumer-owned objects can be mutated
|
|
2078
|
+
// after a detached receipt is published.
|
|
2079
|
+
const strictContract = isAgentContractV1(options.agentContract);
|
|
2080
|
+
let detachedReason: string | undefined;
|
|
2081
|
+
let publishedReceipt: SingleResult | undefined;
|
|
2082
|
+
let activeDetachAttempt: ((reason?: string) => boolean) | undefined;
|
|
2083
|
+
let detachReadyPublished = false;
|
|
2084
|
+
let resolveReceipt!: (result: SingleResult) => void;
|
|
2085
|
+
const receipt = new Promise<SingleResult>((resolve) => { resolveReceipt = resolve; });
|
|
2086
|
+
const originSignal = options.signal;
|
|
2087
|
+
const originController = new AbortController();
|
|
2088
|
+
const forwardOriginAbort = () => {
|
|
2089
|
+
if (!detachedReason) originController.abort(originSignal?.reason);
|
|
2090
|
+
};
|
|
2091
|
+
if (originSignal?.aborted) forwardOriginAbort();
|
|
2092
|
+
else originSignal?.addEventListener("abort", forwardOriginAbort, { once: true });
|
|
2093
|
+
|
|
2094
|
+
const completion = runSyncCompletion(runtimeCwd, agents, agentName, task, {
|
|
2095
|
+
...options,
|
|
2096
|
+
signal: originController.signal,
|
|
2097
|
+
onDetachedExit: undefined,
|
|
2098
|
+
onDetachReceipt: (detachedReceipt) => {
|
|
2099
|
+
if (detachedReason || publishedReceipt) return false;
|
|
2100
|
+
// Keep the authoritative result, fallback snapshot, and caller receipt
|
|
2101
|
+
// separately owned while the completion pipeline remains live.
|
|
2102
|
+
publishedReceipt = structuredClone(detachedReceipt);
|
|
2103
|
+
const callerReceipt = structuredClone(detachedReceipt);
|
|
2104
|
+
// A strict contract was already validated before detach; normalize private
|
|
2105
|
+
// and caller snapshots to the only safely known version.
|
|
2106
|
+
publishedReceipt.agentContract = strictContract ? { version: 1 } : undefined;
|
|
2107
|
+
callerReceipt.agentContract = strictContract ? { version: 1 } : undefined;
|
|
2108
|
+
detachedReason = detachedReceipt.detachedReason ?? "user request";
|
|
2109
|
+
resolveReceipt(callerReceipt);
|
|
2110
|
+
return true;
|
|
2111
|
+
},
|
|
2112
|
+
onDetachReady: (detachAttempt) => {
|
|
2113
|
+
activeDetachAttempt = detachAttempt;
|
|
2114
|
+
if (detachReadyPublished) return;
|
|
2115
|
+
detachReadyPublished = true;
|
|
2116
|
+
options.onDetachReady?.((reason = "user request") => {
|
|
2117
|
+
if (detachedReason || originController.signal.aborted) return false;
|
|
2118
|
+
return activeDetachAttempt?.(reason) ?? false;
|
|
2119
|
+
});
|
|
2120
|
+
},
|
|
2121
|
+
});
|
|
2122
|
+
|
|
2123
|
+
const authoritativeCompletion = completion.catch((error: unknown) => {
|
|
2124
|
+
if (!publishedReceipt || !detachedReason) throw error;
|
|
2125
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
2126
|
+
const failureMessage = `Detached completion pipeline failed after receipt: ${message}`;
|
|
2127
|
+
const failedProgress: AgentProgress = publishedReceipt.progress
|
|
2128
|
+
? { ...publishedReceipt.progress, status: "failed", error: failureMessage }
|
|
2129
|
+
: {
|
|
2130
|
+
index: options.index ?? 0,
|
|
2131
|
+
agent: publishedReceipt.agent,
|
|
2132
|
+
status: "failed",
|
|
2133
|
+
task: publishedReceipt.task,
|
|
2134
|
+
recentTools: [],
|
|
2135
|
+
recentOutput: [],
|
|
2136
|
+
toolCount: publishedReceipt.progressSummary?.toolCount ?? 0,
|
|
2137
|
+
tokens: publishedReceipt.progressSummary?.tokens ?? 0,
|
|
2138
|
+
durationMs: publishedReceipt.progressSummary?.durationMs ?? 0,
|
|
2139
|
+
error: failureMessage,
|
|
2140
|
+
};
|
|
2141
|
+
const failedResult: SingleResult = redactResultPrompt({
|
|
2142
|
+
...publishedReceipt,
|
|
2143
|
+
detached: undefined,
|
|
2144
|
+
detachedReason,
|
|
2145
|
+
exitCode: 1,
|
|
2146
|
+
error: failureMessage,
|
|
2147
|
+
finalOutput: failureMessage,
|
|
2148
|
+
progress: failedProgress,
|
|
2149
|
+
progressSummary: {
|
|
2150
|
+
toolCount: failedProgress.toolCount,
|
|
2151
|
+
tokens: failedProgress.tokens,
|
|
2152
|
+
durationMs: failedProgress.durationMs,
|
|
2153
|
+
},
|
|
2154
|
+
acceptance: publishedReceipt.acceptance
|
|
2155
|
+
? buildSkippedAcceptanceLedger(publishedReceipt.acceptance.effectiveAcceptance, { id: "completion-pipeline", message: failureMessage })
|
|
2156
|
+
: undefined,
|
|
2157
|
+
});
|
|
2158
|
+
if (strictContract) attachContractProjections(failedResult);
|
|
2159
|
+
try {
|
|
2160
|
+
// Replace the provisional detach receipt metadata with the authoritative
|
|
2161
|
+
// terminal failure. Persistence remains best-effort and cannot orphan work.
|
|
2162
|
+
persistSingleResultMetadata({
|
|
2163
|
+
metadataPath: failedResult.artifactPaths?.metadataPath,
|
|
2164
|
+
enabled: options.artifactConfig?.enabled !== false && options.artifactConfig?.includeMetadata !== false,
|
|
2165
|
+
runId: options.runId,
|
|
2166
|
+
agent: failedResult.agent,
|
|
2167
|
+
task: failedResult.task,
|
|
2168
|
+
result: failedResult,
|
|
2169
|
+
});
|
|
2170
|
+
} catch (metadataError) {
|
|
2171
|
+
failedResult.metadataSaveError = metadataError instanceof Error ? metadataError.message : String(metadataError);
|
|
2172
|
+
}
|
|
2173
|
+
return failedResult;
|
|
2174
|
+
});
|
|
2175
|
+
|
|
2176
|
+
let terminalCallbackInvoked = false;
|
|
2177
|
+
void authoritativeCompletion.then((terminalResult) => {
|
|
2178
|
+
if (!detachedReason || terminalCallbackInvoked) return;
|
|
2179
|
+
terminalCallbackInvoked = true;
|
|
2180
|
+
terminalResult.detached = undefined;
|
|
2181
|
+
terminalResult.detachedReason = detachedReason;
|
|
2182
|
+
try {
|
|
2183
|
+
options.onDetachedExit?.(terminalResult);
|
|
2184
|
+
} catch {
|
|
2185
|
+
// The authoritative result has settled. Consumer callback failures are
|
|
2186
|
+
// contained here; each consumer owns cleanup through its own finally block.
|
|
2187
|
+
}
|
|
2188
|
+
}).catch(() => {
|
|
2189
|
+
// Attached completion rejection remains observable through the returned
|
|
2190
|
+
// promise without becoming an unhandled side-channel rejection.
|
|
2191
|
+
}).finally(() => {
|
|
2192
|
+
originSignal?.removeEventListener("abort", forwardOriginAbort);
|
|
2193
|
+
});
|
|
2194
|
+
|
|
2195
|
+
return Promise.race([authoritativeCompletion, receipt]);
|
|
2196
|
+
}
|