@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
package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-execution.ts
ADDED
|
@@ -0,0 +1,1739 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Async execution logic for subagent tool
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { spawn } from "node:child_process";
|
|
6
|
+
import { randomUUID } from "node:crypto";
|
|
7
|
+
import * as fs from "node:fs";
|
|
8
|
+
import * as os from "node:os";
|
|
9
|
+
import * as path from "node:path";
|
|
10
|
+
import { fileURLToPath } from "node:url";
|
|
11
|
+
import { createRequire } from "node:module";
|
|
12
|
+
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
13
|
+
import type { AgentConfig } from "../../agents/agents.ts";
|
|
14
|
+
import { appendAgentRefinementOverlay } from "../../agents/agent-refinements.ts";
|
|
15
|
+
import { writePrivateAtomicJson } from "../../shared/atomic-json.ts";
|
|
16
|
+
import { currentCompletionOwnerId } from "../../shared/completion-owner.ts";
|
|
17
|
+
import { applyThinkingSuffix, projectLaunchResolvedChildExtensions, resolvePiLaunchToolPlan } from "../shared/pi-args.ts";
|
|
18
|
+
import { injectOutputPathSystemPrompt, injectSingleOutputInstruction, normalizeSingleOutputOverride, resolveSingleOutputPath, validateFileOnlyOutputMode } from "../shared/single-output.ts";
|
|
19
|
+
import { buildChainInstructions, isDynamicParallelStep, isParallelStep, resolveChainPath, resolveExistingReadPaths, resolveStepBehavior, suppressProgressForReadOnlyTask, writeInitialProgressFile, type ChainStep, type ResolvedStepBehavior, type SequentialStep, type StepOverrides } from "../../shared/settings.ts";
|
|
20
|
+
import type { RunnerStep } from "../shared/parallel-utils.ts";
|
|
21
|
+
import type { ContextMode } from "../shared/context-mode.ts";
|
|
22
|
+
import { resolvePiPackageRoot } from "../shared/pi-spawn.ts";
|
|
23
|
+
import { resolveNodeExecutable } from "../../shared/node-executable.ts";
|
|
24
|
+
import { buildSkillInjection, normalizeSkillInput, resolveSkillsWithFallback } from "../../agents/skills.ts";
|
|
25
|
+
import { buildAgentMemoryInjection } from "../../agents/agent-memory.ts";
|
|
26
|
+
import { PI_CODING_AGENT_PACKAGE_ROOT_ENV, PROMPT_REDACTED, resolveChildCwd } from "../../shared/utils.ts";
|
|
27
|
+
import { buildModelCandidates, inheritsParentModel, resolveEffectiveSubagentModel, resolveModelCandidate, resolveSubagentModelOverride, type AvailableModelInfo, type ParentModel } from "../shared/model-fallback.ts";
|
|
28
|
+
import { resolveToolTimeoutMs, toolTimeoutFromEnv } from "../shared/tool-timeout.ts";
|
|
29
|
+
import type { ModelScopeConfig } from "../shared/model-scope.ts";
|
|
30
|
+
import { resolveEffectiveThinking } from "../../shared/model-info.ts";
|
|
31
|
+
import { resolveExpectedWorktreeAgentCwd } from "../shared/worktree.ts";
|
|
32
|
+
import { buildWorkflowGraphSnapshot } from "../shared/workflow-graph.ts";
|
|
33
|
+
import { ChainOutputValidationError, validateChainOutputBindings } from "../shared/chain-outputs.ts";
|
|
34
|
+
import { createStructuredOutputRuntime } from "../shared/structured-output.ts";
|
|
35
|
+
import { resolveEffectiveAcceptance, validateAcceptanceInput, validateExecutionAcceptance } from "../shared/acceptance.ts";
|
|
36
|
+
import { createRunFanoutBudget, writeRunFanoutBudgetDescriptor } from "../shared/run-fanout-budget.ts";
|
|
37
|
+
import {
|
|
38
|
+
type AcceptanceInput,
|
|
39
|
+
type AgentContract,
|
|
40
|
+
type AsyncStatus,
|
|
41
|
+
type ArtifactConfig,
|
|
42
|
+
type Details,
|
|
43
|
+
type IntercomBridgeConfig,
|
|
44
|
+
type JsonSchemaObject,
|
|
45
|
+
type MaxOutputConfig,
|
|
46
|
+
type NestedRouteInfo,
|
|
47
|
+
type ResolvedControlConfig,
|
|
48
|
+
type ResolvedTurnBudget,
|
|
49
|
+
type ResolvedToolBudget,
|
|
50
|
+
type RunFanoutBudgetDescriptor,
|
|
51
|
+
type ToolBudgetConfig,
|
|
52
|
+
type SubagentRunMode,
|
|
53
|
+
type SteeringRecoveryDescriptor,
|
|
54
|
+
type UsageBudgetConfig,
|
|
55
|
+
DIRS,
|
|
56
|
+
SUBAGENT_ASYNC_STARTED_EVENT,
|
|
57
|
+
SUBAGENT_LIFECYCLE_ARTIFACT_VERSION,
|
|
58
|
+
TEMP_ROOT_DIR,
|
|
59
|
+
getAsyncConfigPath,
|
|
60
|
+
resolveChildMaxSubagentDepth,
|
|
61
|
+
} from "../../shared/types.ts";
|
|
62
|
+
import { nestedResultsPath, nestedSummaryFromAsyncStatus, resolveInheritedNestedRouteFromEnv, resolveNestedParentAddressFromEnv, writeNestedEvent } from "../shared/nested-events.ts";
|
|
63
|
+
import { resultFilePath } from "./result-files.ts";
|
|
64
|
+
import { appendTurnBudgetSystemPrompt, initialTurnBudgetState } from "../shared/turn-budget.ts";
|
|
65
|
+
import { validateToolBudgetConfig } from "../shared/tool-budget.ts";
|
|
66
|
+
import { usageBudgetState } from "../shared/usage-budget.ts";
|
|
67
|
+
import type { ImportedAsyncRoot } from "./chain-root-attachment.ts";
|
|
68
|
+
import type { SessionLeaseRequest } from "../shared/session-lease.ts";
|
|
69
|
+
import { finalizeProcessTerminal, readProcessTerminal } from "./process-terminal.ts";
|
|
70
|
+
import type { ActiveAsyncCapacityHandle } from "./active-async-capacity.ts";
|
|
71
|
+
import { SUBAGENT_PROCESS_TERMINAL_EVENT } from "../../shared/types.ts";
|
|
72
|
+
import { assertAgentAllowedByCapabilityCeiling, decodeSubagentCapabilityCeiling, intersectSubagentCapabilityCeilings, resolveCurrentSubagentCapabilityCeiling, SUBAGENT_CAPABILITY_CEILING_ENV, type ResolvedSubagentCapabilityCeiling } from "../shared/capability-ceiling.ts";
|
|
73
|
+
import { agentDefinitionDigest, launchBindingDigest } from "../../shared/launch-contract.ts";
|
|
74
|
+
import { resolvePermissionRules, type PermissionConfig } from "../shared/permissions.ts";
|
|
75
|
+
|
|
76
|
+
const require = createRequire(import.meta.url);
|
|
77
|
+
const piPackageRoot = resolvePiPackageRoot();
|
|
78
|
+
|
|
79
|
+
function resolveJitiCliFromPackageJson(packageJsonPath: string): string | undefined {
|
|
80
|
+
if (!fs.existsSync(packageJsonPath)) return undefined;
|
|
81
|
+
const packageRoot = path.dirname(packageJsonPath);
|
|
82
|
+
const pkg = JSON.parse(fs.readFileSync(packageJsonPath, "utf-8")) as {
|
|
83
|
+
bin?: string | Record<string, string>;
|
|
84
|
+
};
|
|
85
|
+
const binField = pkg.bin;
|
|
86
|
+
const binPath = typeof binField === "string"
|
|
87
|
+
? binField
|
|
88
|
+
: binField?.jiti ?? Object.values(binField ?? {})[0];
|
|
89
|
+
const candidates = [binPath, "lib/jiti-cli.mjs"].filter((candidate): candidate is string => Boolean(candidate));
|
|
90
|
+
for (const candidate of candidates) {
|
|
91
|
+
const cliPath = path.resolve(packageRoot, candidate);
|
|
92
|
+
if (fs.existsSync(cliPath)) return cliPath;
|
|
93
|
+
}
|
|
94
|
+
return undefined;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
function resolveJitiCliPath(): string | undefined {
|
|
98
|
+
const candidates: Array<() => string | undefined> = [
|
|
99
|
+
() => require.resolve("jiti/package.json"),
|
|
100
|
+
() => piPackageRoot
|
|
101
|
+
? createRequire(path.join(piPackageRoot, "package.json")).resolve("jiti/package.json")
|
|
102
|
+
: undefined,
|
|
103
|
+
() => {
|
|
104
|
+
if (!process.argv[1]) return undefined;
|
|
105
|
+
const piEntry = fs.realpathSync(process.argv[1]);
|
|
106
|
+
return createRequire(piEntry).resolve("jiti/package.json");
|
|
107
|
+
},
|
|
108
|
+
() => piPackageRoot ? path.join(piPackageRoot, "node_modules", "jiti", "package.json") : undefined,
|
|
109
|
+
];
|
|
110
|
+
for (const candidate of candidates) {
|
|
111
|
+
try {
|
|
112
|
+
const packageJsonPath = candidate();
|
|
113
|
+
if (!packageJsonPath) continue;
|
|
114
|
+
const cliPath = resolveJitiCliFromPackageJson(packageJsonPath);
|
|
115
|
+
if (cliPath) return cliPath;
|
|
116
|
+
} catch {
|
|
117
|
+
// Candidate not available in this install, continue probing.
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
return undefined;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
const jitiCliPath = resolveJitiCliPath();
|
|
124
|
+
|
|
125
|
+
interface AsyncExecutionContext {
|
|
126
|
+
pi: ExtensionAPI;
|
|
127
|
+
cwd: string;
|
|
128
|
+
currentSessionId: string;
|
|
129
|
+
completionOwnerId?: string;
|
|
130
|
+
/** Parent session id used by permission-system ask forwarding. */
|
|
131
|
+
parentSessionId?: string;
|
|
132
|
+
permissions?: PermissionConfig;
|
|
133
|
+
currentModelProvider?: string;
|
|
134
|
+
currentModel?: ParentModel;
|
|
135
|
+
/** Optional model-scope enforcement resolved from subagent settings. */
|
|
136
|
+
modelScope?: ModelScopeConfig;
|
|
137
|
+
/** Whether the parent session has an interactive UI. */
|
|
138
|
+
interactive?: boolean;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export const DEFAULT_ASYNC_TIMEOUT_MS = 30 * 60 * 1000;
|
|
142
|
+
|
|
143
|
+
interface AsyncChainParams {
|
|
144
|
+
chain: ChainStep[];
|
|
145
|
+
task?: string;
|
|
146
|
+
/** Raw caller-facing goal used only by the started event. */
|
|
147
|
+
goal?: string;
|
|
148
|
+
attachRoot?: ImportedAsyncRoot & { agent: string; outputName?: string; label?: string };
|
|
149
|
+
resultMode?: SubagentRunMode;
|
|
150
|
+
agents: AgentConfig[];
|
|
151
|
+
ctx: AsyncExecutionContext;
|
|
152
|
+
availableModels?: AvailableModelInfo[];
|
|
153
|
+
cwd?: string;
|
|
154
|
+
maxOutput?: MaxOutputConfig;
|
|
155
|
+
artifactsDir?: string;
|
|
156
|
+
artifactConfig: ArtifactConfig;
|
|
157
|
+
shareEnabled: boolean;
|
|
158
|
+
sessionRoot?: string;
|
|
159
|
+
agentContract?: AgentContract;
|
|
160
|
+
chainSkills?: string[];
|
|
161
|
+
sessionFilesByFlatIndex?: (string | undefined)[];
|
|
162
|
+
thinkingOverridesByFlatIndex?: (AgentConfig["thinking"] | undefined)[];
|
|
163
|
+
contextForAgent?: (agentName: string) => ContextMode;
|
|
164
|
+
progressDir?: string;
|
|
165
|
+
dynamicFanoutMaxItems?: number;
|
|
166
|
+
maxSubagentDepth: number;
|
|
167
|
+
waitToolEnabled?: boolean;
|
|
168
|
+
worktreeSetupHook?: string;
|
|
169
|
+
worktreeSetupHookTimeoutMs?: number;
|
|
170
|
+
worktreeBaseDir?: string;
|
|
171
|
+
controlConfig?: ResolvedControlConfig;
|
|
172
|
+
controlIntercomTarget?: string;
|
|
173
|
+
childIntercomTarget?: (agent: string, index: number) => string | undefined;
|
|
174
|
+
nestedRoute?: NestedRouteInfo;
|
|
175
|
+
acceptance?: AcceptanceInput;
|
|
176
|
+
timeoutMs?: number;
|
|
177
|
+
turnBudget?: ResolvedTurnBudget;
|
|
178
|
+
toolBudget?: ResolvedToolBudget;
|
|
179
|
+
usageBudget?: UsageBudgetConfig;
|
|
180
|
+
configToolBudget?: ResolvedToolBudget;
|
|
181
|
+
/** Optional per-call hard toolTimeoutMs override (highest precedence). */
|
|
182
|
+
callToolTimeoutMs?: number;
|
|
183
|
+
/** Global config.toolTimeoutMs (third precedence, after agent frontmatter). */
|
|
184
|
+
configToolTimeoutMs?: number;
|
|
185
|
+
/** PI_SUBAGENT_TOOL_TIMEOUT_MS override (lowest precedence). */
|
|
186
|
+
toolTimeoutMsEnv?: string | undefined;
|
|
187
|
+
/** Global cap on simultaneously-running subagent tasks within the async run. */
|
|
188
|
+
globalConcurrencyLimit?: number;
|
|
189
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
190
|
+
runFanoutBudget?: RunFanoutBudgetDescriptor;
|
|
191
|
+
parentWorkflowRunId?: string;
|
|
192
|
+
workflowKey?: string;
|
|
193
|
+
activeAsyncCapacity?: ActiveAsyncCapacityHandle;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
interface AsyncSingleParams {
|
|
197
|
+
agent: string;
|
|
198
|
+
task?: string;
|
|
199
|
+
/** Raw caller-facing goal used only by the started event. */
|
|
200
|
+
goal?: string;
|
|
201
|
+
agentConfig: AgentConfig;
|
|
202
|
+
/** Agent contract before per-run bridge injection, used only for recovery persistence. */
|
|
203
|
+
recoveryAgentConfig?: AgentConfig;
|
|
204
|
+
ctx: AsyncExecutionContext;
|
|
205
|
+
cwd?: string;
|
|
206
|
+
maxOutput?: MaxOutputConfig;
|
|
207
|
+
artifactsDir?: string;
|
|
208
|
+
artifactConfig: ArtifactConfig;
|
|
209
|
+
shareEnabled: boolean;
|
|
210
|
+
sessionRoot?: string;
|
|
211
|
+
sessionDir?: string;
|
|
212
|
+
sessionFile?: string;
|
|
213
|
+
revivalLease?: SessionLeaseRequest;
|
|
214
|
+
context?: ContextMode;
|
|
215
|
+
skills?: string[];
|
|
216
|
+
output?: string | boolean;
|
|
217
|
+
reads?: string[] | false;
|
|
218
|
+
outputMode?: "inline" | "file-only";
|
|
219
|
+
outputBaseDir?: string;
|
|
220
|
+
agentContract?: AgentContract;
|
|
221
|
+
structuredOutputSchema?: JsonSchemaObject;
|
|
222
|
+
modelOverride?: string;
|
|
223
|
+
modelOverrideFromParent?: boolean;
|
|
224
|
+
thinkingOverride?: AgentConfig["thinking"];
|
|
225
|
+
availableModels?: AvailableModelInfo[];
|
|
226
|
+
maxSubagentDepth: number;
|
|
227
|
+
waitToolEnabled?: boolean;
|
|
228
|
+
worktreeSetupHook?: string;
|
|
229
|
+
worktreeSetupHookTimeoutMs?: number;
|
|
230
|
+
worktreeBaseDir?: string;
|
|
231
|
+
worktree?: boolean;
|
|
232
|
+
controlConfig?: ResolvedControlConfig;
|
|
233
|
+
intercomBridge?: IntercomBridgeConfig;
|
|
234
|
+
controlIntercomTarget?: string;
|
|
235
|
+
childIntercomTarget?: (agent: string, index: number) => string | undefined;
|
|
236
|
+
nestedRoute?: NestedRouteInfo;
|
|
237
|
+
acceptance?: AcceptanceInput;
|
|
238
|
+
timeoutMs?: number;
|
|
239
|
+
absoluteDeadlineAt?: number;
|
|
240
|
+
/** Optional per-call hard toolTimeoutMs override (highest precedence). */
|
|
241
|
+
toolTimeoutMs?: number;
|
|
242
|
+
turnBudget?: { maxTurns: number; graceTurns?: number };
|
|
243
|
+
toolBudget?: ResolvedToolBudget | ToolBudgetConfig;
|
|
244
|
+
usageBudget?: UsageBudgetConfig;
|
|
245
|
+
configToolBudget?: ResolvedToolBudget;
|
|
246
|
+
/** Global config.toolTimeoutMs (third precedence, after agent frontmatter). */
|
|
247
|
+
configToolTimeoutMs?: number;
|
|
248
|
+
/** PI_SUBAGENT_TOOL_TIMEOUT_MS override (lowest precedence). */
|
|
249
|
+
toolTimeoutMsEnv?: string | undefined;
|
|
250
|
+
allowZeroToolBudget?: boolean;
|
|
251
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
252
|
+
runFanoutBudget?: RunFanoutBudgetDescriptor;
|
|
253
|
+
parentWorkflowRunId?: string;
|
|
254
|
+
workflowKey?: string;
|
|
255
|
+
activeAsyncCapacity?: ActiveAsyncCapacityHandle;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
interface AsyncExecutionResult {
|
|
259
|
+
content: Array<{ type: "text"; text: string }>;
|
|
260
|
+
details: Details;
|
|
261
|
+
isError?: boolean;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export interface AsyncRunnerStepBuildParams {
|
|
265
|
+
chain: ChainStep[];
|
|
266
|
+
task?: string;
|
|
267
|
+
attachRoot?: ImportedAsyncRoot & { agent: string; outputName?: string; label?: string };
|
|
268
|
+
resultMode?: SubagentRunMode;
|
|
269
|
+
agents: AgentConfig[];
|
|
270
|
+
ctx: AsyncExecutionContext;
|
|
271
|
+
availableModels?: AvailableModelInfo[];
|
|
272
|
+
cwd?: string;
|
|
273
|
+
chainSkills?: string[];
|
|
274
|
+
sessionFilesByFlatIndex?: (string | undefined)[];
|
|
275
|
+
thinkingOverridesByFlatIndex?: (AgentConfig["thinking"] | undefined)[];
|
|
276
|
+
contextForAgent?: (agentName: string) => ContextMode;
|
|
277
|
+
progressDir?: string;
|
|
278
|
+
agentContract?: AgentContract;
|
|
279
|
+
dynamicFanoutMaxItems?: number;
|
|
280
|
+
maxSubagentDepth: number;
|
|
281
|
+
waitToolEnabled?: boolean;
|
|
282
|
+
worktreeBaseDir?: string;
|
|
283
|
+
asyncDir: string;
|
|
284
|
+
outputBaseDir?: string;
|
|
285
|
+
validateOutputBindings?: boolean;
|
|
286
|
+
toolBudget?: ResolvedToolBudget;
|
|
287
|
+
configToolBudget?: ResolvedToolBudget;
|
|
288
|
+
/** Optional per-call hard toolTimeoutMs override from the subagent invocation. */
|
|
289
|
+
callToolTimeoutMs?: number;
|
|
290
|
+
/** Global config.toolTimeoutMs (third precedence, after agent frontmatter). */
|
|
291
|
+
configToolTimeoutMs?: number;
|
|
292
|
+
/** PI_SUBAGENT_TOOL_TIMEOUT_MS override (lowest precedence). */
|
|
293
|
+
toolTimeoutMsEnv?: string | undefined;
|
|
294
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
export type AsyncRunnerStepBuildResult =
|
|
298
|
+
| {
|
|
299
|
+
steps: RunnerStep[];
|
|
300
|
+
runnerCwd: string;
|
|
301
|
+
workflowGraph: ReturnType<typeof buildWorkflowGraphSnapshot>;
|
|
302
|
+
eventChain: ChainStep[];
|
|
303
|
+
originalTask?: string;
|
|
304
|
+
}
|
|
305
|
+
| { error: string };
|
|
306
|
+
|
|
307
|
+
export function formatAsyncStartedMessage(headline: string, interactive: boolean): string {
|
|
308
|
+
const guidance = interactive
|
|
309
|
+
? [
|
|
310
|
+
"The async run is detached and running in the background.",
|
|
311
|
+
"You are in an interactive session. By default, return control to the user now; Pi will wake you on completion when the run finishes or needs attention. Do NOT call subagent_wait() merely to wait, and do not run sleep/polling loops to wait for it.",
|
|
312
|
+
"When you need an explicit wake for one known run but do not need same-turn results, call subagent_wait({ id: \"...\", nonBlocking: true }) to arm a subscription and return immediately.",
|
|
313
|
+
"Override the default and call blocking subagent_wait() before ending the turn only when the current request is run-to-completion — for example, the user asked you to report results back here before continuing, or a skill must finish in one turn. In that case, call subagent_wait() to block until the run completes so its results are delivered in this turn instead of deferred.",
|
|
314
|
+
"Otherwise, continue any independent work or return control to the user. Use subagent({ action: \"status\", id: \"...\" }) for a one-shot status/result or to inspect a blocked/stale run, never as a wait loop.",
|
|
315
|
+
]
|
|
316
|
+
: [
|
|
317
|
+
"The async run is detached. Do not run sleep timers or polling loops just to wait for it.",
|
|
318
|
+
"This is a non-interactive run: Pi auto-drains current-session background work at agent_end so detached children are not abandoned; call subagent_wait() when this turn must receive the run's results before it ends, otherwise let the headless auto-drain finish the work.",
|
|
319
|
+
"Use subagent({ action: \"status\", id: \"...\" }) when you need a one-shot status/result or to inspect a blocked/stale run. To block until completion, use subagent_wait() — do not poll in a loop.",
|
|
320
|
+
];
|
|
321
|
+
return [headline, "", ...guidance].join("\n");
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Check if jiti is available for async execution
|
|
326
|
+
*/
|
|
327
|
+
export function isAsyncAvailable(): boolean {
|
|
328
|
+
return jitiCliPath !== undefined;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
export function resolveAsyncRunnerLogPaths(cfg: object): { stdoutPath: string; stderrPath: string } | undefined {
|
|
332
|
+
const asyncDir = typeof (cfg as { asyncDir?: unknown }).asyncDir === "string"
|
|
333
|
+
? (cfg as { asyncDir: string }).asyncDir
|
|
334
|
+
: undefined;
|
|
335
|
+
if (!asyncDir) return undefined;
|
|
336
|
+
return {
|
|
337
|
+
stdoutPath: path.join(asyncDir, "runner.stdout.log"),
|
|
338
|
+
stderrPath: path.join(asyncDir, "runner.stderr.log"),
|
|
339
|
+
};
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
function closeFd(fd: number | undefined): void {
|
|
343
|
+
if (fd === undefined) return;
|
|
344
|
+
try {
|
|
345
|
+
fs.closeSync(fd);
|
|
346
|
+
} catch {
|
|
347
|
+
// Best-effort cleanup; child process already owns its duplicated stdio fd.
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* Spawn the async runner process
|
|
353
|
+
*/
|
|
354
|
+
const RUNNER_STARTUP_TIMEOUT_MS = 10_000;
|
|
355
|
+
const RUNNER_STARTUP_WAIT_BUFFER = typeof SharedArrayBuffer !== "undefined" ? new SharedArrayBuffer(4) : undefined;
|
|
356
|
+
const RUNNER_STARTUP_WAIT_VIEW = RUNNER_STARTUP_WAIT_BUFFER ? new Int32Array(RUNNER_STARTUP_WAIT_BUFFER) : undefined;
|
|
357
|
+
|
|
358
|
+
type RunnerStartupState = "ready" | "acknowledged";
|
|
359
|
+
|
|
360
|
+
type RunnerStartupWaitResult =
|
|
361
|
+
| { ok: true; token: string }
|
|
362
|
+
| { ok: false; error: string; startupDidNotProceed?: boolean };
|
|
363
|
+
|
|
364
|
+
function waitForStartupInterval(delayMs = 20): void {
|
|
365
|
+
if (RUNNER_STARTUP_WAIT_VIEW) {
|
|
366
|
+
Atomics.wait(RUNNER_STARTUP_WAIT_VIEW, 0, 0, delayMs);
|
|
367
|
+
return;
|
|
368
|
+
}
|
|
369
|
+
const waitUntil = Date.now() + delayMs;
|
|
370
|
+
while (Date.now() < waitUntil) {
|
|
371
|
+
// Startup handshakes are synchronous so resume rejects before reporting a run as started.
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
function readRunnerStartup(startupPath: string, expectedState: RunnerStartupState, expectedToken?: string): RunnerStartupWaitResult | undefined {
|
|
376
|
+
if (!fs.existsSync(startupPath)) return undefined;
|
|
377
|
+
try {
|
|
378
|
+
const payload = JSON.parse(fs.readFileSync(startupPath, "utf-8")) as { state?: unknown; token?: unknown; error?: unknown };
|
|
379
|
+
if (payload.state === "error" && typeof payload.error === "string") return { ok: false, error: payload.error, startupDidNotProceed: true };
|
|
380
|
+
if (payload.state !== expectedState) return undefined;
|
|
381
|
+
if (typeof payload.token !== "string" || (expectedToken !== undefined && payload.token !== expectedToken)) {
|
|
382
|
+
return { ok: false, error: `Async runner wrote an invalid ${expectedState} startup handshake: ${startupPath}`, startupDidNotProceed: true };
|
|
383
|
+
}
|
|
384
|
+
return { ok: true, token: payload.token };
|
|
385
|
+
} catch (error) {
|
|
386
|
+
return { ok: false, error: `Failed to read async runner startup handshake '${startupPath}': ${error instanceof Error ? error.message : String(error)}`, startupDidNotProceed: true };
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
function waitForRunnerStartup(startupPath: string, expectedState: RunnerStartupState, timeoutMs: number, expectedToken?: string): RunnerStartupWaitResult {
|
|
391
|
+
const deadline = Date.now() + timeoutMs;
|
|
392
|
+
for (;;) {
|
|
393
|
+
const result = readRunnerStartup(startupPath, expectedState, expectedToken);
|
|
394
|
+
if (result) return result;
|
|
395
|
+
if (Date.now() >= deadline) break;
|
|
396
|
+
waitForStartupInterval(Math.min(20, Math.max(1, deadline - Date.now())));
|
|
397
|
+
}
|
|
398
|
+
const finalResult = readRunnerStartup(startupPath, expectedState, expectedToken);
|
|
399
|
+
if (finalResult) return finalResult;
|
|
400
|
+
return { ok: false, error: `Timed out after ${timeoutMs}ms waiting for the async runner startup state '${expectedState}'.`, startupDidNotProceed: true };
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
function writeRunnerStartupControl(filePath: string, payload: { action: "ack" | "proceed"; token: string }): void {
|
|
404
|
+
// Delegate to the shared atomic JSON writer (temp file + rename, retrying
|
|
405
|
+
// transient Windows EPERM/EBUSY/EACCES locks and cleaning up the temp file
|
|
406
|
+
// on failure), so the startup handshake gets the same locking resilience as
|
|
407
|
+
// every other async control/result file. This is exercised by
|
|
408
|
+
// test/unit/atomic-json.test.ts.
|
|
409
|
+
writePrivateAtomicJson(filePath, payload);
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
function runnerIsAlive(pid: number): boolean {
|
|
413
|
+
try {
|
|
414
|
+
process.kill(pid, 0);
|
|
415
|
+
return true;
|
|
416
|
+
} catch (error) {
|
|
417
|
+
return (error as NodeJS.ErrnoException).code === "EPERM";
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
function terminateRunnerBeforeProceed(pid: number): boolean {
|
|
422
|
+
for (const signal of ["SIGTERM", "SIGKILL"] as const) {
|
|
423
|
+
if (!runnerIsAlive(pid)) return true;
|
|
424
|
+
try {
|
|
425
|
+
process.kill(pid, signal);
|
|
426
|
+
} catch {
|
|
427
|
+
if (!runnerIsAlive(pid)) return true;
|
|
428
|
+
}
|
|
429
|
+
const deadline = Date.now() + 1000;
|
|
430
|
+
while (runnerIsAlive(pid) && Date.now() < deadline) waitForStartupInterval();
|
|
431
|
+
}
|
|
432
|
+
return !runnerIsAlive(pid);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
function persistPreProceedStartupFailure(asyncDir: string, runId: string, runnerProcessInstanceId: string, sessionId: string | undefined, completionOwnerId: string | undefined, message: string): void {
|
|
436
|
+
const now = Date.now();
|
|
437
|
+
try {
|
|
438
|
+
const statusPath = path.join(asyncDir, "status.json");
|
|
439
|
+
let status: Partial<AsyncStatus> = {};
|
|
440
|
+
try {
|
|
441
|
+
status = JSON.parse(fs.readFileSync(statusPath, "utf-8")) as Partial<AsyncStatus>;
|
|
442
|
+
} catch {}
|
|
443
|
+
writePrivateAtomicJson(statusPath, {
|
|
444
|
+
...status,
|
|
445
|
+
runId,
|
|
446
|
+
...(sessionId ? { sessionId } : {}),
|
|
447
|
+
...(completionOwnerId ? { completionOwnerId } : {}),
|
|
448
|
+
state: "failed",
|
|
449
|
+
lastUpdate: now,
|
|
450
|
+
error: message,
|
|
451
|
+
processTerminal: {
|
|
452
|
+
version: 1,
|
|
453
|
+
state: "not-started",
|
|
454
|
+
runId,
|
|
455
|
+
runnerProcessInstanceId,
|
|
456
|
+
},
|
|
457
|
+
});
|
|
458
|
+
writePrivateAtomicJson(path.join(asyncDir, "process-terminal-candidate.json"), {
|
|
459
|
+
version: 1,
|
|
460
|
+
runId,
|
|
461
|
+
runnerProcessInstanceId,
|
|
462
|
+
writers: {},
|
|
463
|
+
expectedWriters: { 0: 0 },
|
|
464
|
+
});
|
|
465
|
+
} catch {
|
|
466
|
+
// Startup failures must still return the original launch error.
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
interface SpawnRunnerResult {
|
|
471
|
+
pid?: number;
|
|
472
|
+
runnerProcessInstanceId?: string;
|
|
473
|
+
error?: string;
|
|
474
|
+
terminationObserved?: boolean;
|
|
475
|
+
startupDidNotProceed?: boolean;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
function spawnRunner(cfg: object, suffix: string, cwd: string, onProcessTerminal?: (proof: unknown) => void): SpawnRunnerResult {
|
|
479
|
+
if (!jitiCliPath) {
|
|
480
|
+
return { error: "upstream jiti for TypeScript execution could not be found; ensure package dependencies are installed" };
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
try {
|
|
484
|
+
const cwdStats = fs.statSync(cwd);
|
|
485
|
+
if (!cwdStats.isDirectory()) {
|
|
486
|
+
return { error: `cwd is not a directory: ${cwd}` };
|
|
487
|
+
}
|
|
488
|
+
} catch {
|
|
489
|
+
return { error: `cwd does not exist: ${cwd}` };
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
fs.mkdirSync(TEMP_ROOT_DIR, { recursive: true });
|
|
493
|
+
const cfgPath = getAsyncConfigPath(suffix);
|
|
494
|
+
const runnerProcessInstanceId = randomUUID();
|
|
495
|
+
const launchConfig = { ...cfg, runnerProcessInstanceId };
|
|
496
|
+
fs.writeFileSync(cfgPath, JSON.stringify(launchConfig));
|
|
497
|
+
const runner = path.join(path.dirname(fileURLToPath(import.meta.url)), "subagent-runner.ts");
|
|
498
|
+
const nodeCommand = resolveNodeExecutable();
|
|
499
|
+
const launchForStartup = launchConfig as typeof launchConfig & { asyncDir?: unknown; id?: unknown; sessionId?: unknown; completionOwnerId?: unknown; revivalLease?: unknown };
|
|
500
|
+
const launchAsyncDir = typeof launchForStartup.asyncDir === "string" ? launchForStartup.asyncDir : undefined;
|
|
501
|
+
const launchRunId = typeof launchForStartup.id === "string" ? launchForStartup.id : suffix;
|
|
502
|
+
const launchSessionId = typeof launchForStartup.sessionId === "string" ? launchForStartup.sessionId : undefined;
|
|
503
|
+
const launchCompletionOwnerId = typeof launchForStartup.completionOwnerId === "string" ? launchForStartup.completionOwnerId : undefined;
|
|
504
|
+
const startupPath = typeof launchForStartup.revivalLease === "object" && launchAsyncDir
|
|
505
|
+
? path.join(launchAsyncDir, "runner-startup.json")
|
|
506
|
+
: undefined;
|
|
507
|
+
const startupAckPath = startupPath ? path.join(path.dirname(startupPath), "runner-startup-ack.json") : undefined;
|
|
508
|
+
const startupProceedPath = startupPath ? path.join(path.dirname(startupPath), "runner-startup-proceed.json") : undefined;
|
|
509
|
+
if (startupPath) fs.rmSync(startupPath, { force: true });
|
|
510
|
+
if (startupAckPath) fs.rmSync(startupAckPath, { force: true });
|
|
511
|
+
if (startupProceedPath) fs.rmSync(startupProceedPath, { force: true });
|
|
512
|
+
|
|
513
|
+
const logPaths = resolveAsyncRunnerLogPaths(launchConfig);
|
|
514
|
+
let stdoutFd: number | undefined;
|
|
515
|
+
let stderrFd: number | undefined;
|
|
516
|
+
try {
|
|
517
|
+
if (logPaths) {
|
|
518
|
+
fs.mkdirSync(path.dirname(logPaths.stdoutPath), { recursive: true });
|
|
519
|
+
stdoutFd = fs.openSync(logPaths.stdoutPath, "a");
|
|
520
|
+
stderrFd = fs.openSync(logPaths.stderrPath, "a");
|
|
521
|
+
}
|
|
522
|
+
const proc = spawn(nodeCommand, [jitiCliPath, runner, cfgPath], {
|
|
523
|
+
cwd,
|
|
524
|
+
detached: true,
|
|
525
|
+
stdio: ["ignore", stdoutFd ?? "ignore", stderrFd ?? "ignore"],
|
|
526
|
+
windowsHide: true,
|
|
527
|
+
env: {
|
|
528
|
+
...process.env,
|
|
529
|
+
...(piPackageRoot ? { [PI_CODING_AGENT_PACKAGE_ROOT_ENV]: piPackageRoot } : {}),
|
|
530
|
+
},
|
|
531
|
+
});
|
|
532
|
+
closeFd(stdoutFd);
|
|
533
|
+
closeFd(stderrFd);
|
|
534
|
+
proc.on("error", (error) => {
|
|
535
|
+
console.error(`[pi-subagents] async spawn failed: ${error.message}`);
|
|
536
|
+
});
|
|
537
|
+
proc.once("close", (exitCode, signal) => {
|
|
538
|
+
const launch = launchConfig as { asyncDir?: unknown; id?: unknown; nestedRoute?: NestedRouteInfo; nestedSelf?: { parentRunId: string; parentStepIndex?: number; depth: number; path?: Array<{ runId: string; stepIndex?: number; agent?: string }> } };
|
|
539
|
+
const asyncDir = launch.asyncDir;
|
|
540
|
+
const runId = launch.id;
|
|
541
|
+
if (typeof asyncDir !== "string" || typeof runId !== "string") return;
|
|
542
|
+
finalizeProcessTerminal(asyncDir, runId, {
|
|
543
|
+
processInstanceId: runnerProcessInstanceId,
|
|
544
|
+
closeObservedAt: Date.now(),
|
|
545
|
+
exitCode,
|
|
546
|
+
signal,
|
|
547
|
+
});
|
|
548
|
+
const persisted = readProcessTerminal(asyncDir, { runId, runnerProcessInstanceId });
|
|
549
|
+
if (!persisted) return;
|
|
550
|
+
if (launch.nestedRoute && launch.nestedSelf) {
|
|
551
|
+
try {
|
|
552
|
+
let status: import("../../shared/types.ts").AsyncStatus;
|
|
553
|
+
try {
|
|
554
|
+
status = JSON.parse(fs.readFileSync(path.join(asyncDir, "status.json"), "utf-8")) as import("../../shared/types.ts").AsyncStatus;
|
|
555
|
+
status.processTerminal = persisted;
|
|
556
|
+
} catch {
|
|
557
|
+
status = {
|
|
558
|
+
runId,
|
|
559
|
+
mode: "single",
|
|
560
|
+
state: persisted.state === "observed" ? "complete" : "failed",
|
|
561
|
+
startedAt: persisted.observedAt ?? Date.now(),
|
|
562
|
+
lastUpdate: Date.now(),
|
|
563
|
+
processTerminal: persisted,
|
|
564
|
+
};
|
|
565
|
+
}
|
|
566
|
+
writeNestedEvent(launch.nestedRoute, {
|
|
567
|
+
type: "subagent.nested.completed",
|
|
568
|
+
ts: Date.now(),
|
|
569
|
+
parentRunId: launch.nestedSelf.parentRunId,
|
|
570
|
+
parentStepIndex: launch.nestedSelf.parentStepIndex,
|
|
571
|
+
child: nestedSummaryFromAsyncStatus(status, asyncDir, {
|
|
572
|
+
id: runId,
|
|
573
|
+
parentRunId: launch.nestedSelf.parentRunId,
|
|
574
|
+
parentStepIndex: launch.nestedSelf.parentStepIndex,
|
|
575
|
+
depth: launch.nestedSelf.depth,
|
|
576
|
+
path: launch.nestedSelf.path,
|
|
577
|
+
mode: status.mode,
|
|
578
|
+
ts: Date.now(),
|
|
579
|
+
}),
|
|
580
|
+
});
|
|
581
|
+
} catch (error) {
|
|
582
|
+
console.error("Failed to emit final nested process-terminal status:", error);
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
try {
|
|
586
|
+
onProcessTerminal?.(persisted);
|
|
587
|
+
} catch (error) {
|
|
588
|
+
// The close proof is already durable. Reload/disposal can retire the
|
|
589
|
+
// originating Pi API before this late advisory wake; never redirect it
|
|
590
|
+
// to a new session or claim a receipt. Recovery must read the record.
|
|
591
|
+
if (!(error instanceof Error)
|
|
592
|
+
|| !/extension ctx is stale|stale after session replacement or reload/i.test(error.message)) throw error;
|
|
593
|
+
}
|
|
594
|
+
});
|
|
595
|
+
if (typeof proc.pid !== "number") {
|
|
596
|
+
return { error: `async runner did not produce a pid for cwd: ${cwd}` };
|
|
597
|
+
}
|
|
598
|
+
proc.unref();
|
|
599
|
+
if (startupPath && startupAckPath && startupProceedPath) {
|
|
600
|
+
const persistStartupFailure = (message: string) => {
|
|
601
|
+
if (launchAsyncDir) persistPreProceedStartupFailure(launchAsyncDir, launchRunId, runnerProcessInstanceId, launchSessionId, launchCompletionOwnerId, message);
|
|
602
|
+
};
|
|
603
|
+
const ready = waitForRunnerStartup(startupPath, "ready", RUNNER_STARTUP_TIMEOUT_MS);
|
|
604
|
+
if (ready.ok === false) {
|
|
605
|
+
persistStartupFailure(ready.error);
|
|
606
|
+
const terminationObserved = terminateRunnerBeforeProceed(proc.pid);
|
|
607
|
+
return { pid: proc.pid, runnerProcessInstanceId, error: ready.error, terminationObserved, startupDidNotProceed: ready.startupDidNotProceed };
|
|
608
|
+
}
|
|
609
|
+
try {
|
|
610
|
+
writeRunnerStartupControl(startupAckPath, { action: "ack", token: ready.token });
|
|
611
|
+
} catch (error) {
|
|
612
|
+
const message = `Failed to acknowledge async runner startup: ${error instanceof Error ? error.message : String(error)}`;
|
|
613
|
+
persistStartupFailure(message);
|
|
614
|
+
const terminationObserved = terminateRunnerBeforeProceed(proc.pid);
|
|
615
|
+
return { pid: proc.pid, runnerProcessInstanceId, error: message, terminationObserved, startupDidNotProceed: true };
|
|
616
|
+
}
|
|
617
|
+
const acknowledged = waitForRunnerStartup(startupPath, "acknowledged", RUNNER_STARTUP_TIMEOUT_MS, ready.token);
|
|
618
|
+
if (acknowledged.ok === false) {
|
|
619
|
+
persistStartupFailure(acknowledged.error);
|
|
620
|
+
const terminationObserved = terminateRunnerBeforeProceed(proc.pid);
|
|
621
|
+
return { pid: proc.pid, runnerProcessInstanceId, error: acknowledged.error, terminationObserved, startupDidNotProceed: acknowledged.startupDidNotProceed };
|
|
622
|
+
}
|
|
623
|
+
try {
|
|
624
|
+
writeRunnerStartupControl(startupProceedPath, { action: "proceed", token: ready.token });
|
|
625
|
+
} catch (error) {
|
|
626
|
+
const message = `Failed to authorize async runner startup: ${error instanceof Error ? error.message : String(error)}`;
|
|
627
|
+
persistStartupFailure(message);
|
|
628
|
+
const terminationObserved = terminateRunnerBeforeProceed(proc.pid);
|
|
629
|
+
return { pid: proc.pid, runnerProcessInstanceId, error: message, terminationObserved, startupDidNotProceed: true };
|
|
630
|
+
}
|
|
631
|
+
try {
|
|
632
|
+
fs.rmSync(startupPath, { force: true });
|
|
633
|
+
} catch {
|
|
634
|
+
// Proceed is the commit point; handshake cleanup cannot turn a running revival into a start error.
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
return { pid: proc.pid, runnerProcessInstanceId };
|
|
638
|
+
} catch (error) {
|
|
639
|
+
closeFd(stdoutFd);
|
|
640
|
+
closeFd(stderrFd);
|
|
641
|
+
return { error: error instanceof Error ? error.message : String(error) };
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
function formatAsyncStartError(mode: SubagentRunMode, message: string): AsyncExecutionResult {
|
|
646
|
+
return {
|
|
647
|
+
content: [{ type: "text", text: message }],
|
|
648
|
+
isError: true,
|
|
649
|
+
details: { mode, results: [] },
|
|
650
|
+
};
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
const UNAVAILABLE_SUBAGENT_SKILL_ERROR = "Skills not found: pi-subagents";
|
|
654
|
+
|
|
655
|
+
class UnavailableSubagentSkillError extends Error {}
|
|
656
|
+
class AsyncStartValidationError extends Error {}
|
|
657
|
+
|
|
658
|
+
export function buildAsyncRunnerSteps(id: string, params: AsyncRunnerStepBuildParams): AsyncRunnerStepBuildResult {
|
|
659
|
+
const {
|
|
660
|
+
chain,
|
|
661
|
+
agents,
|
|
662
|
+
ctx,
|
|
663
|
+
cwd,
|
|
664
|
+
sessionFilesByFlatIndex,
|
|
665
|
+
thinkingOverridesByFlatIndex,
|
|
666
|
+
maxSubagentDepth,
|
|
667
|
+
worktreeBaseDir,
|
|
668
|
+
asyncDir,
|
|
669
|
+
} = params;
|
|
670
|
+
const outputBaseDir = params.outputBaseDir;
|
|
671
|
+
const resultMode = params.resultMode ?? "chain";
|
|
672
|
+
const chainSkills = params.chainSkills ?? [];
|
|
673
|
+
const availableModels = params.availableModels;
|
|
674
|
+
const runnerCwd = resolveChildCwd(ctx.cwd, cwd);
|
|
675
|
+
const progressDir = params.progressDir ?? runnerCwd;
|
|
676
|
+
const graphChain: ChainStep[] = params.attachRoot
|
|
677
|
+
? [{
|
|
678
|
+
agent: params.attachRoot.agent,
|
|
679
|
+
task: `Attach async root ${params.attachRoot.runId}`,
|
|
680
|
+
label: params.attachRoot.label ?? `Attached root ${params.attachRoot.runId}`,
|
|
681
|
+
...(params.attachRoot.outputName ? { as: params.attachRoot.outputName } : {}),
|
|
682
|
+
}, ...chain]
|
|
683
|
+
: chain;
|
|
684
|
+
const firstStep = chain[0];
|
|
685
|
+
const originalTask = params.task ?? (firstStep
|
|
686
|
+
? (isParallelStep(firstStep)
|
|
687
|
+
? firstStep.parallel[0]?.task
|
|
688
|
+
: isDynamicParallelStep(firstStep)
|
|
689
|
+
? firstStep.parallel.task
|
|
690
|
+
: (firstStep as SequentialStep).task)
|
|
691
|
+
: undefined);
|
|
692
|
+
try {
|
|
693
|
+
if (params.validateOutputBindings !== false) {
|
|
694
|
+
validateChainOutputBindings(chain, { maxItems: params.dynamicFanoutMaxItems });
|
|
695
|
+
}
|
|
696
|
+
} catch (error) {
|
|
697
|
+
if (error instanceof ChainOutputValidationError) return { error: error.message };
|
|
698
|
+
throw error;
|
|
699
|
+
}
|
|
700
|
+
const workflowGraph = buildWorkflowGraphSnapshot({ runId: id, mode: resultMode, steps: graphChain });
|
|
701
|
+
|
|
702
|
+
for (const s of chain) {
|
|
703
|
+
const stepAgents = isParallelStep(s)
|
|
704
|
+
? s.parallel.map((t) => t.agent)
|
|
705
|
+
: isDynamicParallelStep(s)
|
|
706
|
+
? [s.parallel.agent]
|
|
707
|
+
: [(s as SequentialStep).agent];
|
|
708
|
+
for (const agentName of stepAgents) {
|
|
709
|
+
if (!agents.find((x) => x.name === agentName)) {
|
|
710
|
+
return { error: `Unknown agent: ${agentName}` };
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
let progressInstructionCreated = false;
|
|
716
|
+
const buildStepOverrides = (s: SequentialStep): StepOverrides => {
|
|
717
|
+
const stepSkillInput = normalizeSkillInput(s.skill);
|
|
718
|
+
return {
|
|
719
|
+
...(s.output !== undefined ? { output: s.output } : {}),
|
|
720
|
+
...(s.outputMode !== undefined ? { outputMode: s.outputMode } : {}),
|
|
721
|
+
...(s.reads !== undefined ? { reads: s.reads } : {}),
|
|
722
|
+
...(s.progress !== undefined ? { progress: s.progress } : {}),
|
|
723
|
+
...(stepSkillInput !== undefined ? { skills: stepSkillInput } : {}),
|
|
724
|
+
...(s.model !== undefined ? { model: s.model } : {}),
|
|
725
|
+
};
|
|
726
|
+
};
|
|
727
|
+
const buildSeqStep = (s: SequentialStep, sessionFile?: string, behaviorCwd?: string, progressPrecreated = false, resolvedBehavior?: ResolvedStepBehavior, flatIndex?: number, parallelOutputNamespace?: { stepIndex: number; taskIndex?: number }, runFanoutPath?: string) => {
|
|
728
|
+
const a = agents.find((x) => x.name === s.agent)!;
|
|
729
|
+
const externalRunner = a.runner?.type === "external-cli" || a.runner?.type === "external-job";
|
|
730
|
+
const externalRunnerType = a.runner?.type;
|
|
731
|
+
if (externalRunner) {
|
|
732
|
+
const unsupported: string[] = [];
|
|
733
|
+
if (s.model !== undefined) unsupported.push("model override");
|
|
734
|
+
if (s.outputSchema !== undefined) unsupported.push("structured output");
|
|
735
|
+
if (s.acceptance !== undefined || params.agentContract !== undefined || s.agentContract !== undefined) unsupported.push("acceptance/agent contract");
|
|
736
|
+
if (s.toolBudget !== undefined || params.toolBudget !== undefined || a.toolBudget !== undefined || params.configToolBudget !== undefined) unsupported.push("tool budget");
|
|
737
|
+
if (params.contextForAgent?.(s.agent) === "fork") unsupported.push("fork context");
|
|
738
|
+
if (unsupported.length > 0) throw new AsyncStartValidationError(`Agent '${a.name}' uses runner.type='${externalRunnerType}' and does not support: ${unsupported.join(", ")}.`);
|
|
739
|
+
}
|
|
740
|
+
try {
|
|
741
|
+
assertAgentAllowedByCapabilityCeiling(a.name, intersectSubagentCapabilityCeilings(params.capabilityCeiling, decodeSubagentCapabilityCeiling(process.env[SUBAGENT_CAPABILITY_CEILING_ENV])));
|
|
742
|
+
} catch (error) {
|
|
743
|
+
throw new AsyncStartValidationError(error instanceof Error ? error.message : String(error));
|
|
744
|
+
}
|
|
745
|
+
const toolBudgetInput = s.toolBudget ?? params.toolBudget ?? a.toolBudget ?? params.configToolBudget;
|
|
746
|
+
const resolvedToolBudget = validateToolBudgetConfig(toolBudgetInput, s.toolBudget ? "toolBudget" : a.toolBudget ? "agent.toolBudget" : "config.toolBudget");
|
|
747
|
+
if (resolvedToolBudget.error) throw new AsyncStartValidationError(resolvedToolBudget.error);
|
|
748
|
+
const resolvedToolTimeout = resolveToolTimeoutMs({
|
|
749
|
+
callValue: params.callToolTimeoutMs,
|
|
750
|
+
agentValue: a.defaultToolTimeoutMs,
|
|
751
|
+
configValue: params.configToolTimeoutMs,
|
|
752
|
+
envValue: params.toolTimeoutMsEnv ?? toolTimeoutFromEnv(),
|
|
753
|
+
});
|
|
754
|
+
if (resolvedToolTimeout.error) throw new AsyncStartValidationError(resolvedToolTimeout.error);
|
|
755
|
+
const stepCwd = resolveChildCwd(runnerCwd, s.cwd);
|
|
756
|
+
const instructionCwd = behaviorCwd ?? stepCwd;
|
|
757
|
+
const readExistenceCwd = behaviorCwd ? stepCwd : instructionCwd;
|
|
758
|
+
let behavior = suppressProgressForReadOnlyTask(resolvedBehavior ?? resolveStepBehavior(a, buildStepOverrides(s), chainSkills), s.task, originalTask);
|
|
759
|
+
const inheritedRelativeParallelOutput = parallelOutputNamespace && s.output === undefined && typeof behavior.output === "string" && !path.isAbsolute(behavior.output);
|
|
760
|
+
if (inheritedRelativeParallelOutput && parallelOutputNamespace.taskIndex !== undefined) {
|
|
761
|
+
behavior = {
|
|
762
|
+
...behavior,
|
|
763
|
+
output: path.join(`parallel-${parallelOutputNamespace.stepIndex}`, `${parallelOutputNamespace.taskIndex}-${s.agent}`, behavior.output as string),
|
|
764
|
+
};
|
|
765
|
+
}
|
|
766
|
+
const namespaceOutputPath = Boolean(inheritedRelativeParallelOutput && parallelOutputNamespace.taskIndex === undefined);
|
|
767
|
+
const skillNames = behavior.skills === false ? [] : behavior.skills;
|
|
768
|
+
const { resolved: resolvedSkills, missing: missingSkills } = resolveSkillsWithFallback(
|
|
769
|
+
skillNames,
|
|
770
|
+
stepCwd,
|
|
771
|
+
ctx.cwd,
|
|
772
|
+
a.skillPath,
|
|
773
|
+
a.filePath ? path.dirname(a.filePath) : stepCwd,
|
|
774
|
+
);
|
|
775
|
+
if (missingSkills.includes("pi-subagents")) throw new UnavailableSubagentSkillError(UNAVAILABLE_SUBAGENT_SKILL_ERROR);
|
|
776
|
+
|
|
777
|
+
let systemPrompt = a.systemPrompt?.trim() ?? "";
|
|
778
|
+
if (resolvedSkills.length > 0) {
|
|
779
|
+
const injection = buildSkillInjection(resolvedSkills);
|
|
780
|
+
systemPrompt = systemPrompt ? `${systemPrompt}\n\n${injection}` : injection;
|
|
781
|
+
}
|
|
782
|
+
const memoryInjection = buildAgentMemoryInjection(a, stepCwd);
|
|
783
|
+
if (memoryInjection) {
|
|
784
|
+
systemPrompt = systemPrompt ? `${systemPrompt}\n\n${memoryInjection}` : memoryInjection;
|
|
785
|
+
}
|
|
786
|
+
systemPrompt = appendAgentRefinementOverlay(systemPrompt, { cwd: stepCwd, agentName: a.name });
|
|
787
|
+
|
|
788
|
+
const readInstructions = buildChainInstructions({ ...behavior, output: false, progress: false }, instructionCwd, false, undefined, readExistenceCwd);
|
|
789
|
+
const isFirstProgressAgent = behavior.progress && !progressPrecreated && !progressInstructionCreated;
|
|
790
|
+
if (behavior.progress) progressInstructionCreated = true;
|
|
791
|
+
const progressInstructions = buildChainInstructions({ ...behavior, output: false, reads: false }, progressDir, isFirstProgressAgent);
|
|
792
|
+
const outputPath = resolveSingleOutputPath(behavior.output, ctx.cwd, instructionCwd, outputBaseDir);
|
|
793
|
+
if (!namespaceOutputPath) systemPrompt = injectOutputPathSystemPrompt(systemPrompt, outputPath, a);
|
|
794
|
+
const validationError = validateFileOnlyOutputMode(behavior.outputMode, outputPath, `Async step (${s.agent})`);
|
|
795
|
+
if (validationError) throw new AsyncStartValidationError(validationError);
|
|
796
|
+
let taskTemplate = s.task ?? "{previous}";
|
|
797
|
+
taskTemplate = taskTemplate.replace(/\{task\}/g, originalTask ?? "");
|
|
798
|
+
taskTemplate = taskTemplate.replace(/\{chain_dir\}/g, runnerCwd);
|
|
799
|
+
const taskText = `${readInstructions.prefix}${taskTemplate}${progressInstructions.suffix}`;
|
|
800
|
+
const task = namespaceOutputPath ? taskText : injectSingleOutputInstruction(taskText, outputPath, a);
|
|
801
|
+
|
|
802
|
+
const primaryModel = externalRunner ? undefined : resolveEffectiveSubagentModel(
|
|
803
|
+
s.model,
|
|
804
|
+
a.model,
|
|
805
|
+
ctx.currentModel,
|
|
806
|
+
availableModels,
|
|
807
|
+
ctx.currentModelProvider,
|
|
808
|
+
{ scope: ctx.modelScope },
|
|
809
|
+
);
|
|
810
|
+
const thinkingOverride = flatIndex === undefined ? undefined : thinkingOverridesByFlatIndex?.[flatIndex];
|
|
811
|
+
const effectiveThinking = externalRunner ? undefined : thinkingOverride ?? a.thinking;
|
|
812
|
+
const model = externalRunner ? undefined : applyThinkingSuffix(primaryModel, effectiveThinking, thinkingOverride !== undefined);
|
|
813
|
+
const agentContract = s.agentContract ?? params.agentContract;
|
|
814
|
+
const toolPlan = resolvePiLaunchToolPlan({
|
|
815
|
+
tools: a.tools,
|
|
816
|
+
extensions: a.extensions,
|
|
817
|
+
subagentOnlyExtensions: a.subagentOnlyExtensions,
|
|
818
|
+
mcpDirectTools: a.mcpDirectTools,
|
|
819
|
+
cwd: stepCwd,
|
|
820
|
+
requireReadTool: Boolean(resolvedSkills.length),
|
|
821
|
+
structuredOutput: Boolean(s.outputSchema),
|
|
822
|
+
capabilityCeiling: params.capabilityCeiling,
|
|
823
|
+
inheritedCapabilityCeiling: decodeSubagentCapabilityCeiling(process.env[SUBAGENT_CAPABILITY_CEILING_ENV]),
|
|
824
|
+
agentName: a.name,
|
|
825
|
+
});
|
|
826
|
+
const launchResolvedExtensions = externalRunner ? undefined : projectLaunchResolvedChildExtensions(toolPlan);
|
|
827
|
+
const permissionRules = resolvePermissionRules(ctx.permissions, a.permissions);
|
|
828
|
+
if (externalRunner && permissionRules) {
|
|
829
|
+
throw new AsyncStartValidationError(`Agent '${a.name}' uses runner.type='${externalRunnerType}', which cannot enforce native Pi child permission rules.`);
|
|
830
|
+
}
|
|
831
|
+
return {
|
|
832
|
+
parentSessionId: ctx.parentSessionId ?? ctx.currentSessionId,
|
|
833
|
+
permissionRules,
|
|
834
|
+
...(params.capabilityCeiling ? { capabilityCeiling: params.capabilityCeiling } : {}),
|
|
835
|
+
...(runFanoutPath ? { runFanoutPath } : {}),
|
|
836
|
+
agent: s.agent,
|
|
837
|
+
task,
|
|
838
|
+
...(a.runner ? { runner: a.runner } : {}),
|
|
839
|
+
...(params.contextForAgent ? { context: params.contextForAgent(s.agent) } : {}),
|
|
840
|
+
...(agentContract ? { agentContract } : {}),
|
|
841
|
+
phase: s.phase,
|
|
842
|
+
label: s.label,
|
|
843
|
+
outputName: s.as,
|
|
844
|
+
structured: Boolean(s.outputSchema),
|
|
845
|
+
cwd: stepCwd,
|
|
846
|
+
model,
|
|
847
|
+
thinking: resolveEffectiveThinking(model, effectiveThinking),
|
|
848
|
+
launchResolvedExtensions,
|
|
849
|
+
modelCandidates: externalRunner ? undefined : buildModelCandidates(primaryModel, a.fallbackModels, availableModels, ctx.currentModelProvider, {
|
|
850
|
+
scope: ctx.modelScope,
|
|
851
|
+
primaryModelFromParent: inheritsParentModel(s.model, a.model, ctx.currentModel),
|
|
852
|
+
}).map((candidate) =>
|
|
853
|
+
applyThinkingSuffix(candidate, effectiveThinking, thinkingOverride !== undefined),
|
|
854
|
+
),
|
|
855
|
+
tools: a.tools,
|
|
856
|
+
extensions: a.extensions,
|
|
857
|
+
subagentOnlyExtensions: a.subagentOnlyExtensions,
|
|
858
|
+
mcpDirectTools: a.mcpDirectTools,
|
|
859
|
+
completionGuard: a.completionGuard,
|
|
860
|
+
systemPrompt,
|
|
861
|
+
systemPromptMode: a.systemPromptMode,
|
|
862
|
+
inheritProjectContext: a.inheritProjectContext,
|
|
863
|
+
inheritSkills: a.inheritSkills,
|
|
864
|
+
skills: resolvedSkills.map((r) => r.name),
|
|
865
|
+
outputPath,
|
|
866
|
+
...(namespaceOutputPath ? { namespaceOutputPath: true } : {}),
|
|
867
|
+
outputMode: behavior.outputMode,
|
|
868
|
+
sessionFile,
|
|
869
|
+
maxSubagentDepth: resolveChildMaxSubagentDepth(maxSubagentDepth, a.maxSubagentDepth),
|
|
870
|
+
timeoutMs: a.defaultTimeoutMs ?? DEFAULT_ASYNC_TIMEOUT_MS,
|
|
871
|
+
toolTimeoutMs: resolvedToolTimeout.toolTimeoutMs,
|
|
872
|
+
waitToolEnabled: params.waitToolEnabled,
|
|
873
|
+
effectiveAcceptance: resolveEffectiveAcceptance({
|
|
874
|
+
explicit: s.acceptance,
|
|
875
|
+
agentName: s.agent,
|
|
876
|
+
acceptanceRole: a.acceptanceRole,
|
|
877
|
+
task,
|
|
878
|
+
mode: resultMode,
|
|
879
|
+
async: true,
|
|
880
|
+
dynamic: false,
|
|
881
|
+
agentContract,
|
|
882
|
+
}),
|
|
883
|
+
acceptanceInput: s.acceptance,
|
|
884
|
+
acceptanceRole: a.acceptanceRole,
|
|
885
|
+
...(s.gateOn ? { gateOn: s.gateOn } : {}),
|
|
886
|
+
...(s.outputSchema ? { structuredOutputSchema: s.outputSchema } : {}),
|
|
887
|
+
...(s.outputSchema ? { structuredOutput: createStructuredOutputRuntime(s.outputSchema, path.join(asyncDir, "structured-output")) } : {}),
|
|
888
|
+
...(resolvedToolBudget.budget ? { toolBudget: resolvedToolBudget.budget } : {}),
|
|
889
|
+
...(s.worktree ? { worktree: true } : {}),
|
|
890
|
+
};
|
|
891
|
+
};
|
|
892
|
+
|
|
893
|
+
let flatStepIndex = 0;
|
|
894
|
+
const nextFlatStep = (): { index: number; sessionFile?: string; thinkingOverride?: AgentConfig["thinking"] } => {
|
|
895
|
+
const index = flatStepIndex;
|
|
896
|
+
const sessionFile = sessionFilesByFlatIndex?.[flatStepIndex];
|
|
897
|
+
const thinkingOverride = thinkingOverridesByFlatIndex?.[flatStepIndex];
|
|
898
|
+
flatStepIndex++;
|
|
899
|
+
return {
|
|
900
|
+
index,
|
|
901
|
+
...(sessionFile ? { sessionFile } : {}),
|
|
902
|
+
...(thinkingOverride ? { thinkingOverride } : {}),
|
|
903
|
+
};
|
|
904
|
+
};
|
|
905
|
+
|
|
906
|
+
try {
|
|
907
|
+
const builtSteps = chain.map((s, stepIndex) => {
|
|
908
|
+
if (isParallelStep(s)) {
|
|
909
|
+
const parallelBehaviors = s.parallel.map((task) => {
|
|
910
|
+
const agent = agents.find((candidate) => candidate.name === task.agent)!;
|
|
911
|
+
return suppressProgressForReadOnlyTask(resolveStepBehavior(agent, buildStepOverrides(task), chainSkills), task.task, originalTask);
|
|
912
|
+
});
|
|
913
|
+
const progressPrecreated = parallelBehaviors.some((behavior) => behavior.progress);
|
|
914
|
+
if (progressPrecreated) {
|
|
915
|
+
if (!s.worktree || params.progressDir) writeInitialProgressFile(progressDir);
|
|
916
|
+
progressInstructionCreated = true;
|
|
917
|
+
}
|
|
918
|
+
return {
|
|
919
|
+
parallel: s.parallel.map((t, taskIndex) => {
|
|
920
|
+
let behaviorCwd: string | undefined;
|
|
921
|
+
if (s.worktree) {
|
|
922
|
+
try {
|
|
923
|
+
behaviorCwd = resolveExpectedWorktreeAgentCwd(runnerCwd, `${id}-s${stepIndex}`, taskIndex, worktreeBaseDir);
|
|
924
|
+
} catch {
|
|
925
|
+
behaviorCwd = undefined;
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
const staticStep = nextFlatStep();
|
|
929
|
+
return buildSeqStep({ ...t, agentContract: t.agentContract ?? s.agentContract, gateOn: t.gateOn ?? s.gateOn }, staticStep.sessionFile, behaviorCwd, progressPrecreated, parallelBehaviors[taskIndex], staticStep.index, { stepIndex, taskIndex }, resultMode === "parallel" ? `tasks[${taskIndex}]` : `chain[${stepIndex}].parallel[${taskIndex}]`);
|
|
930
|
+
}),
|
|
931
|
+
concurrency: s.concurrency,
|
|
932
|
+
failFast: s.failFast,
|
|
933
|
+
worktree: s.worktree,
|
|
934
|
+
};
|
|
935
|
+
}
|
|
936
|
+
if (isDynamicParallelStep(s)) {
|
|
937
|
+
const agent = agents.find((candidate) => candidate.name === s.parallel.agent)!;
|
|
938
|
+
const behavior = suppressProgressForReadOnlyTask(resolveStepBehavior(agent, buildStepOverrides(s.parallel), chainSkills), s.parallel.task, originalTask);
|
|
939
|
+
const progressPrecreated = behavior.progress;
|
|
940
|
+
if (progressPrecreated) {
|
|
941
|
+
writeInitialProgressFile(progressDir);
|
|
942
|
+
progressInstructionCreated = true;
|
|
943
|
+
}
|
|
944
|
+
const maxItems = s.expand.maxItems ?? params.dynamicFanoutMaxItems ?? 0;
|
|
945
|
+
const dynamicFlatSteps = Array.from({ length: maxItems }, () => nextFlatStep());
|
|
946
|
+
const parallel = buildSeqStep({ ...(s.parallel as SequentialStep), agentContract: s.parallel.agentContract ?? s.agentContract, gateOn: s.parallel.gateOn ?? s.gateOn }, undefined, undefined, progressPrecreated, behavior, undefined, { stepIndex });
|
|
947
|
+
return {
|
|
948
|
+
expand: s.expand,
|
|
949
|
+
parallel,
|
|
950
|
+
collect: s.collect,
|
|
951
|
+
concurrency: s.concurrency,
|
|
952
|
+
failFast: s.failFast,
|
|
953
|
+
phase: s.phase,
|
|
954
|
+
label: s.label,
|
|
955
|
+
sessionFiles: dynamicFlatSteps.map((step) => step.sessionFile),
|
|
956
|
+
thinkingOverrides: dynamicFlatSteps.map((step) => step.thinkingOverride),
|
|
957
|
+
effectiveAcceptance: resolveEffectiveAcceptance({
|
|
958
|
+
explicit: s.acceptance,
|
|
959
|
+
agentName: s.parallel.agent,
|
|
960
|
+
acceptanceRole: agent.acceptanceRole,
|
|
961
|
+
task: parallel.task,
|
|
962
|
+
mode: resultMode,
|
|
963
|
+
async: true,
|
|
964
|
+
dynamicGroup: true,
|
|
965
|
+
agentContract: s.agentContract ?? params.agentContract,
|
|
966
|
+
}),
|
|
967
|
+
acceptanceInput: s.acceptance,
|
|
968
|
+
acceptanceRole: agent.acceptanceRole,
|
|
969
|
+
...(s.agentContract ?? params.agentContract ? { agentContract: s.agentContract ?? params.agentContract } : {}),
|
|
970
|
+
...(s.gateOn ? { gateOn: s.gateOn } : {}),
|
|
971
|
+
};
|
|
972
|
+
}
|
|
973
|
+
const sequential = s as SequentialStep;
|
|
974
|
+
let behaviorCwd: string | undefined;
|
|
975
|
+
if (sequential.worktree) {
|
|
976
|
+
try {
|
|
977
|
+
behaviorCwd = resolveExpectedWorktreeAgentCwd(runnerCwd, `${id}-s${stepIndex}`, 0, worktreeBaseDir);
|
|
978
|
+
} catch {
|
|
979
|
+
behaviorCwd = undefined;
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
const staticStep = nextFlatStep();
|
|
983
|
+
return buildSeqStep(sequential, staticStep.sessionFile, behaviorCwd, false, undefined, staticStep.index, undefined, `chain[${stepIndex}]`);
|
|
984
|
+
});
|
|
985
|
+
const steps = params.attachRoot
|
|
986
|
+
? [{
|
|
987
|
+
agent: params.attachRoot.agent,
|
|
988
|
+
task: "",
|
|
989
|
+
label: params.attachRoot.label ?? `Attached root ${params.attachRoot.runId}`,
|
|
990
|
+
outputName: params.attachRoot.outputName,
|
|
991
|
+
importAsyncRoot: {
|
|
992
|
+
runId: params.attachRoot.runId,
|
|
993
|
+
asyncDir: params.attachRoot.asyncDir,
|
|
994
|
+
resultPath: params.attachRoot.resultPath,
|
|
995
|
+
index: params.attachRoot.index,
|
|
996
|
+
},
|
|
997
|
+
inheritProjectContext: false,
|
|
998
|
+
inheritSkills: false,
|
|
999
|
+
}, ...builtSteps]
|
|
1000
|
+
: builtSteps;
|
|
1001
|
+
for (const step of steps) {
|
|
1002
|
+
if (!("parallel" in step) || !Array.isArray(step.parallel)) continue;
|
|
1003
|
+
const seen = new Map<string, { index: number; agent: string }>();
|
|
1004
|
+
for (let index = 0; index < step.parallel.length; index++) {
|
|
1005
|
+
const task = step.parallel[index]!;
|
|
1006
|
+
if (!task.outputPath) continue;
|
|
1007
|
+
const previous = seen.get(task.outputPath);
|
|
1008
|
+
if (previous) {
|
|
1009
|
+
throw new AsyncStartValidationError(`Parallel tasks ${previous.index + 1} (${previous.agent}) and ${index + 1} (${task.agent}) resolve output to the same path: ${task.outputPath}. Use distinct output paths.`);
|
|
1010
|
+
}
|
|
1011
|
+
seen.set(task.outputPath, { index, agent: task.agent });
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
return { steps: steps as RunnerStep[], runnerCwd, workflowGraph, eventChain: graphChain, ...(originalTask !== undefined ? { originalTask } : {}) };
|
|
1015
|
+
} catch (error) {
|
|
1016
|
+
if (error instanceof UnavailableSubagentSkillError || error instanceof AsyncStartValidationError) return { error: error.message };
|
|
1017
|
+
throw error;
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
/**
|
|
1022
|
+
* Execute a chain asynchronously
|
|
1023
|
+
*/
|
|
1024
|
+
export function executeAsyncChain(
|
|
1025
|
+
id: string,
|
|
1026
|
+
params: AsyncChainParams,
|
|
1027
|
+
): AsyncExecutionResult {
|
|
1028
|
+
const {
|
|
1029
|
+
chain,
|
|
1030
|
+
agents,
|
|
1031
|
+
ctx,
|
|
1032
|
+
cwd,
|
|
1033
|
+
maxOutput,
|
|
1034
|
+
artifactsDir,
|
|
1035
|
+
artifactConfig,
|
|
1036
|
+
shareEnabled,
|
|
1037
|
+
sessionRoot,
|
|
1038
|
+
sessionFilesByFlatIndex,
|
|
1039
|
+
thinkingOverridesByFlatIndex,
|
|
1040
|
+
maxSubagentDepth,
|
|
1041
|
+
worktreeSetupHook,
|
|
1042
|
+
worktreeSetupHookTimeoutMs,
|
|
1043
|
+
worktreeBaseDir,
|
|
1044
|
+
controlConfig,
|
|
1045
|
+
controlIntercomTarget,
|
|
1046
|
+
childIntercomTarget,
|
|
1047
|
+
nestedRoute,
|
|
1048
|
+
} = params;
|
|
1049
|
+
const resultMode = params.resultMode ?? "chain";
|
|
1050
|
+
const acceptanceErrors = validateExecutionAcceptance({
|
|
1051
|
+
chain: chain.map((step) => {
|
|
1052
|
+
if (isParallelStep(step)) return { parallel: step.parallel };
|
|
1053
|
+
if (isDynamicParallelStep(step)) return { acceptance: step.acceptance, parallel: step.parallel };
|
|
1054
|
+
return { acceptance: step.acceptance };
|
|
1055
|
+
}),
|
|
1056
|
+
});
|
|
1057
|
+
if (acceptanceErrors.length > 0) return formatAsyncStartError(resultMode, acceptanceErrors.join(" "));
|
|
1058
|
+
const capabilityCeiling = params.capabilityCeiling ?? resolveCurrentSubagentCapabilityCeiling(ctx.currentSessionId);
|
|
1059
|
+
const inheritedNestedRoute = resolveInheritedNestedRouteFromEnv();
|
|
1060
|
+
const nestedAddress = inheritedNestedRoute ? resolveNestedParentAddressFromEnv() : undefined;
|
|
1061
|
+
const asyncDir = inheritedNestedRoute
|
|
1062
|
+
? path.join(TEMP_ROOT_DIR, "nested-subagent-runs", inheritedNestedRoute.rootRunId, id)
|
|
1063
|
+
: path.join(DIRS.async, id);
|
|
1064
|
+
let runFanoutBudget: RunFanoutBudgetDescriptor;
|
|
1065
|
+
try {
|
|
1066
|
+
runFanoutBudget = params.runFanoutBudget ?? createRunFanoutBudget(id, 64);
|
|
1067
|
+
fs.mkdirSync(asyncDir, { recursive: true });
|
|
1068
|
+
writeRunFanoutBudgetDescriptor(asyncDir, runFanoutBudget);
|
|
1069
|
+
} catch (error) {
|
|
1070
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
1071
|
+
return {
|
|
1072
|
+
content: [{ type: "text", text: `Failed to create async run directory '${asyncDir}': ${message}` }],
|
|
1073
|
+
isError: true,
|
|
1074
|
+
details: { mode: resultMode, results: [] },
|
|
1075
|
+
};
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
const built = buildAsyncRunnerSteps(id, {
|
|
1079
|
+
chain,
|
|
1080
|
+
task: params.task,
|
|
1081
|
+
attachRoot: params.attachRoot,
|
|
1082
|
+
resultMode,
|
|
1083
|
+
agents,
|
|
1084
|
+
ctx,
|
|
1085
|
+
availableModels: params.availableModels,
|
|
1086
|
+
cwd,
|
|
1087
|
+
chainSkills: params.chainSkills,
|
|
1088
|
+
sessionFilesByFlatIndex,
|
|
1089
|
+
thinkingOverridesByFlatIndex,
|
|
1090
|
+
contextForAgent: params.contextForAgent,
|
|
1091
|
+
progressDir: params.progressDir ?? (artifactsDir ? path.join(artifactsDir, "progress", id) : resultMode === "parallel" ? path.join(asyncDir, "progress") : undefined),
|
|
1092
|
+
agentContract: params.agentContract,
|
|
1093
|
+
outputBaseDir: artifactsDir ? path.join(artifactsDir, "outputs", id) : undefined,
|
|
1094
|
+
dynamicFanoutMaxItems: params.dynamicFanoutMaxItems,
|
|
1095
|
+
maxSubagentDepth,
|
|
1096
|
+
waitToolEnabled: params.waitToolEnabled,
|
|
1097
|
+
worktreeBaseDir,
|
|
1098
|
+
asyncDir,
|
|
1099
|
+
toolBudget: params.toolBudget,
|
|
1100
|
+
configToolBudget: params.configToolBudget,
|
|
1101
|
+
callToolTimeoutMs: params.callToolTimeoutMs,
|
|
1102
|
+
configToolTimeoutMs: params.configToolTimeoutMs,
|
|
1103
|
+
toolTimeoutMsEnv: params.toolTimeoutMsEnv ?? toolTimeoutFromEnv(),
|
|
1104
|
+
capabilityCeiling,
|
|
1105
|
+
});
|
|
1106
|
+
if ("error" in built) {
|
|
1107
|
+
try {
|
|
1108
|
+
fs.rmSync(asyncDir, { recursive: true, force: true });
|
|
1109
|
+
} catch {
|
|
1110
|
+
// Best-effort cleanup for validation failures before the runner is spawned.
|
|
1111
|
+
}
|
|
1112
|
+
return formatAsyncStartError(resultMode, built.error);
|
|
1113
|
+
}
|
|
1114
|
+
const { steps, runnerCwd, workflowGraph, eventChain } = built;
|
|
1115
|
+
const deadlineAt = params.timeoutMs !== undefined ? Date.now() + params.timeoutMs : undefined;
|
|
1116
|
+
const initialTurnBudget = params.turnBudget ? initialTurnBudgetState(params.turnBudget) : undefined;
|
|
1117
|
+
const initialUsageBudget = usageBudgetState(params.usageBudget, undefined);
|
|
1118
|
+
let childTargetIndex = 0;
|
|
1119
|
+
const childIntercomTargets = childIntercomTarget ? steps.flatMap((step) => {
|
|
1120
|
+
if (!("parallel" in step) && "importAsyncRoot" in step && step.importAsyncRoot) {
|
|
1121
|
+
childTargetIndex++;
|
|
1122
|
+
return [undefined];
|
|
1123
|
+
}
|
|
1124
|
+
if ("parallel" in step) {
|
|
1125
|
+
if (!Array.isArray(step.parallel)) {
|
|
1126
|
+
childTargetIndex++;
|
|
1127
|
+
return [undefined];
|
|
1128
|
+
}
|
|
1129
|
+
return step.parallel.map((task) => childIntercomTarget(task.agent, childTargetIndex++));
|
|
1130
|
+
}
|
|
1131
|
+
return "agent" in step ? [childIntercomTarget(step.agent, childTargetIndex++)] : [undefined];
|
|
1132
|
+
}) : undefined;
|
|
1133
|
+
|
|
1134
|
+
let spawnResult: SpawnRunnerResult = {};
|
|
1135
|
+
try {
|
|
1136
|
+
spawnResult = spawnRunner(
|
|
1137
|
+
{
|
|
1138
|
+
id,
|
|
1139
|
+
steps,
|
|
1140
|
+
resultPath: inheritedNestedRoute ? nestedResultsPath(inheritedNestedRoute.rootRunId, id) : resultFilePath(DIRS.results, id),
|
|
1141
|
+
cwd: runnerCwd,
|
|
1142
|
+
placeholder: "{previous}",
|
|
1143
|
+
maxOutput,
|
|
1144
|
+
artifactsDir: artifactConfig.enabled ? artifactsDir : undefined,
|
|
1145
|
+
artifactConfig,
|
|
1146
|
+
share: shareEnabled,
|
|
1147
|
+
sessionDir: sessionRoot ? path.join(sessionRoot, `async-${id}`) : undefined,
|
|
1148
|
+
asyncDir,
|
|
1149
|
+
sessionId: ctx.currentSessionId,
|
|
1150
|
+
completionOwnerId: ctx.completionOwnerId ?? currentCompletionOwnerId(),
|
|
1151
|
+
...(capabilityCeiling ? { capabilityCeiling } : {}),
|
|
1152
|
+
piPackageRoot,
|
|
1153
|
+
piArgv1: process.argv[1],
|
|
1154
|
+
worktreeSetupHook,
|
|
1155
|
+
worktreeSetupHookTimeoutMs,
|
|
1156
|
+
worktreeBaseDir,
|
|
1157
|
+
controlConfig,
|
|
1158
|
+
turnBudget: params.turnBudget,
|
|
1159
|
+
toolBudget: params.toolBudget,
|
|
1160
|
+
usageBudget: params.usageBudget,
|
|
1161
|
+
controlIntercomTarget,
|
|
1162
|
+
childIntercomTargets,
|
|
1163
|
+
resultMode,
|
|
1164
|
+
dynamicFanoutMaxItems: params.dynamicFanoutMaxItems,
|
|
1165
|
+
timeoutMs: params.timeoutMs,
|
|
1166
|
+
deadlineAt,
|
|
1167
|
+
globalConcurrencyLimit: params.globalConcurrencyLimit,
|
|
1168
|
+
runFanoutBudget,
|
|
1169
|
+
workflowGraph,
|
|
1170
|
+
...(params.parentWorkflowRunId ? { parentWorkflowRunId: params.parentWorkflowRunId } : {}),
|
|
1171
|
+
...(params.workflowKey ? { workflowKey: params.workflowKey } : {}),
|
|
1172
|
+
nestedRoute: nestedRoute ?? inheritedNestedRoute,
|
|
1173
|
+
nestedSelf: inheritedNestedRoute && nestedAddress ? {
|
|
1174
|
+
parentRunId: nestedAddress.parentRunId,
|
|
1175
|
+
parentStepIndex: nestedAddress.parentStepIndex,
|
|
1176
|
+
depth: nestedAddress.depth,
|
|
1177
|
+
path: nestedAddress.path,
|
|
1178
|
+
} : undefined,
|
|
1179
|
+
},
|
|
1180
|
+
id,
|
|
1181
|
+
runnerCwd,
|
|
1182
|
+
(proof) => ctx.pi.events.emit(SUBAGENT_PROCESS_TERMINAL_EVENT, proof),
|
|
1183
|
+
);
|
|
1184
|
+
} catch (error) {
|
|
1185
|
+
params.activeAsyncCapacity?.rollback();
|
|
1186
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
1187
|
+
return formatAsyncStartError(resultMode, `Failed to start async ${resultMode} '${id}': ${message}`);
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
if (spawnResult.error) {
|
|
1191
|
+
if (!spawnResult.pid || !spawnResult.runnerProcessInstanceId || (spawnResult.startupDidNotProceed && spawnResult.terminationObserved)) params.activeAsyncCapacity?.rollback();
|
|
1192
|
+
else params.activeAsyncCapacity?.markStarted(spawnResult.runnerProcessInstanceId);
|
|
1193
|
+
return formatAsyncStartError(resultMode, `Failed to start async ${resultMode} '${id}': ${spawnResult.error}`);
|
|
1194
|
+
}
|
|
1195
|
+
if (!spawnResult.pid || !spawnResult.runnerProcessInstanceId) {
|
|
1196
|
+
params.activeAsyncCapacity?.rollback();
|
|
1197
|
+
return formatAsyncStartError(resultMode, `Failed to start async ${resultMode} '${id}': runner identity unavailable`);
|
|
1198
|
+
}
|
|
1199
|
+
params.activeAsyncCapacity?.markStarted(spawnResult.runnerProcessInstanceId);
|
|
1200
|
+
|
|
1201
|
+
if (spawnResult.pid) {
|
|
1202
|
+
const eventFirstStep = eventChain[0];
|
|
1203
|
+
if (!eventFirstStep) {
|
|
1204
|
+
return formatAsyncStartError(resultMode, `Failed to start async ${resultMode} '${id}': event chain has no steps`);
|
|
1205
|
+
}
|
|
1206
|
+
const firstAgents = isParallelStep(eventFirstStep)
|
|
1207
|
+
? eventFirstStep.parallel.map((t) => t.agent)
|
|
1208
|
+
: isDynamicParallelStep(eventFirstStep)
|
|
1209
|
+
? [eventFirstStep.parallel.agent]
|
|
1210
|
+
: [(eventFirstStep as SequentialStep).agent];
|
|
1211
|
+
const firstTask = isParallelStep(eventFirstStep)
|
|
1212
|
+
? eventFirstStep.parallel[0]?.task
|
|
1213
|
+
: isDynamicParallelStep(eventFirstStep)
|
|
1214
|
+
? eventFirstStep.parallel.task
|
|
1215
|
+
: (eventFirstStep as SequentialStep).task;
|
|
1216
|
+
const workflowGoal = params.goal ?? (params.task?.trim() || firstTask);
|
|
1217
|
+
const parallelGroups: Array<{ start: number; count: number; stepIndex: number }> = [];
|
|
1218
|
+
const flatAgents: string[] = [];
|
|
1219
|
+
let flatStepStart = 0;
|
|
1220
|
+
for (let stepIndex = 0; stepIndex < eventChain.length; stepIndex++) {
|
|
1221
|
+
const step = eventChain[stepIndex]!;
|
|
1222
|
+
if (isParallelStep(step)) {
|
|
1223
|
+
parallelGroups.push({ start: flatStepStart, count: step.parallel.length, stepIndex });
|
|
1224
|
+
flatAgents.push(...step.parallel.map((task) => task.agent));
|
|
1225
|
+
flatStepStart += step.parallel.length;
|
|
1226
|
+
} else if (isDynamicParallelStep(step)) {
|
|
1227
|
+
parallelGroups.push({ start: flatStepStart, count: 1, stepIndex });
|
|
1228
|
+
flatAgents.push(step.parallel.agent);
|
|
1229
|
+
flatStepStart++;
|
|
1230
|
+
} else {
|
|
1231
|
+
flatAgents.push((step as SequentialStep).agent);
|
|
1232
|
+
flatStepStart++;
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
if (inheritedNestedRoute && nestedAddress) {
|
|
1236
|
+
const now = Date.now();
|
|
1237
|
+
try {
|
|
1238
|
+
writeNestedEvent(inheritedNestedRoute, {
|
|
1239
|
+
type: "subagent.nested.started",
|
|
1240
|
+
ts: now,
|
|
1241
|
+
parentRunId: nestedAddress.parentRunId,
|
|
1242
|
+
parentStepIndex: nestedAddress.parentStepIndex,
|
|
1243
|
+
child: {
|
|
1244
|
+
id,
|
|
1245
|
+
parentRunId: nestedAddress.parentRunId,
|
|
1246
|
+
parentStepIndex: nestedAddress.parentStepIndex,
|
|
1247
|
+
depth: nestedAddress.depth,
|
|
1248
|
+
path: nestedAddress.path,
|
|
1249
|
+
asyncDir,
|
|
1250
|
+
pid: spawnResult.pid,
|
|
1251
|
+
ownerIntercomTarget: process.env.PI_SUBAGENT_INTERCOM_SESSION_NAME,
|
|
1252
|
+
leafIntercomTarget: childIntercomTargets?.[0],
|
|
1253
|
+
intercomTarget: childIntercomTargets?.[0],
|
|
1254
|
+
ownerState: "live",
|
|
1255
|
+
mode: resultMode,
|
|
1256
|
+
state: "running",
|
|
1257
|
+
agent: firstAgents[0],
|
|
1258
|
+
agents: flatAgents,
|
|
1259
|
+
chainStepCount: eventChain.length,
|
|
1260
|
+
parallelGroups,
|
|
1261
|
+
...(params.timeoutMs !== undefined ? { timeoutMs: params.timeoutMs, deadlineAt } : {}),
|
|
1262
|
+
...(initialTurnBudget ? { turnBudget: initialTurnBudget } : {}),
|
|
1263
|
+
startedAt: now,
|
|
1264
|
+
lastUpdate: now,
|
|
1265
|
+
...(capabilityCeiling ? { capabilityCeiling } : {}),
|
|
1266
|
+
},
|
|
1267
|
+
});
|
|
1268
|
+
} catch (error) {
|
|
1269
|
+
console.error("Failed to emit nested async start event:", error);
|
|
1270
|
+
}
|
|
1271
|
+
}
|
|
1272
|
+
ctx.pi.events.emit(SUBAGENT_ASYNC_STARTED_EVENT, {
|
|
1273
|
+
lifecycleArtifactVersion: SUBAGENT_LIFECYCLE_ARTIFACT_VERSION,
|
|
1274
|
+
id,
|
|
1275
|
+
pid: spawnResult.pid,
|
|
1276
|
+
sessionId: ctx.currentSessionId,
|
|
1277
|
+
completionOwnerId: ctx.completionOwnerId ?? currentCompletionOwnerId(),
|
|
1278
|
+
mode: resultMode,
|
|
1279
|
+
agent: firstAgents[0],
|
|
1280
|
+
agents: flatAgents,
|
|
1281
|
+
task: firstTask?.trim() ? PROMPT_REDACTED : undefined,
|
|
1282
|
+
goal: workflowGoal?.trim() ? PROMPT_REDACTED : undefined,
|
|
1283
|
+
chain: eventChain.map((s) =>
|
|
1284
|
+
isParallelStep(s) ? `[${s.parallel.map((t) => t.agent).join("+")}]` : isDynamicParallelStep(s) ? `expand:${s.parallel.agent}` : (s as SequentialStep).agent,
|
|
1285
|
+
),
|
|
1286
|
+
chainStepCount: eventChain.length,
|
|
1287
|
+
parallelGroups,
|
|
1288
|
+
workflowGraph,
|
|
1289
|
+
cwd: runnerCwd,
|
|
1290
|
+
asyncDir,
|
|
1291
|
+
...(sessionRoot ? { sessionRoot } : {}),
|
|
1292
|
+
...(params.timeoutMs !== undefined ? { timeoutMs: params.timeoutMs, deadlineAt } : {}),
|
|
1293
|
+
...(initialTurnBudget ? { turnBudget: initialTurnBudget } : {}),
|
|
1294
|
+
...(initialUsageBudget ? { usageBudget: initialUsageBudget } : {}),
|
|
1295
|
+
...(capabilityCeiling ? { capabilityCeiling } : {}),
|
|
1296
|
+
...(params.parentWorkflowRunId ? { parentWorkflowRunId: params.parentWorkflowRunId } : {}),
|
|
1297
|
+
...(params.workflowKey ? { workflowKey: params.workflowKey } : {}),
|
|
1298
|
+
nestedRoute,
|
|
1299
|
+
});
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
const chainDesc = chain
|
|
1303
|
+
.map((s) =>
|
|
1304
|
+
isParallelStep(s) ? `[${s.parallel.map((t) => t.agent).join("+")}]` : isDynamicParallelStep(s) ? `expand:${s.parallel.agent}` : (s as SequentialStep).agent,
|
|
1305
|
+
)
|
|
1306
|
+
.join(" -> ");
|
|
1307
|
+
|
|
1308
|
+
return {
|
|
1309
|
+
content: [{ type: "text", text: formatAsyncStartedMessage(`Async ${resultMode}: ${chainDesc} [${id}]`, ctx.interactive === true) }],
|
|
1310
|
+
details: { mode: resultMode, runId: id, results: [], asyncId: id, asyncDir, workflowGraph, ...(capabilityCeiling ? { capabilityCeiling } : {}), ...(params.parentWorkflowRunId ? { parentWorkflowRunId: params.parentWorkflowRunId } : {}), ...(params.workflowKey ? { workflowKey: params.workflowKey } : {}), ...(params.timeoutMs !== undefined ? { timeoutMs: params.timeoutMs, deadlineAt } : {}), ...(params.turnBudget ? { turnBudget: params.turnBudget } : {}), ...(params.toolBudget ? { toolBudget: params.toolBudget } : {}), ...(initialUsageBudget ? { usageBudget: initialUsageBudget } : {}) },
|
|
1311
|
+
};
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
/**
|
|
1315
|
+
* Execute a single agent asynchronously
|
|
1316
|
+
*/
|
|
1317
|
+
export function workflowAwaitedAsyncResultPath(asyncDir: string): string {
|
|
1318
|
+
return path.join(asyncDir, "workflow-result.json");
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
export function executeAsyncSingle(
|
|
1322
|
+
id: string,
|
|
1323
|
+
params: AsyncSingleParams,
|
|
1324
|
+
): AsyncExecutionResult {
|
|
1325
|
+
const {
|
|
1326
|
+
agent,
|
|
1327
|
+
agentConfig,
|
|
1328
|
+
ctx,
|
|
1329
|
+
cwd,
|
|
1330
|
+
maxOutput,
|
|
1331
|
+
artifactsDir,
|
|
1332
|
+
artifactConfig,
|
|
1333
|
+
shareEnabled,
|
|
1334
|
+
sessionRoot,
|
|
1335
|
+
sessionFile,
|
|
1336
|
+
maxSubagentDepth,
|
|
1337
|
+
worktreeSetupHook,
|
|
1338
|
+
worktreeSetupHookTimeoutMs,
|
|
1339
|
+
worktreeBaseDir,
|
|
1340
|
+
controlConfig,
|
|
1341
|
+
controlIntercomTarget,
|
|
1342
|
+
childIntercomTarget,
|
|
1343
|
+
nestedRoute,
|
|
1344
|
+
} = params;
|
|
1345
|
+
const task = params.task ?? "";
|
|
1346
|
+
const acceptanceErrors = validateAcceptanceInput(params.acceptance);
|
|
1347
|
+
if (acceptanceErrors.length > 0) return formatAsyncStartError("single", acceptanceErrors.join(" "));
|
|
1348
|
+
const externalRunner = agentConfig.runner?.type === "external-cli" || agentConfig.runner?.type === "external-job";
|
|
1349
|
+
const externalRunnerType = agentConfig.runner?.type;
|
|
1350
|
+
const permissionRules = resolvePermissionRules(ctx.permissions, agentConfig.permissions);
|
|
1351
|
+
if (externalRunner) {
|
|
1352
|
+
const unsupported: string[] = [];
|
|
1353
|
+
if (params.modelOverride !== undefined) unsupported.push("model override");
|
|
1354
|
+
if (params.thinkingOverride !== undefined) unsupported.push("thinking override");
|
|
1355
|
+
if (params.structuredOutputSchema !== undefined) unsupported.push("structured output");
|
|
1356
|
+
if (params.acceptance !== undefined || params.agentContract !== undefined) unsupported.push("acceptance/agent contract");
|
|
1357
|
+
if (params.toolBudget !== undefined || agentConfig.toolBudget !== undefined || params.configToolBudget !== undefined) unsupported.push("tool budget");
|
|
1358
|
+
if (params.context === "fork") unsupported.push("fork context");
|
|
1359
|
+
if ((params.skills?.length ?? 0) > 0) unsupported.push("skills");
|
|
1360
|
+
if (permissionRules) unsupported.push("native Pi child permissions");
|
|
1361
|
+
if (unsupported.length > 0) return formatAsyncStartError("single", `Agent '${agentConfig.name}' uses runner.type='${externalRunnerType}' and does not support: ${unsupported.join(", ")}.`);
|
|
1362
|
+
}
|
|
1363
|
+
const capabilityCeiling = intersectSubagentCapabilityCeilings(params.capabilityCeiling ?? resolveCurrentSubagentCapabilityCeiling(ctx.currentSessionId), decodeSubagentCapabilityCeiling(process.env[SUBAGENT_CAPABILITY_CEILING_ENV]));
|
|
1364
|
+
try {
|
|
1365
|
+
assertAgentAllowedByCapabilityCeiling(agentConfig.name, capabilityCeiling);
|
|
1366
|
+
} catch (error) {
|
|
1367
|
+
return formatAsyncStartError("single", error instanceof Error ? error.message : String(error));
|
|
1368
|
+
}
|
|
1369
|
+
const runnerCwd = resolveChildCwd(ctx.cwd, cwd);
|
|
1370
|
+
const instructionCwd = params.worktree === true
|
|
1371
|
+
? resolveExpectedWorktreeAgentCwd(runnerCwd, `${id}-s0`, 0, worktreeBaseDir)
|
|
1372
|
+
: runnerCwd;
|
|
1373
|
+
const readExistenceCwd = params.worktree === true ? runnerCwd : instructionCwd;
|
|
1374
|
+
const skillNames = params.skills ?? agentConfig.skills ?? [];
|
|
1375
|
+
const availableModels = params.availableModels;
|
|
1376
|
+
const { resolved: resolvedSkills, missing: missingSkills } = resolveSkillsWithFallback(
|
|
1377
|
+
skillNames,
|
|
1378
|
+
runnerCwd,
|
|
1379
|
+
ctx.cwd,
|
|
1380
|
+
agentConfig.skillPath,
|
|
1381
|
+
agentConfig.filePath ? path.dirname(agentConfig.filePath) : runnerCwd,
|
|
1382
|
+
);
|
|
1383
|
+
if (missingSkills.includes("pi-subagents")) return formatAsyncStartError("single", UNAVAILABLE_SUBAGENT_SKILL_ERROR);
|
|
1384
|
+
let systemPrompt = agentConfig.systemPrompt?.trim() ?? "";
|
|
1385
|
+
if (resolvedSkills.length > 0) {
|
|
1386
|
+
const injection = buildSkillInjection(resolvedSkills);
|
|
1387
|
+
systemPrompt = systemPrompt ? `${systemPrompt}\n\n${injection}` : injection;
|
|
1388
|
+
}
|
|
1389
|
+
const memoryInjection = buildAgentMemoryInjection(agentConfig, runnerCwd);
|
|
1390
|
+
if (memoryInjection) {
|
|
1391
|
+
systemPrompt = systemPrompt ? `${systemPrompt}\n\n${memoryInjection}` : memoryInjection;
|
|
1392
|
+
}
|
|
1393
|
+
systemPrompt = appendAgentRefinementOverlay(systemPrompt, { cwd: runnerCwd, agentName: agentConfig.name });
|
|
1394
|
+
|
|
1395
|
+
const inheritedNestedRoute = resolveInheritedNestedRouteFromEnv();
|
|
1396
|
+
const nestedAddress = inheritedNestedRoute ? resolveNestedParentAddressFromEnv() : undefined;
|
|
1397
|
+
const asyncDir = inheritedNestedRoute
|
|
1398
|
+
? path.join(TEMP_ROOT_DIR, "nested-subagent-runs", inheritedNestedRoute.rootRunId, id)
|
|
1399
|
+
: path.join(DIRS.async, id);
|
|
1400
|
+
let runFanoutBudget: RunFanoutBudgetDescriptor;
|
|
1401
|
+
try {
|
|
1402
|
+
runFanoutBudget = params.runFanoutBudget ?? createRunFanoutBudget(id, 64);
|
|
1403
|
+
fs.mkdirSync(asyncDir, { recursive: true });
|
|
1404
|
+
writeRunFanoutBudgetDescriptor(asyncDir, runFanoutBudget);
|
|
1405
|
+
} catch (error) {
|
|
1406
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
1407
|
+
return {
|
|
1408
|
+
content: [{ type: "text", text: `Failed to create async run directory '${asyncDir}': ${message}` }],
|
|
1409
|
+
isError: true,
|
|
1410
|
+
details: { mode: "single" as const, results: [] },
|
|
1411
|
+
};
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
const effectiveOutput = normalizeSingleOutputOverride(params.output, agentConfig.output);
|
|
1415
|
+
const outputPath = resolveSingleOutputPath(effectiveOutput, ctx.cwd, instructionCwd, params.outputBaseDir ?? (artifactsDir ? path.join(artifactsDir, "outputs", id) : undefined));
|
|
1416
|
+
systemPrompt = injectOutputPathSystemPrompt(systemPrompt, outputPath, agentConfig);
|
|
1417
|
+
const outputMode = params.outputMode ?? "inline";
|
|
1418
|
+
const validationError = validateFileOnlyOutputMode(outputMode, outputPath, `Async single run (${agent})`);
|
|
1419
|
+
if (validationError) return formatAsyncStartError("single", validationError);
|
|
1420
|
+
const taskWithOutputInstruction = injectSingleOutputInstruction(task, outputPath, agentConfig);
|
|
1421
|
+
// Reads: caller override > agent defaultReads > none. `~`/`~/` expand to home;
|
|
1422
|
+
// absolute paths pass through; relative paths resolve against the child cwd.
|
|
1423
|
+
const reads = params.reads !== undefined ? params.reads : agentConfig.defaultReads ?? false;
|
|
1424
|
+
const readPaths = Array.isArray(reads) ? resolveExistingReadPaths(reads, readExistenceCwd) : [];
|
|
1425
|
+
const readsInstruction = readPaths.length > 0
|
|
1426
|
+
? `[Read from: ${readPaths.join(", ")}]\n\n`
|
|
1427
|
+
: "";
|
|
1428
|
+
const taskText = readsInstruction + taskWithOutputInstruction;
|
|
1429
|
+
const primaryModel = externalRunner ? undefined : params.modelOverrideFromParent
|
|
1430
|
+
? params.modelOverride
|
|
1431
|
+
: resolveSubagentModelOverride(
|
|
1432
|
+
params.modelOverride ?? agentConfig.model,
|
|
1433
|
+
ctx.currentModel,
|
|
1434
|
+
availableModels,
|
|
1435
|
+
ctx.currentModelProvider,
|
|
1436
|
+
);
|
|
1437
|
+
const effectiveThinking = externalRunner ? undefined : params.thinkingOverride ?? agentConfig.thinking;
|
|
1438
|
+
const model = externalRunner ? undefined : applyThinkingSuffix(primaryModel, effectiveThinking, params.thinkingOverride !== undefined);
|
|
1439
|
+
const toolBudgetInput = params.toolBudget ?? agentConfig.toolBudget ?? params.configToolBudget;
|
|
1440
|
+
const resolvedToolBudget = validateToolBudgetConfig(toolBudgetInput, params.toolBudget ? "toolBudget" : agentConfig.toolBudget ? "agent.toolBudget" : "config.toolBudget");
|
|
1441
|
+
if (resolvedToolBudget.error) return formatAsyncStartError("single", resolvedToolBudget.error);
|
|
1442
|
+
const deadlineAt = params.absoluteDeadlineAt ?? (params.timeoutMs !== undefined ? Date.now() + params.timeoutMs : undefined);
|
|
1443
|
+
const timeoutMs = params.absoluteDeadlineAt !== undefined && deadlineAt !== undefined
|
|
1444
|
+
? deadlineAt - Date.now()
|
|
1445
|
+
: params.timeoutMs;
|
|
1446
|
+
if (timeoutMs !== undefined && timeoutMs <= 0) return formatAsyncStartError("single", "The source run's absolute deadline expired before recovery could launch.");
|
|
1447
|
+
const resolvedToolTimeout = resolveToolTimeoutMs({
|
|
1448
|
+
callValue: params.toolTimeoutMs,
|
|
1449
|
+
agentValue: agentConfig.defaultToolTimeoutMs,
|
|
1450
|
+
configValue: params.configToolTimeoutMs,
|
|
1451
|
+
envValue: params.toolTimeoutMsEnv ?? toolTimeoutFromEnv(),
|
|
1452
|
+
});
|
|
1453
|
+
if (resolvedToolTimeout.error) return formatAsyncStartError("single", resolvedToolTimeout.error);
|
|
1454
|
+
const toolTimeoutMs = resolvedToolTimeout.toolTimeoutMs;
|
|
1455
|
+
const initialTurnBudget = params.turnBudget ? initialTurnBudgetState(params.turnBudget) : undefined;
|
|
1456
|
+
const initialUsageBudget = usageBudgetState(params.usageBudget, undefined);
|
|
1457
|
+
const resolvedSessionDir = params.sessionDir ?? (sessionRoot ? path.join(sessionRoot, `async-${id}`) : undefined);
|
|
1458
|
+
const structuredOutput = params.structuredOutputSchema
|
|
1459
|
+
? createStructuredOutputRuntime(params.structuredOutputSchema, path.join(asyncDir, "structured-output"))
|
|
1460
|
+
: undefined;
|
|
1461
|
+
const modelCandidates = externalRunner
|
|
1462
|
+
? []
|
|
1463
|
+
: buildModelCandidates(primaryModel, agentConfig.fallbackModels, availableModels, ctx.currentModelProvider, {
|
|
1464
|
+
scope: ctx.modelScope,
|
|
1465
|
+
primaryModelFromParent: params.modelOverrideFromParent,
|
|
1466
|
+
})
|
|
1467
|
+
.flatMap((candidate) => {
|
|
1468
|
+
const resolved = applyThinkingSuffix(candidate, effectiveThinking, params.thinkingOverride !== undefined);
|
|
1469
|
+
return resolved ? [resolved] : [];
|
|
1470
|
+
});
|
|
1471
|
+
const effectiveSystemPrompt = appendTurnBudgetSystemPrompt(systemPrompt, params.turnBudget);
|
|
1472
|
+
const toolPlan = resolvePiLaunchToolPlan({
|
|
1473
|
+
tools: agentConfig.tools,
|
|
1474
|
+
extensions: agentConfig.extensions,
|
|
1475
|
+
subagentOnlyExtensions: agentConfig.subagentOnlyExtensions,
|
|
1476
|
+
mcpDirectTools: agentConfig.mcpDirectTools,
|
|
1477
|
+
cwd: runnerCwd,
|
|
1478
|
+
requireReadTool: Boolean(resolvedSkills.length),
|
|
1479
|
+
structuredOutput: Boolean(params.structuredOutputSchema),
|
|
1480
|
+
capabilityCeiling,
|
|
1481
|
+
inheritedCapabilityCeiling: decodeSubagentCapabilityCeiling(process.env[SUBAGENT_CAPABILITY_CEILING_ENV]),
|
|
1482
|
+
agentName: agentConfig.name,
|
|
1483
|
+
});
|
|
1484
|
+
const launchResolvedExtensions = externalRunner ? undefined : projectLaunchResolvedChildExtensions(toolPlan);
|
|
1485
|
+
const launchContractDigest = launchBindingDigest({
|
|
1486
|
+
definitionDigest: agentDefinitionDigest(agentConfig),
|
|
1487
|
+
task,
|
|
1488
|
+
...(model ? { model } : {}),
|
|
1489
|
+
modelCandidates,
|
|
1490
|
+
...(resolveEffectiveThinking(model, effectiveThinking) ? { thinking: resolveEffectiveThinking(model, effectiveThinking) } : {}),
|
|
1491
|
+
systemPrompt: effectiveSystemPrompt,
|
|
1492
|
+
systemPromptMode: agentConfig.systemPromptMode,
|
|
1493
|
+
inheritProjectContext: agentConfig.inheritProjectContext,
|
|
1494
|
+
inheritSkills: agentConfig.inheritSkills,
|
|
1495
|
+
skills: resolvedSkills.map((skill) => skill.name),
|
|
1496
|
+
tools: toolPlan.effectiveToolAllowlist,
|
|
1497
|
+
extensions: toolPlan.extensionArgs,
|
|
1498
|
+
mcpDirectTools: toolPlan.effectiveMcpTools,
|
|
1499
|
+
...(outputPath ? { outputPath } : {}),
|
|
1500
|
+
outputMode,
|
|
1501
|
+
...(params.structuredOutputSchema ? { structuredOutputSchema: params.structuredOutputSchema } : {}),
|
|
1502
|
+
});
|
|
1503
|
+
const resolvedAcceptance = resolveEffectiveAcceptance({
|
|
1504
|
+
explicit: params.acceptance,
|
|
1505
|
+
agentName: agent,
|
|
1506
|
+
acceptanceRole: agentConfig.acceptanceRole,
|
|
1507
|
+
task,
|
|
1508
|
+
mode: "single",
|
|
1509
|
+
async: true,
|
|
1510
|
+
agentContract: params.agentContract,
|
|
1511
|
+
});
|
|
1512
|
+
const recoveryAgentConfig = params.recoveryAgentConfig ?? agentConfig;
|
|
1513
|
+
const recoveryDescriptor: SteeringRecoveryDescriptor = {
|
|
1514
|
+
version: 1,
|
|
1515
|
+
launchContractDigest,
|
|
1516
|
+
runFanoutBudget,
|
|
1517
|
+
sourceRunId: id,
|
|
1518
|
+
...(params.agentContract ? { agentContract: params.agentContract } : {}),
|
|
1519
|
+
agent,
|
|
1520
|
+
launchResolvedExtensions,
|
|
1521
|
+
...(sessionFile ? { sessionFile } : {}),
|
|
1522
|
+
cwd: runnerCwd,
|
|
1523
|
+
...(model ? { model } : {}),
|
|
1524
|
+
...(params.modelOverrideFromParent ? { modelOverrideFromParent: true } : {}),
|
|
1525
|
+
...(recoveryAgentConfig.fallbackModels ? { fallbackModels: [...recoveryAgentConfig.fallbackModels] } : {}),
|
|
1526
|
+
...(effectiveThinking ? { thinking: resolveEffectiveThinking(model, effectiveThinking) } : {}),
|
|
1527
|
+
...(recoveryAgentConfig.tools ? { tools: [...recoveryAgentConfig.tools] } : {}),
|
|
1528
|
+
...(recoveryAgentConfig.extensions ? { extensions: [...recoveryAgentConfig.extensions] } : {}),
|
|
1529
|
+
...(recoveryAgentConfig.subagentOnlyExtensions ? { subagentOnlyExtensions: [...recoveryAgentConfig.subagentOnlyExtensions] } : {}),
|
|
1530
|
+
...(recoveryAgentConfig.mcpDirectTools ? { mcpDirectTools: [...recoveryAgentConfig.mcpDirectTools] } : {}),
|
|
1531
|
+
...(recoveryAgentConfig.systemPrompt ? { systemPrompt: recoveryAgentConfig.systemPrompt } : {}),
|
|
1532
|
+
systemPromptMode: recoveryAgentConfig.systemPromptMode,
|
|
1533
|
+
inheritProjectContext: recoveryAgentConfig.inheritProjectContext,
|
|
1534
|
+
inheritSkills: recoveryAgentConfig.inheritSkills,
|
|
1535
|
+
...(resolvedSkills.length ? { skills: resolvedSkills.map((skill) => skill.name) } : {}),
|
|
1536
|
+
...(recoveryAgentConfig.skillPath ? { skillPath: [...recoveryAgentConfig.skillPath] } : {}),
|
|
1537
|
+
...(recoveryAgentConfig.filePath ? { agentFilePath: recoveryAgentConfig.filePath } : {}),
|
|
1538
|
+
...(recoveryAgentConfig.completionGuard !== undefined ? { completionGuard: recoveryAgentConfig.completionGuard } : {}),
|
|
1539
|
+
...(recoveryAgentConfig.memory ? { memory: { ...recoveryAgentConfig.memory } } : {}),
|
|
1540
|
+
...(outputPath ? { outputPath } : {}),
|
|
1541
|
+
outputMode,
|
|
1542
|
+
...(params.structuredOutputSchema ? { structuredOutputSchema: params.structuredOutputSchema } : {}),
|
|
1543
|
+
...(params.acceptance !== undefined ? { acceptance: params.acceptance } : {}),
|
|
1544
|
+
...(controlConfig ? { controlConfig } : {}),
|
|
1545
|
+
...(params.intercomBridge !== undefined ? { intercomBridge: params.intercomBridge } : {}),
|
|
1546
|
+
...(deadlineAt !== undefined ? { absoluteDeadlineAt: deadlineAt } : {}),
|
|
1547
|
+
...(initialTurnBudget ? { initialTurnBudget: { maxTurns: initialTurnBudget.maxTurns, graceTurns: initialTurnBudget.graceTurns } } : {}),
|
|
1548
|
+
...(resolvedToolBudget.budget ? { initialToolBudget: resolvedToolBudget.budget } : {}),
|
|
1549
|
+
maxSubagentDepth: resolveChildMaxSubagentDepth(maxSubagentDepth, recoveryAgentConfig.maxSubagentDepth),
|
|
1550
|
+
...(maxOutput ? { maxOutput } : {}),
|
|
1551
|
+
share: shareEnabled,
|
|
1552
|
+
...(resolvedSessionDir ? { sessionDir: resolvedSessionDir } : {}),
|
|
1553
|
+
...(artifactsDir ? { artifactsDir } : {}),
|
|
1554
|
+
artifactConfig,
|
|
1555
|
+
...(capabilityCeiling ? { capabilityCeiling } : {}),
|
|
1556
|
+
};
|
|
1557
|
+
if (!externalRunner) {
|
|
1558
|
+
try {
|
|
1559
|
+
writePrivateAtomicJson(path.join(asyncDir, "recovery-descriptor.json"), recoveryDescriptor);
|
|
1560
|
+
} catch (error) {
|
|
1561
|
+
return formatAsyncStartError("single", `Failed to persist async recovery descriptor for '${id}': ${error instanceof Error ? error.message : String(error)}`);
|
|
1562
|
+
}
|
|
1563
|
+
}
|
|
1564
|
+
let spawnResult: SpawnRunnerResult = {};
|
|
1565
|
+
try {
|
|
1566
|
+
spawnResult = spawnRunner(
|
|
1567
|
+
{
|
|
1568
|
+
id,
|
|
1569
|
+
steps: [
|
|
1570
|
+
{
|
|
1571
|
+
parentSessionId: ctx.parentSessionId ?? ctx.currentSessionId,
|
|
1572
|
+
permissionRules,
|
|
1573
|
+
...(capabilityCeiling ? { capabilityCeiling } : {}),
|
|
1574
|
+
agent,
|
|
1575
|
+
task: taskText,
|
|
1576
|
+
...(agentConfig.runner ? { runner: agentConfig.runner } : {}),
|
|
1577
|
+
...(params.context ? { context: params.context } : {}),
|
|
1578
|
+
cwd: runnerCwd,
|
|
1579
|
+
model,
|
|
1580
|
+
thinking: resolveEffectiveThinking(model, effectiveThinking),
|
|
1581
|
+
modelCandidates,
|
|
1582
|
+
tools: agentConfig.tools,
|
|
1583
|
+
extensions: agentConfig.extensions,
|
|
1584
|
+
subagentOnlyExtensions: agentConfig.subagentOnlyExtensions,
|
|
1585
|
+
mcpDirectTools: agentConfig.mcpDirectTools,
|
|
1586
|
+
completionGuard: agentConfig.completionGuard,
|
|
1587
|
+
systemPrompt,
|
|
1588
|
+
systemPromptMode: agentConfig.systemPromptMode,
|
|
1589
|
+
inheritProjectContext: agentConfig.inheritProjectContext,
|
|
1590
|
+
inheritSkills: agentConfig.inheritSkills,
|
|
1591
|
+
skills: resolvedSkills.map((r) => r.name),
|
|
1592
|
+
outputPath,
|
|
1593
|
+
outputMode,
|
|
1594
|
+
...(!externalRunner && sessionFile ? { sessionFile } : {}),
|
|
1595
|
+
maxSubagentDepth: resolveChildMaxSubagentDepth(maxSubagentDepth, agentConfig.maxSubagentDepth),
|
|
1596
|
+
waitToolEnabled: params.waitToolEnabled,
|
|
1597
|
+
...(params.agentContract ? { agentContract: params.agentContract } : {}),
|
|
1598
|
+
definitionDigest: agentDefinitionDigest(agentConfig),
|
|
1599
|
+
launchBindingTask: task,
|
|
1600
|
+
launchContractDigest,
|
|
1601
|
+
launchResolvedExtensions,
|
|
1602
|
+
effectiveAcceptance: resolvedAcceptance,
|
|
1603
|
+
...(structuredOutput ? { structuredOutput } : {}),
|
|
1604
|
+
...(params.structuredOutputSchema ? { structuredOutputSchema: params.structuredOutputSchema } : {}),
|
|
1605
|
+
...(resolvedToolBudget.budget ? { toolBudget: resolvedToolBudget.budget } : {}),
|
|
1606
|
+
...(params.worktree === true ? { worktree: true } : {}),
|
|
1607
|
+
},
|
|
1608
|
+
],
|
|
1609
|
+
resultPath: params.parentWorkflowRunId !== undefined && params.revivalLease !== undefined
|
|
1610
|
+
? workflowAwaitedAsyncResultPath(asyncDir)
|
|
1611
|
+
: inheritedNestedRoute ? nestedResultsPath(inheritedNestedRoute.rootRunId, id) : resultFilePath(DIRS.results, id),
|
|
1612
|
+
cwd: runnerCwd,
|
|
1613
|
+
placeholder: "{previous}",
|
|
1614
|
+
maxOutput,
|
|
1615
|
+
artifactsDir: artifactConfig.enabled ? artifactsDir : undefined,
|
|
1616
|
+
artifactConfig,
|
|
1617
|
+
share: shareEnabled,
|
|
1618
|
+
sessionDir: resolvedSessionDir,
|
|
1619
|
+
asyncDir,
|
|
1620
|
+
sessionId: ctx.currentSessionId,
|
|
1621
|
+
completionOwnerId: ctx.completionOwnerId ?? currentCompletionOwnerId(),
|
|
1622
|
+
...(capabilityCeiling ? { capabilityCeiling } : {}),
|
|
1623
|
+
piPackageRoot,
|
|
1624
|
+
piArgv1: process.argv[1],
|
|
1625
|
+
worktreeSetupHook,
|
|
1626
|
+
worktreeSetupHookTimeoutMs,
|
|
1627
|
+
worktreeBaseDir,
|
|
1628
|
+
controlConfig,
|
|
1629
|
+
timeoutMs,
|
|
1630
|
+
deadlineAt,
|
|
1631
|
+
toolTimeoutMs,
|
|
1632
|
+
turnBudget: params.turnBudget,
|
|
1633
|
+
toolBudget: params.toolBudget,
|
|
1634
|
+
usageBudget: params.usageBudget,
|
|
1635
|
+
controlIntercomTarget,
|
|
1636
|
+
childIntercomTargets: childIntercomTarget ? [childIntercomTarget(agent, 0)] : undefined,
|
|
1637
|
+
resultMode: "single",
|
|
1638
|
+
launchContractDigest,
|
|
1639
|
+
launchResolvedExtensions,
|
|
1640
|
+
runFanoutBudget,
|
|
1641
|
+
...(params.parentWorkflowRunId ? { parentWorkflowRunId: params.parentWorkflowRunId } : {}),
|
|
1642
|
+
...(params.workflowKey ? { workflowKey: params.workflowKey } : {}),
|
|
1643
|
+
...(params.revivalLease ? { revivalLease: params.revivalLease } : {}),
|
|
1644
|
+
nestedRoute: nestedRoute ?? inheritedNestedRoute,
|
|
1645
|
+
nestedSelf: inheritedNestedRoute && nestedAddress ? {
|
|
1646
|
+
parentRunId: nestedAddress.parentRunId,
|
|
1647
|
+
parentStepIndex: nestedAddress.parentStepIndex,
|
|
1648
|
+
depth: nestedAddress.depth,
|
|
1649
|
+
path: nestedAddress.path,
|
|
1650
|
+
} : undefined,
|
|
1651
|
+
},
|
|
1652
|
+
id,
|
|
1653
|
+
runnerCwd,
|
|
1654
|
+
(proof) => ctx.pi.events.emit(SUBAGENT_PROCESS_TERMINAL_EVENT, proof),
|
|
1655
|
+
);
|
|
1656
|
+
} catch (error) {
|
|
1657
|
+
params.activeAsyncCapacity?.rollback();
|
|
1658
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
1659
|
+
return formatAsyncStartError("single", `Failed to start async run '${id}': ${message}`);
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
if (spawnResult.error) {
|
|
1663
|
+
if (!spawnResult.pid || !spawnResult.runnerProcessInstanceId || (spawnResult.startupDidNotProceed && spawnResult.terminationObserved)) params.activeAsyncCapacity?.rollback();
|
|
1664
|
+
else params.activeAsyncCapacity?.markStarted(spawnResult.runnerProcessInstanceId);
|
|
1665
|
+
return formatAsyncStartError("single", `Failed to start async run '${id}': ${spawnResult.error}`);
|
|
1666
|
+
}
|
|
1667
|
+
if (!spawnResult.pid || !spawnResult.runnerProcessInstanceId) {
|
|
1668
|
+
params.activeAsyncCapacity?.rollback();
|
|
1669
|
+
return formatAsyncStartError("single", `Failed to start async run '${id}': runner identity unavailable`);
|
|
1670
|
+
}
|
|
1671
|
+
params.activeAsyncCapacity?.markStarted(spawnResult.runnerProcessInstanceId);
|
|
1672
|
+
|
|
1673
|
+
if (spawnResult.pid) {
|
|
1674
|
+
if (inheritedNestedRoute && nestedAddress) {
|
|
1675
|
+
const now = Date.now();
|
|
1676
|
+
try {
|
|
1677
|
+
writeNestedEvent(inheritedNestedRoute, {
|
|
1678
|
+
type: "subagent.nested.started",
|
|
1679
|
+
ts: now,
|
|
1680
|
+
parentRunId: nestedAddress.parentRunId,
|
|
1681
|
+
parentStepIndex: nestedAddress.parentStepIndex,
|
|
1682
|
+
child: {
|
|
1683
|
+
id,
|
|
1684
|
+
parentRunId: nestedAddress.parentRunId,
|
|
1685
|
+
parentStepIndex: nestedAddress.parentStepIndex,
|
|
1686
|
+
depth: nestedAddress.depth,
|
|
1687
|
+
path: nestedAddress.path,
|
|
1688
|
+
asyncDir,
|
|
1689
|
+
pid: spawnResult.pid,
|
|
1690
|
+
ownerIntercomTarget: process.env.PI_SUBAGENT_INTERCOM_SESSION_NAME,
|
|
1691
|
+
leafIntercomTarget: childIntercomTarget?.(agent, 0),
|
|
1692
|
+
intercomTarget: childIntercomTarget?.(agent, 0),
|
|
1693
|
+
ownerState: "live",
|
|
1694
|
+
mode: "single",
|
|
1695
|
+
state: "running",
|
|
1696
|
+
agent,
|
|
1697
|
+
agents: [agent],
|
|
1698
|
+
chainStepCount: 1,
|
|
1699
|
+
...(timeoutMs !== undefined ? { timeoutMs, deadlineAt } : {}),
|
|
1700
|
+
...(initialTurnBudget ? { turnBudget: initialTurnBudget } : {}),
|
|
1701
|
+
startedAt: now,
|
|
1702
|
+
lastUpdate: now,
|
|
1703
|
+
...(capabilityCeiling ? { capabilityCeiling } : {}),
|
|
1704
|
+
},
|
|
1705
|
+
});
|
|
1706
|
+
} catch (error) {
|
|
1707
|
+
console.error("Failed to emit nested async start event:", error);
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
ctx.pi.events.emit(SUBAGENT_ASYNC_STARTED_EVENT, {
|
|
1711
|
+
lifecycleArtifactVersion: SUBAGENT_LIFECYCLE_ARTIFACT_VERSION,
|
|
1712
|
+
id,
|
|
1713
|
+
pid: spawnResult.pid,
|
|
1714
|
+
sessionId: ctx.currentSessionId,
|
|
1715
|
+
completionOwnerId: ctx.completionOwnerId ?? currentCompletionOwnerId(),
|
|
1716
|
+
mode: "single",
|
|
1717
|
+
agent,
|
|
1718
|
+
task: task?.trim() ? PROMPT_REDACTED : undefined,
|
|
1719
|
+
goal: (params.goal ?? task).trim() ? PROMPT_REDACTED : undefined,
|
|
1720
|
+
cwd: runnerCwd,
|
|
1721
|
+
asyncDir,
|
|
1722
|
+
...(sessionRoot ? { sessionRoot } : {}),
|
|
1723
|
+
launchContractDigest,
|
|
1724
|
+
launchResolvedExtensions,
|
|
1725
|
+
...(params.parentWorkflowRunId ? { parentWorkflowRunId: params.parentWorkflowRunId } : {}),
|
|
1726
|
+
...(params.workflowKey ? { workflowKey: params.workflowKey } : {}),
|
|
1727
|
+
...(timeoutMs !== undefined ? { timeoutMs, deadlineAt } : {}),
|
|
1728
|
+
...(initialTurnBudget ? { turnBudget: initialTurnBudget } : {}),
|
|
1729
|
+
...(initialUsageBudget ? { usageBudget: initialUsageBudget } : {}),
|
|
1730
|
+
...(capabilityCeiling ? { capabilityCeiling } : {}),
|
|
1731
|
+
nestedRoute,
|
|
1732
|
+
});
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
return {
|
|
1736
|
+
content: [{ type: "text", text: formatAsyncStartedMessage(`Async: ${agent} [${id}]`, ctx.interactive === true) }],
|
|
1737
|
+
details: { mode: "single", runId: id, results: [], asyncId: id, asyncDir, launchContractDigest, launchResolvedExtensions, ...(capabilityCeiling ? { capabilityCeiling } : {}), ...(params.context ? { context: params.context } : {}), ...(timeoutMs !== undefined ? { timeoutMs, deadlineAt } : {}), ...(params.turnBudget ? { turnBudget: params.turnBudget } : {}), ...(params.toolBudget ? { toolBudget: resolvedToolBudget.budget ?? params.toolBudget } : {}), ...(initialUsageBudget ? { usageBudget: initialUsageBudget } : {}) } as Details,
|
|
1738
|
+
};
|
|
1739
|
+
}
|