pi-improve-interation 0.0.1
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.en.md +57 -0
- package/README.md +57 -0
- package/extensions/plus.ts +93 -0
- package/node_modules/acorn/CHANGELOG.md +998 -0
- package/node_modules/acorn/LICENSE +21 -0
- package/node_modules/acorn/README.md +309 -0
- package/node_modules/acorn/bin/acorn +4 -0
- package/node_modules/acorn/dist/acorn.d.mts +897 -0
- package/node_modules/acorn/dist/acorn.d.ts +897 -0
- package/node_modules/acorn/dist/acorn.js +6342 -0
- package/node_modules/acorn/dist/acorn.mjs +6313 -0
- package/node_modules/acorn/dist/bin.js +90 -0
- package/node_modules/acorn/package.json +50 -0
- package/node_modules/jiti/LICENSE +21 -0
- package/node_modules/jiti/README.md +258 -0
- package/node_modules/jiti/dist/babel.cjs +257 -0
- package/node_modules/jiti/dist/jiti.cjs +1 -0
- package/node_modules/jiti/lib/jiti-cli.mjs +34 -0
- package/node_modules/jiti/lib/jiti-hooks.mjs +124 -0
- package/node_modules/jiti/lib/jiti-native.mjs +121 -0
- package/node_modules/jiti/lib/jiti-register.d.mts +1 -0
- package/node_modules/jiti/lib/jiti-register.mjs +4 -0
- package/node_modules/jiti/lib/jiti-static.mjs +23 -0
- package/node_modules/jiti/lib/jiti.cjs +30 -0
- package/node_modules/jiti/lib/jiti.d.cts +8 -0
- package/node_modules/jiti/lib/jiti.d.mts +8 -0
- package/node_modules/jiti/lib/jiti.mjs +29 -0
- package/node_modules/jiti/lib/types.d.ts +420 -0
- package/node_modules/jiti/package.json +146 -0
- package/node_modules/pi-subagents/CHANGELOG.md +2282 -0
- package/node_modules/pi-subagents/LICENSE +21 -0
- package/node_modules/pi-subagents/README.md +126 -0
- package/node_modules/pi-subagents/agents/claude-code-writer.md +15 -0
- package/node_modules/pi-subagents/agents/claude-code.md +15 -0
- package/node_modules/pi-subagents/agents/codex-exec-writer.md +15 -0
- package/node_modules/pi-subagents/agents/codex-exec.md +15 -0
- package/node_modules/pi-subagents/agents/cursor-agent-writer.md +14 -0
- package/node_modules/pi-subagents/agents/cursor-agent.md +14 -0
- package/node_modules/pi-subagents/agents/delegate.md +14 -0
- package/node_modules/pi-subagents/agents/oracle.md +78 -0
- package/node_modules/pi-subagents/agents/researcher.md +52 -0
- package/node_modules/pi-subagents/agents/reviewer.md +89 -0
- package/node_modules/pi-subagents/agents/scout.md +50 -0
- package/node_modules/pi-subagents/agents/worker.md +59 -0
- package/node_modules/pi-subagents/async-retention-discovery-worker.mjs +180 -0
- package/node_modules/pi-subagents/docs/agents.md +492 -0
- package/node_modules/pi-subagents/docs/configuration.md +508 -0
- package/node_modules/pi-subagents/docs/extension-api.md +443 -0
- package/node_modules/pi-subagents/docs/missions.md +121 -0
- package/node_modules/pi-subagents/docs/models.md +258 -0
- package/node_modules/pi-subagents/docs/observability.md +262 -0
- package/node_modules/pi-subagents/docs/tool-reference.md +482 -0
- package/node_modules/pi-subagents/docs/watchdog.md +176 -0
- package/node_modules/pi-subagents/docs/workflows.md +475 -0
- package/node_modules/pi-subagents/index.ts +10 -0
- package/node_modules/pi-subagents/inspector-runner.mjs +11 -0
- package/node_modules/pi-subagents/install.mjs +93 -0
- package/node_modules/pi-subagents/package.json +109 -0
- package/node_modules/pi-subagents/prompts/council.md +60 -0
- package/node_modules/pi-subagents/prompts/gather-context-and-clarify.md +13 -0
- package/node_modules/pi-subagents/prompts/parallel-cleanup.md +59 -0
- package/node_modules/pi-subagents/prompts/parallel-research.md +50 -0
- package/node_modules/pi-subagents/prompts/parallel-review.md +58 -0
- package/node_modules/pi-subagents/prompts/review-loop.md +47 -0
- package/node_modules/pi-subagents/skills/council-mode/SKILL.md +59 -0
- package/node_modules/pi-subagents/skills/council-mode/references/pass-contracts.md +150 -0
- package/node_modules/pi-subagents/skills/pi-subagents/SKILL.md +103 -0
- package/node_modules/pi-subagents/skills/pi-subagents/references/constraints-and-recipes.md +70 -0
- package/node_modules/pi-subagents/skills/pi-subagents/references/execution-controls.md +538 -0
- package/node_modules/pi-subagents/skills/pi-subagents/references/management-authoring-rpc.md +161 -0
- package/node_modules/pi-subagents/skills/pi-subagents/references/multi-lane-orchestration.md +51 -0
- package/node_modules/pi-subagents/skills/pi-subagents/references/prompting-and-roles.md +295 -0
- package/node_modules/pi-subagents/skills/pi-subagents/references/review-and-validation.md +73 -0
- package/node_modules/pi-subagents/src/agents/agent-management.ts +1355 -0
- package/node_modules/pi-subagents/src/agents/agent-memory.ts +254 -0
- package/node_modules/pi-subagents/src/agents/agent-refinements.ts +624 -0
- package/node_modules/pi-subagents/src/agents/agent-scope.ts +6 -0
- package/node_modules/pi-subagents/src/agents/agent-selection.ts +25 -0
- package/node_modules/pi-subagents/src/agents/agent-serializer.ts +179 -0
- package/node_modules/pi-subagents/src/agents/agents.ts +2808 -0
- package/node_modules/pi-subagents/src/agents/builtin-names.ts +15 -0
- package/node_modules/pi-subagents/src/agents/chain-serializer.ts +280 -0
- package/node_modules/pi-subagents/src/agents/frontmatter.ts +153 -0
- package/node_modules/pi-subagents/src/agents/identity.ts +30 -0
- package/node_modules/pi-subagents/src/agents/proactive-skills.ts +194 -0
- package/node_modules/pi-subagents/src/agents/runtime-agent-events.ts +70 -0
- package/node_modules/pi-subagents/src/agents/runtime-agent-registry.ts +429 -0
- package/node_modules/pi-subagents/src/agents/skills.ts +754 -0
- package/node_modules/pi-subagents/src/api/agents.ts +12 -0
- package/node_modules/pi-subagents/src/api/background-work.ts +206 -0
- package/node_modules/pi-subagents/src/api/capability-ceiling.ts +17 -0
- package/node_modules/pi-subagents/src/api/control-channel.ts +4 -0
- package/node_modules/pi-subagents/src/api/delegation.ts +112 -0
- package/node_modules/pi-subagents/src/api/external-job-provider.ts +195 -0
- package/node_modules/pi-subagents/src/api/external-runs.ts +282 -0
- package/node_modules/pi-subagents/src/api/intercom-bridge.ts +3 -0
- package/node_modules/pi-subagents/src/api/pi-args.ts +5 -0
- package/node_modules/pi-subagents/src/api/preflight.ts +501 -0
- package/node_modules/pi-subagents/src/api/project-panes.ts +32 -0
- package/node_modules/pi-subagents/src/api/shared-types.ts +24 -0
- package/node_modules/pi-subagents/src/extension/config.ts +235 -0
- package/node_modules/pi-subagents/src/extension/control-notices.ts +58 -0
- package/node_modules/pi-subagents/src/extension/doctor.ts +278 -0
- package/node_modules/pi-subagents/src/extension/fanout-child.ts +205 -0
- package/node_modules/pi-subagents/src/extension/index.ts +1093 -0
- package/node_modules/pi-subagents/src/extension/public-execution.ts +210 -0
- package/node_modules/pi-subagents/src/extension/rpc.ts +860 -0
- package/node_modules/pi-subagents/src/extension/schemas.ts +419 -0
- package/node_modules/pi-subagents/src/extension/steering-notices.ts +35 -0
- package/node_modules/pi-subagents/src/extension/subagent-guide.ts +39 -0
- package/node_modules/pi-subagents/src/extension/tool-description.ts +221 -0
- package/node_modules/pi-subagents/src/extension/tool-result.ts +19 -0
- package/node_modules/pi-subagents/src/inspectors/herdr/actions.ts +235 -0
- package/node_modules/pi-subagents/src/inspectors/herdr/client.ts +130 -0
- package/node_modules/pi-subagents/src/inspectors/herdr/focus.ts +55 -0
- package/node_modules/pi-subagents/src/inspectors/herdr/inspector-runner.ts +147 -0
- package/node_modules/pi-subagents/src/inspectors/herdr/project-panes.ts +730 -0
- package/node_modules/pi-subagents/src/inspectors/herdr/session-roots-codec.ts +42 -0
- package/node_modules/pi-subagents/src/inspectors/herdr/shell-command.ts +16 -0
- package/node_modules/pi-subagents/src/integrations/herdr-status.ts +400 -0
- package/node_modules/pi-subagents/src/intercom/intercom-bridge.ts +191 -0
- package/node_modules/pi-subagents/src/intercom/native-supervisor-channel.ts +812 -0
- package/node_modules/pi-subagents/src/intercom/result-intercom.ts +423 -0
- package/node_modules/pi-subagents/src/missions/actions.ts +433 -0
- package/node_modules/pi-subagents/src/missions/goal-driver.ts +164 -0
- package/node_modules/pi-subagents/src/missions/lifecycle.ts +367 -0
- package/node_modules/pi-subagents/src/missions/store.ts +584 -0
- package/node_modules/pi-subagents/src/missions/types.ts +190 -0
- package/node_modules/pi-subagents/src/missions/workflow-state.ts +260 -0
- package/node_modules/pi-subagents/src/policy/authority.ts +46 -0
- package/node_modules/pi-subagents/src/profiles/profiles.ts +662 -0
- package/node_modules/pi-subagents/src/runs/background/active-async-capacity.ts +517 -0
- package/node_modules/pi-subagents/src/runs/background/active-run-index.ts +139 -0
- package/node_modules/pi-subagents/src/runs/background/async-execution.ts +2031 -0
- package/node_modules/pi-subagents/src/runs/background/async-job-tracker.ts +781 -0
- package/node_modules/pi-subagents/src/runs/background/async-resume.ts +628 -0
- package/node_modules/pi-subagents/src/runs/background/async-retention.ts +903 -0
- package/node_modules/pi-subagents/src/runs/background/async-status-snapshot.ts +48 -0
- package/node_modules/pi-subagents/src/runs/background/async-status.ts +736 -0
- package/node_modules/pi-subagents/src/runs/background/auto-drain.ts +68 -0
- package/node_modules/pi-subagents/src/runs/background/chain-append.ts +321 -0
- package/node_modules/pi-subagents/src/runs/background/chain-root-attachment.ts +270 -0
- package/node_modules/pi-subagents/src/runs/background/completion-batcher.ts +168 -0
- package/node_modules/pi-subagents/src/runs/background/completion-dedupe.ts +58 -0
- package/node_modules/pi-subagents/src/runs/background/completion-replay.ts +287 -0
- package/node_modules/pi-subagents/src/runs/background/control-channel.ts +768 -0
- package/node_modules/pi-subagents/src/runs/background/fleet-view.ts +620 -0
- package/node_modules/pi-subagents/src/runs/background/index-segment.ts +59 -0
- package/node_modules/pi-subagents/src/runs/background/inspect-rpc.ts +443 -0
- package/node_modules/pi-subagents/src/runs/background/notify.ts +594 -0
- package/node_modules/pi-subagents/src/runs/background/owned-process-tree.ts +104 -0
- package/node_modules/pi-subagents/src/runs/background/parallel-groups.ts +45 -0
- package/node_modules/pi-subagents/src/runs/background/process-terminal.ts +310 -0
- package/node_modules/pi-subagents/src/runs/background/result-delivery-ownership.ts +45 -0
- package/node_modules/pi-subagents/src/runs/background/result-files.ts +519 -0
- package/node_modules/pi-subagents/src/runs/background/result-watcher.ts +792 -0
- package/node_modules/pi-subagents/src/runs/background/resume-guidance.ts +56 -0
- package/node_modules/pi-subagents/src/runs/background/retained-children.ts +135 -0
- package/node_modules/pi-subagents/src/runs/background/run-id-query.ts +7 -0
- package/node_modules/pi-subagents/src/runs/background/run-id-resolver.ts +175 -0
- package/node_modules/pi-subagents/src/runs/background/run-status.ts +694 -0
- package/node_modules/pi-subagents/src/runs/background/scheduled-runs.ts +965 -0
- package/node_modules/pi-subagents/src/runs/background/stale-run-reconciler.ts +410 -0
- package/node_modules/pi-subagents/src/runs/background/steering.ts +242 -0
- package/node_modules/pi-subagents/src/runs/background/subagent-runner.ts +5649 -0
- package/node_modules/pi-subagents/src/runs/background/subagent-wait.ts +725 -0
- package/node_modules/pi-subagents/src/runs/background/terminal-run-index.ts +138 -0
- package/node_modules/pi-subagents/src/runs/background/top-level-async.ts +14 -0
- package/node_modules/pi-subagents/src/runs/background/wait-completions.ts +196 -0
- package/node_modules/pi-subagents/src/runs/background/wait-config.ts +50 -0
- package/node_modules/pi-subagents/src/runs/background/wait-subscriptions.ts +348 -0
- package/node_modules/pi-subagents/src/runs/background/wait-tool.ts +43 -0
- package/node_modules/pi-subagents/src/runs/foreground/async-dismiss-action.ts +86 -0
- package/node_modules/pi-subagents/src/runs/foreground/async-steering-action.ts +262 -0
- package/node_modules/pi-subagents/src/runs/foreground/async-stop-action.ts +86 -0
- package/node_modules/pi-subagents/src/runs/foreground/execution.ts +2437 -0
- package/node_modules/pi-subagents/src/runs/foreground/foreground-control.ts +153 -0
- package/node_modules/pi-subagents/src/runs/foreground/foreground-history.ts +160 -0
- package/node_modules/pi-subagents/src/runs/foreground/prompt-audit.ts +172 -0
- package/node_modules/pi-subagents/src/runs/foreground/subagent-executor.ts +6916 -0
- package/node_modules/pi-subagents/src/runs/foreground/workflow-detach-reconcile.ts +299 -0
- package/node_modules/pi-subagents/src/runs/foreground/workflow-foreground-steering.ts +188 -0
- package/node_modules/pi-subagents/src/runs/shared/abort-recovery.ts +119 -0
- package/node_modules/pi-subagents/src/runs/shared/acceptance.ts +1509 -0
- package/node_modules/pi-subagents/src/runs/shared/agent-contract.ts +38 -0
- package/node_modules/pi-subagents/src/runs/shared/async-status-projection.ts +597 -0
- package/node_modules/pi-subagents/src/runs/shared/background-process-options.ts +9 -0
- package/node_modules/pi-subagents/src/runs/shared/capability-ceiling.ts +210 -0
- package/node_modules/pi-subagents/src/runs/shared/chain-outputs.ts +116 -0
- package/node_modules/pi-subagents/src/runs/shared/child-identity.ts +51 -0
- package/node_modules/pi-subagents/src/runs/shared/child-launch-plan.ts +151 -0
- package/node_modules/pi-subagents/src/runs/shared/child-protocol.ts +415 -0
- package/node_modules/pi-subagents/src/runs/shared/claude-code-adapter.ts +129 -0
- package/node_modules/pi-subagents/src/runs/shared/codex-exec-adapter.ts +129 -0
- package/node_modules/pi-subagents/src/runs/shared/completion-evidence.ts +89 -0
- package/node_modules/pi-subagents/src/runs/shared/completion-guard.ts +252 -0
- package/node_modules/pi-subagents/src/runs/shared/context-mode.ts +44 -0
- package/node_modules/pi-subagents/src/runs/shared/cursor-agent-adapter.ts +114 -0
- package/node_modules/pi-subagents/src/runs/shared/dynamic-fanout.ts +297 -0
- package/node_modules/pi-subagents/src/runs/shared/extension-bindings.ts +78 -0
- package/node_modules/pi-subagents/src/runs/shared/external-cli-contract.ts +167 -0
- package/node_modules/pi-subagents/src/runs/shared/external-cli-preflight.ts +122 -0
- package/node_modules/pi-subagents/src/runs/shared/external-cli-runner.ts +429 -0
- package/node_modules/pi-subagents/src/runs/shared/external-job-bridge.ts +460 -0
- package/node_modules/pi-subagents/src/runs/shared/external-job-runner.ts +389 -0
- package/node_modules/pi-subagents/src/runs/shared/fast-mode-extension.ts +10 -0
- package/node_modules/pi-subagents/src/runs/shared/host-step-status.ts +231 -0
- package/node_modules/pi-subagents/src/runs/shared/lane-metadata.ts +105 -0
- package/node_modules/pi-subagents/src/runs/shared/launch-cwd.ts +16 -0
- package/node_modules/pi-subagents/src/runs/shared/llm-intent-arbiter.ts +302 -0
- package/node_modules/pi-subagents/src/runs/shared/long-running-guard.ts +221 -0
- package/node_modules/pi-subagents/src/runs/shared/mcp-config-sources.ts +422 -0
- package/node_modules/pi-subagents/src/runs/shared/mcp-direct-tool-allowlist.ts +483 -0
- package/node_modules/pi-subagents/src/runs/shared/mcp-direct-tool-grant.ts +194 -0
- package/node_modules/pi-subagents/src/runs/shared/model-exclusions.ts +305 -0
- package/node_modules/pi-subagents/src/runs/shared/model-fallback.ts +578 -0
- package/node_modules/pi-subagents/src/runs/shared/model-scope.ts +205 -0
- package/node_modules/pi-subagents/src/runs/shared/mutation-evidence.ts +199 -0
- package/node_modules/pi-subagents/src/runs/shared/nested-events.ts +1086 -0
- package/node_modules/pi-subagents/src/runs/shared/nested-path.ts +52 -0
- package/node_modules/pi-subagents/src/runs/shared/nested-render.ts +127 -0
- package/node_modules/pi-subagents/src/runs/shared/orca-progress-tabs.ts +499 -0
- package/node_modules/pi-subagents/src/runs/shared/parallel-handoff.ts +692 -0
- package/node_modules/pi-subagents/src/runs/shared/parallel-utils.ts +275 -0
- package/node_modules/pi-subagents/src/runs/shared/permissions.ts +99 -0
- package/node_modules/pi-subagents/src/runs/shared/pi-args.ts +1056 -0
- package/node_modules/pi-subagents/src/runs/shared/pi-spawn.ts +197 -0
- package/node_modules/pi-subagents/src/runs/shared/process-signal.ts +32 -0
- package/node_modules/pi-subagents/src/runs/shared/run-fanout-budget.ts +280 -0
- package/node_modules/pi-subagents/src/runs/shared/run-history.ts +201 -0
- package/node_modules/pi-subagents/src/runs/shared/runtime-acknowledged-extensions.ts +71 -0
- package/node_modules/pi-subagents/src/runs/shared/session-lease.ts +293 -0
- package/node_modules/pi-subagents/src/runs/shared/single-output.ts +304 -0
- package/node_modules/pi-subagents/src/runs/shared/spawn-budget.ts +128 -0
- package/node_modules/pi-subagents/src/runs/shared/structured-output.ts +223 -0
- package/node_modules/pi-subagents/src/runs/shared/subagent-control.ts +290 -0
- package/node_modules/pi-subagents/src/runs/shared/subagent-prompt-runtime.ts +824 -0
- package/node_modules/pi-subagents/src/runs/shared/subagent-startup-retry.ts +116 -0
- package/node_modules/pi-subagents/src/runs/shared/task-intent.ts +208 -0
- package/node_modules/pi-subagents/src/runs/shared/tool-availability.ts +81 -0
- package/node_modules/pi-subagents/src/runs/shared/tool-budget.ts +80 -0
- package/node_modules/pi-subagents/src/runs/shared/tool-timeout.ts +93 -0
- package/node_modules/pi-subagents/src/runs/shared/usage-budget.ts +65 -0
- package/node_modules/pi-subagents/src/runs/shared/workflow-graph.ts +225 -0
- package/node_modules/pi-subagents/src/runs/shared/worktree-cleanup-plan.ts +847 -0
- package/node_modules/pi-subagents/src/runs/shared/worktree.ts +802 -0
- package/node_modules/pi-subagents/src/shared/accessible-dir.ts +47 -0
- package/node_modules/pi-subagents/src/shared/agent-stream-options.ts +5 -0
- package/node_modules/pi-subagents/src/shared/artifacts.ts +281 -0
- package/node_modules/pi-subagents/src/shared/atomic-json.ts +83 -0
- package/node_modules/pi-subagents/src/shared/capacity-resilient-json.ts +102 -0
- package/node_modules/pi-subagents/src/shared/child-session-name.ts +46 -0
- package/node_modules/pi-subagents/src/shared/child-transcript.ts +264 -0
- package/node_modules/pi-subagents/src/shared/completion-owner.ts +14 -0
- package/node_modules/pi-subagents/src/shared/display-text.ts +150 -0
- package/node_modules/pi-subagents/src/shared/extension-context.ts +24 -0
- package/node_modules/pi-subagents/src/shared/file-coalescer.ts +49 -0
- package/node_modules/pi-subagents/src/shared/file-system-retry.ts +95 -0
- package/node_modules/pi-subagents/src/shared/fork-context.ts +293 -0
- package/node_modules/pi-subagents/src/shared/fork-session-cwd.ts +27 -0
- package/node_modules/pi-subagents/src/shared/formatters.ts +146 -0
- package/node_modules/pi-subagents/src/shared/jsonl-writer.ts +81 -0
- package/node_modules/pi-subagents/src/shared/launch-contract.ts +138 -0
- package/node_modules/pi-subagents/src/shared/model-info.ts +101 -0
- package/node_modules/pi-subagents/src/shared/node-executable.ts +21 -0
- package/node_modules/pi-subagents/src/shared/post-exit-stdio-guard.ts +85 -0
- package/node_modules/pi-subagents/src/shared/prompt-resources.ts +11 -0
- package/node_modules/pi-subagents/src/shared/pruned-fork.ts +450 -0
- package/node_modules/pi-subagents/src/shared/session-file-trust.ts +19 -0
- package/node_modules/pi-subagents/src/shared/session-identity.ts +10 -0
- package/node_modules/pi-subagents/src/shared/session-tokens.ts +55 -0
- package/node_modules/pi-subagents/src/shared/settings.ts +409 -0
- package/node_modules/pi-subagents/src/shared/shortcuts.ts +17 -0
- package/node_modules/pi-subagents/src/shared/status-format.ts +55 -0
- package/node_modules/pi-subagents/src/shared/thinking-ceiling.ts +52 -0
- package/node_modules/pi-subagents/src/shared/types.ts +2836 -0
- package/node_modules/pi-subagents/src/shared/utf8.ts +11 -0
- package/node_modules/pi-subagents/src/shared/utils.ts +590 -0
- package/node_modules/pi-subagents/src/shared/watch-strategy.ts +10 -0
- package/node_modules/pi-subagents/src/shared/workflow-child-permit.ts +207 -0
- package/node_modules/pi-subagents/src/slash/delegation-adapters.ts +426 -0
- package/node_modules/pi-subagents/src/slash/delegation-json.ts +108 -0
- package/node_modules/pi-subagents/src/slash/delegation-request.ts +162 -0
- package/node_modules/pi-subagents/src/slash/prompt-template-bridge.ts +419 -0
- package/node_modules/pi-subagents/src/slash/prompt-workflows.ts +287 -0
- package/node_modules/pi-subagents/src/slash/selector.ts +147 -0
- package/node_modules/pi-subagents/src/slash/slash-bridge.ts +192 -0
- package/node_modules/pi-subagents/src/slash/slash-commands.ts +1336 -0
- package/node_modules/pi-subagents/src/slash/slash-live-state.ts +310 -0
- package/node_modules/pi-subagents/src/slash/subagents-admin.ts +437 -0
- package/node_modules/pi-subagents/src/tui/fleet-status.ts +905 -0
- package/node_modules/pi-subagents/src/tui/fleet-transcript.ts +536 -0
- package/node_modules/pi-subagents/src/tui/fleet.ts +1436 -0
- package/node_modules/pi-subagents/src/tui/render-helpers.ts +111 -0
- package/node_modules/pi-subagents/src/tui/render.ts +3146 -0
- package/node_modules/pi-subagents/src/types/pi-runtime-compat.d.ts +8 -0
- package/node_modules/pi-subagents/src/watchdog/change-signature.ts +260 -0
- package/node_modules/pi-subagents/src/watchdog/child-status.ts +205 -0
- package/node_modules/pi-subagents/src/watchdog/emission-guard.ts +123 -0
- package/node_modules/pi-subagents/src/watchdog/lsp-diagnostics.ts +538 -0
- package/node_modules/pi-subagents/src/watchdog/model-selection.ts +167 -0
- package/node_modules/pi-subagents/src/watchdog/permission-arbiter.ts +154 -0
- package/node_modules/pi-subagents/src/watchdog/register-child.ts +117 -0
- package/node_modules/pi-subagents/src/watchdog/register-main.ts +440 -0
- package/node_modules/pi-subagents/src/watchdog/render.ts +54 -0
- package/node_modules/pi-subagents/src/watchdog/review.ts +303 -0
- package/node_modules/pi-subagents/src/watchdog/runtime.ts +868 -0
- package/node_modules/pi-subagents/src/watchdog/scope.ts +62 -0
- package/node_modules/pi-subagents/src/watchdog/settings.ts +568 -0
- package/node_modules/pi-subagents/src/watchdog/tool-actions.ts +155 -0
- package/node_modules/pi-subagents/src/watchdog/turn-delta.ts +161 -0
- package/node_modules/pi-subagents/src/watchdog/types.ts +198 -0
- package/node_modules/pi-subagents/src/watchdog/warning-format.ts +73 -0
- package/node_modules/pi-subagents/src/workflows/chat-progress.ts +151 -0
- package/node_modules/pi-subagents/src/workflows/host-command.ts +235 -0
- package/node_modules/pi-subagents/src/workflows/scripted-workflow.ts +2183 -0
- package/node_modules/pi-subagents/src/workflows/workflow-child-summary.ts +121 -0
- package/node_modules/pi-subagents/src/workflows/workflow-preflight.ts +270 -0
- package/node_modules/pi-subagents/src/workflows/workflow-receipt.ts +366 -0
- package/node_modules/pi-subagents/src/workflows/workflow-resources.ts +150 -0
- package/node_modules/pi-subagents/src/workflows/workflow-settlement.ts +246 -0
- package/node_modules/typebox/build/compile/code.d.mts +12 -0
- package/node_modules/typebox/build/compile/code.mjs +65 -0
- package/node_modules/typebox/build/compile/compile.d.mts +6 -0
- package/node_modules/typebox/build/compile/compile.mjs +12 -0
- package/node_modules/typebox/build/compile/index.d.mts +8 -0
- package/node_modules/typebox/build/compile/index.mjs +14 -0
- package/node_modules/typebox/build/compile/validator.d.mts +43 -0
- package/node_modules/typebox/build/compile/validator.mjs +121 -0
- package/node_modules/typebox/build/error/errors.d.mts +214 -0
- package/node_modules/typebox/build/error/errors.mjs +18 -0
- package/node_modules/typebox/build/error/index.d.mts +1 -0
- package/node_modules/typebox/build/error/index.mjs +1 -0
- package/node_modules/typebox/build/format/_idna.d.mts +2 -0
- package/node_modules/typebox/build/format/_idna.mjs +216 -0
- package/node_modules/typebox/build/format/_puny.d.mts +1 -0
- package/node_modules/typebox/build/format/_puny.mjs +74 -0
- package/node_modules/typebox/build/format/_registry.d.mts +15 -0
- package/node_modules/typebox/build/format/_registry.mjs +96 -0
- package/node_modules/typebox/build/format/date.d.mts +6 -0
- package/node_modules/typebox/build/format/date.mjs +19 -0
- package/node_modules/typebox/build/format/date_time.d.mts +6 -0
- package/node_modules/typebox/build/format/date_time.mjs +11 -0
- package/node_modules/typebox/build/format/duration.d.mts +5 -0
- package/node_modules/typebox/build/format/duration.mjs +8 -0
- package/node_modules/typebox/build/format/email.d.mts +5 -0
- package/node_modules/typebox/build/format/email.mjs +8 -0
- package/node_modules/typebox/build/format/format.d.mts +22 -0
- package/node_modules/typebox/build/format/format.mjs +22 -0
- package/node_modules/typebox/build/format/hostname.d.mts +7 -0
- package/node_modules/typebox/build/format/hostname.mjs +18 -0
- package/node_modules/typebox/build/format/idn_email.d.mts +5 -0
- package/node_modules/typebox/build/format/idn_email.mjs +8 -0
- package/node_modules/typebox/build/format/idn_hostname.d.mts +7 -0
- package/node_modules/typebox/build/format/idn_hostname.mjs +19 -0
- package/node_modules/typebox/build/format/index.d.mts +4 -0
- package/node_modules/typebox/build/format/index.mjs +4 -0
- package/node_modules/typebox/build/format/ipv4.d.mts +6 -0
- package/node_modules/typebox/build/format/ipv4.mjs +38 -0
- package/node_modules/typebox/build/format/ipv6.d.mts +5 -0
- package/node_modules/typebox/build/format/ipv6.mjs +67 -0
- package/node_modules/typebox/build/format/iri.d.mts +5 -0
- package/node_modules/typebox/build/format/iri.mjs +13 -0
- package/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
- package/node_modules/typebox/build/format/iri_reference.mjs +60 -0
- package/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
- package/node_modules/typebox/build/format/json_pointer.mjs +9 -0
- package/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
- package/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
- package/node_modules/typebox/build/format/regex.d.mts +6 -0
- package/node_modules/typebox/build/format/regex.mjs +17 -0
- package/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
- package/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
- package/node_modules/typebox/build/format/time.d.mts +5 -0
- package/node_modules/typebox/build/format/time.mjs +27 -0
- package/node_modules/typebox/build/format/uri.d.mts +5 -0
- package/node_modules/typebox/build/format/uri.mjs +135 -0
- package/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
- package/node_modules/typebox/build/format/uri_reference.mjs +9 -0
- package/node_modules/typebox/build/format/uri_template.d.mts +6 -0
- package/node_modules/typebox/build/format/uri_template.mjs +10 -0
- package/node_modules/typebox/build/format/url.d.mts +6 -0
- package/node_modules/typebox/build/format/url.mjs +9 -0
- package/node_modules/typebox/build/format/uuid.d.mts +6 -0
- package/node_modules/typebox/build/format/uuid.mjs +9 -0
- package/node_modules/typebox/build/guard/emit.d.mts +58 -0
- package/node_modules/typebox/build/guard/emit.mjs +194 -0
- package/node_modules/typebox/build/guard/globals.d.mts +35 -0
- package/node_modules/typebox/build/guard/globals.mjs +90 -0
- package/node_modules/typebox/build/guard/guard.d.mts +69 -0
- package/node_modules/typebox/build/guard/guard.mjs +217 -0
- package/node_modules/typebox/build/guard/index.d.mts +6 -0
- package/node_modules/typebox/build/guard/index.mjs +6 -0
- package/node_modules/typebox/build/guard/native.d.mts +20 -0
- package/node_modules/typebox/build/guard/native.mjs +60 -0
- package/node_modules/typebox/build/guard/string.d.mts +6 -0
- package/node_modules/typebox/build/guard/string.mjs +164 -0
- package/node_modules/typebox/build/index.d.mts +8 -0
- package/node_modules/typebox/build/index.mjs +14 -0
- package/node_modules/typebox/build/schema/build.d.mts +39 -0
- package/node_modules/typebox/build/schema/build.mjs +118 -0
- package/node_modules/typebox/build/schema/check.d.mts +6 -0
- package/node_modules/typebox/build/schema/check.mjs +14 -0
- package/node_modules/typebox/build/schema/compile.d.mts +22 -0
- package/node_modules/typebox/build/schema/compile.mjs +46 -0
- package/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
- package/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
- package/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
- package/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
- package/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
- package/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/_functions.mjs +47 -0
- package/node_modules/typebox/build/schema/engine/_guard.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/_guard.mjs +26 -0
- package/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
- package/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
- package/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
- package/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
- package/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
- package/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
- package/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
- package/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/additionalItems.mjs +50 -0
- package/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/engine/additionalProperties.mjs +110 -0
- package/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
- package/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
- package/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
- package/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/const.mjs +30 -0
- package/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/contains.mjs +42 -0
- package/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
- package/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
- package/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
- package/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/format.mjs +26 -0
- package/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/if.mjs +47 -0
- package/node_modules/typebox/build/schema/engine/index.d.mts +49 -0
- package/node_modules/typebox/build/schema/engine/index.mjs +55 -0
- package/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/items.mjs +68 -0
- package/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
- package/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minContains.mjs +41 -0
- package/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/not.mjs +37 -0
- package/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/oneOf.mjs +58 -0
- package/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/pattern.mjs +28 -0
- package/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/patternProperties.mjs +44 -0
- package/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
- package/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
- package/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
- package/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/ref.mjs +58 -0
- package/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/required.mjs +32 -0
- package/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
- package/node_modules/typebox/build/schema/engine/schema.mjs +352 -0
- package/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/type.mjs +74 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
- package/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
- package/node_modules/typebox/build/schema/errors.d.mts +6 -0
- package/node_modules/typebox/build/schema/errors.mjs +24 -0
- package/node_modules/typebox/build/schema/index.d.mts +3 -0
- package/node_modules/typebox/build/schema/index.mjs +9 -0
- package/node_modules/typebox/build/schema/parse.d.mts +13 -0
- package/node_modules/typebox/build/schema/parse.mjs +27 -0
- package/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
- package/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
- package/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
- package/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
- package/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
- package/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
- package/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
- package/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
- package/node_modules/typebox/build/schema/resolve/ref.d.mts +3 -0
- package/node_modules/typebox/build/schema/resolve/ref.mjs +146 -0
- package/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
- package/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
- package/node_modules/typebox/build/schema/schema.d.mts +10 -0
- package/node_modules/typebox/build/schema/schema.mjs +10 -0
- package/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
- package/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
- package/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
- package/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
- package/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
- package/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
- package/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/const.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/const.mjs +2 -0
- package/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/enum.mjs +2 -0
- package/node_modules/typebox/build/schema/static/if.d.mts +15 -0
- package/node_modules/typebox/build/schema/static/if.mjs +2 -0
- package/node_modules/typebox/build/schema/static/index.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/index.mjs +1 -0
- package/node_modules/typebox/build/schema/static/items.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/items.mjs +2 -0
- package/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
- package/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
- package/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
- package/node_modules/typebox/build/schema/static/properties.mjs +2 -0
- package/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
- package/node_modules/typebox/build/schema/static/ref.mjs +3 -0
- package/node_modules/typebox/build/schema/static/required.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/required.mjs +3 -0
- package/node_modules/typebox/build/schema/static/schema.d.mts +56 -0
- package/node_modules/typebox/build/schema/static/schema.mjs +2 -0
- package/node_modules/typebox/build/schema/static/static.d.mts +4 -0
- package/node_modules/typebox/build/schema/static/static.mjs +3 -0
- package/node_modules/typebox/build/schema/static/type.d.mts +4 -0
- package/node_modules/typebox/build/schema/static/type.mjs +3 -0
- package/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
- package/node_modules/typebox/build/schema/types/_guard.d.mts +10 -0
- package/node_modules/typebox/build/schema/types/_guard.mjs +16 -0
- package/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
- package/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
- package/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
- package/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
- package/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/const.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/const.mjs +12 -0
- package/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/contains.mjs +14 -0
- package/node_modules/typebox/build/schema/types/contentEncoding.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/contentEncoding.mjs +13 -0
- package/node_modules/typebox/build/schema/types/contentMediaType.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/contentMediaType.mjs +13 -0
- package/node_modules/typebox/build/schema/types/default.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/default.mjs +12 -0
- package/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
- package/node_modules/typebox/build/schema/types/defs.mjs +12 -0
- package/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
- package/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
- package/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
- package/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
- package/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
- package/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
- package/node_modules/typebox/build/schema/types/else.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/else.mjs +14 -0
- package/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/enum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/format.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/format.mjs +13 -0
- package/node_modules/typebox/build/schema/types/id.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/id.mjs +13 -0
- package/node_modules/typebox/build/schema/types/if.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/if.mjs +14 -0
- package/node_modules/typebox/build/schema/types/index.d.mts +54 -0
- package/node_modules/typebox/build/schema/types/index.mjs +60 -0
- package/node_modules/typebox/build/schema/types/items.d.mts +19 -0
- package/node_modules/typebox/build/schema/types/items.mjs +26 -0
- package/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
- package/node_modules/typebox/build/schema/types/not.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/not.mjs +14 -0
- package/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
- package/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
- package/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/properties.mjs +15 -0
- package/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
- package/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
- package/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
- package/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
- package/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/ref.mjs +13 -0
- package/node_modules/typebox/build/schema/types/required.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/required.mjs +14 -0
- package/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/schema.mjs +14 -0
- package/node_modules/typebox/build/schema/types/then.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/then.mjs +14 -0
- package/node_modules/typebox/build/schema/types/type.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/type.mjs +15 -0
- package/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
- package/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
- package/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
- package/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
- package/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
- package/node_modules/typebox/build/system/arguments/index.mjs +1 -0
- package/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
- package/node_modules/typebox/build/system/environment/environment.mjs +1 -0
- package/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
- package/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
- package/node_modules/typebox/build/system/environment/index.d.mts +1 -0
- package/node_modules/typebox/build/system/environment/index.mjs +1 -0
- package/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
- package/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
- package/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
- package/node_modules/typebox/build/system/hashing/index.mjs +1 -0
- package/node_modules/typebox/build/system/index.d.mts +4 -0
- package/node_modules/typebox/build/system/index.mjs +4 -0
- package/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
- package/node_modules/typebox/build/system/locale/_config.mjs +15 -0
- package/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
- package/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ar_001.mjs +41 -0
- package/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/bn_BD.mjs +41 -0
- package/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/cs_CZ.mjs +41 -0
- package/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/de_DE.mjs +41 -0
- package/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/el_GR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/en_US.mjs +40 -0
- package/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_419.mjs +41 -0
- package/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_AR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_ES.mjs +41 -0
- package/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_MX.mjs +41 -0
- package/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fa_IR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fil_PH.mjs +41 -0
- package/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fr_CA.mjs +41 -0
- package/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fr_FR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ha_NG.mjs +41 -0
- package/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/hi_IN.mjs +41 -0
- package/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/hu_HU.mjs +41 -0
- package/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/id_ID.mjs +41 -0
- package/node_modules/typebox/build/system/locale/index.d.mts +1 -0
- package/node_modules/typebox/build/system/locale/index.mjs +1 -0
- package/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/it_IT.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ja_JP.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ko_KR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ms_MY.mjs +41 -0
- package/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/nl_NL.mjs +41 -0
- package/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pl_PL.mjs +41 -0
- package/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pt_BR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pt_PT.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ro_RO.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ru_RU.mjs +41 -0
- package/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/sv_SE.mjs +41 -0
- package/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/sw_TZ.mjs +41 -0
- package/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/th_TH.mjs +41 -0
- package/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/tr_TR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/uk_UA.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ur_PK.mjs +41 -0
- package/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/vi_VN.mjs +41 -0
- package/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/yo_NG.mjs +41 -0
- package/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/zh_Hans.mjs +41 -0
- package/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/zh_Hant.mjs +41 -0
- package/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
- package/node_modules/typebox/build/system/memory/assign.mjs +11 -0
- package/node_modules/typebox/build/system/memory/clone.d.mts +6 -0
- package/node_modules/typebox/build/system/memory/clone.mjs +63 -0
- package/node_modules/typebox/build/system/memory/create.d.mts +8 -0
- package/node_modules/typebox/build/system/memory/create.mjs +30 -0
- package/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
- package/node_modules/typebox/build/system/memory/discard.mjs +17 -0
- package/node_modules/typebox/build/system/memory/index.d.mts +1 -0
- package/node_modules/typebox/build/system/memory/index.mjs +1 -0
- package/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
- package/node_modules/typebox/build/system/memory/memory.mjs +7 -0
- package/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
- package/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
- package/node_modules/typebox/build/system/memory/update.d.mts +7 -0
- package/node_modules/typebox/build/system/memory/update.mjs +32 -0
- package/node_modules/typebox/build/system/settings/index.d.mts +1 -0
- package/node_modules/typebox/build/system/settings/index.mjs +1 -0
- package/node_modules/typebox/build/system/settings/settings.d.mts +56 -0
- package/node_modules/typebox/build/system/settings/settings.mjs +32 -0
- package/node_modules/typebox/build/system/system.d.mts +6 -0
- package/node_modules/typebox/build/system/system.mjs +6 -0
- package/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
- package/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
- package/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
- package/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
- package/node_modules/typebox/build/type/action/_optional.d.mts +19 -0
- package/node_modules/typebox/build/type/action/_optional.mjs +40 -0
- package/node_modules/typebox/build/type/action/_readonly.d.mts +19 -0
- package/node_modules/typebox/build/type/action/_readonly.mjs +40 -0
- package/node_modules/typebox/build/type/action/awaited.d.mts +15 -0
- package/node_modules/typebox/build/type/action/awaited.mjs +15 -0
- package/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
- package/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
- package/node_modules/typebox/build/type/action/conditional.d.mts +13 -0
- package/node_modules/typebox/build/type/action/conditional.mjs +12 -0
- package/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
- package/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
- package/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
- package/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
- package/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
- package/node_modules/typebox/build/type/action/exclude.mjs +11 -0
- package/node_modules/typebox/build/type/action/extract.d.mts +11 -0
- package/node_modules/typebox/build/type/action/extract.mjs +11 -0
- package/node_modules/typebox/build/type/action/index.d.mts +27 -0
- package/node_modules/typebox/build/type/action/index.mjs +27 -0
- package/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
- package/node_modules/typebox/build/type/action/indexed.mjs +14 -0
- package/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
- package/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
- package/node_modules/typebox/build/type/action/interface.d.mts +14 -0
- package/node_modules/typebox/build/type/action/interface.mjs +22 -0
- package/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
- package/node_modules/typebox/build/type/action/keyof.mjs +11 -0
- package/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
- package/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
- package/node_modules/typebox/build/type/action/mapped.d.mts +14 -0
- package/node_modules/typebox/build/type/action/mapped.mjs +12 -0
- package/node_modules/typebox/build/type/action/module.d.mts +12 -0
- package/node_modules/typebox/build/type/action/module.mjs +12 -0
- package/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
- package/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
- package/node_modules/typebox/build/type/action/omit.d.mts +14 -0
- package/node_modules/typebox/build/type/action/omit.mjs +14 -0
- package/node_modules/typebox/build/type/action/options.d.mts +11 -0
- package/node_modules/typebox/build/type/action/options.mjs +11 -0
- package/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
- package/node_modules/typebox/build/type/action/parameters.mjs +11 -0
- package/node_modules/typebox/build/type/action/partial.d.mts +11 -0
- package/node_modules/typebox/build/type/action/partial.mjs +11 -0
- package/node_modules/typebox/build/type/action/pick.d.mts +14 -0
- package/node_modules/typebox/build/type/action/pick.mjs +14 -0
- package/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
- package/node_modules/typebox/build/type/action/readonly_object.mjs +16 -0
- package/node_modules/typebox/build/type/action/required.d.mts +11 -0
- package/node_modules/typebox/build/type/action/required.mjs +11 -0
- package/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
- package/node_modules/typebox/build/type/action/return_type.mjs +11 -0
- package/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
- package/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
- package/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
- package/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
- package/node_modules/typebox/build/type/engine/awaited/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/awaited/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/awaited/instantiate.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/awaited/instantiate.mjs +20 -0
- package/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +53 -0
- package/node_modules/typebox/build/type/engine/call/instantiate.d.mts +23 -0
- package/node_modules/typebox/build/type/engine/call/instantiate.mjs +48 -0
- package/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
- package/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
- package/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
- package/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +24 -0
- package/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +19 -0
- package/node_modules/typebox/build/type/engine/cyclic/check.d.mts +24 -0
- package/node_modules/typebox/build/type/engine/cyclic/check.mjs +51 -0
- package/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +25 -0
- package/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +53 -0
- package/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +31 -0
- package/node_modules/typebox/build/type/engine/cyclic/extends.mjs +53 -0
- package/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
- package/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +20 -0
- package/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +30 -0
- package/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
- package/node_modules/typebox/build/type/engine/enum/enum_to_union.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/enum/enum_to_union.mjs +24 -0
- package/node_modules/typebox/build/type/engine/enum/index.d.mts +2 -0
- package/node_modules/typebox/build/type/engine/enum/index.mjs +2 -0
- package/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
- package/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +47 -0
- package/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/evaluate/compare.mjs +22 -0
- package/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +30 -0
- package/node_modules/typebox/build/type/engine/evaluate/composite.mjs +63 -0
- package/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +27 -0
- package/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +45 -0
- package/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +27 -0
- package/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +11 -0
- package/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
- package/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +11 -0
- package/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/exclude/operation.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/exclude/operation.mjs +24 -0
- package/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/extract/operation.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/extract/operation.mjs +24 -0
- package/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
- package/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
- package/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
- package/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
- package/node_modules/typebox/build/type/engine/index.d.mts +31 -0
- package/node_modules/typebox/build/type/engine/index.mjs +37 -0
- package/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +17 -0
- package/node_modules/typebox/build/type/engine/indexable/from_type.mjs +22 -0
- package/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
- package/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
- package/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
- package/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
- package/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
- package/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
- package/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +25 -0
- package/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
- package/node_modules/typebox/build/type/engine/instantiate.d.mts +165 -0
- package/node_modules/typebox/build/type/engine/instantiate.mjs +159 -0
- package/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +18 -0
- package/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
- package/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
- package/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
- package/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
- package/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
- package/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
- package/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +25 -0
- package/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +34 -0
- package/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/module/instantiate.d.mts +21 -0
- package/node_modules/typebox/build/type/engine/module/instantiate.mjs +34 -0
- package/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
- package/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
- package/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
- package/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
- package/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
- package/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
- package/node_modules/typebox/build/type/engine/object/from_type.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/object/from_type.mjs +20 -0
- package/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
- package/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
- package/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/options/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/options/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/options/instantiate.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/options/instantiate.mjs +14 -0
- package/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +24 -0
- package/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +7 -0
- package/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/partial/from_type.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/partial/from_type.mjs +17 -0
- package/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
- package/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
- package/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
- package/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
- package/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
- package/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +22 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
- package/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
- package/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
- package/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
- package/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
- package/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
- package/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
- package/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
- package/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
- package/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
- package/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
- package/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/required/from_intersect.mjs +7 -0
- package/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/required/from_type.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/required/from_type.mjs +17 -0
- package/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
- package/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
- package/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
- package/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
- package/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
- package/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
- package/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
- package/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +9 -0
- package/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
- package/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
- package/node_modules/typebox/build/type/engine/this/expand_this.d.mts +19 -0
- package/node_modules/typebox/build/type/engine/this/expand_this.mjs +32 -0
- package/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
- package/node_modules/typebox/build/type/extends/any.d.mts +9 -0
- package/node_modules/typebox/build/type/extends/any.mjs +12 -0
- package/node_modules/typebox/build/type/extends/array.d.mts +20 -0
- package/node_modules/typebox/build/type/extends/array.mjs +21 -0
- package/node_modules/typebox/build/type/extends/async_iterator.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/async_iterator.mjs +9 -0
- package/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
- package/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
- package/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
- package/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
- package/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/enum.mjs +6 -0
- package/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
- package/node_modules/typebox/build/type/extends/extends.mjs +17 -0
- package/node_modules/typebox/build/type/extends/extends_left.d.mts +55 -0
- package/node_modules/typebox/build/type/extends/extends_left.mjs +83 -0
- package/node_modules/typebox/build/type/extends/extends_right.d.mts +25 -0
- package/node_modules/typebox/build/type/extends/extends_right.mjs +44 -0
- package/node_modules/typebox/build/type/extends/function.d.mts +10 -0
- package/node_modules/typebox/build/type/extends/function.mjs +17 -0
- package/node_modules/typebox/build/type/extends/index.d.mts +2 -0
- package/node_modules/typebox/build/type/extends/index.mjs +2 -0
- package/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
- package/node_modules/typebox/build/type/extends/inference.mjs +62 -0
- package/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/integer.mjs +10 -0
- package/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
- package/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
- package/node_modules/typebox/build/type/extends/iterator.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/iterator.mjs +9 -0
- package/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
- package/node_modules/typebox/build/type/extends/literal.mjs +44 -0
- package/node_modules/typebox/build/type/extends/never.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/never.mjs +9 -0
- package/node_modules/typebox/build/type/extends/null.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/null.mjs +9 -0
- package/node_modules/typebox/build/type/extends/number.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/number.mjs +9 -0
- package/node_modules/typebox/build/type/extends/object.d.mts +25 -0
- package/node_modules/typebox/build/type/extends/object.mjs +87 -0
- package/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
- package/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
- package/node_modules/typebox/build/type/extends/promise.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/promise.mjs +9 -0
- package/node_modules/typebox/build/type/extends/result.d.mts +24 -0
- package/node_modules/typebox/build/type/extends/result.mjs +36 -0
- package/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
- package/node_modules/typebox/build/type/extends/string.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/string.mjs +9 -0
- package/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
- package/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
- package/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
- package/node_modules/typebox/build/type/extends/tuple.d.mts +25 -0
- package/node_modules/typebox/build/type/extends/tuple.mjs +60 -0
- package/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
- package/node_modules/typebox/build/type/extends/union.d.mts +11 -0
- package/node_modules/typebox/build/type/extends/union.mjs +24 -0
- package/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
- package/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
- package/node_modules/typebox/build/type/extends/void.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/void.mjs +9 -0
- package/node_modules/typebox/build/type/index.d.mts +5 -0
- package/node_modules/typebox/build/type/index.mjs +5 -0
- package/node_modules/typebox/build/type/script/index.d.mts +1 -0
- package/node_modules/typebox/build/type/script/index.mjs +1 -0
- package/node_modules/typebox/build/type/script/mapping.d.mts +365 -0
- package/node_modules/typebox/build/type/script/mapping.mjs +532 -0
- package/node_modules/typebox/build/type/script/parser.d.mts +260 -0
- package/node_modules/typebox/build/type/script/parser.mjs +135 -0
- package/node_modules/typebox/build/type/script/script.d.mts +17 -0
- package/node_modules/typebox/build/type/script/script.mjs +21 -0
- package/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
- package/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
- package/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/const.mjs +18 -0
- package/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
- package/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
- package/node_modules/typebox/build/type/script/token/index.mjs +12 -0
- package/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
- package/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
- package/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
- package/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
- package/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
- package/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
- package/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
- package/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
- package/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
- package/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
- package/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
- package/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
- package/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
- package/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
- package/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/number.mjs +19 -0
- package/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
- package/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
- package/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/span.mjs +24 -0
- package/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/string.mjs +20 -0
- package/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
- package/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
- package/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
- package/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
- package/node_modules/typebox/build/type/script/token/until.mjs +21 -0
- package/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
- package/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
- package/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
- package/node_modules/typebox/build/type/types/_codec.mjs +61 -0
- package/node_modules/typebox/build/type/types/_immutable.d.mts +16 -0
- package/node_modules/typebox/build/type/types/_immutable.mjs +26 -0
- package/node_modules/typebox/build/type/types/_optional.d.mts +16 -0
- package/node_modules/typebox/build/type/types/_optional.mjs +27 -0
- package/node_modules/typebox/build/type/types/_readonly.d.mts +16 -0
- package/node_modules/typebox/build/type/types/_readonly.mjs +26 -0
- package/node_modules/typebox/build/type/types/_refine.d.mts +26 -0
- package/node_modules/typebox/build/type/types/_refine.mjs +37 -0
- package/node_modules/typebox/build/type/types/any.d.mts +10 -0
- package/node_modules/typebox/build/type/types/any.mjs +18 -0
- package/node_modules/typebox/build/type/types/array.d.mts +18 -0
- package/node_modules/typebox/build/type/types/array.mjs +25 -0
- package/node_modules/typebox/build/type/types/async_iterator.d.mts +20 -0
- package/node_modules/typebox/build/type/types/async_iterator.mjs +28 -0
- package/node_modules/typebox/build/type/types/base.d.mts +50 -0
- package/node_modules/typebox/build/type/types/base.mjs +84 -0
- package/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
- package/node_modules/typebox/build/type/types/bigint.mjs +21 -0
- package/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
- package/node_modules/typebox/build/type/types/boolean.mjs +17 -0
- package/node_modules/typebox/build/type/types/call.d.mts +16 -0
- package/node_modules/typebox/build/type/types/call.mjs +22 -0
- package/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
- package/node_modules/typebox/build/type/types/constructor.mjs +24 -0
- package/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
- package/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
- package/node_modules/typebox/build/type/types/deferred.d.mts +12 -0
- package/node_modules/typebox/build/type/types/deferred.mjs +16 -0
- package/node_modules/typebox/build/type/types/enum.d.mts +16 -0
- package/node_modules/typebox/build/type/types/enum.mjs +17 -0
- package/node_modules/typebox/build/type/types/function.d.mts +21 -0
- package/node_modules/typebox/build/type/types/function.mjs +25 -0
- package/node_modules/typebox/build/type/types/generic.d.mts +13 -0
- package/node_modules/typebox/build/type/types/generic.mjs +17 -0
- package/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
- package/node_modules/typebox/build/type/types/identifier.mjs +17 -0
- package/node_modules/typebox/build/type/types/index.d.mts +48 -0
- package/node_modules/typebox/build/type/types/index.mjs +54 -0
- package/node_modules/typebox/build/type/types/infer.d.mts +15 -0
- package/node_modules/typebox/build/type/types/infer.mjs +20 -0
- package/node_modules/typebox/build/type/types/integer.d.mts +12 -0
- package/node_modules/typebox/build/type/types/integer.mjs +21 -0
- package/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
- package/node_modules/typebox/build/type/types/intersect.mjs +24 -0
- package/node_modules/typebox/build/type/types/iterator.d.mts +20 -0
- package/node_modules/typebox/build/type/types/iterator.mjs +28 -0
- package/node_modules/typebox/build/type/types/literal.d.mts +31 -0
- package/node_modules/typebox/build/type/types/literal.mjs +62 -0
- package/node_modules/typebox/build/type/types/never.d.mts +12 -0
- package/node_modules/typebox/build/type/types/never.mjs +22 -0
- package/node_modules/typebox/build/type/types/null.d.mts +11 -0
- package/node_modules/typebox/build/type/types/null.mjs +17 -0
- package/node_modules/typebox/build/type/types/number.d.mts +12 -0
- package/node_modules/typebox/build/type/types/number.mjs +21 -0
- package/node_modules/typebox/build/type/types/object.d.mts +18 -0
- package/node_modules/typebox/build/type/types/object.mjs +28 -0
- package/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
- package/node_modules/typebox/build/type/types/parameter.mjs +21 -0
- package/node_modules/typebox/build/type/types/promise.d.mts +21 -0
- package/node_modules/typebox/build/type/types/promise.mjs +29 -0
- package/node_modules/typebox/build/type/types/properties.d.mts +43 -0
- package/node_modules/typebox/build/type/types/properties.mjs +15 -0
- package/node_modules/typebox/build/type/types/record.d.mts +46 -0
- package/node_modules/typebox/build/type/types/record.mjs +60 -0
- package/node_modules/typebox/build/type/types/ref.d.mts +19 -0
- package/node_modules/typebox/build/type/types/ref.mjs +18 -0
- package/node_modules/typebox/build/type/types/rest.d.mts +11 -0
- package/node_modules/typebox/build/type/types/rest.mjs +17 -0
- package/node_modules/typebox/build/type/types/schema.d.mts +176 -0
- package/node_modules/typebox/build/type/types/schema.mjs +15 -0
- package/node_modules/typebox/build/type/types/static.d.mts +48 -0
- package/node_modules/typebox/build/type/types/static.mjs +3 -0
- package/node_modules/typebox/build/type/types/string.d.mts +12 -0
- package/node_modules/typebox/build/type/types/string.mjs +22 -0
- package/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
- package/node_modules/typebox/build/type/types/symbol.mjs +17 -0
- package/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
- package/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
- package/node_modules/typebox/build/type/types/this.d.mts +14 -0
- package/node_modules/typebox/build/type/types/this.mjs +17 -0
- package/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
- package/node_modules/typebox/build/type/types/tuple.mjs +25 -0
- package/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
- package/node_modules/typebox/build/type/types/undefined.mjs +17 -0
- package/node_modules/typebox/build/type/types/union.d.mts +15 -0
- package/node_modules/typebox/build/type/types/union.mjs +24 -0
- package/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
- package/node_modules/typebox/build/type/types/unknown.mjs +17 -0
- package/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
- package/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
- package/node_modules/typebox/build/type/types/void.d.mts +11 -0
- package/node_modules/typebox/build/type/types/void.mjs +17 -0
- package/node_modules/typebox/build/typebox.d.mts +73 -0
- package/node_modules/typebox/build/typebox.mjs +89 -0
- package/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
- package/node_modules/typebox/build/value/assert/assert.mjs +28 -0
- package/node_modules/typebox/build/value/assert/index.d.mts +1 -0
- package/node_modules/typebox/build/value/assert/index.mjs +1 -0
- package/node_modules/typebox/build/value/check/check.d.mts +5 -0
- package/node_modules/typebox/build/value/check/check.mjs +11 -0
- package/node_modules/typebox/build/value/check/index.d.mts +1 -0
- package/node_modules/typebox/build/value/check/index.mjs +1 -0
- package/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/additional.mjs +6 -0
- package/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
- package/node_modules/typebox/build/value/clean/clean.mjs +15 -0
- package/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
- package/node_modules/typebox/build/value/clean/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_base.mjs +4 -0
- package/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
- package/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
- package/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
- package/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
- package/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
- package/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_type.mjs +23 -0
- package/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_union.mjs +13 -0
- package/node_modules/typebox/build/value/clean/index.d.mts +1 -0
- package/node_modules/typebox/build/value/clean/index.mjs +1 -0
- package/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
- package/node_modules/typebox/build/value/clone/clone.mjs +83 -0
- package/node_modules/typebox/build/value/clone/index.d.mts +1 -0
- package/node_modules/typebox/build/value/clone/index.mjs +1 -0
- package/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/callback.mjs +25 -0
- package/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
- package/node_modules/typebox/build/value/codec/decode.mjs +50 -0
- package/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
- package/node_modules/typebox/build/value/codec/encode.mjs +50 -0
- package/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_array.mjs +38 -0
- package/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
- package/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_object.mjs +45 -0
- package/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_record.mjs +44 -0
- package/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
- package/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_tuple.mjs +35 -0
- package/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
- package/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_union.mjs +40 -0
- package/node_modules/typebox/build/value/codec/has.d.mts +5 -0
- package/node_modules/typebox/build/value/codec/has.mjs +93 -0
- package/node_modules/typebox/build/value/codec/index.d.mts +3 -0
- package/node_modules/typebox/build/value/codec/index.mjs +3 -0
- package/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
- package/node_modules/typebox/build/value/convert/convert.mjs +15 -0
- package/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
- package/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
- package/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
- package/node_modules/typebox/build/value/convert/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_base.mjs +4 -0
- package/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_enum.mjs +7 -0
- package/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
- package/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
- package/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
- package/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
- package/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_template_literal.mjs +7 -0
- package/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
- package/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_type.mjs +45 -0
- package/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
- package/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
- package/node_modules/typebox/build/value/convert/index.d.mts +1 -0
- package/node_modules/typebox/build/value/convert/index.mjs +1 -0
- package/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
- package/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
- package/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
- package/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
- package/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
- package/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
- package/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
- package/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
- package/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
- package/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
- package/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
- package/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
- package/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
- package/node_modules/typebox/build/value/create/create.d.mts +5 -0
- package/node_modules/typebox/build/value/create/create.mjs +11 -0
- package/node_modules/typebox/build/value/create/error.d.mts +5 -0
- package/node_modules/typebox/build/value/create/error.mjs +7 -0
- package/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_array.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_async_iterator.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_async_iterator.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_base.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
- package/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
- package/node_modules/typebox/build/value/create/from_default.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_function.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_iterator.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_iterator.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_never.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_null.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_number.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_object.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_promise.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_promise.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_record.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_string.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
- package/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_type.mjs +69 -0
- package/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_union.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_void.mjs +4 -0
- package/node_modules/typebox/build/value/create/index.d.mts +2 -0
- package/node_modules/typebox/build/value/create/index.mjs +2 -0
- package/node_modules/typebox/build/value/default/default.d.mts +13 -0
- package/node_modules/typebox/build/value/default/default.mjs +15 -0
- package/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_array.mjs +12 -0
- package/node_modules/typebox/build/value/default/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_base.mjs +5 -0
- package/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
- package/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
- package/node_modules/typebox/build/value/default/from_default.mjs +13 -0
- package/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
- package/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_object.mjs +32 -0
- package/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_record.mjs +26 -0
- package/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
- package/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_type.mjs +27 -0
- package/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_union.mjs +14 -0
- package/node_modules/typebox/build/value/default/index.d.mts +1 -0
- package/node_modules/typebox/build/value/default/index.mjs +1 -0
- package/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
- package/node_modules/typebox/build/value/delta/diff.mjs +135 -0
- package/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
- package/node_modules/typebox/build/value/delta/edit.mjs +17 -0
- package/node_modules/typebox/build/value/delta/index.d.mts +3 -0
- package/node_modules/typebox/build/value/delta/index.mjs +3 -0
- package/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
- package/node_modules/typebox/build/value/delta/patch.mjs +42 -0
- package/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
- package/node_modules/typebox/build/value/equal/equal.mjs +6 -0
- package/node_modules/typebox/build/value/equal/index.d.mts +1 -0
- package/node_modules/typebox/build/value/equal/index.mjs +1 -0
- package/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
- package/node_modules/typebox/build/value/errors/errors.mjs +17 -0
- package/node_modules/typebox/build/value/errors/index.d.mts +1 -0
- package/node_modules/typebox/build/value/errors/index.mjs +1 -0
- package/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
- package/node_modules/typebox/build/value/hash/hash.mjs +10 -0
- package/node_modules/typebox/build/value/hash/index.d.mts +1 -0
- package/node_modules/typebox/build/value/hash/index.mjs +1 -0
- package/node_modules/typebox/build/value/index.d.mts +21 -0
- package/node_modules/typebox/build/value/index.mjs +30 -0
- package/node_modules/typebox/build/value/mutate/error.d.mts +3 -0
- package/node_modules/typebox/build/value/mutate/error.mjs +6 -0
- package/node_modules/typebox/build/value/mutate/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/mutate/from_array.mjs +16 -0
- package/node_modules/typebox/build/value/mutate/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/mutate/from_object.mjs +40 -0
- package/node_modules/typebox/build/value/mutate/from_unknown.d.mts +2 -0
- package/node_modules/typebox/build/value/mutate/from_unknown.mjs +7 -0
- package/node_modules/typebox/build/value/mutate/from_value.d.mts +2 -0
- package/node_modules/typebox/build/value/mutate/from_value.mjs +12 -0
- package/node_modules/typebox/build/value/mutate/index.d.mts +1 -0
- package/node_modules/typebox/build/value/mutate/index.mjs +1 -0
- package/node_modules/typebox/build/value/mutate/mutate.d.mts +11 -0
- package/node_modules/typebox/build/value/mutate/mutate.mjs +41 -0
- package/node_modules/typebox/build/value/parse/index.d.mts +1 -0
- package/node_modules/typebox/build/value/parse/index.mjs +1 -0
- package/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
- package/node_modules/typebox/build/value/parse/parse.mjs +47 -0
- package/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
- package/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
- package/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
- package/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
- package/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
- package/node_modules/typebox/build/value/pointer/index.mjs +1 -0
- package/node_modules/typebox/build/value/repair/error.d.mts +7 -0
- package/node_modules/typebox/build/value/repair/error.mjs +8 -0
- package/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
- package/node_modules/typebox/build/value/repair/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_base.mjs +8 -0
- package/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_enum.mjs +7 -0
- package/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
- package/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
- package/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
- package/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
- package/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_type.mjs +86 -0
- package/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
- package/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
- package/node_modules/typebox/build/value/repair/index.d.mts +1 -0
- package/node_modules/typebox/build/value/repair/index.mjs +1 -0
- package/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
- package/node_modules/typebox/build/value/repair/repair.mjs +20 -0
- package/node_modules/typebox/build/value/shared/index.d.mts +3 -0
- package/node_modules/typebox/build/value/shared/index.mjs +4 -0
- package/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
- package/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +3 -0
- package/node_modules/typebox/build/value/shared/union_priority_sort.mjs +36 -0
- package/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
- package/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
- package/node_modules/typebox/build/value/value.d.mts +16 -0
- package/node_modules/typebox/build/value/value.mjs +16 -0
- package/node_modules/typebox/license +23 -0
- package/node_modules/typebox/package.json +87 -0
- package/node_modules/typebox/readme.md +356 -0
- package/node_modules/yaml/LICENSE +13 -0
- package/node_modules/yaml/README.md +172 -0
- package/node_modules/yaml/bin.mjs +11 -0
- package/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
- package/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/node_modules/yaml/browser/dist/errors.js +57 -0
- package/node_modules/yaml/browser/dist/index.js +17 -0
- package/node_modules/yaml/browser/dist/log.js +11 -0
- package/node_modules/yaml/browser/dist/nodes/Alias.js +114 -0
- package/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
- package/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/node_modules/yaml/browser/dist/parse/parser.js +967 -0
- package/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/node_modules/yaml/browser/dist/util.js +11 -0
- package/node_modules/yaml/browser/dist/visit.js +233 -0
- package/node_modules/yaml/browser/index.js +5 -0
- package/node_modules/yaml/browser/package.json +3 -0
- package/node_modules/yaml/dist/cli.d.ts +8 -0
- package/node_modules/yaml/dist/cli.mjs +201 -0
- package/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/node_modules/yaml/dist/compose/compose-node.js +112 -0
- package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/node_modules/yaml/dist/compose/composer.js +222 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/node_modules/yaml/dist/doc/Document.js +337 -0
- package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/node_modules/yaml/dist/doc/directives.js +178 -0
- package/node_modules/yaml/dist/errors.d.ts +21 -0
- package/node_modules/yaml/dist/errors.js +62 -0
- package/node_modules/yaml/dist/index.d.ts +25 -0
- package/node_modules/yaml/dist/index.js +50 -0
- package/node_modules/yaml/dist/log.d.ts +3 -0
- package/node_modules/yaml/dist/log.js +19 -0
- package/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/node_modules/yaml/dist/nodes/Alias.js +116 -0
- package/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/node_modules/yaml/dist/nodes/Scalar.d.ts +43 -0
- package/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/node_modules/yaml/dist/options.d.ts +350 -0
- package/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/node_modules/yaml/dist/parse/cst.js +112 -0
- package/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/node_modules/yaml/dist/parse/lexer.js +719 -0
- package/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/node_modules/yaml/dist/parse/parser.js +972 -0
- package/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/node_modules/yaml/dist/public-api.js +107 -0
- package/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/node_modules/yaml/dist/schema/tags.js +99 -0
- package/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/node_modules/yaml/dist/test-events.js +134 -0
- package/node_modules/yaml/dist/util.d.ts +16 -0
- package/node_modules/yaml/dist/util.js +28 -0
- package/node_modules/yaml/dist/visit.d.ts +102 -0
- package/node_modules/yaml/dist/visit.js +236 -0
- package/node_modules/yaml/package.json +97 -0
- package/node_modules/yaml/util.js +2 -0
- package/package.json +60 -0
- package/src/adapters/index.ts +13 -0
- package/src/adapters/pi-subagents/agents.ts +136 -0
- package/src/adapters/pi-subagents/autocomplete.ts +46 -0
- package/src/adapters/pi-subagents/index.ts +48 -0
- package/src/adapters/types.ts +25 -0
- package/src/commands/delegation.ts +32 -0
- package/src/commands/doctor.ts +36 -0
- package/test/agent-palette.test.ts +215 -0
- package/test/wiring.test.ts +15 -0
|
@@ -0,0 +1,2836 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Type definitions for the subagent extension
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as os from "node:os";
|
|
6
|
+
import * as path from "node:path";
|
|
7
|
+
import type { Message } from "@earendil-works/pi-ai";
|
|
8
|
+
import type { AgentConfig } from "../agents/agents.ts";
|
|
9
|
+
import type { FSWatcher } from "node:fs";
|
|
10
|
+
import type { ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
11
|
+
import type { ModelScopeRule } from "../runs/shared/model-scope.ts";
|
|
12
|
+
import type { ResolvedSubagentCapabilityCeiling, SubagentCapabilityAudit } from "../runs/shared/capability-ceiling.ts";
|
|
13
|
+
import type { AuthorityPolicyConfig } from "../policy/authority.ts";
|
|
14
|
+
import type { ThinkingLevel } from "./model-info.ts";
|
|
15
|
+
import type { GlobalMissionIndexRecord, MissionRecord, MissionStoreConfig } from "../missions/types.ts";
|
|
16
|
+
import type { ExtensionBindings } from "../runs/shared/extension-bindings.ts";
|
|
17
|
+
import type { WorkflowChildPermitContext } from "./workflow-child-permit.ts";
|
|
18
|
+
|
|
19
|
+
// ============================================================================
|
|
20
|
+
// Basic Types
|
|
21
|
+
// ============================================================================
|
|
22
|
+
|
|
23
|
+
export interface MaxOutputConfig {
|
|
24
|
+
bytes?: number;
|
|
25
|
+
lines?: number;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export type OutputMode = "inline" | "file-only";
|
|
29
|
+
|
|
30
|
+
export type AcceptanceRole = "read-only" | "writer";
|
|
31
|
+
|
|
32
|
+
export type JsonSchemaObject = Record<string, unknown>;
|
|
33
|
+
|
|
34
|
+
export interface ChainOutputMapEntry {
|
|
35
|
+
text: string;
|
|
36
|
+
structured?: unknown;
|
|
37
|
+
agent: string;
|
|
38
|
+
stepIndex: number;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export type ChainOutputMap = Record<string, ChainOutputMapEntry>;
|
|
42
|
+
|
|
43
|
+
export type WorkflowNodeStatus = "pending" | "running" | "completed" | "failed" | "partial" | "paused" | "stopped" | "detached" | "rejected";
|
|
44
|
+
|
|
45
|
+
export type HostStepMonitorKind = "command" | "ci" | "gate";
|
|
46
|
+
export type HostStepState = "pending" | "running" | "done" | "cancelled" | "error";
|
|
47
|
+
export type HostStepVerdict = "pass" | "fail" | "inconclusive";
|
|
48
|
+
|
|
49
|
+
export interface HostStepFreshnessV1 {
|
|
50
|
+
expectedRef: string;
|
|
51
|
+
observedRef?: string;
|
|
52
|
+
stale?: boolean;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/** Bounded, provider-agnostic status for a host-owned workflow monitor. */
|
|
56
|
+
export interface HostStepNodeV1 {
|
|
57
|
+
version: 1;
|
|
58
|
+
kind: "host-step";
|
|
59
|
+
/** Explicit monitor category; never inferred from labels or commands. */
|
|
60
|
+
monitorKind: HostStepMonitorKind;
|
|
61
|
+
id: string;
|
|
62
|
+
label: string;
|
|
63
|
+
role?: string;
|
|
64
|
+
provider?: string;
|
|
65
|
+
state: HostStepState;
|
|
66
|
+
verdict?: HostStepVerdict;
|
|
67
|
+
reasonCode?: string;
|
|
68
|
+
detail?: string;
|
|
69
|
+
target?: string;
|
|
70
|
+
freshness?: HostStepFreshnessV1;
|
|
71
|
+
reportPath?: string;
|
|
72
|
+
exitCode?: number | null;
|
|
73
|
+
updatedAt: number;
|
|
74
|
+
deadlineAt?: number;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface WorkflowGraphNode {
|
|
78
|
+
id: string;
|
|
79
|
+
kind: "step" | "parallel-group" | "dynamic-parallel-group" | "agent" | "host-step";
|
|
80
|
+
agent?: string;
|
|
81
|
+
phase?: string;
|
|
82
|
+
label: string;
|
|
83
|
+
status: WorkflowNodeStatus;
|
|
84
|
+
flatIndex?: number;
|
|
85
|
+
stepIndex?: number;
|
|
86
|
+
children?: WorkflowGraphNode[];
|
|
87
|
+
dynamic?: {
|
|
88
|
+
sourceOutput: string;
|
|
89
|
+
sourcePath: string;
|
|
90
|
+
itemName: string;
|
|
91
|
+
maxItems?: number;
|
|
92
|
+
collectAs?: string;
|
|
93
|
+
};
|
|
94
|
+
itemKey?: string;
|
|
95
|
+
outputName?: string;
|
|
96
|
+
structured?: boolean;
|
|
97
|
+
acceptanceStatus?: AcceptanceLedgerStatus;
|
|
98
|
+
error?: string;
|
|
99
|
+
hostStep?: HostStepNodeV1;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export interface WorkflowGraphSnapshot {
|
|
103
|
+
runId: string;
|
|
104
|
+
mode: SubagentRunMode;
|
|
105
|
+
phases: Array<{ title: string; nodeIds: string[] }>;
|
|
106
|
+
nodes: WorkflowGraphNode[];
|
|
107
|
+
currentNodeId?: string;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export type WorkflowPreflightCoverage = "complete" | "partial";
|
|
111
|
+
export type WorkflowPreflightMode = "mutation" | "review" | "scout" | "gate";
|
|
112
|
+
|
|
113
|
+
/** Bounded, display-only lane hints supplied alongside a workflowScript launch. */
|
|
114
|
+
export interface WorkflowPreflightLaneV1 {
|
|
115
|
+
key: string;
|
|
116
|
+
mode?: WorkflowPreflightMode;
|
|
117
|
+
decision?: string;
|
|
118
|
+
claims?: string[];
|
|
119
|
+
expectedOutput?: string;
|
|
120
|
+
independence?: string;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/** Versioned, display-only workflow launch plan; it never grants launch authority. */
|
|
124
|
+
export interface WorkflowPreflightV1 {
|
|
125
|
+
version: 1;
|
|
126
|
+
coverage: WorkflowPreflightCoverage;
|
|
127
|
+
lanes: WorkflowPreflightLaneV1[];
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export type WorkflowReceiptState = "complete" | "failed" | "paused" | "stopped";
|
|
131
|
+
|
|
132
|
+
export type WorkflowTerminalResolution = "settled-awaiting-resume" | "failed-child" | "interrupted-child";
|
|
133
|
+
|
|
134
|
+
export interface WorkflowTerminalOutcome {
|
|
135
|
+
state: "partial";
|
|
136
|
+
reason: "budget_exhausted" | "timeout";
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export interface WorkflowRecoveryAction {
|
|
140
|
+
key: string;
|
|
141
|
+
call: "runs.run";
|
|
142
|
+
resume: { workflowRunId: string; key: string; latest: true };
|
|
143
|
+
taskRequired: true;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Bounded, host-generated identity for a resolved pi-subagents workflow resource.
|
|
148
|
+
* Permission/policy extensions can use it to distinguish resolved content from
|
|
149
|
+
* raw workflow scripts. This audit projection never grants execution authority.
|
|
150
|
+
*/
|
|
151
|
+
export interface WorkflowResourceProvenanceV1 {
|
|
152
|
+
kind: "workflow";
|
|
153
|
+
name: string;
|
|
154
|
+
version: number;
|
|
155
|
+
invocation: "named";
|
|
156
|
+
expansion: "resolved";
|
|
157
|
+
id: string;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Bounded, launch-declared workflow lane metadata. This is display and
|
|
162
|
+
* triage information only; capability ceilings, authorization, and cleanup
|
|
163
|
+
* safety remain owned by their existing enforcement and handoff paths.
|
|
164
|
+
*/
|
|
165
|
+
export type WorkflowLaneMode = "mutation" | "review" | "scout" | "gate";
|
|
166
|
+
|
|
167
|
+
export interface WorkflowLaneMetadata {
|
|
168
|
+
version: 1;
|
|
169
|
+
key: string;
|
|
170
|
+
mode?: WorkflowLaneMode;
|
|
171
|
+
sourceRef?: string;
|
|
172
|
+
claims?: string[];
|
|
173
|
+
outputPaths?: string[];
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export interface WorkflowChildSummaryV1 {
|
|
177
|
+
version: 1;
|
|
178
|
+
parentToolCallId: string;
|
|
179
|
+
workflowRunId: string;
|
|
180
|
+
inventoryComplete: boolean;
|
|
181
|
+
workflowState: "queued" | "running" | "completed" | "failed" | "paused" | "stopped";
|
|
182
|
+
children: Array<{
|
|
183
|
+
childId: string;
|
|
184
|
+
runId?: string;
|
|
185
|
+
agent?: string;
|
|
186
|
+
/** Human-readable display name for the child session, when derived at launch. */
|
|
187
|
+
sessionName?: string;
|
|
188
|
+
model?: string;
|
|
189
|
+
thinking?: string;
|
|
190
|
+
state: "pending" | "running" | "completed" | "failed" | "paused" | "stopped" | "rejected" | "detached";
|
|
191
|
+
}>;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
type WorkflowReceiptEntryResumability =
|
|
195
|
+
| { latestRunId: string; resumability: { state: "resumable" } }
|
|
196
|
+
| { latestRunId?: string; resumability: { state: "not-resumable"; reason: string } };
|
|
197
|
+
|
|
198
|
+
export type WorkflowReceiptEntry = WorkflowReceiptEntryResumability & {
|
|
199
|
+
key: string;
|
|
200
|
+
lane?: WorkflowLaneMetadata;
|
|
201
|
+
terminalOutcome?: WorkflowTerminalOutcome;
|
|
202
|
+
agent?: string;
|
|
203
|
+
requestedContext?: "fresh" | "fork";
|
|
204
|
+
resolvedContext?: "fresh" | "fork" | "mixed";
|
|
205
|
+
outputReference?: string;
|
|
206
|
+
acceptanceRecovery?: AcceptanceRecoveryMetadata;
|
|
207
|
+
externalAdapter?: ExternalCliReceiptMetadata;
|
|
208
|
+
continuation: { runIds: string[] };
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
export interface WorkflowReceipt {
|
|
212
|
+
version: 1;
|
|
213
|
+
workflowRunId: string;
|
|
214
|
+
state: WorkflowReceiptState;
|
|
215
|
+
createdAt: number;
|
|
216
|
+
entries: Record<string, WorkflowReceiptEntry>;
|
|
217
|
+
resource?: WorkflowResourceProvenanceV1;
|
|
218
|
+
hostSteps?: HostStepNodeV1[];
|
|
219
|
+
workflowChildren?: WorkflowChildSummaryV1;
|
|
220
|
+
workflowResolution?: WorkflowTerminalResolution;
|
|
221
|
+
terminalOutcome?: WorkflowTerminalOutcome;
|
|
222
|
+
recovery?: WorkflowRecoveryAction[];
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export interface SavedOutputReference {
|
|
226
|
+
path: string;
|
|
227
|
+
bytes: number;
|
|
228
|
+
lines: number;
|
|
229
|
+
message: string;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
interface TruncationResult {
|
|
233
|
+
text: string;
|
|
234
|
+
truncated: boolean;
|
|
235
|
+
originalBytes?: number;
|
|
236
|
+
originalLines?: number;
|
|
237
|
+
artifactPath?: string;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface Usage {
|
|
241
|
+
input: number;
|
|
242
|
+
output: number;
|
|
243
|
+
cacheRead: number;
|
|
244
|
+
cacheWrite: number;
|
|
245
|
+
cost: number;
|
|
246
|
+
turns: number;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export interface ToolBudgetConfig {
|
|
250
|
+
soft?: number;
|
|
251
|
+
hard: number;
|
|
252
|
+
block?: string[] | "*";
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
export interface ResolvedToolBudget {
|
|
256
|
+
soft?: number;
|
|
257
|
+
hard: number;
|
|
258
|
+
block: string[] | "*";
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
export type ToolBudgetOutcome = "within-budget" | "soft-reached" | "hard-blocked";
|
|
262
|
+
|
|
263
|
+
export interface ToolBudgetState extends ResolvedToolBudget {
|
|
264
|
+
outcome: ToolBudgetOutcome;
|
|
265
|
+
toolCount: number;
|
|
266
|
+
softReachedAt?: number;
|
|
267
|
+
hardReachedAt?: number;
|
|
268
|
+
blockedTool?: string;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* @deprecated Turn budgets are no longer accepted as launch configuration or
|
|
273
|
+
* enforced. Retained only to decode historical persisted status and result data.
|
|
274
|
+
*/
|
|
275
|
+
export type TurnBudgetOutcome = "within-budget" | "wrap-up-requested" | "termination-deferred" | "exceeded";
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* @deprecated Historical persisted turn-budget state. New runs do not produce
|
|
279
|
+
* this field, but status readers retain it for backwards compatibility.
|
|
280
|
+
*/
|
|
281
|
+
export interface TurnBudgetState {
|
|
282
|
+
maxTurns: number;
|
|
283
|
+
graceTurns: number;
|
|
284
|
+
outcome: TurnBudgetOutcome;
|
|
285
|
+
turnCount: number;
|
|
286
|
+
wrapUpRequestedAtTurn?: number;
|
|
287
|
+
terminationDeferredAtTurn?: number;
|
|
288
|
+
exceededAtTurn?: number;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export interface TokenUsage {
|
|
292
|
+
input: number;
|
|
293
|
+
output: number;
|
|
294
|
+
total: number;
|
|
295
|
+
/** Input plus cache-read tokens for the latest assistant turn. */
|
|
296
|
+
window?: number;
|
|
297
|
+
/** Largest window observed in this usage scope. */
|
|
298
|
+
windowPeak?: number;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export type ActivityState = "active_long_running" | "needs_attention";
|
|
302
|
+
export type ControlEventType = "active_long_running" | "needs_attention";
|
|
303
|
+
export type ControlNotificationChannel = "event" | "async" | "intercom";
|
|
304
|
+
|
|
305
|
+
export interface ControlConfig {
|
|
306
|
+
enabled?: boolean;
|
|
307
|
+
needsAttentionAfterMs?: number;
|
|
308
|
+
activeNoticeAfterMs?: number;
|
|
309
|
+
activeNoticeAfterTurns?: number;
|
|
310
|
+
activeNoticeAfterTokens?: number;
|
|
311
|
+
failedToolAttemptsBeforeAttention?: number;
|
|
312
|
+
notifyOn?: ControlEventType[];
|
|
313
|
+
notifyChannels?: ControlNotificationChannel[];
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export interface ResolvedControlConfig {
|
|
317
|
+
enabled: boolean;
|
|
318
|
+
needsAttentionAfterMs: number;
|
|
319
|
+
needsAttentionAfterMsIsExplicit?: boolean;
|
|
320
|
+
activeNoticeAfterMs: number;
|
|
321
|
+
activeNoticeAfterTurns?: number;
|
|
322
|
+
activeNoticeAfterTokens?: number;
|
|
323
|
+
failedToolAttemptsBeforeAttention: number;
|
|
324
|
+
notifyOn: ControlEventType[];
|
|
325
|
+
notifyChannels: ControlNotificationChannel[];
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* Smart completion batching for async-completion notifications. Successful
|
|
330
|
+
* sibling completions are held briefly so they arrive as one grouped message;
|
|
331
|
+
* failure and attention signals bypass grouping and always fire immediately.
|
|
332
|
+
*/
|
|
333
|
+
export interface CompletionBatchConfig {
|
|
334
|
+
enabled?: boolean;
|
|
335
|
+
/** Idle window after each arrival; resets on every new item. */
|
|
336
|
+
debounceMs?: number;
|
|
337
|
+
/** Hard cap measured from the first item in a group. */
|
|
338
|
+
maxWaitMs?: number;
|
|
339
|
+
/** Shorter idle window for straggler groups. */
|
|
340
|
+
stragglerDebounceMs?: number;
|
|
341
|
+
/** Shorter hard cap for straggler groups. */
|
|
342
|
+
stragglerMaxWaitMs?: number;
|
|
343
|
+
/** Arrivals within this window after an emit join a straggler group. */
|
|
344
|
+
stragglerWindowMs?: number;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
export interface WaitToolConfigObject {
|
|
348
|
+
enabled?: boolean;
|
|
349
|
+
/** Default blocking window for bg_wait calls that omit timeoutMs. */
|
|
350
|
+
defaultTimeoutMs?: number;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
export type WaitToolConfig = boolean | WaitToolConfigObject;
|
|
354
|
+
|
|
355
|
+
export interface ControlEvent {
|
|
356
|
+
type: ControlEventType;
|
|
357
|
+
from?: ActivityState;
|
|
358
|
+
to: ActivityState;
|
|
359
|
+
ts: number;
|
|
360
|
+
agent: string;
|
|
361
|
+
index?: number;
|
|
362
|
+
runId: string;
|
|
363
|
+
nestedRunId?: string;
|
|
364
|
+
nestingPath?: NestedRunAddress["path"];
|
|
365
|
+
message: string;
|
|
366
|
+
reason?: "idle" | "completion_guard" | "active_long_running" | "tool_failures" | "supervisor_request" | "time_threshold" | "turn_threshold" | "token_threshold" | "tool_open_threshold";
|
|
367
|
+
turns?: number;
|
|
368
|
+
tokens?: number;
|
|
369
|
+
toolCount?: number;
|
|
370
|
+
currentTool?: string;
|
|
371
|
+
currentToolDurationMs?: number;
|
|
372
|
+
currentPath?: string;
|
|
373
|
+
elapsedMs?: number;
|
|
374
|
+
recentFailureSummary?: string;
|
|
375
|
+
workflowKey?: string;
|
|
376
|
+
phase?: string;
|
|
377
|
+
label?: string;
|
|
378
|
+
taskPreview?: string;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
export type SubagentResultStatus = "completed" | "failed" | "paused" | "stopped" | "detached";
|
|
382
|
+
export type SubagentOutputState = "present" | "absent" | "unknown";
|
|
383
|
+
export type SubagentRunMode = "single" | "parallel" | "chain" | "workflow";
|
|
384
|
+
export type SubagentResultMode = SubagentRunMode;
|
|
385
|
+
|
|
386
|
+
export interface ParallelHandoffPatch {
|
|
387
|
+
path: string;
|
|
388
|
+
branch: string;
|
|
389
|
+
changed: boolean;
|
|
390
|
+
diffStat: string;
|
|
391
|
+
filesChanged: number;
|
|
392
|
+
insertions: number;
|
|
393
|
+
deletions: number;
|
|
394
|
+
error?: string;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
export interface ParallelHandoffChild {
|
|
398
|
+
index: number;
|
|
399
|
+
taskIndex: number;
|
|
400
|
+
agent: string;
|
|
401
|
+
/** Stable workflow identity used to join status/receipt metadata. */
|
|
402
|
+
workflowKey?: string;
|
|
403
|
+
/** Child run id when the worktree belongs to a workflow child. */
|
|
404
|
+
runId?: string;
|
|
405
|
+
lane?: WorkflowLaneMetadata;
|
|
406
|
+
status: SubagentResultStatus;
|
|
407
|
+
summary: string;
|
|
408
|
+
outputPath?: string;
|
|
409
|
+
structuredOutput?: unknown;
|
|
410
|
+
structuredOutputPath?: string;
|
|
411
|
+
sessionPath?: string;
|
|
412
|
+
patch: ParallelHandoffPatch;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/** Launch-time identity retained while a handoff group has no terminal child rows yet. */
|
|
416
|
+
export interface ParallelHandoffLaneBinding {
|
|
417
|
+
index: number;
|
|
418
|
+
taskIndex: number;
|
|
419
|
+
workflowKey?: string;
|
|
420
|
+
runId?: string;
|
|
421
|
+
lane?: WorkflowLaneMetadata;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
export interface ParallelHandoffCleanupTask {
|
|
425
|
+
index: number;
|
|
426
|
+
path: string;
|
|
427
|
+
branch: string;
|
|
428
|
+
worktreeRemoved: boolean;
|
|
429
|
+
branchRemoved: boolean;
|
|
430
|
+
preserved?: boolean;
|
|
431
|
+
reason?: string;
|
|
432
|
+
errors?: string[];
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
export type CleanupEligibility =
|
|
436
|
+
| { state: "active" }
|
|
437
|
+
| { state: "terminal-eligible" }
|
|
438
|
+
| { state: "terminal-blocked"; reason: string }
|
|
439
|
+
| { state: "superseded-eligible" }
|
|
440
|
+
| { state: "unknown" };
|
|
441
|
+
|
|
442
|
+
export interface ParallelHandoffMergeEvidence {
|
|
443
|
+
prNumber: number;
|
|
444
|
+
reviewedHead: string;
|
|
445
|
+
mergeCommit: string;
|
|
446
|
+
treeEquivalent: boolean | "unknown";
|
|
447
|
+
postMergeChecks: "recorded" | "unknown";
|
|
448
|
+
attestedBy: string;
|
|
449
|
+
attestedAt: string;
|
|
450
|
+
manifestDigest?: string;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
export interface ParallelHandoffSupersessionEvidence {
|
|
454
|
+
supersededBy: string;
|
|
455
|
+
attestedBy: string;
|
|
456
|
+
attestedAt: string;
|
|
457
|
+
manifestDigest?: string;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
export interface ParallelHandoffGroup {
|
|
461
|
+
stepIndex: number;
|
|
462
|
+
baseCommit: string;
|
|
463
|
+
repoRoot: string;
|
|
464
|
+
children: ParallelHandoffChild[];
|
|
465
|
+
/** Optional launch identities for pending groups before child results settle. */
|
|
466
|
+
laneBindings?: ParallelHandoffLaneBinding[];
|
|
467
|
+
cleanup: {
|
|
468
|
+
state: "complete" | "partial";
|
|
469
|
+
tasks: ParallelHandoffCleanupTask[];
|
|
470
|
+
pruned: boolean;
|
|
471
|
+
errors?: string[];
|
|
472
|
+
};
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
export interface ParallelHandoffManifest {
|
|
476
|
+
version: 1;
|
|
477
|
+
runId: string;
|
|
478
|
+
mode: "single" | "parallel" | "chain";
|
|
479
|
+
source: "foreground" | "async";
|
|
480
|
+
cwd: string;
|
|
481
|
+
createdAt: number;
|
|
482
|
+
updatedAt: number;
|
|
483
|
+
groups: ParallelHandoffGroup[];
|
|
484
|
+
merge?: ParallelHandoffMergeEvidence;
|
|
485
|
+
supersession?: ParallelHandoffSupersessionEvidence;
|
|
486
|
+
cleanupEligibility?: CleanupEligibility;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
export interface ParallelHandoffReference {
|
|
490
|
+
version: 1;
|
|
491
|
+
path: string;
|
|
492
|
+
groupCount: number;
|
|
493
|
+
childCount: number;
|
|
494
|
+
changedPatches: number;
|
|
495
|
+
cleanupState: "complete" | "partial";
|
|
496
|
+
cleanupEligibility?: CleanupEligibility;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
export interface AgentContract {
|
|
500
|
+
version: 1;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
export type ChainGateLayer = "execution" | "acceptance";
|
|
504
|
+
|
|
505
|
+
export type ExecutionProjectionStatus = "completed" | "failed" | "partial" | "paused" | "stopped" | "detached";
|
|
506
|
+
|
|
507
|
+
export interface ExecutionProjection {
|
|
508
|
+
status: ExecutionProjectionStatus;
|
|
509
|
+
success: boolean;
|
|
510
|
+
exitCode: number;
|
|
511
|
+
error?: string;
|
|
512
|
+
interrupted?: boolean;
|
|
513
|
+
timedOut?: boolean;
|
|
514
|
+
stopped?: boolean;
|
|
515
|
+
detached?: boolean;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
export interface ReviewProjection {
|
|
519
|
+
status: "not-requested" | "review-required" | "reviewed" | "blockers";
|
|
520
|
+
findings?: AcceptanceReviewResult["findings"];
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
export interface FileMutationEffect {
|
|
524
|
+
status: "not-requested" | "not-applicable" | "observed" | "missing" | "blocked";
|
|
525
|
+
expected: boolean;
|
|
526
|
+
attempted: boolean;
|
|
527
|
+
message?: string;
|
|
528
|
+
resolvedBy?: "llm-intent-arbiter";
|
|
529
|
+
evidence?: TrackedMutationEvidence;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
export interface SettlementDiagnostic {
|
|
533
|
+
finalTextPresent: boolean;
|
|
534
|
+
mutation: {
|
|
535
|
+
expected: boolean;
|
|
536
|
+
attempted: boolean;
|
|
537
|
+
observed: boolean;
|
|
538
|
+
};
|
|
539
|
+
requiredOutput?: {
|
|
540
|
+
kind: "file-only" | "structured";
|
|
541
|
+
path: string;
|
|
542
|
+
missing: boolean;
|
|
543
|
+
};
|
|
544
|
+
afterCompactionSettlement?: boolean;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
export interface EffectsProjection {
|
|
548
|
+
fileMutation?: FileMutationEffect;
|
|
549
|
+
settlementDiagnostic?: SettlementDiagnostic;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
export interface TrackedMutationSnapshot {
|
|
553
|
+
source: "tracked-files";
|
|
554
|
+
trackedOnly: true;
|
|
555
|
+
cwd: string;
|
|
556
|
+
gitRoot?: string;
|
|
557
|
+
dirtyFiles: string[];
|
|
558
|
+
fingerprints: Record<string, TrackedMutationFingerprint>;
|
|
559
|
+
truncated?: boolean;
|
|
560
|
+
unavailable?: string;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
export type TrackedMutationFingerprint = { kind: "diff"; digest: string };
|
|
564
|
+
|
|
565
|
+
export interface TrackedMutationEvidence {
|
|
566
|
+
source: "tracked-files";
|
|
567
|
+
trackedOnly: true;
|
|
568
|
+
changedFiles: string[];
|
|
569
|
+
attemptedMutation: boolean;
|
|
570
|
+
truncated?: boolean;
|
|
571
|
+
unavailable?: string;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
export interface TimeoutRecoverySummary {
|
|
575
|
+
termination: "timed-out" | "stopped";
|
|
576
|
+
changedFiles: string[];
|
|
577
|
+
truncated?: boolean;
|
|
578
|
+
/** True only when a timed-out child left tracked changes without its requested report. */
|
|
579
|
+
recoveryNeeded?: boolean;
|
|
580
|
+
reason?: "timed-out-with-dirty-worktree";
|
|
581
|
+
reportStatus?: "missing" | "written" | "not-requested" | "unknown";
|
|
582
|
+
currentTool?: string;
|
|
583
|
+
currentToolArgs?: string;
|
|
584
|
+
currentPath?: string;
|
|
585
|
+
sessionFile?: string;
|
|
586
|
+
transcriptPath?: string;
|
|
587
|
+
artifactPaths?: ArtifactPaths;
|
|
588
|
+
warning: string;
|
|
589
|
+
message: string;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
/** Safe parent-facing subset of a timeout recovery summary. */
|
|
593
|
+
export type TimeoutRecoveryProjection = Pick<TimeoutRecoverySummary, "termination" | "changedFiles" | "truncated" | "recoveryNeeded" | "reason" | "reportStatus">;
|
|
594
|
+
|
|
595
|
+
export const SUBAGENT_LIFECYCLE_ARTIFACT_VERSION = 3;
|
|
596
|
+
export type SubagentLifecycleArtifactVersion = typeof SUBAGENT_LIFECYCLE_ARTIFACT_VERSION;
|
|
597
|
+
|
|
598
|
+
export type ProcessTerminalState = "pending" | "observed" | "unknown" | "not-started";
|
|
599
|
+
export type ProcessTerminalReason =
|
|
600
|
+
| "observer-unavailable"
|
|
601
|
+
| "runner-candidate-missing"
|
|
602
|
+
| "runner-instance-mismatch"
|
|
603
|
+
| "writer-close-unverified"
|
|
604
|
+
| "process-tree-unverified"
|
|
605
|
+
| "canonical-session-unavailable"
|
|
606
|
+
| "canonical-session-lease-active"
|
|
607
|
+
| "canonical-session-release-unverified"
|
|
608
|
+
| "proof-write-failed"
|
|
609
|
+
| "stale-repair";
|
|
610
|
+
|
|
611
|
+
export interface RunnerProcessInstanceExitV1 {
|
|
612
|
+
processInstanceId: string;
|
|
613
|
+
kind: "runner";
|
|
614
|
+
closeObservedAt: number;
|
|
615
|
+
exitCode: number | null;
|
|
616
|
+
signal: string | null;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
export type ProcessTreeTerminalV1 =
|
|
620
|
+
| {
|
|
621
|
+
state: "observed";
|
|
622
|
+
mechanism: "posix-process-group";
|
|
623
|
+
processGroupId: number;
|
|
624
|
+
verifiedAt: number;
|
|
625
|
+
}
|
|
626
|
+
| {
|
|
627
|
+
state: "unknown";
|
|
628
|
+
reason: "unsupported-platform" | "signal-failed" | "verification-failed";
|
|
629
|
+
diagnostic?: string;
|
|
630
|
+
};
|
|
631
|
+
|
|
632
|
+
export interface PiWriterProcessInstanceExitV1 {
|
|
633
|
+
processInstanceId: string;
|
|
634
|
+
kind: "pi-writer";
|
|
635
|
+
attempt: number;
|
|
636
|
+
closeObservedAt: number;
|
|
637
|
+
exitCode: number | null;
|
|
638
|
+
signal: string | null;
|
|
639
|
+
processTree: ProcessTreeTerminalV1;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
export type ProcessInstanceExitV1 = RunnerProcessInstanceExitV1 | PiWriterProcessInstanceExitV1;
|
|
643
|
+
|
|
644
|
+
export interface CanonicalSessionTerminalV1 {
|
|
645
|
+
canonicalSessionId: string;
|
|
646
|
+
leaseDisposition: "released" | "not-held";
|
|
647
|
+
freeAtObservation: true;
|
|
648
|
+
canonicalSessionLeaseReleased?: true;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
interface ProcessTerminalBaseV1 {
|
|
652
|
+
version: 1;
|
|
653
|
+
runId: string;
|
|
654
|
+
childIndex?: number;
|
|
655
|
+
runnerProcessInstanceId: string;
|
|
656
|
+
observedAt?: number;
|
|
657
|
+
reason?: ProcessTerminalReason;
|
|
658
|
+
resumeDisposition?: "resumable" | "non-resumable" | "unavailable";
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
export type ProcessTerminalV1 =
|
|
662
|
+
| (ProcessTerminalBaseV1 & { state: "pending" | "not-started" })
|
|
663
|
+
| (ProcessTerminalBaseV1 & {
|
|
664
|
+
state: "observed";
|
|
665
|
+
observedAt: number;
|
|
666
|
+
instances: ProcessInstanceExitV1[];
|
|
667
|
+
canonicalSession?: CanonicalSessionTerminalV1;
|
|
668
|
+
})
|
|
669
|
+
| (ProcessTerminalBaseV1 & {
|
|
670
|
+
state: "unknown";
|
|
671
|
+
reason: ProcessTerminalReason;
|
|
672
|
+
diagnostic?: string;
|
|
673
|
+
});
|
|
674
|
+
|
|
675
|
+
/** Identifies the durable schedule that launched a run, so its completion is attributable. */
|
|
676
|
+
export interface ScheduleOrigin {
|
|
677
|
+
id: string;
|
|
678
|
+
name?: string;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
export type SteeringActionState = "delivered" | "scheduled" | "pending" | "partial" | "recovered" | "failed";
|
|
682
|
+
export type SteeringTargetState = "scheduled" | "pending" | "routed" | "queued" | "delivered" | "late" | "failed" | "recovered";
|
|
683
|
+
|
|
684
|
+
export interface SteeringTargetStatus {
|
|
685
|
+
index: number;
|
|
686
|
+
state: SteeringTargetState;
|
|
687
|
+
routedAt?: number;
|
|
688
|
+
deliveredAt?: number;
|
|
689
|
+
lateDeliveredAt?: number;
|
|
690
|
+
failedAt?: number;
|
|
691
|
+
recoveredAt?: number;
|
|
692
|
+
reason?: string;
|
|
693
|
+
replacementRunId?: string;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
export interface SteeringRequestStatus {
|
|
697
|
+
id: string;
|
|
698
|
+
requestedAt: number;
|
|
699
|
+
source?: string;
|
|
700
|
+
messagePreview: string;
|
|
701
|
+
targets: SteeringTargetStatus[];
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
export interface SteeringStatus {
|
|
705
|
+
requested: number;
|
|
706
|
+
scheduled: number;
|
|
707
|
+
pending: number;
|
|
708
|
+
delivered: number;
|
|
709
|
+
failed: number;
|
|
710
|
+
recovered: number;
|
|
711
|
+
lastRequestedAt?: number;
|
|
712
|
+
lastDeliveredAt?: number;
|
|
713
|
+
recent: SteeringRequestStatus[];
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
export interface SteerActionTarget {
|
|
717
|
+
index: number;
|
|
718
|
+
state: SteeringTargetState;
|
|
719
|
+
deliveredAt?: number;
|
|
720
|
+
lateDeliveredAt?: number;
|
|
721
|
+
reason?: string;
|
|
722
|
+
replacementRunId?: string;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
export interface SteerActionResult {
|
|
726
|
+
requestId: string;
|
|
727
|
+
state: SteeringActionState;
|
|
728
|
+
deliveryStatus: "delivered" | "queued";
|
|
729
|
+
sourceRunId: string;
|
|
730
|
+
replacementRunId?: string;
|
|
731
|
+
targets: SteerActionTarget[];
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
export interface SteeringNotice {
|
|
735
|
+
type: "subagent.steering.notice";
|
|
736
|
+
ts: number;
|
|
737
|
+
runId: string;
|
|
738
|
+
requestId: string;
|
|
739
|
+
state: "failed" | "partial" | "recovered";
|
|
740
|
+
message: string;
|
|
741
|
+
currentSessionId?: string;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
export interface RunFanoutBudgetDescriptor {
|
|
745
|
+
version: 1;
|
|
746
|
+
rootRunId: string;
|
|
747
|
+
directory: string;
|
|
748
|
+
limit: number;
|
|
749
|
+
parentPath?: string;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
export interface RunFanoutBudgetSnapshot {
|
|
753
|
+
used: number;
|
|
754
|
+
limit: number;
|
|
755
|
+
remaining: number;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
export interface RunFanoutRejection extends RunFanoutBudgetSnapshot {
|
|
759
|
+
code: "RUN_FANOUT_LIMIT";
|
|
760
|
+
path: string;
|
|
761
|
+
requested: number;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
export interface SteeringRecoveryDescriptor {
|
|
765
|
+
version: 1;
|
|
766
|
+
launchContractDigest?: string;
|
|
767
|
+
extensionBindings?: ExtensionBindings;
|
|
768
|
+
runFanoutBudget: RunFanoutBudgetDescriptor;
|
|
769
|
+
sourceRunId: string;
|
|
770
|
+
agentContract?: AgentContract;
|
|
771
|
+
agent: string;
|
|
772
|
+
sessionFile?: string;
|
|
773
|
+
cwd: string;
|
|
774
|
+
model?: string;
|
|
775
|
+
modelProvider?: string;
|
|
776
|
+
modelOverrideFromParent?: boolean;
|
|
777
|
+
modelOrigin?: "explicit" | "inherited" | "configured";
|
|
778
|
+
fallbackModels?: string[];
|
|
779
|
+
fast?: boolean;
|
|
780
|
+
thinking?: string;
|
|
781
|
+
thinkingCeiling?: ThinkingLevel;
|
|
782
|
+
tools?: string[];
|
|
783
|
+
excludeTools?: string[];
|
|
784
|
+
allowNestedSubagents?: boolean;
|
|
785
|
+
extensions?: string[];
|
|
786
|
+
subagentOnlyExtensions?: string[];
|
|
787
|
+
mcpDirectTools?: string[];
|
|
788
|
+
mutationTools?: string[];
|
|
789
|
+
systemPrompt?: string;
|
|
790
|
+
systemPromptMode: "append" | "replace";
|
|
791
|
+
inheritProjectContext: boolean;
|
|
792
|
+
inheritGlobalContext: boolean;
|
|
793
|
+
inheritSkills: boolean;
|
|
794
|
+
skills?: string[];
|
|
795
|
+
skillPath?: string[];
|
|
796
|
+
agentFilePath?: string;
|
|
797
|
+
completionGuard?: boolean;
|
|
798
|
+
memory?: { scope: "project" | "user"; path: string };
|
|
799
|
+
outputPath?: string;
|
|
800
|
+
outputMode: "inline" | "file-only";
|
|
801
|
+
structuredOutputSchema?: JsonSchemaObject;
|
|
802
|
+
acceptance?: AcceptanceInput;
|
|
803
|
+
controlConfig?: ResolvedControlConfig;
|
|
804
|
+
/** Resolved launch context for this async child. */
|
|
805
|
+
context?: "fresh" | "fork";
|
|
806
|
+
/** Raw per-run bridge override. Omitted descriptors continue to use global config. */
|
|
807
|
+
intercomBridge?: IntercomBridgeConfig;
|
|
808
|
+
lane?: WorkflowLaneMetadata;
|
|
809
|
+
absoluteDeadlineAt?: number;
|
|
810
|
+
initialToolBudget?: ResolvedToolBudget;
|
|
811
|
+
maxSubagentDepth: number;
|
|
812
|
+
maxOutput?: MaxOutputConfig;
|
|
813
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
814
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
815
|
+
share: boolean;
|
|
816
|
+
sessionDir?: string;
|
|
817
|
+
artifactsDir?: string;
|
|
818
|
+
artifactConfig?: ArtifactConfig;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
export type PublicNestedStepSummary = Pick<
|
|
822
|
+
NestedStepSummary,
|
|
823
|
+
"agent" | "sessionName" | "status" | "model" | "thinking" | "sessionFile" | "transcriptPath" | "transcriptError" | "activityState" | "lastActivityAt" | "currentTool" | "currentToolStartedAt" | "currentPath" | "turnCount" | "toolCount" | "toolBudget" | "toolBudgetBlocked" | "startedAt" | "endedAt" | "error" | "timedOut" | "stopped"
|
|
824
|
+
> & {
|
|
825
|
+
children?: PublicNestedRunSummary[];
|
|
826
|
+
};
|
|
827
|
+
|
|
828
|
+
export type CostSummary = {
|
|
829
|
+
inputTokens: number;
|
|
830
|
+
outputTokens: number;
|
|
831
|
+
costUsd: number;
|
|
832
|
+
};
|
|
833
|
+
|
|
834
|
+
export type PublicNestedRunSummary = Pick<
|
|
835
|
+
NestedRunSummary,
|
|
836
|
+
"id" | "parentRunId" | "parentStepIndex" | "parentAgent" | "depth" | "path" | "asyncDir" | "sessionId" | "sessionFile" | "intercomTarget" | "ownerIntercomTarget" | "leafIntercomTarget" | "ownerState" | "mode" | "state" | "agent" | "sessionName" | "agents" | "model" | "thinking" | "currentStep" | "chainStepCount" | "parallelGroups" | "activityState" | "lastActivityAt" | "currentTool" | "currentToolStartedAt" | "currentPath" | "turnCount" | "toolCount" | "toolBudget" | "toolBudgetBlocked" | "totalTokens" | "totalCost" | "startedAt" | "endedAt" | "lastUpdate" | "error" | "timeoutMs" | "deadlineAt" | "timedOut" | "stopped" | "turnBudget" | "turnBudgetExceeded" | "wrapUpRequested"
|
|
837
|
+
> & {
|
|
838
|
+
steps?: PublicNestedStepSummary[];
|
|
839
|
+
children?: PublicNestedRunSummary[];
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
export interface SubagentResultIntercomChild {
|
|
843
|
+
agent: string;
|
|
844
|
+
/** Human-readable display name for the child session, when derived at launch. */
|
|
845
|
+
sessionName?: string;
|
|
846
|
+
/** Process/lifecycle status. It does not establish semantic task completion. */
|
|
847
|
+
status: SubagentResultStatus;
|
|
848
|
+
/** Whether the child produced substantive output before its process ended. */
|
|
849
|
+
outputState?: SubagentOutputState;
|
|
850
|
+
summary: string;
|
|
851
|
+
index?: number;
|
|
852
|
+
artifactPath?: string;
|
|
853
|
+
sessionPath?: string;
|
|
854
|
+
intercomTarget?: string;
|
|
855
|
+
children?: PublicNestedRunSummary[];
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
export interface SubagentResultIntercomPayload {
|
|
859
|
+
to: string;
|
|
860
|
+
message: string;
|
|
861
|
+
requestId?: string;
|
|
862
|
+
runId: string;
|
|
863
|
+
mode: SubagentRunMode;
|
|
864
|
+
status: SubagentResultStatus;
|
|
865
|
+
summary: string;
|
|
866
|
+
source: "foreground" | "async";
|
|
867
|
+
children: SubagentResultIntercomChild[];
|
|
868
|
+
asyncId?: string;
|
|
869
|
+
asyncDir?: string;
|
|
870
|
+
chainSteps?: number;
|
|
871
|
+
agent?: string;
|
|
872
|
+
index?: number;
|
|
873
|
+
artifactPath?: string;
|
|
874
|
+
sessionPath?: string;
|
|
875
|
+
parallelHandoff?: ParallelHandoffReference;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
// ============================================================================
|
|
879
|
+
// Progress Tracking
|
|
880
|
+
// ============================================================================
|
|
881
|
+
|
|
882
|
+
export interface ChildWatchdogProgress {
|
|
883
|
+
phase: "idle" | "reviewing" | "autofollow" | "settling" | "stale" | "failed";
|
|
884
|
+
seq: number;
|
|
885
|
+
lastUpdate: number;
|
|
886
|
+
followUpPending: boolean;
|
|
887
|
+
reason?: string;
|
|
888
|
+
timedOut?: boolean;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
export interface AgentProgress {
|
|
892
|
+
index: number;
|
|
893
|
+
agent: string;
|
|
894
|
+
/** Human-readable display name for the child's session, when derived at launch. */
|
|
895
|
+
sessionName?: string;
|
|
896
|
+
status: "pending" | "running" | "completed" | "failed" | "detached";
|
|
897
|
+
activityState?: ActivityState;
|
|
898
|
+
task: string;
|
|
899
|
+
skills?: string[];
|
|
900
|
+
lastActivityAt?: number;
|
|
901
|
+
currentTool?: string;
|
|
902
|
+
currentToolArgs?: string;
|
|
903
|
+
currentToolStartedAt?: number;
|
|
904
|
+
currentPath?: string;
|
|
905
|
+
recentTools: Array<{ tool: string; args: string; endMs: number }>;
|
|
906
|
+
recentOutput: string[];
|
|
907
|
+
toolCount: number;
|
|
908
|
+
turnCount?: number;
|
|
909
|
+
tokens: number;
|
|
910
|
+
/** Resolved launch model/effort and split usage for public live projections. */
|
|
911
|
+
model?: string;
|
|
912
|
+
thinking?: string;
|
|
913
|
+
inputTokens?: number;
|
|
914
|
+
outputTokens?: number;
|
|
915
|
+
window?: number;
|
|
916
|
+
windowPeak?: number;
|
|
917
|
+
durationMs: number;
|
|
918
|
+
error?: string;
|
|
919
|
+
failedTool?: string;
|
|
920
|
+
watchdog?: ChildWatchdogProgress;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
export interface ToolCallSummary {
|
|
924
|
+
text: string;
|
|
925
|
+
expandedText: string;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
interface ProgressSummary {
|
|
929
|
+
index?: number;
|
|
930
|
+
agent?: string;
|
|
931
|
+
/** Human-readable display name for the child's session, when derived at launch. */
|
|
932
|
+
sessionName?: string;
|
|
933
|
+
status?: AgentProgress["status"];
|
|
934
|
+
activityState?: ActivityState;
|
|
935
|
+
skills?: string[];
|
|
936
|
+
lastActivityAt?: number;
|
|
937
|
+
currentTool?: string;
|
|
938
|
+
currentToolArgs?: string;
|
|
939
|
+
currentToolStartedAt?: number;
|
|
940
|
+
recentTools?: Array<{ tool: string; args: string; endMs: number }>;
|
|
941
|
+
recentOutput?: string[];
|
|
942
|
+
toolCount: number;
|
|
943
|
+
tokens: number;
|
|
944
|
+
model?: string;
|
|
945
|
+
thinking?: string;
|
|
946
|
+
durationMs: number;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
// ============================================================================
|
|
950
|
+
// Results
|
|
951
|
+
// ============================================================================
|
|
952
|
+
|
|
953
|
+
export interface ModelAttempt {
|
|
954
|
+
model: string;
|
|
955
|
+
success: boolean;
|
|
956
|
+
exitCode?: number | null;
|
|
957
|
+
error?: string;
|
|
958
|
+
usage?: Usage;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
export type AcceptanceLevel = "auto" | "none" | "attested" | "checked" | "verified";
|
|
962
|
+
|
|
963
|
+
export type AcceptanceEvidenceKind =
|
|
964
|
+
| "changed-files"
|
|
965
|
+
| "tests-added"
|
|
966
|
+
| "commands-run"
|
|
967
|
+
| "validation-output"
|
|
968
|
+
| "residual-risks"
|
|
969
|
+
| "no-staged-files"
|
|
970
|
+
| "diff-summary"
|
|
971
|
+
| "review-findings"
|
|
972
|
+
| "manual-notes";
|
|
973
|
+
|
|
974
|
+
export interface AcceptanceGate {
|
|
975
|
+
id: string;
|
|
976
|
+
must: string;
|
|
977
|
+
evidence?: AcceptanceEvidenceKind[];
|
|
978
|
+
severity?: "required" | "recommended";
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
export interface AcceptanceVerifyCommand {
|
|
982
|
+
id: string;
|
|
983
|
+
command: string;
|
|
984
|
+
timeoutMs?: number;
|
|
985
|
+
cwd?: string;
|
|
986
|
+
env?: Record<string, string>;
|
|
987
|
+
allowFailure?: boolean;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
export interface AcceptanceReviewGate {
|
|
991
|
+
agent?: string;
|
|
992
|
+
focus?: string;
|
|
993
|
+
required?: boolean;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
export interface AcceptanceConfig {
|
|
997
|
+
level?: AcceptanceLevel;
|
|
998
|
+
report?: "on" | "off";
|
|
999
|
+
criteria?: Array<string | AcceptanceGate>;
|
|
1000
|
+
evidence?: AcceptanceEvidenceKind[];
|
|
1001
|
+
verify?: AcceptanceVerifyCommand[];
|
|
1002
|
+
review?: AcceptanceReviewGate | false;
|
|
1003
|
+
stopRules?: string[];
|
|
1004
|
+
reason?: string;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
/** Bare "none" and "verified" are not accepted; verified policies require object form with runtime commands. */
|
|
1008
|
+
export type AcceptanceInput = Exclude<AcceptanceLevel, "none" | "verified"> | false | AcceptanceConfig;
|
|
1009
|
+
|
|
1010
|
+
export interface ResolvedAcceptanceGate extends AcceptanceGate {
|
|
1011
|
+
id: string;
|
|
1012
|
+
must: string;
|
|
1013
|
+
evidence: AcceptanceEvidenceKind[];
|
|
1014
|
+
severity: "required" | "recommended";
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
export interface ResolvedAcceptanceConfig {
|
|
1018
|
+
level: Exclude<AcceptanceLevel, "auto">;
|
|
1019
|
+
explicit: boolean;
|
|
1020
|
+
inferredReason: string[];
|
|
1021
|
+
criteria: ResolvedAcceptanceGate[];
|
|
1022
|
+
evidence: AcceptanceEvidenceKind[];
|
|
1023
|
+
verify: AcceptanceVerifyCommand[];
|
|
1024
|
+
review?: AcceptanceReviewGate | false;
|
|
1025
|
+
stopRules: string[];
|
|
1026
|
+
reason?: string;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
export interface AcceptanceReport {
|
|
1030
|
+
criteriaSatisfied?: Array<{
|
|
1031
|
+
id?: string;
|
|
1032
|
+
status: "satisfied" | "not-satisfied" | "not-applicable";
|
|
1033
|
+
evidence: string;
|
|
1034
|
+
}>;
|
|
1035
|
+
changedFiles?: string[];
|
|
1036
|
+
testsAddedOrUpdated?: string[];
|
|
1037
|
+
commandsRun?: Array<{
|
|
1038
|
+
command: string;
|
|
1039
|
+
result: "passed" | "failed" | "not-run";
|
|
1040
|
+
summary: string;
|
|
1041
|
+
}>;
|
|
1042
|
+
validationOutput?: string[];
|
|
1043
|
+
residualRisks?: string[];
|
|
1044
|
+
noStagedFiles?: boolean;
|
|
1045
|
+
diffSummary?: string;
|
|
1046
|
+
reviewFindings?: string[];
|
|
1047
|
+
manualNotes?: string;
|
|
1048
|
+
notes?: string;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
export type AcceptanceRuntimeCheckStatus = "passed" | "failed" | "not-applicable";
|
|
1052
|
+
|
|
1053
|
+
export interface AcceptanceRuntimeCheck {
|
|
1054
|
+
id: string;
|
|
1055
|
+
status: AcceptanceRuntimeCheckStatus;
|
|
1056
|
+
message: string;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
export interface AcceptanceVerifyResult {
|
|
1060
|
+
id: string;
|
|
1061
|
+
command: string;
|
|
1062
|
+
cwd?: string;
|
|
1063
|
+
exitCode: number | null;
|
|
1064
|
+
status: "passed" | "failed" | "timed-out" | "allowed-failure";
|
|
1065
|
+
stdout?: string;
|
|
1066
|
+
stderr?: string;
|
|
1067
|
+
durationMs: number;
|
|
1068
|
+
artifactPath?: string;
|
|
1069
|
+
cacheKey?: string;
|
|
1070
|
+
memoized?: boolean;
|
|
1071
|
+
envKeys?: string[];
|
|
1072
|
+
envHash?: string;
|
|
1073
|
+
workspaceState?: {
|
|
1074
|
+
kind: "git-tracked";
|
|
1075
|
+
repoRoot: string;
|
|
1076
|
+
cwdRelative: string;
|
|
1077
|
+
head: string;
|
|
1078
|
+
diffHash: string;
|
|
1079
|
+
};
|
|
1080
|
+
artifactError?: string;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
export interface AcceptanceReviewResult {
|
|
1084
|
+
status: "review-required" | "reviewed" | "blockers";
|
|
1085
|
+
findings: Array<{
|
|
1086
|
+
severity: "blocker" | "non-blocking";
|
|
1087
|
+
file?: string;
|
|
1088
|
+
issue: string;
|
|
1089
|
+
rationale: string;
|
|
1090
|
+
}>;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
export type AcceptanceEvidenceStatus =
|
|
1094
|
+
| "pending"
|
|
1095
|
+
| "not-required"
|
|
1096
|
+
| "claimed"
|
|
1097
|
+
| "attested"
|
|
1098
|
+
| "checked"
|
|
1099
|
+
| "verified"
|
|
1100
|
+
| "rejected";
|
|
1101
|
+
|
|
1102
|
+
export type AcceptanceLedgerStatus =
|
|
1103
|
+
| AcceptanceEvidenceStatus
|
|
1104
|
+
| "review-required"
|
|
1105
|
+
| "reviewed"
|
|
1106
|
+
| "accepted";
|
|
1107
|
+
|
|
1108
|
+
/**
|
|
1109
|
+
* Durable child evidence that can be handed to a read-only review after the
|
|
1110
|
+
* acceptance envelope itself was rejected. This never upgrades acceptance;
|
|
1111
|
+
* the enclosing ledger remains rejected and the child remains unsuccessful.
|
|
1112
|
+
*/
|
|
1113
|
+
export interface AcceptanceRecoveryMetadata {
|
|
1114
|
+
status: "available-for-review";
|
|
1115
|
+
reason: "acceptance-metadata-rejected";
|
|
1116
|
+
reportPath: string;
|
|
1117
|
+
reportHash: string;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
export interface AcceptanceLedger {
|
|
1121
|
+
status: AcceptanceLedgerStatus;
|
|
1122
|
+
evidenceStatus: AcceptanceEvidenceStatus;
|
|
1123
|
+
explicit: boolean;
|
|
1124
|
+
effectiveAcceptance: ResolvedAcceptanceConfig;
|
|
1125
|
+
inferredReason: string[];
|
|
1126
|
+
criteria: ResolvedAcceptanceGate[];
|
|
1127
|
+
childReport?: AcceptanceReport;
|
|
1128
|
+
childReportParseError?: string;
|
|
1129
|
+
recovery?: AcceptanceRecoveryMetadata;
|
|
1130
|
+
runtimeChecks: AcceptanceRuntimeCheck[];
|
|
1131
|
+
verifyRuns: AcceptanceVerifyResult[];
|
|
1132
|
+
reviewResult?: AcceptanceReviewResult;
|
|
1133
|
+
parentDecision?: {
|
|
1134
|
+
status: "accepted" | "rejected";
|
|
1135
|
+
at: string;
|
|
1136
|
+
reason?: string;
|
|
1137
|
+
};
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
export interface ProtocolOutputLimit {
|
|
1141
|
+
code: "protocol_output_limit";
|
|
1142
|
+
stream: "stdout" | "stderr";
|
|
1143
|
+
limitBytes: number;
|
|
1144
|
+
observedBytes: number;
|
|
1145
|
+
diagnosticPrefix: string;
|
|
1146
|
+
diagnosticTail: string;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
export interface LaunchResolvedChildExtensionsV1 {
|
|
1150
|
+
version: 1;
|
|
1151
|
+
/** This is parent-resolved launch intent, not child-runtime acknowledgement that extensions loaded. */
|
|
1152
|
+
source: "launch-resolved";
|
|
1153
|
+
disableAmbientExtensions: boolean;
|
|
1154
|
+
runtime: string[];
|
|
1155
|
+
configured: string[];
|
|
1156
|
+
effective: string[];
|
|
1157
|
+
omitted: {
|
|
1158
|
+
runtime: number;
|
|
1159
|
+
configured: number;
|
|
1160
|
+
effective: number;
|
|
1161
|
+
};
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
export interface RuntimeAcknowledgedChildExtensionsV1 {
|
|
1165
|
+
version: 1;
|
|
1166
|
+
/** Best-effort child-runtime registration acknowledgement, not extension health. */
|
|
1167
|
+
source: "child-runtime";
|
|
1168
|
+
ids: string[];
|
|
1169
|
+
omitted: number;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
export interface UsageBudgetLimitConfig {
|
|
1173
|
+
soft?: number;
|
|
1174
|
+
hard: number;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
export interface UsageBudgetConfig {
|
|
1178
|
+
tokens?: UsageBudgetLimitConfig;
|
|
1179
|
+
costUsd?: UsageBudgetLimitConfig;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
export interface UsageBudgetMetricState extends UsageBudgetLimitConfig {
|
|
1183
|
+
used: number;
|
|
1184
|
+
outcome: "within-budget" | "soft-exceeded" | "hard-exceeded";
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
export interface UsageBudgetState {
|
|
1188
|
+
version: 1;
|
|
1189
|
+
/** Enforced from usage reported by completed or streaming child runs; no reservation estimates. */
|
|
1190
|
+
source: "reported";
|
|
1191
|
+
tokens?: UsageBudgetMetricState;
|
|
1192
|
+
costUsd?: UsageBudgetMetricState;
|
|
1193
|
+
exhausted: boolean;
|
|
1194
|
+
reason?: "tokens" | "costUsd";
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
export interface SingleResult {
|
|
1198
|
+
/**
|
|
1199
|
+
* Stable child identity within the foreground run. Pair with Details.runId for
|
|
1200
|
+
* cross-run correlation. This is assigned in launch order, remains stable across
|
|
1201
|
+
* partial progress snapshots and the final result, and is independent of the
|
|
1202
|
+
* result row's array position.
|
|
1203
|
+
*/
|
|
1204
|
+
index: number;
|
|
1205
|
+
agent: string;
|
|
1206
|
+
task: string;
|
|
1207
|
+
/** Human-readable display name for the child's own session (agent + task
|
|
1208
|
+
* excerpt), when the launcher derived one. Display metadata only. */
|
|
1209
|
+
sessionName?: string;
|
|
1210
|
+
/** Resolved launch context for this child. */
|
|
1211
|
+
context?: "fresh" | "fork";
|
|
1212
|
+
exitCode: number;
|
|
1213
|
+
processSignal?: string | null;
|
|
1214
|
+
timeoutRecovery?: TimeoutRecoverySummary;
|
|
1215
|
+
detached?: boolean;
|
|
1216
|
+
detachedReason?: string;
|
|
1217
|
+
interrupted?: boolean;
|
|
1218
|
+
timedOut?: boolean;
|
|
1219
|
+
stopped?: boolean;
|
|
1220
|
+
turnBudget?: TurnBudgetState;
|
|
1221
|
+
turnBudgetExceeded?: boolean;
|
|
1222
|
+
wrapUpRequested?: boolean;
|
|
1223
|
+
toolBudget?: ToolBudgetState;
|
|
1224
|
+
toolBudgetBlocked?: boolean;
|
|
1225
|
+
messages?: Message[];
|
|
1226
|
+
usage: Usage;
|
|
1227
|
+
model?: string;
|
|
1228
|
+
/** Effective thinking level used by this foreground child, when known. */
|
|
1229
|
+
thinking?: string;
|
|
1230
|
+
attemptedModels?: string[];
|
|
1231
|
+
modelAttempts?: ModelAttempt[];
|
|
1232
|
+
controlEvents?: ControlEvent[];
|
|
1233
|
+
error?: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* True when the dispatch failed because the input exceeded the model's
|
|
1236
|
+
* context window. The model fallback loop stops immediately (retrying the
|
|
1237
|
+
* same input on another model cannot succeed). Callers should treat this as
|
|
1238
|
+
* a signal to reduce input size or re-decompose the task.
|
|
1239
|
+
*/
|
|
1240
|
+
contextOverflow?: boolean;
|
|
1241
|
+
protocolError?: ProtocolOutputLimit;
|
|
1242
|
+
sessionFile?: string;
|
|
1243
|
+
skills?: string[];
|
|
1244
|
+
skillsWarning?: string;
|
|
1245
|
+
progress?: AgentProgress;
|
|
1246
|
+
progressSummary?: ProgressSummary;
|
|
1247
|
+
toolCalls?: ToolCallSummary[];
|
|
1248
|
+
artifactPaths?: ArtifactPaths;
|
|
1249
|
+
truncation?: TruncationResult;
|
|
1250
|
+
finalOutput?: string;
|
|
1251
|
+
/** Provenance-aware state for substantive child output, excluding synthetic lifecycle messages. */
|
|
1252
|
+
outputState?: SubagentOutputState;
|
|
1253
|
+
outputMode?: OutputMode;
|
|
1254
|
+
savedOutputPath?: string;
|
|
1255
|
+
outputReference?: SavedOutputReference;
|
|
1256
|
+
outputSaveError?: string;
|
|
1257
|
+
/** Best-effort metadata persistence failure; execution and receipt publication continue. */
|
|
1258
|
+
metadataSaveError?: string;
|
|
1259
|
+
structuredOutput?: unknown;
|
|
1260
|
+
structuredOutputFailed?: boolean;
|
|
1261
|
+
structuredOutputPath?: string;
|
|
1262
|
+
structuredOutputSchemaPath?: string;
|
|
1263
|
+
acceptance?: AcceptanceLedger;
|
|
1264
|
+
agentContract?: AgentContract;
|
|
1265
|
+
launchContractDigest?: string;
|
|
1266
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
1267
|
+
runtimeAcknowledgedExtensions?: RuntimeAcknowledgedChildExtensionsV1;
|
|
1268
|
+
execution?: ExecutionProjection;
|
|
1269
|
+
review?: ReviewProjection;
|
|
1270
|
+
effects?: EffectsProjection;
|
|
1271
|
+
transcriptPath?: string;
|
|
1272
|
+
transcriptError?: string;
|
|
1273
|
+
children?: NestedRunSummary[];
|
|
1274
|
+
watchdog?: ChildWatchdogProgress;
|
|
1275
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
1276
|
+
capabilityAudit?: SubagentCapabilityAudit;
|
|
1277
|
+
runner?: ExternalCliRunnerStatus | ExternalJobRunnerStatus;
|
|
1278
|
+
externalProcess?: ExternalProcessStatus;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
export interface SpawnBudgetGrant {
|
|
1282
|
+
sessionId: string;
|
|
1283
|
+
amount: number;
|
|
1284
|
+
grantedAt: number;
|
|
1285
|
+
previousLimit: number;
|
|
1286
|
+
limit: number;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
export interface SpawnBudgetSnapshot {
|
|
1290
|
+
used: number;
|
|
1291
|
+
configuredLimit: number | null;
|
|
1292
|
+
granted: number;
|
|
1293
|
+
limit: number | null;
|
|
1294
|
+
remaining: number | null;
|
|
1295
|
+
grantRemaining: number | null;
|
|
1296
|
+
grantHistory: SpawnBudgetGrant[];
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
/** Slim per-child projection of a terminal result payload, safe to surface in tool_result details. */
|
|
1300
|
+
export interface WaitCompletionChild {
|
|
1301
|
+
agent?: string;
|
|
1302
|
+
/** Child run identity where the producer records one (workflow children); artifact files are keyed by it. */
|
|
1303
|
+
runId?: string;
|
|
1304
|
+
/** Bounded accounting projection used by /subagent-cost after async completion. */
|
|
1305
|
+
usage?: Usage;
|
|
1306
|
+
/** Persisted Pi child session when available. */
|
|
1307
|
+
sessionFile?: string;
|
|
1308
|
+
success?: boolean;
|
|
1309
|
+
outputState?: SubagentOutputState;
|
|
1310
|
+
error?: string;
|
|
1311
|
+
model?: string;
|
|
1312
|
+
contextOverflow?: boolean;
|
|
1313
|
+
artifactPaths?: Partial<ArtifactPaths>;
|
|
1314
|
+
timeoutRecovery?: TimeoutRecoveryProjection;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* Terminal completion observed for a run a bg_wait call covered. Carries run
|
|
1319
|
+
* identity and the artifact trail; output text stays in the tool result content.
|
|
1320
|
+
*/
|
|
1321
|
+
export interface WaitCompletion {
|
|
1322
|
+
runId: string;
|
|
1323
|
+
agent?: string;
|
|
1324
|
+
mode?: string;
|
|
1325
|
+
state?: string;
|
|
1326
|
+
success?: boolean;
|
|
1327
|
+
/** Versioned bounded output archive retained with the durable completion replay. */
|
|
1328
|
+
archivePath?: string;
|
|
1329
|
+
results?: WaitCompletionChild[];
|
|
1330
|
+
workflowChildren?: WorkflowChildSummaryV1;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
export interface AgentCapabilitiesSnapshot {
|
|
1334
|
+
agents: AgentCapabilityRow[];
|
|
1335
|
+
restrictedCount: number;
|
|
1336
|
+
capabilityCeilingSources?: string[];
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
export interface AgentCapabilityRow {
|
|
1340
|
+
name: string;
|
|
1341
|
+
description: string;
|
|
1342
|
+
source: "builtin" | "package" | "user" | "project" | "runtime";
|
|
1343
|
+
executable: boolean;
|
|
1344
|
+
restrictionSources?: string[];
|
|
1345
|
+
aliases?: string[];
|
|
1346
|
+
runner: { type: "pi" } | { type: "external-cli"; adapter?: string; capabilities: ExternalCliCapabilities } | { type: "external-job"; provider: string; available?: boolean; capabilities: ExternalJobRunnerStatus["capabilities"] };
|
|
1347
|
+
tools: { ambient: boolean; names: string[]; excludeTools?: string[]; mcpDirectTools: string[]; mutationTools?: string[] };
|
|
1348
|
+
model?: { value?: string; fallbackModels?: string[]; thinking?: string | false };
|
|
1349
|
+
execution?: { defaultAsync?: boolean; timeoutMs?: number };
|
|
1350
|
+
output?: { path?: string; mode?: OutputMode };
|
|
1351
|
+
extensions?: { names?: string[]; subagentOnly?: string[]; skills?: string[] };
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
export interface Details {
|
|
1355
|
+
mode: SubagentResultMode | "management";
|
|
1356
|
+
runId?: string;
|
|
1357
|
+
/** Host tool-call id retained when it differs from the internal run id. */
|
|
1358
|
+
toolCallId?: string;
|
|
1359
|
+
/** Run-level context summary. "mixed" when children resolved to different modes. */
|
|
1360
|
+
context?: "fresh" | "fork" | "mixed";
|
|
1361
|
+
results: SingleResult[];
|
|
1362
|
+
workflowChildren?: WorkflowChildSummaryV1;
|
|
1363
|
+
/**
|
|
1364
|
+
* Terminal completion payloads for runs this bg_wait call observed
|
|
1365
|
+
* finishing. Async completions travel as result files that are consumed and
|
|
1366
|
+
* deleted after text delivery, so without this field their run and artifact
|
|
1367
|
+
* identity never reaches tool_result details.
|
|
1368
|
+
*/
|
|
1369
|
+
completions?: WaitCompletion[];
|
|
1370
|
+
wait?: {
|
|
1371
|
+
reason: "window_elapsed";
|
|
1372
|
+
timedOut: true;
|
|
1373
|
+
activeRunIds: string[];
|
|
1374
|
+
activeProviderItems: Array<{ provider: string; id: string }>;
|
|
1375
|
+
};
|
|
1376
|
+
controlEvents?: ControlEvent[];
|
|
1377
|
+
steering?: SteerActionResult;
|
|
1378
|
+
asyncId?: string;
|
|
1379
|
+
background?: boolean;
|
|
1380
|
+
asyncDir?: string;
|
|
1381
|
+
timeoutMs?: number;
|
|
1382
|
+
deadlineAt?: number;
|
|
1383
|
+
timedOut?: boolean;
|
|
1384
|
+
stopped?: boolean;
|
|
1385
|
+
toolBudget?: ResolvedToolBudget;
|
|
1386
|
+
usageBudget?: UsageBudgetState;
|
|
1387
|
+
progress?: AgentProgress[];
|
|
1388
|
+
progressSummary?: ProgressSummary;
|
|
1389
|
+
artifacts?: {
|
|
1390
|
+
dir: string;
|
|
1391
|
+
files: ArtifactPaths[];
|
|
1392
|
+
};
|
|
1393
|
+
truncation?: {
|
|
1394
|
+
truncated: boolean;
|
|
1395
|
+
originalBytes?: number;
|
|
1396
|
+
originalLines?: number;
|
|
1397
|
+
artifactPath?: string;
|
|
1398
|
+
};
|
|
1399
|
+
// Chain metadata for observability
|
|
1400
|
+
chainAgents?: string[]; // Agent names in order, e.g., ["scout", "planner"]
|
|
1401
|
+
totalSteps?: number; // Total steps in chain
|
|
1402
|
+
currentStepIndex?: number; // 0-indexed current step (for running chains)
|
|
1403
|
+
workflowGraph?: WorkflowGraphSnapshot;
|
|
1404
|
+
/** Validated, display-only fanout plan supplied with a workflow launch. */
|
|
1405
|
+
preflight?: WorkflowPreflightV1;
|
|
1406
|
+
preflightWarnings?: string[];
|
|
1407
|
+
outputs?: ChainOutputMap;
|
|
1408
|
+
// Aggregated child usage across all agents in the run
|
|
1409
|
+
totalChildUsage?: Usage;
|
|
1410
|
+
// Aggregated cost across all agents in the run
|
|
1411
|
+
totalCost?: CostSummary;
|
|
1412
|
+
spawnBudget?: SpawnBudgetSnapshot;
|
|
1413
|
+
runFanoutBudget?: RunFanoutBudgetSnapshot;
|
|
1414
|
+
runFanoutRejection?: RunFanoutRejection;
|
|
1415
|
+
activeAsyncCapacity?: ActiveAsyncCapacitySnapshot;
|
|
1416
|
+
agentCapabilities?: AgentCapabilitiesSnapshot;
|
|
1417
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
1418
|
+
capabilityAudit?: SubagentCapabilityAudit;
|
|
1419
|
+
parallelHandoff?: ParallelHandoffReference;
|
|
1420
|
+
lifecycleStatus?: {
|
|
1421
|
+
processTerminal?: ProcessTerminalV1;
|
|
1422
|
+
};
|
|
1423
|
+
launchContractDigest?: string;
|
|
1424
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
1425
|
+
runtimeAcknowledgedExtensions?: RuntimeAcknowledgedChildExtensionsV1;
|
|
1426
|
+
/** Original launch contract whose persisted session is being revived. */
|
|
1427
|
+
sourceLaunchContractDigest?: string;
|
|
1428
|
+
/** Durable mission attached to this run, when mission mode was explicitly used. */
|
|
1429
|
+
missionId?: string;
|
|
1430
|
+
missionPath?: string;
|
|
1431
|
+
/** Non-fatal automatic mission persistence failure. */
|
|
1432
|
+
missionWarning?: string;
|
|
1433
|
+
mission?: MissionRecord;
|
|
1434
|
+
workflow?: {
|
|
1435
|
+
value?: unknown;
|
|
1436
|
+
resource?: WorkflowResourceProvenanceV1;
|
|
1437
|
+
preflightWarnings?: string[];
|
|
1438
|
+
trace: Array<{
|
|
1439
|
+
operation: "run" | "status" | "steer" | "host";
|
|
1440
|
+
key: string;
|
|
1441
|
+
state: "started" | "completed" | "failed" | "detached" | "stopped" | "reused" | "queued" | "delivered" | "missed";
|
|
1442
|
+
agent?: string;
|
|
1443
|
+
runId?: string;
|
|
1444
|
+
phase?: string;
|
|
1445
|
+
label?: string;
|
|
1446
|
+
durationMs?: number;
|
|
1447
|
+
/** Internal provenance for a generated runs.lanes child key. */
|
|
1448
|
+
generatedLaneKey?: string;
|
|
1449
|
+
warning?: string;
|
|
1450
|
+
error?: string;
|
|
1451
|
+
}>;
|
|
1452
|
+
emits: unknown[];
|
|
1453
|
+
console: Array<{ level: "log" | "info" | "warn" | "error"; text: string }>;
|
|
1454
|
+
/** Terminal keyed child receipt. Async workflows also persist it beside status.json. */
|
|
1455
|
+
receipt?: WorkflowReceipt;
|
|
1456
|
+
};
|
|
1457
|
+
chatProgress?: {
|
|
1458
|
+
mode: "off" | "live-card";
|
|
1459
|
+
repoRelation: "same" | "other";
|
|
1460
|
+
repoLabel?: string;
|
|
1461
|
+
};
|
|
1462
|
+
missions?: {
|
|
1463
|
+
records?: MissionRecord[];
|
|
1464
|
+
globalEntries?: GlobalMissionIndexRecord[];
|
|
1465
|
+
warnings: string[];
|
|
1466
|
+
};
|
|
1467
|
+
/** Project-scoped recurring schedule records and run history for management actions. */
|
|
1468
|
+
schedules?: {
|
|
1469
|
+
records?: unknown[];
|
|
1470
|
+
runs?: unknown[];
|
|
1471
|
+
};
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
// ============================================================================
|
|
1475
|
+
// Artifacts
|
|
1476
|
+
// ============================================================================
|
|
1477
|
+
|
|
1478
|
+
export interface ArtifactPaths {
|
|
1479
|
+
inputPath: string;
|
|
1480
|
+
outputPath: string;
|
|
1481
|
+
jsonlPath: string;
|
|
1482
|
+
transcriptPath: string;
|
|
1483
|
+
metadataPath: string;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
export type ArtifactDirPreference = "project" | "session" | "temp";
|
|
1487
|
+
|
|
1488
|
+
export interface ArtifactConfig {
|
|
1489
|
+
enabled: boolean;
|
|
1490
|
+
dir?: ArtifactDirPreference;
|
|
1491
|
+
includeInput: boolean;
|
|
1492
|
+
includeOutput: boolean;
|
|
1493
|
+
includeJsonl: boolean;
|
|
1494
|
+
includeTranscript?: boolean;
|
|
1495
|
+
includeMetadata: boolean;
|
|
1496
|
+
cleanupDays: number;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
// ============================================================================
|
|
1500
|
+
// Async Execution
|
|
1501
|
+
// ============================================================================
|
|
1502
|
+
|
|
1503
|
+
export interface AsyncParallelGroupStatus {
|
|
1504
|
+
start: number;
|
|
1505
|
+
count: number;
|
|
1506
|
+
stepIndex: number;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
export type NestedRunState = "queued" | "running" | "complete" | "failed" | "partial" | "paused" | "stopped" | "rejected";
|
|
1510
|
+
export type NestedOwnerState = "live" | "gone" | "unknown";
|
|
1511
|
+
|
|
1512
|
+
export interface NestedRunAddress {
|
|
1513
|
+
id: string;
|
|
1514
|
+
parentRunId: string;
|
|
1515
|
+
parentStepIndex?: number;
|
|
1516
|
+
parentAgent?: string;
|
|
1517
|
+
depth: number;
|
|
1518
|
+
path: Array<{ runId: string; stepIndex?: number; agent?: string }>;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
export interface NestedStepSummary {
|
|
1522
|
+
agent: string;
|
|
1523
|
+
/** Human-readable display name for the child session, when derived at launch. */
|
|
1524
|
+
sessionName?: string;
|
|
1525
|
+
status: "pending" | "running" | "complete" | "completed" | "failed" | "partial" | "paused" | "stopped" | "rejected";
|
|
1526
|
+
model?: string;
|
|
1527
|
+
thinking?: string;
|
|
1528
|
+
sessionFile?: string;
|
|
1529
|
+
transcriptPath?: string;
|
|
1530
|
+
transcriptError?: string;
|
|
1531
|
+
activityState?: ActivityState;
|
|
1532
|
+
lastActivityAt?: number;
|
|
1533
|
+
currentTool?: string;
|
|
1534
|
+
currentToolStartedAt?: number;
|
|
1535
|
+
currentPath?: string;
|
|
1536
|
+
turnCount?: number;
|
|
1537
|
+
toolCount?: number;
|
|
1538
|
+
startedAt?: number;
|
|
1539
|
+
endedAt?: number;
|
|
1540
|
+
error?: string;
|
|
1541
|
+
watchdog?: ChildWatchdogProgress;
|
|
1542
|
+
timedOut?: boolean;
|
|
1543
|
+
stopped?: boolean;
|
|
1544
|
+
turnBudget?: TurnBudgetState;
|
|
1545
|
+
turnBudgetExceeded?: boolean;
|
|
1546
|
+
wrapUpRequested?: boolean;
|
|
1547
|
+
toolBudget?: ToolBudgetState;
|
|
1548
|
+
toolBudgetBlocked?: boolean;
|
|
1549
|
+
processTerminal?: ProcessTerminalV1;
|
|
1550
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
1551
|
+
runtimeAcknowledgedExtensions?: RuntimeAcknowledgedChildExtensionsV1;
|
|
1552
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
1553
|
+
capabilityAudit?: SubagentCapabilityAudit;
|
|
1554
|
+
children?: NestedRunSummary[];
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
export interface NestedRunSummary extends NestedRunAddress {
|
|
1558
|
+
asyncDir?: string;
|
|
1559
|
+
pid?: number;
|
|
1560
|
+
sessionId?: string;
|
|
1561
|
+
sessionFile?: string;
|
|
1562
|
+
intercomTarget?: string;
|
|
1563
|
+
ownerIntercomTarget?: string;
|
|
1564
|
+
leafIntercomTarget?: string;
|
|
1565
|
+
ownerState?: NestedOwnerState;
|
|
1566
|
+
controlInbox?: string;
|
|
1567
|
+
capabilityToken?: string;
|
|
1568
|
+
mode?: SubagentRunMode;
|
|
1569
|
+
processTerminal?: ProcessTerminalV1;
|
|
1570
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
1571
|
+
runtimeAcknowledgedExtensions?: RuntimeAcknowledgedChildExtensionsV1;
|
|
1572
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
1573
|
+
capabilityAudit?: SubagentCapabilityAudit;
|
|
1574
|
+
state: NestedRunState;
|
|
1575
|
+
agent?: string;
|
|
1576
|
+
/** Human-readable display name for the child session, when derived at launch. */
|
|
1577
|
+
sessionName?: string;
|
|
1578
|
+
agents?: string[];
|
|
1579
|
+
model?: string;
|
|
1580
|
+
thinking?: string;
|
|
1581
|
+
currentStep?: number;
|
|
1582
|
+
chainStepCount?: number;
|
|
1583
|
+
parallelGroups?: AsyncParallelGroupStatus[];
|
|
1584
|
+
steps?: NestedStepSummary[];
|
|
1585
|
+
children?: NestedRunSummary[];
|
|
1586
|
+
activityState?: ActivityState;
|
|
1587
|
+
lastActivityAt?: number;
|
|
1588
|
+
currentTool?: string;
|
|
1589
|
+
currentToolStartedAt?: number;
|
|
1590
|
+
currentPath?: string;
|
|
1591
|
+
turnCount?: number;
|
|
1592
|
+
toolCount?: number;
|
|
1593
|
+
totalTokens?: TokenUsage;
|
|
1594
|
+
totalCost?: CostSummary;
|
|
1595
|
+
startedAt?: number;
|
|
1596
|
+
endedAt?: number;
|
|
1597
|
+
lastUpdate?: number;
|
|
1598
|
+
timeoutMs?: number;
|
|
1599
|
+
deadlineAt?: number;
|
|
1600
|
+
timedOut?: boolean;
|
|
1601
|
+
stopped?: boolean;
|
|
1602
|
+
turnBudget?: TurnBudgetState;
|
|
1603
|
+
turnBudgetExceeded?: boolean;
|
|
1604
|
+
wrapUpRequested?: boolean;
|
|
1605
|
+
toolBudget?: ToolBudgetState;
|
|
1606
|
+
toolBudgetBlocked?: boolean;
|
|
1607
|
+
error?: string;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
export interface NestedRouteInfo {
|
|
1611
|
+
rootRunId: string;
|
|
1612
|
+
eventSink: string;
|
|
1613
|
+
controlInbox: string;
|
|
1614
|
+
capabilityToken: string;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
export interface AsyncStartedEvent {
|
|
1618
|
+
lifecycleArtifactVersion?: SubagentLifecycleArtifactVersion;
|
|
1619
|
+
id?: string;
|
|
1620
|
+
asyncDir?: string;
|
|
1621
|
+
/** Parent-resolved launch directory, used as a trusted artifact root while this session is live. */
|
|
1622
|
+
cwd?: string;
|
|
1623
|
+
/** Parent-resolved child session root, used only while this session owns the live run. */
|
|
1624
|
+
sessionRoot?: string;
|
|
1625
|
+
pid?: number;
|
|
1626
|
+
sessionId?: string;
|
|
1627
|
+
completionOwnerId?: string;
|
|
1628
|
+
mode?: SubagentRunMode;
|
|
1629
|
+
agent?: string;
|
|
1630
|
+
agents?: string[];
|
|
1631
|
+
/** Truncated first child task retained for backwards compatibility. */
|
|
1632
|
+
task?: string;
|
|
1633
|
+
/** Workflow-level caller task, falling back to the first child task. */
|
|
1634
|
+
goal?: string;
|
|
1635
|
+
chain?: string[];
|
|
1636
|
+
chainStepCount?: number;
|
|
1637
|
+
parallelGroups?: AsyncParallelGroupStatus[];
|
|
1638
|
+
workflowGraph?: WorkflowGraphSnapshot;
|
|
1639
|
+
preflight?: WorkflowPreflightV1;
|
|
1640
|
+
launchContractDigest?: string;
|
|
1641
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
1642
|
+
runtimeAcknowledgedExtensions?: RuntimeAcknowledgedChildExtensionsV1;
|
|
1643
|
+
usageBudget?: UsageBudgetState;
|
|
1644
|
+
timeoutMs?: number;
|
|
1645
|
+
deadlineAt?: number;
|
|
1646
|
+
turnBudget?: TurnBudgetState;
|
|
1647
|
+
nestedRoute?: NestedRouteInfo;
|
|
1648
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
1649
|
+
parentWorkflowRunId?: string;
|
|
1650
|
+
workflowKey?: string;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
export type AgentRunnerConfig =
|
|
1654
|
+
| { type: "pi" }
|
|
1655
|
+
| {
|
|
1656
|
+
type: "external-cli";
|
|
1657
|
+
adapter?: "codex-exec" | "codex-exec-writer" | "claude-code" | "claude-code-writer" | "cursor-agent" | "cursor-agent-writer";
|
|
1658
|
+
command: string;
|
|
1659
|
+
args?: string[];
|
|
1660
|
+
promptDelivery?: "stdin";
|
|
1661
|
+
capabilities?: ExternalCliCapabilityNarrowing;
|
|
1662
|
+
}
|
|
1663
|
+
| {
|
|
1664
|
+
type: "external-job";
|
|
1665
|
+
provider: string;
|
|
1666
|
+
options?: Record<string, unknown>;
|
|
1667
|
+
};
|
|
1668
|
+
|
|
1669
|
+
export type ExternalCliCapabilityNarrowing = Partial<Record<"steer" | "resume" | "structuredOutput" | "toolEvents" | "supervisor" | "forkContext" | "extensionBindings", false>>;
|
|
1670
|
+
|
|
1671
|
+
export interface ExternalCliCapabilities {
|
|
1672
|
+
stop: true;
|
|
1673
|
+
steer: false;
|
|
1674
|
+
resume: false;
|
|
1675
|
+
structuredOutput: false;
|
|
1676
|
+
toolEvents: false;
|
|
1677
|
+
supervisor: "unsupported";
|
|
1678
|
+
forkContext: false;
|
|
1679
|
+
extensionBindings: false;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
export interface ExternalCliReceiptMetadata {
|
|
1683
|
+
adapter: { id: "external-cli" | "codex-exec" | "codex-exec-writer" | "claude-code" | "claude-code-writer" | "cursor-agent" | "cursor-agent-writer" | "grok-build"; version: 1; executionMode: "one-shot-stdin" | "one-shot-prompt-file" };
|
|
1684
|
+
capabilities: ExternalCliCapabilities;
|
|
1685
|
+
safety?:
|
|
1686
|
+
| { sandbox: "read-only"; approvalPolicy: "never"; ephemeral: true }
|
|
1687
|
+
| { access: "workspace-write"; sandbox: "workspace-write"; approvalPolicy: "never"; ephemeral: true }
|
|
1688
|
+
| { permissionMode: "plan"; tools: "none"; mcp: "empty-strict"; settingSources: "none"; sessionPersistence: false }
|
|
1689
|
+
| { access: "read-only"; authentication: "existing-cli-required"; permissionMode: "plan"; tools: "none"; mcp: "empty-strict"; settingSources: "user"; userSettingsTrust: "required"; sessionPersistence: false }
|
|
1690
|
+
| { access: "workspace-write"; authentication: "existing-cli-required"; permissionMode: "acceptEdits"; tools: "Read,Write,Edit,Glob,Grep"; mcp: "empty-strict"; settingSources: "user"; userSettingsTrust: "required"; sessionPersistence: false }
|
|
1691
|
+
| { access: "read-only"; authentication: "cursor-api-key-or-existing-login"; mode: "ask"; sandbox: "enabled"; workspaceTrust: "existing-required"; sessionReuse: false }
|
|
1692
|
+
| { access: "workspace-write"; authentication: "cursor-api-key-or-existing-login"; mode: "print"; sandbox: "enabled"; workspaceTrust: "existing-required"; sessionReuse: false };
|
|
1693
|
+
outputArtifacts?: { stdoutPath?: string; stderrPath?: string; finalOutputPath?: string };
|
|
1694
|
+
handoff: { mode: "fresh" };
|
|
1695
|
+
supervisor: { mode: "unsupported"; reason: string };
|
|
1696
|
+
nonResumableReason: string;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
export interface ExternalCliRunnerStatus {
|
|
1700
|
+
type: "external-cli";
|
|
1701
|
+
command: string;
|
|
1702
|
+
args: string[];
|
|
1703
|
+
promptDelivery: "stdin" | "prompt-file";
|
|
1704
|
+
adapter: ExternalCliReceiptMetadata["adapter"];
|
|
1705
|
+
safety?: ExternalCliReceiptMetadata["safety"];
|
|
1706
|
+
capabilities: ExternalCliCapabilities;
|
|
1707
|
+
unsupportedReasons: Record<Exclude<keyof ExternalCliCapabilities, "stop">, string>;
|
|
1708
|
+
nonResumableReason: string;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
export interface ExternalJobRunnerStatus {
|
|
1712
|
+
type: "external-job";
|
|
1713
|
+
provider: string;
|
|
1714
|
+
options: Record<string, unknown>;
|
|
1715
|
+
capabilities: {
|
|
1716
|
+
stop: false;
|
|
1717
|
+
steer: false;
|
|
1718
|
+
resume: false;
|
|
1719
|
+
structuredOutput: false;
|
|
1720
|
+
toolEvents: false;
|
|
1721
|
+
};
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
export interface ExternalJobStatus {
|
|
1725
|
+
provider: string;
|
|
1726
|
+
providerJobId?: string;
|
|
1727
|
+
promptDigest: string;
|
|
1728
|
+
operation?: "start" | "follow-up";
|
|
1729
|
+
sourceRunId?: string;
|
|
1730
|
+
sourceStepIndex?: number;
|
|
1731
|
+
parentProviderJobId?: string;
|
|
1732
|
+
requestId?: string;
|
|
1733
|
+
requestDigest?: string;
|
|
1734
|
+
options: Record<string, unknown>;
|
|
1735
|
+
handleUrl?: string;
|
|
1736
|
+
conversationUrl?: string;
|
|
1737
|
+
resultArtifactPath?: string;
|
|
1738
|
+
state: "queued" | "running" | "completed" | "failed" | "stopped" | "blocked";
|
|
1739
|
+
failureCode?: string;
|
|
1740
|
+
failureMessage?: string;
|
|
1741
|
+
blockingJobId?: string;
|
|
1742
|
+
startedAt?: number;
|
|
1743
|
+
updatedAt?: number;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
export interface ExternalProcessStatus {
|
|
1747
|
+
pid?: number;
|
|
1748
|
+
startedAt: number;
|
|
1749
|
+
endedAt?: number;
|
|
1750
|
+
durationMs?: number;
|
|
1751
|
+
exitCode?: number | null;
|
|
1752
|
+
processSignal?: string | null;
|
|
1753
|
+
stdoutPath: string;
|
|
1754
|
+
stderrPath: string;
|
|
1755
|
+
finalOutputPath?: string;
|
|
1756
|
+
stdoutBytes?: number;
|
|
1757
|
+
stderrBytes?: number;
|
|
1758
|
+
stdoutTruncated?: boolean;
|
|
1759
|
+
stderrTruncated?: boolean;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
export interface AsyncStatus {
|
|
1763
|
+
lifecycleArtifactVersion?: SubagentLifecycleArtifactVersion;
|
|
1764
|
+
runId: string;
|
|
1765
|
+
/** Parent Pi process/window that owns local completion delivery. */
|
|
1766
|
+
completionOwnerId?: string;
|
|
1767
|
+
/** Host tool-call id retained when it differs from the internal run id. */
|
|
1768
|
+
toolCallId?: string;
|
|
1769
|
+
sessionId?: string;
|
|
1770
|
+
mode: SubagentRunMode;
|
|
1771
|
+
context?: "fresh" | "fork" | "mixed";
|
|
1772
|
+
isNested?: boolean;
|
|
1773
|
+
state: "queued" | "running" | "complete" | "failed" | "partial" | "paused" | "stopped" | "rejected";
|
|
1774
|
+
/** Display-only dismissal marker for a reload-orphaned workflow. */
|
|
1775
|
+
displayDismissedAt?: number;
|
|
1776
|
+
error?: string;
|
|
1777
|
+
activityState?: ActivityState;
|
|
1778
|
+
lastActivityAt?: number;
|
|
1779
|
+
currentTool?: string;
|
|
1780
|
+
currentToolStartedAt?: number;
|
|
1781
|
+
currentPath?: string;
|
|
1782
|
+
turnCount?: number;
|
|
1783
|
+
toolCount?: number;
|
|
1784
|
+
steering?: SteeringStatus;
|
|
1785
|
+
startedAt: number;
|
|
1786
|
+
endedAt?: number;
|
|
1787
|
+
lastUpdate?: number;
|
|
1788
|
+
timeoutMs?: number;
|
|
1789
|
+
deadlineAt?: number;
|
|
1790
|
+
timedOut?: boolean;
|
|
1791
|
+
stopped?: boolean;
|
|
1792
|
+
turnBudget?: TurnBudgetState;
|
|
1793
|
+
turnBudgetExceeded?: boolean;
|
|
1794
|
+
wrapUpRequested?: boolean;
|
|
1795
|
+
toolBudget?: ToolBudgetState;
|
|
1796
|
+
toolBudgetBlocked?: boolean;
|
|
1797
|
+
usageBudget?: UsageBudgetState;
|
|
1798
|
+
pid?: number;
|
|
1799
|
+
cwd?: string;
|
|
1800
|
+
/** Parent-resolved child session root retained for trusted restored transcript lookup. */
|
|
1801
|
+
sessionRoot?: string;
|
|
1802
|
+
currentStep?: number;
|
|
1803
|
+
chainStepCount?: number;
|
|
1804
|
+
pendingAppends?: number;
|
|
1805
|
+
parallelGroups?: AsyncParallelGroupStatus[];
|
|
1806
|
+
workflowGraph?: WorkflowGraphSnapshot;
|
|
1807
|
+
preflight?: WorkflowPreflightV1;
|
|
1808
|
+
processTerminal?: ProcessTerminalV1;
|
|
1809
|
+
runFanoutBudget?: RunFanoutBudgetSnapshot;
|
|
1810
|
+
runFanoutBudgetDescriptor?: RunFanoutBudgetDescriptor;
|
|
1811
|
+
launchContractDigest?: string;
|
|
1812
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
1813
|
+
runtimeAcknowledgedExtensions?: RuntimeAcknowledgedChildExtensionsV1;
|
|
1814
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
1815
|
+
capabilityAudit?: SubagentCapabilityAudit;
|
|
1816
|
+
workflow?: Details["workflow"];
|
|
1817
|
+
workflowChildren?: WorkflowChildSummaryV1;
|
|
1818
|
+
parentWorkflowRunId?: string;
|
|
1819
|
+
workflowKey?: string;
|
|
1820
|
+
lane?: WorkflowLaneMetadata;
|
|
1821
|
+
/** Set when a durable schedule launched this run, so completions can name their origin. */
|
|
1822
|
+
scheduleOrigin?: ScheduleOrigin;
|
|
1823
|
+
steps?: Array<{
|
|
1824
|
+
/** Stable caller-facing child identity for inspect/status/stop. */
|
|
1825
|
+
childId?: string;
|
|
1826
|
+
agent: string;
|
|
1827
|
+
/** Human-readable display name for the child session, when derived at launch. */
|
|
1828
|
+
sessionName?: string;
|
|
1829
|
+
runner?: ExternalCliRunnerStatus | ExternalJobRunnerStatus;
|
|
1830
|
+
externalProcess?: ExternalProcessStatus;
|
|
1831
|
+
externalJob?: ExternalJobStatus;
|
|
1832
|
+
/** Resolved launch context for this child step. */
|
|
1833
|
+
context?: "fresh" | "fork";
|
|
1834
|
+
/** Short caller-facing task/goal shown in fleet surfaces when available. */
|
|
1835
|
+
description?: string;
|
|
1836
|
+
phase?: string;
|
|
1837
|
+
label?: string;
|
|
1838
|
+
workflowKey?: string;
|
|
1839
|
+
lane?: WorkflowLaneMetadata;
|
|
1840
|
+
/** Display-only worktree path copied at launch; handoff remains authoritative. */
|
|
1841
|
+
worktreePath?: string;
|
|
1842
|
+
/** Display-only branch copied at launch; handoff remains authoritative. */
|
|
1843
|
+
branch?: string;
|
|
1844
|
+
/** Child run identity for workflow capacity reconciliation. */
|
|
1845
|
+
runId?: string;
|
|
1846
|
+
/** True only when this workflow child owns a detached async runner. */
|
|
1847
|
+
async?: boolean;
|
|
1848
|
+
parentWorkflowRunId?: string;
|
|
1849
|
+
outputName?: string;
|
|
1850
|
+
structured?: boolean;
|
|
1851
|
+
status: "pending" | "running" | "complete" | "completed" | "failed" | "partial" | "paused" | "stopped" | "rejected";
|
|
1852
|
+
stopRequested?: boolean;
|
|
1853
|
+
stopRequestedAt?: number;
|
|
1854
|
+
children?: NestedRunSummary[];
|
|
1855
|
+
sessionFile?: string;
|
|
1856
|
+
transcriptPath?: string;
|
|
1857
|
+
transcriptError?: string;
|
|
1858
|
+
activityState?: ActivityState;
|
|
1859
|
+
lastActivityAt?: number;
|
|
1860
|
+
currentTool?: string;
|
|
1861
|
+
currentToolArgs?: string;
|
|
1862
|
+
currentToolStartedAt?: number;
|
|
1863
|
+
currentPath?: string;
|
|
1864
|
+
recentTools?: Array<{ tool: string; args: string; endMs: number }>;
|
|
1865
|
+
recentOutput?: string[];
|
|
1866
|
+
turnCount?: number;
|
|
1867
|
+
toolCount?: number;
|
|
1868
|
+
startedAt?: number;
|
|
1869
|
+
endedAt?: number;
|
|
1870
|
+
durationMs?: number;
|
|
1871
|
+
exitCode?: number | null;
|
|
1872
|
+
timedOut?: boolean;
|
|
1873
|
+
timeoutRecovery?: TimeoutRecoverySummary;
|
|
1874
|
+
stopped?: boolean;
|
|
1875
|
+
turnBudget?: TurnBudgetState;
|
|
1876
|
+
turnBudgetExceeded?: boolean;
|
|
1877
|
+
wrapUpRequested?: boolean;
|
|
1878
|
+
toolBudget?: ToolBudgetState;
|
|
1879
|
+
toolBudgetBlocked?: boolean;
|
|
1880
|
+
tokens?: TokenUsage;
|
|
1881
|
+
skills?: string[];
|
|
1882
|
+
model?: string;
|
|
1883
|
+
thinking?: string;
|
|
1884
|
+
contextLimit?: number;
|
|
1885
|
+
thinkingCeiling?: ThinkingLevel;
|
|
1886
|
+
attemptedModels?: string[];
|
|
1887
|
+
modelAttempts?: ModelAttempt[];
|
|
1888
|
+
/** True when the child input exceeded the model context window. */
|
|
1889
|
+
contextOverflow?: boolean;
|
|
1890
|
+
totalCost?: CostSummary;
|
|
1891
|
+
steering?: SteeringStatus;
|
|
1892
|
+
error?: string;
|
|
1893
|
+
structuredOutput?: unknown;
|
|
1894
|
+
structuredOutputPath?: string;
|
|
1895
|
+
structuredOutputSchemaPath?: string;
|
|
1896
|
+
acceptance?: AcceptanceLedger;
|
|
1897
|
+
agentContract?: AgentContract;
|
|
1898
|
+
launchContractDigest?: string;
|
|
1899
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
1900
|
+
runtimeAcknowledgedExtensions?: RuntimeAcknowledgedChildExtensionsV1;
|
|
1901
|
+
execution?: ExecutionProjection;
|
|
1902
|
+
review?: ReviewProjection;
|
|
1903
|
+
effects?: EffectsProjection;
|
|
1904
|
+
watchdog?: ChildWatchdogProgress;
|
|
1905
|
+
processTerminal?: ProcessTerminalV1;
|
|
1906
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
1907
|
+
capabilityAudit?: SubagentCapabilityAudit;
|
|
1908
|
+
}>;
|
|
1909
|
+
sessionDir?: string;
|
|
1910
|
+
outputFile?: string;
|
|
1911
|
+
totalTokens?: TokenUsage;
|
|
1912
|
+
totalCost?: CostSummary;
|
|
1913
|
+
sessionFile?: string;
|
|
1914
|
+
outputs?: ChainOutputMap;
|
|
1915
|
+
parallelHandoff?: ParallelHandoffReference;
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
export type AsyncJobStep = Omit<NonNullable<AsyncStatus["steps"]>[number], "timeoutRecovery"> & {
|
|
1919
|
+
index?: number;
|
|
1920
|
+
description?: string;
|
|
1921
|
+
timeoutRecovery?: TimeoutRecoveryProjection;
|
|
1922
|
+
};
|
|
1923
|
+
|
|
1924
|
+
export interface AsyncJobState {
|
|
1925
|
+
asyncId: string;
|
|
1926
|
+
asyncDir: string;
|
|
1927
|
+
/** Host tool-call id retained when it differs from the internal run id. */
|
|
1928
|
+
toolCallId?: string;
|
|
1929
|
+
/** Parent-resolved launch directory retained for trusted live artifact lookup. */
|
|
1930
|
+
cwd?: string;
|
|
1931
|
+
/** Parent-resolved child session root retained for trusted live transcript lookup. */
|
|
1932
|
+
sessionRoot?: string;
|
|
1933
|
+
status: "queued" | "running" | "complete" | "failed" | "partial" | "paused" | "stopped" | "rejected";
|
|
1934
|
+
/** Short caller-facing task/goal shown in fleet surfaces when available. */
|
|
1935
|
+
description?: string;
|
|
1936
|
+
pid?: number;
|
|
1937
|
+
sessionId?: string;
|
|
1938
|
+
completionOwnerId?: string;
|
|
1939
|
+
activityState?: ActivityState;
|
|
1940
|
+
lastActivityAt?: number;
|
|
1941
|
+
currentTool?: string;
|
|
1942
|
+
currentToolStartedAt?: number;
|
|
1943
|
+
currentPath?: string;
|
|
1944
|
+
turnCount?: number;
|
|
1945
|
+
toolCount?: number;
|
|
1946
|
+
steering?: SteeringStatus;
|
|
1947
|
+
mode?: SubagentRunMode;
|
|
1948
|
+
/** Run-level context summary derived from step contexts. */
|
|
1949
|
+
context?: "fresh" | "fork" | "mixed";
|
|
1950
|
+
agents?: string[];
|
|
1951
|
+
currentStep?: number;
|
|
1952
|
+
chainStepCount?: number;
|
|
1953
|
+
parallelGroups?: AsyncParallelGroupStatus[];
|
|
1954
|
+
/** Bounded host-owned CI/gate nodes loaded from the workflow status graph. */
|
|
1955
|
+
hostSteps?: HostStepNodeV1[];
|
|
1956
|
+
/** Full bounded workflow plan, including not-yet-materialized stages. */
|
|
1957
|
+
workflowGraph?: WorkflowGraphSnapshot;
|
|
1958
|
+
steps?: AsyncJobStep[];
|
|
1959
|
+
preflight?: WorkflowPreflightV1;
|
|
1960
|
+
stepsTotal?: number;
|
|
1961
|
+
runningSteps?: number;
|
|
1962
|
+
completedSteps?: number;
|
|
1963
|
+
hasParallelGroups?: boolean;
|
|
1964
|
+
activeParallelGroup?: boolean;
|
|
1965
|
+
startedAt?: number;
|
|
1966
|
+
updatedAt?: number;
|
|
1967
|
+
timeoutMs?: number;
|
|
1968
|
+
deadlineAt?: number;
|
|
1969
|
+
timedOut?: boolean;
|
|
1970
|
+
stopped?: boolean;
|
|
1971
|
+
turnBudget?: TurnBudgetState;
|
|
1972
|
+
turnBudgetExceeded?: boolean;
|
|
1973
|
+
wrapUpRequested?: boolean;
|
|
1974
|
+
toolBudget?: ToolBudgetState;
|
|
1975
|
+
toolBudgetBlocked?: boolean;
|
|
1976
|
+
sessionDir?: string;
|
|
1977
|
+
outputFile?: string;
|
|
1978
|
+
totalTokens?: TokenUsage;
|
|
1979
|
+
totalCost?: CostSummary;
|
|
1980
|
+
usageBudget?: UsageBudgetState;
|
|
1981
|
+
sessionFile?: string;
|
|
1982
|
+
controlEventCursor?: number;
|
|
1983
|
+
nestedRoute?: NestedRouteInfo;
|
|
1984
|
+
nestedChildren?: NestedRunSummary[];
|
|
1985
|
+
parentWorkflowRunId?: string;
|
|
1986
|
+
workflowKey?: string;
|
|
1987
|
+
workflow?: Details["workflow"];
|
|
1988
|
+
workflowChildren?: WorkflowChildSummaryV1;
|
|
1989
|
+
lane?: WorkflowLaneMetadata;
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
export interface ForegroundResumeChild {
|
|
1993
|
+
agent: string;
|
|
1994
|
+
/** Human-readable display name for the child session, when derived at launch. */
|
|
1995
|
+
sessionName?: string;
|
|
1996
|
+
index: number;
|
|
1997
|
+
context?: "fresh" | "fork";
|
|
1998
|
+
sessionFile?: string;
|
|
1999
|
+
model?: string;
|
|
2000
|
+
thinking?: string;
|
|
2001
|
+
status: SubagentResultStatus;
|
|
2002
|
+
activityState?: ActivityState;
|
|
2003
|
+
lastActivityAt?: number;
|
|
2004
|
+
currentTool?: string;
|
|
2005
|
+
currentToolStartedAt?: number;
|
|
2006
|
+
currentPath?: string;
|
|
2007
|
+
turnCount?: number;
|
|
2008
|
+
tokens?: number;
|
|
2009
|
+
window?: number;
|
|
2010
|
+
windowPeak?: number;
|
|
2011
|
+
toolCount?: number;
|
|
2012
|
+
exitCode?: number;
|
|
2013
|
+
error?: string;
|
|
2014
|
+
finalOutput?: string;
|
|
2015
|
+
outputState?: SubagentOutputState;
|
|
2016
|
+
outputMode?: OutputMode;
|
|
2017
|
+
savedOutputPath?: string;
|
|
2018
|
+
outputSaveError?: string;
|
|
2019
|
+
artifactPaths?: ArtifactPaths;
|
|
2020
|
+
transcriptPath?: string;
|
|
2021
|
+
transcriptError?: string;
|
|
2022
|
+
detachedReason?: string;
|
|
2023
|
+
acceptance?: AcceptanceLedger;
|
|
2024
|
+
agentContract?: AgentContract;
|
|
2025
|
+
/** Private bounded launch fields needed to preserve the child contract on resume. */
|
|
2026
|
+
resumeContract?: {
|
|
2027
|
+
outputSchema?: JsonSchemaObject;
|
|
2028
|
+
agentContract?: AgentContract;
|
|
2029
|
+
acceptance?: AcceptanceInput;
|
|
2030
|
+
output?: string | boolean;
|
|
2031
|
+
outputMode?: OutputMode;
|
|
2032
|
+
};
|
|
2033
|
+
launchContractDigest?: string;
|
|
2034
|
+
/** Private retained launch authority. Never project into status or result output. */
|
|
2035
|
+
extensionBindings?: ExtensionBindings;
|
|
2036
|
+
launchResolvedExtensions?: LaunchResolvedChildExtensionsV1;
|
|
2037
|
+
runtimeAcknowledgedExtensions?: RuntimeAcknowledgedChildExtensionsV1;
|
|
2038
|
+
execution?: ExecutionProjection;
|
|
2039
|
+
review?: ReviewProjection;
|
|
2040
|
+
effects?: EffectsProjection;
|
|
2041
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
2042
|
+
capabilityAudit?: SubagentCapabilityAudit;
|
|
2043
|
+
updatedAt?: number;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
export interface ForegroundResumeRun {
|
|
2047
|
+
runId: string;
|
|
2048
|
+
mode: SubagentRunMode;
|
|
2049
|
+
cwd: string;
|
|
2050
|
+
/** Originating parent session. Detached exits can outlive the active session. */
|
|
2051
|
+
sessionId?: string;
|
|
2052
|
+
updatedAt: number;
|
|
2053
|
+
children: ForegroundResumeChild[];
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
export interface ForegroundChildControl {
|
|
2057
|
+
index: number;
|
|
2058
|
+
agent: string;
|
|
2059
|
+
/** Human-readable display name for the child's session, when derived at launch. */
|
|
2060
|
+
sessionName?: string;
|
|
2061
|
+
description?: string;
|
|
2062
|
+
startedAt: number;
|
|
2063
|
+
updatedAt: number;
|
|
2064
|
+
currentActivityState?: ActivityState;
|
|
2065
|
+
lastActivityAt?: number;
|
|
2066
|
+
currentTool?: string;
|
|
2067
|
+
currentToolStartedAt?: number;
|
|
2068
|
+
currentPath?: string;
|
|
2069
|
+
turnCount?: number;
|
|
2070
|
+
tokens?: number;
|
|
2071
|
+
inputTokens?: number;
|
|
2072
|
+
outputTokens?: number;
|
|
2073
|
+
window?: number;
|
|
2074
|
+
windowPeak?: number;
|
|
2075
|
+
model?: string;
|
|
2076
|
+
thinking?: string;
|
|
2077
|
+
toolCount?: number;
|
|
2078
|
+
interrupt?: () => boolean;
|
|
2079
|
+
detach?: () => boolean;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
export interface ForegroundRunControl {
|
|
2083
|
+
runId: string;
|
|
2084
|
+
/** Workflow shell that owns this live foreground child, when applicable. */
|
|
2085
|
+
parentWorkflowRunId?: string;
|
|
2086
|
+
/** Stable workflow lane key for this live foreground child. */
|
|
2087
|
+
workflowKey?: string;
|
|
2088
|
+
/** Private control root used to steer a live workflow-owned child. */
|
|
2089
|
+
workflowSteeringDir?: string;
|
|
2090
|
+
/** Originating parent session; required for public fleet projection. */
|
|
2091
|
+
sessionId?: string;
|
|
2092
|
+
mode: SubagentRunMode;
|
|
2093
|
+
startedAt: number;
|
|
2094
|
+
updatedAt: number;
|
|
2095
|
+
/** Effective working directory used to resolve live transcript artifacts. */
|
|
2096
|
+
cwd?: string;
|
|
2097
|
+
currentAgent?: string;
|
|
2098
|
+
/** Human-readable display name for the current child session, when derived at launch. */
|
|
2099
|
+
sessionName?: string;
|
|
2100
|
+
currentIndex?: number;
|
|
2101
|
+
/** Short caller-facing task/goal shown in fleet surfaces when available. */
|
|
2102
|
+
description?: string;
|
|
2103
|
+
currentActivityState?: ActivityState;
|
|
2104
|
+
lastActivityAt?: number;
|
|
2105
|
+
currentTool?: string;
|
|
2106
|
+
currentToolStartedAt?: number;
|
|
2107
|
+
currentPath?: string;
|
|
2108
|
+
turnCount?: number;
|
|
2109
|
+
tokens?: number;
|
|
2110
|
+
inputTokens?: number;
|
|
2111
|
+
outputTokens?: number;
|
|
2112
|
+
window?: number;
|
|
2113
|
+
windowPeak?: number;
|
|
2114
|
+
model?: string;
|
|
2115
|
+
thinking?: string;
|
|
2116
|
+
toolCount?: number;
|
|
2117
|
+
/** Independently tracked children for foreground parallel work and fleet inspection. */
|
|
2118
|
+
activeChildren?: Map<number, ForegroundChildControl>;
|
|
2119
|
+
/** Live Prompt Audit redo callback. It is current-session memory only. */
|
|
2120
|
+
promptAuditRedo?: (index: number, guidance: string) => Promise<{ text: string; isError?: boolean }>;
|
|
2121
|
+
/** Memory-only source run for Prompt Audit redo. */
|
|
2122
|
+
sourceRunId?: string;
|
|
2123
|
+
/** Memory-only replacement run started by Prompt Audit redo. */
|
|
2124
|
+
supersededByRunId?: string;
|
|
2125
|
+
/** Scheduling owners that may still launch another child. Removal is safe only at zero. */
|
|
2126
|
+
schedulingOwners?: number;
|
|
2127
|
+
nestedRoute?: NestedRouteInfo;
|
|
2128
|
+
nestedChildren?: NestedRunSummary[];
|
|
2129
|
+
interrupt?: () => boolean;
|
|
2130
|
+
detach?: () => boolean;
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2133
|
+
export interface WaitSubscriptionRecord {
|
|
2134
|
+
version: 1;
|
|
2135
|
+
token: string;
|
|
2136
|
+
sessionId: string;
|
|
2137
|
+
targetKind: "async" | "foreground";
|
|
2138
|
+
runId: string;
|
|
2139
|
+
requestedId: string;
|
|
2140
|
+
createdAt: number;
|
|
2141
|
+
expiresAt: number;
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
export interface ActiveAsyncCapacitySnapshot {
|
|
2145
|
+
used: number;
|
|
2146
|
+
/** Zero means the opt-in cap is disabled. */
|
|
2147
|
+
limit: number;
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
export interface SubagentState {
|
|
2151
|
+
baseCwd: string;
|
|
2152
|
+
currentSessionId: string | null;
|
|
2153
|
+
/** Session for which active status projections were restored successfully. */
|
|
2154
|
+
statusProjectionSessionId?: string | null;
|
|
2155
|
+
/** Reload-stable identity for this parent Pi process/window. */
|
|
2156
|
+
completionOwnerId?: string;
|
|
2157
|
+
/** Runtime-owned artifact resolution inputs used by Fleet transcript targeting. */
|
|
2158
|
+
artifactDirPreference?: ArtifactDirPreference;
|
|
2159
|
+
/** Runtime authority snapshot used by optional inspector controls. */
|
|
2160
|
+
authorityPolicy?: AuthorityPolicyConfig;
|
|
2161
|
+
/** Runtime mission-store snapshot used by optional inspector context. */
|
|
2162
|
+
missionStoreConfig?: MissionStoreConfig;
|
|
2163
|
+
parentSessionFile?: string | null;
|
|
2164
|
+
/** Extension-owned roots trusted for child session transcript reads. */
|
|
2165
|
+
trustedSessionRoots?: string[];
|
|
2166
|
+
/** Pi sessions base that caps exact runtime-recorded session file trust. */
|
|
2167
|
+
trustedSessionFileRoot?: string;
|
|
2168
|
+
/** Live async session roots created by this parent executor, keyed by run id. */
|
|
2169
|
+
liveAsyncSessionRoots?: Map<string, string>;
|
|
2170
|
+
/** Last valid parent session model observed for this session; used when continuation contexts omit ctx.model. */
|
|
2171
|
+
lastParentModel?: { provider: string; id: string };
|
|
2172
|
+
subagentInProgress?: boolean;
|
|
2173
|
+
subagentSpawns?: {
|
|
2174
|
+
sessionId: string | null;
|
|
2175
|
+
count: number;
|
|
2176
|
+
configuredLimit?: number | null;
|
|
2177
|
+
granted?: number;
|
|
2178
|
+
grantHistory?: SpawnBudgetGrant[];
|
|
2179
|
+
};
|
|
2180
|
+
/** Current-session top-level async capacity projection. */
|
|
2181
|
+
activeAsyncCapacity?: ActiveAsyncCapacitySnapshot;
|
|
2182
|
+
/** Herdr project panes opened by this Pi session, keyed by project root. */
|
|
2183
|
+
herdrProjectPanes?: Map<string, HerdrProjectPaneSnapshot>;
|
|
2184
|
+
asyncJobs: Map<string, AsyncJobState>;
|
|
2185
|
+
/** Current-session active and recent async runs for the native fleet inspector. */
|
|
2186
|
+
fleetJobs?: Map<string, AsyncJobState>;
|
|
2187
|
+
/** Suppress dynamic status widgets while the fleet overlay owns the viewport. */
|
|
2188
|
+
fleetInspectorOpen?: boolean;
|
|
2189
|
+
/** Temporarily suppress dynamic widgets while Pi compacts the session. */
|
|
2190
|
+
widgetsSuspended?: boolean;
|
|
2191
|
+
foregroundRuns?: Map<string, ForegroundResumeRun>;
|
|
2192
|
+
foregroundControls: Map<string, ForegroundRunControl>;
|
|
2193
|
+
lastForegroundControlId: string | null;
|
|
2194
|
+
cleanupTimers: Map<string, ReturnType<typeof setTimeout>>;
|
|
2195
|
+
lastUiContext: ExtensionContext | null;
|
|
2196
|
+
poller: NodeJS.Timeout | null;
|
|
2197
|
+
completionSeen: Map<string, number>;
|
|
2198
|
+
/** Terminal result payloads observed by the result watcher, keyed by run id and pruned by the completion TTL. */
|
|
2199
|
+
completedResults?: Map<string, { seenAt: number; completion: WaitCompletion }>;
|
|
2200
|
+
watcher: FSWatcher | null;
|
|
2201
|
+
watcherRestartTimer: ReturnType<typeof setTimeout> | null;
|
|
2202
|
+
resultFileCoalescer: {
|
|
2203
|
+
schedule(file: string, delayMs?: number): boolean;
|
|
2204
|
+
clear(): void;
|
|
2205
|
+
};
|
|
2206
|
+
/** Current-session durable non-blocking wait registrations. */
|
|
2207
|
+
waitSubscriptions?: Map<string, WaitSubscriptionRecord>;
|
|
2208
|
+
/** Live in-process workflow controllers. Durable status remains on disk after settlement. */
|
|
2209
|
+
workflowControllers?: Map<string, AbortController>;
|
|
2210
|
+
/** Live in-process workflow child stoppers keyed by parent workflow run id. */
|
|
2211
|
+
workflowChildStops?: Map<string, (childId: string, message?: string) => boolean>;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
export interface HerdrProjectPaneSnapshot {
|
|
2215
|
+
projectRoot: string;
|
|
2216
|
+
bindingPath: string;
|
|
2217
|
+
paneId: string;
|
|
2218
|
+
openedAt: string;
|
|
2219
|
+
lastFocusedAt?: string;
|
|
2220
|
+
state: "open" | "stale";
|
|
2221
|
+
agentStatus: string;
|
|
2222
|
+
ownership: "verified" | "unknown" | "mismatch";
|
|
2223
|
+
safeToClose: boolean;
|
|
2224
|
+
refreshedAt: number;
|
|
2225
|
+
summary?: string;
|
|
2226
|
+
tabId?: string;
|
|
2227
|
+
workspaceId?: string;
|
|
2228
|
+
terminalTitle?: string;
|
|
2229
|
+
staleReason?: string;
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
// ============================================================================
|
|
2233
|
+
// Display
|
|
2234
|
+
// ============================================================================
|
|
2235
|
+
|
|
2236
|
+
export type DisplayItem =
|
|
2237
|
+
| { type: "text"; text: string }
|
|
2238
|
+
| { type: "tool"; name: string; args: Record<string, unknown> };
|
|
2239
|
+
|
|
2240
|
+
// ============================================================================
|
|
2241
|
+
// Error Handling
|
|
2242
|
+
// ============================================================================
|
|
2243
|
+
|
|
2244
|
+
export interface ErrorInfo {
|
|
2245
|
+
hasError: boolean;
|
|
2246
|
+
exitCode?: number;
|
|
2247
|
+
errorType?: string;
|
|
2248
|
+
details?: string;
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
export interface IntercomEventBus {
|
|
2252
|
+
on(channel: string, handler: (data: unknown) => void): () => void;
|
|
2253
|
+
emit(channel: string, data: unknown): void;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
export const INTERCOM_DETACH_REQUEST_EVENT = "pi-intercom:detach-request";
|
|
2257
|
+
export const INTERCOM_DETACH_RESPONSE_EVENT = "pi-intercom:detach-response";
|
|
2258
|
+
export const SUBAGENT_ASYNC_STARTED_EVENT = "subagent:async-started";
|
|
2259
|
+
export const SUBAGENT_ASYNC_COMPLETE_EVENT = "subagent:async-complete";
|
|
2260
|
+
export const SUBAGENT_PROCESS_TERMINAL_EVENT = "subagent:process-terminal";
|
|
2261
|
+
export const SUBAGENT_FOREGROUND_COMPLETE_EVENT = "subagent:foreground-complete";
|
|
2262
|
+
export const SUBAGENT_CONTROL_EVENT = "subagent:control-event";
|
|
2263
|
+
export const SUBAGENT_CONTROL_INTERCOM_EVENT = "subagent:control-intercom";
|
|
2264
|
+
export const SUBAGENT_STEERING_NOTICE_EVENT = "subagent:steering-notice";
|
|
2265
|
+
export const SUBAGENT_CHILD_STATUS_EVENT = "subagent:child-status";
|
|
2266
|
+
export const SUBAGENT_RESULT_INTERCOM_EVENT = "subagent:result-intercom";
|
|
2267
|
+
export const SUBAGENT_RESULT_INTERCOM_DELIVERY_EVENT = "subagent:result-intercom-delivery";
|
|
2268
|
+
|
|
2269
|
+
export interface SubagentChildStatusEvent {
|
|
2270
|
+
type: "subagent.child-status";
|
|
2271
|
+
version: 1;
|
|
2272
|
+
runId: string;
|
|
2273
|
+
childId: string;
|
|
2274
|
+
status: "stopping" | "stopped";
|
|
2275
|
+
ts: number;
|
|
2276
|
+
reason?: string;
|
|
2277
|
+
source?: "rpc" | "async";
|
|
2278
|
+
asyncDir?: string;
|
|
2279
|
+
stepIndex?: number;
|
|
2280
|
+
agent?: string;
|
|
2281
|
+
childRunId?: string;
|
|
2282
|
+
workflowKey?: string;
|
|
2283
|
+
phase?: string;
|
|
2284
|
+
label?: string;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
// ============================================================================
|
|
2288
|
+
// Execution Options
|
|
2289
|
+
// ============================================================================
|
|
2290
|
+
|
|
2291
|
+
export interface RunSyncOptions {
|
|
2292
|
+
/** Exact discovery provenance for an unknown-agent error; omission uses defensive fallback discovery. */
|
|
2293
|
+
unknownAgentDiagnosticContext?: import("../agents/agents.ts").UnknownAgentDiagnosticContext;
|
|
2294
|
+
/** Opt-in global permission rules; missing tools remain allowed. */
|
|
2295
|
+
permissions?: import("../runs/shared/permissions.ts").PermissionConfig;
|
|
2296
|
+
/** Session id of the direct parent session for permission-system ask forwarding. */
|
|
2297
|
+
parentSessionId?: string;
|
|
2298
|
+
/** Private prompt-runtime steering transport for workflow-owned foreground children. */
|
|
2299
|
+
steerInboxDir?: string;
|
|
2300
|
+
steerCapabilityPath?: string;
|
|
2301
|
+
steerAckDir?: string;
|
|
2302
|
+
/** Resolved launch context for this child. */
|
|
2303
|
+
context?: "fresh" | "fork";
|
|
2304
|
+
cwd?: string;
|
|
2305
|
+
/** Original cwd input retained for launch diagnostics. */
|
|
2306
|
+
requestedCwd?: string;
|
|
2307
|
+
signal?: AbortSignal;
|
|
2308
|
+
interruptSignal?: AbortSignal;
|
|
2309
|
+
timeoutMs?: number;
|
|
2310
|
+
deadlineAt?: number;
|
|
2311
|
+
/** Per-call per-tool timeout (ms), resolved with the agent/config/environment ladder at execution. */
|
|
2312
|
+
toolTimeoutMs?: number;
|
|
2313
|
+
/** Raw global config.toolTimeoutMs, used by the per-child resolver. */
|
|
2314
|
+
configToolTimeoutMs?: number;
|
|
2315
|
+
usageBudget?: UsageBudgetConfig;
|
|
2316
|
+
toolBudget?: ResolvedToolBudget;
|
|
2317
|
+
allowZeroToolBudget?: boolean;
|
|
2318
|
+
allowIntercomDetach?: boolean;
|
|
2319
|
+
intercomEvents?: IntercomEventBus;
|
|
2320
|
+
onUpdate?: (r: import("@earendil-works/pi-agent-core").AgentToolResult<Details>) => void;
|
|
2321
|
+
/** Internal structured-delegation transport optimization: skip unchanged live snapshots. */
|
|
2322
|
+
suppressUnchangedDelegationUpdates?: boolean;
|
|
2323
|
+
onControlEvent?: (event: ControlEvent) => void;
|
|
2324
|
+
/** Exposes a non-terminating detach callback while the child is active. */
|
|
2325
|
+
onDetachReady?: (detach: (reason?: string) => boolean) => void;
|
|
2326
|
+
/** Internal foreground receipt proposal; returns true only when the outer waiter accepted it. */
|
|
2327
|
+
onDetachReceipt?: (result: SingleResult) => boolean;
|
|
2328
|
+
/** Authoritative terminal result, emitted only after the full detached run finalizes. */
|
|
2329
|
+
onDetachedExit?: (result: SingleResult) => void;
|
|
2330
|
+
controlConfig?: ResolvedControlConfig;
|
|
2331
|
+
intercomSessionName?: string;
|
|
2332
|
+
orchestratorIntercomTarget?: string;
|
|
2333
|
+
maxOutput?: MaxOutputConfig;
|
|
2334
|
+
artifactsDir?: string;
|
|
2335
|
+
artifactConfig?: ArtifactConfig;
|
|
2336
|
+
runId: string;
|
|
2337
|
+
index?: number;
|
|
2338
|
+
sessionDir?: string;
|
|
2339
|
+
sessionFile?: string;
|
|
2340
|
+
share?: boolean;
|
|
2341
|
+
outputPath?: string;
|
|
2342
|
+
outputClaimPath?: string;
|
|
2343
|
+
outputMode?: OutputMode;
|
|
2344
|
+
maxSubagentDepth?: number;
|
|
2345
|
+
/** Effective parent wait-tool setting propagated to the child runtime. */
|
|
2346
|
+
waitToolEnabled?: boolean;
|
|
2347
|
+
/** Effective parent default wait window propagated to the child runtime. */
|
|
2348
|
+
waitToolDefaultTimeoutMs?: number;
|
|
2349
|
+
capabilityCeiling?: ResolvedSubagentCapabilityCeiling;
|
|
2350
|
+
runFanoutBudget?: RunFanoutBudgetDescriptor;
|
|
2351
|
+
nestedRoute?: NestedRouteInfo;
|
|
2352
|
+
/** Override the agent's default model (format: "provider/id" or just "id") */
|
|
2353
|
+
modelOverride?: string;
|
|
2354
|
+
/** Opt into priority service tier for supported native OpenAI-Codex launches. */
|
|
2355
|
+
fast?: boolean;
|
|
2356
|
+
/** The override came from the running parent session, not configuration. */
|
|
2357
|
+
modelOverrideFromParent?: boolean;
|
|
2358
|
+
/** How the launch model was selected: explicit per-call, configured agent primary, or inherited parent. */
|
|
2359
|
+
modelOrigin?: "explicit" | "inherited" | "configured";
|
|
2360
|
+
/** LLM intent arbiter for the completion mutation guard (rescues read-only review runs). */
|
|
2361
|
+
llmIntentArbiter?: import("../runs/shared/llm-intent-arbiter.ts").TaskMutationArbiter;
|
|
2362
|
+
/** Override the agent's default thinking level for this run */
|
|
2363
|
+
thinkingOverride?: AgentConfig["thinking"];
|
|
2364
|
+
thinkingCeiling?: ThinkingLevel;
|
|
2365
|
+
extensionBindings?: ExtensionBindings;
|
|
2366
|
+
/** Package-internal one-use authorization for one foreground workflow child. */
|
|
2367
|
+
workflowChildPermitLaunch?: WorkflowChildPermitContext;
|
|
2368
|
+
/** Registry models available for heuristic bare-model resolution */
|
|
2369
|
+
availableModels?: Array<{ provider: string; id: string; fullId: string; contextWindow?: number }>;
|
|
2370
|
+
/** Current parent-session provider to prefer for ambiguous bare model ids */
|
|
2371
|
+
preferredModelProvider?: string;
|
|
2372
|
+
/** Parent Pi event host used to snapshot runtime-registered MCP servers before child launch. */
|
|
2373
|
+
runtimeSnapshotHost?: import("../runs/shared/mcp-direct-tool-allowlist.ts").McpRuntimeSnapshotHost;
|
|
2374
|
+
/** Optional subagent model-scope enforcement for fallback candidates */
|
|
2375
|
+
modelScope?: ModelScopeRule | ModelScopeRule[];
|
|
2376
|
+
/** Skills to make available (overrides agent default if provided) */
|
|
2377
|
+
skills?: string[];
|
|
2378
|
+
structuredOutput?: {
|
|
2379
|
+
schema: JsonSchemaObject;
|
|
2380
|
+
schemaPath: string;
|
|
2381
|
+
outputPath: string;
|
|
2382
|
+
acceptanceReportPath?: string;
|
|
2383
|
+
};
|
|
2384
|
+
agentContract?: AgentContract;
|
|
2385
|
+
acceptance?: AcceptanceInput;
|
|
2386
|
+
acceptanceContext?: {
|
|
2387
|
+
mode?: SubagentRunMode;
|
|
2388
|
+
async?: boolean;
|
|
2389
|
+
dynamic?: boolean;
|
|
2390
|
+
dynamicGroup?: boolean;
|
|
2391
|
+
};
|
|
2392
|
+
/** Private live callback for the exact child prompt after runtime acceptance injection. */
|
|
2393
|
+
onEffectivePrompt?: (prompt: string) => void;
|
|
2394
|
+
/** Internal lifecycle hook for the observer shared across retries of one logical child. */
|
|
2395
|
+
onOrcaProgressTabCreated?: (tab: import("../runs/shared/orca-progress-tabs.ts").OrcaProgressTab) => void;
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
export type IntercomBridgeMode = "off" | "fork-only" | "always";
|
|
2399
|
+
|
|
2400
|
+
export interface IntercomBridgeConfig {
|
|
2401
|
+
mode?: IntercomBridgeMode;
|
|
2402
|
+
instructionFile?: string;
|
|
2403
|
+
/** Deliver grouped completion messages through an external acknowledged intercom listener. */
|
|
2404
|
+
resultDelivery?: boolean;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
interface TopLevelParallelConfig {
|
|
2408
|
+
maxTasks?: number;
|
|
2409
|
+
concurrency?: number;
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
interface ExtensionChainConfig {
|
|
2413
|
+
dynamicFanout?: {
|
|
2414
|
+
maxItems?: number;
|
|
2415
|
+
};
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
export interface ProactiveSkillSubagentsConfig {
|
|
2419
|
+
enabled?: boolean;
|
|
2420
|
+
minReferences?: number;
|
|
2421
|
+
maxRecommendations?: number;
|
|
2422
|
+
preferredAgent?: string;
|
|
2423
|
+
}
|
|
2424
|
+
|
|
2425
|
+
export type ToolDescriptionMode = "full" | "compact" | "custom";
|
|
2426
|
+
export type InlineToolDisplay = "rich" | "summary";
|
|
2427
|
+
|
|
2428
|
+
export interface ScheduledRunsConfig {
|
|
2429
|
+
enabled?: boolean;
|
|
2430
|
+
maxPending?: number;
|
|
2431
|
+
/** Absolute or `~/` root for per-project durable schedules. */
|
|
2432
|
+
storeRoot?: string;
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
export interface ModelExclusionsConfig {
|
|
2436
|
+
/** Default duration in milliseconds. A lower configured value also shortens active cached exclusions. */
|
|
2437
|
+
defaultTtlMs?: number;
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
export type FleetViewPlacement = "aboveEditor" | "belowEditor";
|
|
2441
|
+
|
|
2442
|
+
export const FLEET_KEYBINDING_ACTIONS = [
|
|
2443
|
+
"close",
|
|
2444
|
+
"scrollUp",
|
|
2445
|
+
"scrollDown",
|
|
2446
|
+
"selectUp",
|
|
2447
|
+
"selectDown",
|
|
2448
|
+
"selectFirst",
|
|
2449
|
+
"selectLast",
|
|
2450
|
+
"pageUp",
|
|
2451
|
+
"pageDown",
|
|
2452
|
+
"refresh",
|
|
2453
|
+
"steer",
|
|
2454
|
+
"inspect",
|
|
2455
|
+
"stop",
|
|
2456
|
+
"toggleTools",
|
|
2457
|
+
] as const;
|
|
2458
|
+
|
|
2459
|
+
export type FleetKeybindingAction = typeof FLEET_KEYBINDING_ACTIONS[number];
|
|
2460
|
+
export type FleetKeybindingsConfig = Partial<Record<FleetKeybindingAction, string[]>>;
|
|
2461
|
+
|
|
2462
|
+
export interface OrcaProgressTabsConfig {
|
|
2463
|
+
/** Create one Orca observer tab per top-level subagent call. Experimental and opt-in. */
|
|
2464
|
+
enabled?: boolean;
|
|
2465
|
+
}
|
|
2466
|
+
|
|
2467
|
+
export interface MainWindowRendererConfig {
|
|
2468
|
+
/** Unit of horizontal space in main chat subagent call/result rows. Omit to preserve current spacing. Set 0 for no extra padding. */
|
|
2469
|
+
horizontalSpacing?: number;
|
|
2470
|
+
/** Maximum collapsed rich-result rows. Expanded output is not capped. */
|
|
2471
|
+
compactResultMaxLines?: number;
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
export interface ForkContextConfig {
|
|
2475
|
+
/** Keep the complete fork by default, or summarize large text-only tool results before launch. */
|
|
2476
|
+
mode?: "full" | "pruned";
|
|
2477
|
+
/** Required pruning model when mode is "pruned". */
|
|
2478
|
+
model?: string;
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2481
|
+
export interface ActiveAsyncCapacityConfig {
|
|
2482
|
+
/** Reclaim failed runner slots after this age when process proof is unknown; false keeps strict retention. */
|
|
2483
|
+
abandonedSlotReleaseAfterMs?: number | false;
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2486
|
+
export interface ExtensionConfig {
|
|
2487
|
+
asyncByDefault?: boolean;
|
|
2488
|
+
/** Set the context for launches that omit an explicit context. */
|
|
2489
|
+
defaultSubagentContext?: "fresh" | "fork";
|
|
2490
|
+
/** Configure how every resolved fork session is prepared before child spawn. */
|
|
2491
|
+
forkContext?: ForkContextConfig;
|
|
2492
|
+
/** Optional shortcut that detaches the active foreground single-subagent run. */
|
|
2493
|
+
foregroundDetachShortcut?: string;
|
|
2494
|
+
/** Show the Claude Code-style navigable fleet. Defaults to true. */
|
|
2495
|
+
fleetView?: boolean;
|
|
2496
|
+
/** Place the persistent FleetView above or below the editor. Defaults to belowEditor. */
|
|
2497
|
+
fleetViewPlacement?: FleetViewPlacement;
|
|
2498
|
+
/** Local keybindings for the full Fleet inspector. */
|
|
2499
|
+
fleetKeybindings?: FleetKeybindingsConfig;
|
|
2500
|
+
/** Show the under-editor async runs widget. Defaults to true, including when FleetView is enabled. */
|
|
2501
|
+
asyncWidget?: boolean;
|
|
2502
|
+
/** Configure the process-wide TTL policy for persisted model exclusions. */
|
|
2503
|
+
modelExclusions?: ModelExclusionsConfig;
|
|
2504
|
+
/** Tool description variant registered for the parent-facing subagent tool. Defaults to split metadata. */
|
|
2505
|
+
toolDescriptionMode?: ToolDescriptionMode;
|
|
2506
|
+
/** Inline chat rendering for the subagent tool. Defaults to rich. */
|
|
2507
|
+
inlineToolDisplay?: InlineToolDisplay;
|
|
2508
|
+
/** Density controls for the main chat subagent call/result renderer. */
|
|
2509
|
+
mainWindowRenderer?: MainWindowRendererConfig;
|
|
2510
|
+
/** Experimental observer: mirror each native subagent's progress into a new Orca tab. */
|
|
2511
|
+
orcaProgressTabs?: OrcaProgressTabsConfig;
|
|
2512
|
+
forceTopLevelAsync?: boolean;
|
|
2513
|
+
waitTool?: WaitToolConfig;
|
|
2514
|
+
defaultSessionDir?: string;
|
|
2515
|
+
singleRunOutputBaseDir?: string;
|
|
2516
|
+
maxSubagentDepth?: number;
|
|
2517
|
+
/** Optional cumulative session cap. Unset or 0 means unlimited. */
|
|
2518
|
+
maxSubagentSpawnsPerSession?: number;
|
|
2519
|
+
/** Cumulative logical-child cap for one top-level run tree. Defaults to 64. */
|
|
2520
|
+
maxSubagentSpawnsPerRun?: number;
|
|
2521
|
+
/** Optional active top-level async run cap per parent session. Unset or 0 means unlimited. */
|
|
2522
|
+
maxActiveAsyncRunsPerSession?: number;
|
|
2523
|
+
/** Active-capacity cleanup policy. */
|
|
2524
|
+
capacity?: ActiveAsyncCapacityConfig;
|
|
2525
|
+
/** Global cap on simultaneously-running subagent tasks within a single run. Defaults to 20. */
|
|
2526
|
+
globalConcurrencyLimit?: number;
|
|
2527
|
+
/**
|
|
2528
|
+
* Global default runtime deadline in milliseconds. It replaces the built-in
|
|
2529
|
+
* 30-minute backstop for single, parallel, and chain launches (foreground, plus
|
|
2530
|
+
* plain single-agent async runs) when neither the call (`timeoutMs`/`maxRuntimeMs`)
|
|
2531
|
+
* nor the selected agent provides a timeout. Explicit call values and agent
|
|
2532
|
+
* frontmatter defaults still win. Composite async runs (chain/parallel/workflow)
|
|
2533
|
+
* stay unbounded at the top level by design — their children are bounded individually.
|
|
2534
|
+
* Must be a positive integer; invalid values are ignored.
|
|
2535
|
+
*/
|
|
2536
|
+
timeoutMs?: number;
|
|
2537
|
+
/**
|
|
2538
|
+
* Optional hard per-tool-call timeout in milliseconds. Bounds a single
|
|
2539
|
+
* subagent tool call inside the child; the run-level timeout remains
|
|
2540
|
+
* authoritative. Known-fast built-in tools have a five-minute default when
|
|
2541
|
+
* this is undefined. Precedence: call param > agent frontmatter > this config >
|
|
2542
|
+
* PI_SUBAGENT_TOOL_TIMEOUT_MS. Must be a positive integer; invalid values
|
|
2543
|
+
* are rejected with an error.
|
|
2544
|
+
*/
|
|
2545
|
+
toolTimeoutMs?: number;
|
|
2546
|
+
control?: ControlConfig;
|
|
2547
|
+
completionBatch?: CompletionBatchConfig;
|
|
2548
|
+
toolBudget?: ToolBudgetConfig;
|
|
2549
|
+
/** Opt-in native tool permissions. Bash remains outside this policy. */
|
|
2550
|
+
permissions?: import("../runs/shared/permissions.ts").PermissionConfig;
|
|
2551
|
+
usageBudget?: UsageBudgetConfig;
|
|
2552
|
+
parallel?: TopLevelParallelConfig;
|
|
2553
|
+
chain?: ExtensionChainConfig;
|
|
2554
|
+
worktreeSetupHook?: string;
|
|
2555
|
+
worktreeSetupHookTimeoutMs?: number;
|
|
2556
|
+
worktreeBaseDir?: string;
|
|
2557
|
+
/** Where to store subagent artifact files. Defaults to "session" (the pi session directory, or OS temp when unavailable). Set to "project" for cwd/.pi/subagents. */
|
|
2558
|
+
artifactDir?: ArtifactDirPreference;
|
|
2559
|
+
/** Artifact cleanup retention. Set cleanupDays to 0 to disable cleanup. */
|
|
2560
|
+
artifactConfig?: Pick<ArtifactConfig, "cleanupDays">;
|
|
2561
|
+
intercomBridge?: IntercomBridgeConfig;
|
|
2562
|
+
/** Control how slow result-index scans are logged. Defaults to \"activity\".
|
|
2563
|
+
* - \"all\": log every slow scan, including scans that find nothing.
|
|
2564
|
+
* - \"activity\": log only slow scans that found or scheduled work. Silences
|
|
2565
|
+
* the periodic healthy rescan that inspects zero files while no async runs
|
|
2566
|
+
* are pending, which otherwise spams the session transcript.
|
|
2567
|
+
* - \"off\": never log slow result-index scans. */
|
|
2568
|
+
resultScanLogging?: "all" | "activity" | "off";
|
|
2569
|
+
proactiveSkillSubagents?: ProactiveSkillSubagentsConfig | false;
|
|
2570
|
+
scheduledRuns?: ScheduledRunsConfig;
|
|
2571
|
+
/** Durable mission behavior. Missions are automatic by default; set enabled:false to disable auto-create. Explicit mission actions/fields still work. */
|
|
2572
|
+
missions?: MissionStoreConfig;
|
|
2573
|
+
/** Small fixed authority policy for the supported operational actions. */
|
|
2574
|
+
authorityPolicy?: AuthorityPolicyConfig;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
// ============================================================================
|
|
2578
|
+
// Constants
|
|
2579
|
+
// ============================================================================
|
|
2580
|
+
|
|
2581
|
+
export const DEFAULT_MAX_OUTPUT: Required<MaxOutputConfig> = {
|
|
2582
|
+
bytes: 200 * 1024,
|
|
2583
|
+
lines: 5000,
|
|
2584
|
+
};
|
|
2585
|
+
|
|
2586
|
+
export const DEFAULT_ARTIFACT_CONFIG: ArtifactConfig = {
|
|
2587
|
+
enabled: true,
|
|
2588
|
+
dir: "session",
|
|
2589
|
+
includeInput: true,
|
|
2590
|
+
includeOutput: true,
|
|
2591
|
+
includeJsonl: false,
|
|
2592
|
+
includeTranscript: true,
|
|
2593
|
+
includeMetadata: true,
|
|
2594
|
+
cleanupDays: 7,
|
|
2595
|
+
};
|
|
2596
|
+
|
|
2597
|
+
function sanitizeTempScopeSegment(value: string): string {
|
|
2598
|
+
const sanitized = value
|
|
2599
|
+
.trim()
|
|
2600
|
+
.replace(/[^A-Za-z0-9._-]+/g, "-")
|
|
2601
|
+
.replace(/^-+|-+$/g, "");
|
|
2602
|
+
return sanitized || "unknown";
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
export function resolveTempScopeId(options?: {
|
|
2606
|
+
env?: NodeJS.ProcessEnv;
|
|
2607
|
+
getuid?: (() => number) | undefined;
|
|
2608
|
+
userInfo?: (() => { username?: string | null }) | undefined;
|
|
2609
|
+
homedir?: (() => string) | undefined;
|
|
2610
|
+
}): string {
|
|
2611
|
+
const env = options?.env ?? process.env;
|
|
2612
|
+
const getuid = options && Object.hasOwn(options, "getuid")
|
|
2613
|
+
? options.getuid
|
|
2614
|
+
: process.getuid?.bind(process);
|
|
2615
|
+
if (typeof getuid === "function") {
|
|
2616
|
+
return `uid-${getuid()}`;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
for (const key of ["USERNAME", "USER", "LOGNAME"] as const) {
|
|
2620
|
+
const value = env[key];
|
|
2621
|
+
if (value) return `user-${sanitizeTempScopeSegment(value)}`;
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
const userInfo = options && Object.hasOwn(options, "userInfo")
|
|
2625
|
+
? options.userInfo
|
|
2626
|
+
: os.userInfo;
|
|
2627
|
+
try {
|
|
2628
|
+
const username = userInfo?.().username;
|
|
2629
|
+
if (username) return `user-${sanitizeTempScopeSegment(username)}`;
|
|
2630
|
+
} catch {
|
|
2631
|
+
// Fall through to home-directory-based scoping.
|
|
2632
|
+
}
|
|
2633
|
+
|
|
2634
|
+
const homedir = env.USERPROFILE ?? env.HOME;
|
|
2635
|
+
if (homedir) return `home-${sanitizeTempScopeSegment(homedir)}`;
|
|
2636
|
+
|
|
2637
|
+
const resolveHomedir = options && Object.hasOwn(options, "homedir")
|
|
2638
|
+
? options.homedir
|
|
2639
|
+
: os.homedir;
|
|
2640
|
+
try {
|
|
2641
|
+
const fallbackHomedir = resolveHomedir?.();
|
|
2642
|
+
if (fallbackHomedir) return `home-${sanitizeTempScopeSegment(fallbackHomedir)}`;
|
|
2643
|
+
} catch {
|
|
2644
|
+
// Fall through to the last-resort shared scope.
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2647
|
+
return "shared";
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2650
|
+
const MAX_PARALLEL = 8;
|
|
2651
|
+
export const MAX_CONCURRENCY = 4;
|
|
2652
|
+
const configuredTempRoot = process.env.PI_SUBAGENTS_TEMP_ROOT?.trim();
|
|
2653
|
+
export const TEMP_ROOT_DIR = configuredTempRoot
|
|
2654
|
+
? path.resolve(configuredTempRoot)
|
|
2655
|
+
: path.join(os.tmpdir(), `pi-subagents-${resolveTempScopeId()}`);
|
|
2656
|
+
export const RESULTS_DIR = path.join(TEMP_ROOT_DIR, "async-subagent-results");
|
|
2657
|
+
export const ASYNC_DIR = path.join(TEMP_ROOT_DIR, "async-subagent-runs");
|
|
2658
|
+
export const CHAIN_RUNS_DIR = path.join(TEMP_ROOT_DIR, "chain-runs");
|
|
2659
|
+
export const TEMP_ARTIFACTS_DIR = path.join(TEMP_ROOT_DIR, "artifacts");
|
|
2660
|
+
|
|
2661
|
+
export const DIRS = {
|
|
2662
|
+
results: RESULTS_DIR,
|
|
2663
|
+
async: ASYNC_DIR,
|
|
2664
|
+
chain: CHAIN_RUNS_DIR,
|
|
2665
|
+
artifacts: TEMP_ARTIFACTS_DIR,
|
|
2666
|
+
};
|
|
2667
|
+
export const WIDGET_KEY = "subagent-async";
|
|
2668
|
+
export const SLASH_RESULT_TYPE = "subagent-slash-result";
|
|
2669
|
+
export const SLASH_TEXT_RESULT_TYPE = "subagent-slash-text-result";
|
|
2670
|
+
export const SLASH_SUBAGENT_REQUEST_EVENT = "subagent:slash:request";
|
|
2671
|
+
export const SLASH_SUBAGENT_STARTED_EVENT = "subagent:slash:started";
|
|
2672
|
+
export const SLASH_SUBAGENT_RESPONSE_EVENT = "subagent:slash:response";
|
|
2673
|
+
export const SLASH_SUBAGENT_UPDATE_EVENT = "subagent:slash:update";
|
|
2674
|
+
export const SLASH_SUBAGENT_CANCEL_EVENT = "subagent:slash:cancel";
|
|
2675
|
+
export const POLL_INTERVAL_MS = 250;
|
|
2676
|
+
export const WIDGET_ANIMATION_INTERVAL_MS = 1000;
|
|
2677
|
+
export const MAX_WIDGET_JOBS = 4;
|
|
2678
|
+
export const DEFAULT_SUBAGENT_MAX_DEPTH = 2;
|
|
2679
|
+
export const SUBAGENT_ACTIONS = ["list", "get", "models", "children.list", "guide", "validate", "create", "update", "delete", "eject", "disable", "enable", "reset", "mission.create", "mission.list", "mission.show", "mission.update", "mission.resolve-decision", "mission.attach-run", "mission.close", "worktree.discard", "worktree.cleanup", "lane.status", "lane.recordMerge", "lane.recordSupersession", "refine", "refine.show", "refine.rollback", "inspector.open", "inspector.status", "inspector.close", "project.open", "project.status", "project.close", "status", "debug.run", "grant-spawn-budget", "interrupt", "resume", "steer", "stop", "dismiss", "doctor", "watchdog.status", "watchdog.check", "watchdog.configure", "watchdog.recommend-model", "schedule.create", "schedule.list", "schedule.show", "schedule.history", "schedule.pause", "schedule.resume", "schedule.run", "schedule.run-due", "schedule.delete"] as const;
|
|
2680
|
+
|
|
2681
|
+
export const DEFAULT_FORK_PREAMBLE =
|
|
2682
|
+
"You are a delegated subagent running from a fork of the parent session. " +
|
|
2683
|
+
"Treat the inherited conversation as reference-only context, not a live thread to continue. " +
|
|
2684
|
+
"Do not continue or answer prior messages as if they are waiting for a reply. " +
|
|
2685
|
+
"Your sole job is to execute the task below and return a focused result for that task using your tools.";
|
|
2686
|
+
|
|
2687
|
+
function normalizeTopLevelParallelValue(value: unknown): number | undefined {
|
|
2688
|
+
const parsed = typeof value === "number" ? value : typeof value === "string" ? Number(value) : NaN;
|
|
2689
|
+
if (!Number.isInteger(parsed) || parsed < 1) return undefined;
|
|
2690
|
+
return parsed;
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2693
|
+
export function resolveTopLevelParallelMaxTasks(value: unknown): number {
|
|
2694
|
+
return normalizeTopLevelParallelValue(value) ?? MAX_PARALLEL;
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
export function resolveTopLevelParallelConcurrency(
|
|
2698
|
+
override: unknown,
|
|
2699
|
+
configValue: unknown,
|
|
2700
|
+
): number {
|
|
2701
|
+
return normalizeTopLevelParallelValue(override)
|
|
2702
|
+
?? normalizeTopLevelParallelValue(configValue)
|
|
2703
|
+
?? MAX_CONCURRENCY;
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
export function getAsyncConfigPath(suffix: string): string {
|
|
2707
|
+
return path.join(TEMP_ROOT_DIR, `async-cfg-${suffix}.json`);
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
export function wrapForkTask(task: string, preamble?: string | false): string {
|
|
2711
|
+
if (preamble === false) return task;
|
|
2712
|
+
const effectivePreamble = preamble ?? DEFAULT_FORK_PREAMBLE;
|
|
2713
|
+
const wrappedPrefix = `${effectivePreamble}\n\nTask:\n`;
|
|
2714
|
+
if (task.startsWith(wrappedPrefix)) return task;
|
|
2715
|
+
return `${wrappedPrefix}${task}`;
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
// ============================================================================
|
|
2719
|
+
// Recursion Depth Guard
|
|
2720
|
+
// ============================================================================
|
|
2721
|
+
|
|
2722
|
+
function normalizeNonNegativeInteger(value: unknown): number | undefined {
|
|
2723
|
+
const parsed = typeof value === "number" ? value : typeof value === "string" ? Number(value) : NaN;
|
|
2724
|
+
if (!Number.isInteger(parsed) || parsed < 0) return undefined;
|
|
2725
|
+
return parsed;
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
export function normalizeMaxSubagentDepth(value: unknown): number | undefined {
|
|
2729
|
+
return normalizeNonNegativeInteger(value);
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2732
|
+
export function resolveCurrentMaxSubagentDepth(configMaxDepth?: number): number {
|
|
2733
|
+
return normalizeMaxSubagentDepth(process.env.PI_SUBAGENT_MAX_DEPTH)
|
|
2734
|
+
?? normalizeMaxSubagentDepth(configMaxDepth)
|
|
2735
|
+
?? DEFAULT_SUBAGENT_MAX_DEPTH;
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2738
|
+
export function resolveChildMaxSubagentDepth(parentMaxDepth: number, agentMaxDepth?: number): number {
|
|
2739
|
+
const normalizedParent = normalizeMaxSubagentDepth(parentMaxDepth) ?? DEFAULT_SUBAGENT_MAX_DEPTH;
|
|
2740
|
+
const normalizedAgent = normalizeMaxSubagentDepth(agentMaxDepth);
|
|
2741
|
+
return normalizedAgent === undefined ? normalizedParent : Math.min(normalizedParent, normalizedAgent);
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
export function checkSubagentDepth(configMaxDepth?: number): { blocked: boolean; depth: number; maxDepth: number } {
|
|
2745
|
+
const depth = Number(process.env.PI_SUBAGENT_DEPTH ?? "0");
|
|
2746
|
+
const maxDepth = resolveCurrentMaxSubagentDepth(configMaxDepth);
|
|
2747
|
+
const blocked = Number.isFinite(depth) && depth >= maxDepth;
|
|
2748
|
+
return { blocked, depth, maxDepth };
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
export function getSubagentDepthEnv(maxDepth?: number): Record<string, string> {
|
|
2752
|
+
const parentDepth = Number(process.env.PI_SUBAGENT_DEPTH ?? "0");
|
|
2753
|
+
const nextDepth = Number.isFinite(parentDepth) ? parentDepth + 1 : 1;
|
|
2754
|
+
return {
|
|
2755
|
+
PI_SUBAGENT_DEPTH: String(nextDepth),
|
|
2756
|
+
PI_SUBAGENT_MAX_DEPTH: String(normalizeMaxSubagentDepth(maxDepth) ?? resolveCurrentMaxSubagentDepth()),
|
|
2757
|
+
};
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2760
|
+
export function normalizeMaxSubagentSpawnsPerSession(value: unknown): number | undefined {
|
|
2761
|
+
return normalizeNonNegativeInteger(value);
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
export function resolveMaxSubagentSpawnsPerSession(configMaxSpawns?: number): number | undefined {
|
|
2765
|
+
const envMaxSpawns = normalizeMaxSubagentSpawnsPerSession(process.env.PI_SUBAGENT_MAX_SPAWNS_PER_SESSION);
|
|
2766
|
+
if (envMaxSpawns !== undefined) return envMaxSpawns === 0 ? undefined : envMaxSpawns;
|
|
2767
|
+
const configuredMaxSpawns = normalizeMaxSubagentSpawnsPerSession(configMaxSpawns);
|
|
2768
|
+
return configuredMaxSpawns === 0 ? undefined : configuredMaxSpawns;
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
export const DEFAULT_MAX_SUBAGENT_SPAWNS_PER_RUN = 64;
|
|
2772
|
+
|
|
2773
|
+
export function normalizeMaxSubagentSpawnsPerRun(value: unknown): number | undefined {
|
|
2774
|
+
const normalized = normalizeNonNegativeInteger(value);
|
|
2775
|
+
return normalized !== undefined && normalized > 0 ? normalized : undefined;
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
export function resolveMaxSubagentSpawnsPerRun(configMaxSpawns?: number): number {
|
|
2779
|
+
return normalizeMaxSubagentSpawnsPerRun(process.env.PI_SUBAGENT_MAX_SPAWNS_PER_RUN)
|
|
2780
|
+
?? normalizeMaxSubagentSpawnsPerRun(configMaxSpawns)
|
|
2781
|
+
?? DEFAULT_MAX_SUBAGENT_SPAWNS_PER_RUN;
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2784
|
+
// ============================================================================
|
|
2785
|
+
// Utility Functions
|
|
2786
|
+
// ============================================================================
|
|
2787
|
+
|
|
2788
|
+
function formatBytes(bytes: number): string {
|
|
2789
|
+
if (bytes < 1024) return `${bytes}B`;
|
|
2790
|
+
if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)}KB`;
|
|
2791
|
+
return `${(bytes / (1024 * 1024)).toFixed(1)}MB`;
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
export function truncateOutput(
|
|
2795
|
+
output: string,
|
|
2796
|
+
config: Required<MaxOutputConfig>,
|
|
2797
|
+
artifactPath?: string,
|
|
2798
|
+
): TruncationResult {
|
|
2799
|
+
const lines = output.split("\n");
|
|
2800
|
+
const bytes = Buffer.byteLength(output, "utf-8");
|
|
2801
|
+
|
|
2802
|
+
if (bytes <= config.bytes && lines.length <= config.lines) {
|
|
2803
|
+
return { text: output, truncated: false };
|
|
2804
|
+
}
|
|
2805
|
+
|
|
2806
|
+
let truncatedLines = lines;
|
|
2807
|
+
if (lines.length > config.lines) {
|
|
2808
|
+
truncatedLines = lines.slice(0, config.lines);
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2811
|
+
let result = truncatedLines.join("\n");
|
|
2812
|
+
if (Buffer.byteLength(result, "utf-8") > config.bytes) {
|
|
2813
|
+
let low = 0;
|
|
2814
|
+
let high = result.length;
|
|
2815
|
+
while (low < high) {
|
|
2816
|
+
const mid = Math.floor((low + high + 1) / 2);
|
|
2817
|
+
if (Buffer.byteLength(result.slice(0, mid), "utf-8") <= config.bytes) {
|
|
2818
|
+
low = mid;
|
|
2819
|
+
} else {
|
|
2820
|
+
high = mid - 1;
|
|
2821
|
+
}
|
|
2822
|
+
}
|
|
2823
|
+
result = result.slice(0, low);
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
const keptLines = result.split("\n").length;
|
|
2827
|
+
const marker = `[TRUNCATED: showing first ${keptLines} of ${lines.length} lines, ${formatBytes(Buffer.byteLength(result))} of ${formatBytes(bytes)}${artifactPath ? ` - full output at ${artifactPath}` : ""}]\n`;
|
|
2828
|
+
|
|
2829
|
+
return {
|
|
2830
|
+
text: marker + result,
|
|
2831
|
+
truncated: true,
|
|
2832
|
+
originalBytes: bytes,
|
|
2833
|
+
originalLines: lines.length,
|
|
2834
|
+
artifactPath,
|
|
2835
|
+
};
|
|
2836
|
+
}
|