@tangle-network/agent-runtime 0.202.0 → 0.203.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/dist/{activation-D4oFb8Lt.js → activation-jkFJVJRN.js} +2 -2
- package/dist/{activation-D4oFb8Lt.js.map → activation-jkFJVJRN.js.map} +1 -1
- package/dist/agent.d.ts +1 -1
- package/dist/agent.js +2 -2
- package/dist/{coordination-driver-B5TLsu_f.js → coordination-driver-MJuF_LIR.js} +2 -2
- package/dist/{coordination-driver-B5TLsu_f.js.map → coordination-driver-MJuF_LIR.js.map} +1 -1
- package/dist/{delegate-B8y9EvTY.js → delegate-BdLTkmND.js} +2 -2
- package/dist/{delegate-B8y9EvTY.js.map → delegate-BdLTkmND.js.map} +1 -1
- package/dist/durable.d.ts +1 -1
- package/dist/durable.js +2 -2
- package/dist/{graph-C3WsOkdi.js → graph-DQN-oV1z.js} +3 -3
- package/dist/{graph-C3WsOkdi.js.map → graph-DQN-oV1z.js.map} +1 -1
- package/dist/{improvement-cycle-RpIiIKjM.js → improvement-cycle-BxqzXYi8.js} +76 -18
- package/dist/improvement-cycle-BxqzXYi8.js.map +1 -0
- package/dist/{index-BLaGPXGh.d.ts → index-prZR0SAw.d.ts} +60 -26
- package/dist/index.d.ts +2 -2
- package/dist/index.js +7 -7
- package/dist/intelligence.js +3 -3
- package/dist/kernel.d.ts +2 -2
- package/dist/kernel.js +9 -9
- package/dist/{loop-runner-bin-CkmHiZgU.d.ts → loop-runner-bin-CdLhMvhw.d.ts} +2 -2
- package/dist/{loop-runner-bin-CqXOUcrz.js → loop-runner-bin-CrRJTCHK.js} +3 -3
- package/dist/{loop-runner-bin-CqXOUcrz.js.map → loop-runner-bin-CrRJTCHK.js.map} +1 -1
- package/dist/loop-runner-bin.d.ts +1 -1
- package/dist/loop-runner-bin.js +1 -1
- package/dist/mcp/bin.js +3 -3
- package/dist/mcp/index.d.ts +1 -1
- package/dist/mcp/index.js +4 -4
- package/dist/{provision-supervisor-hc_SOkP5.js → provision-supervisor-BS4y6pVS.js} +3 -3
- package/dist/{provision-supervisor-hc_SOkP5.js.map → provision-supervisor-BS4y6pVS.js.map} +1 -1
- package/dist/{redact-B5g0jY2n.js → redact-B1SbJVu9.js} +102 -20
- package/dist/redact-B1SbJVu9.js.map +1 -0
- package/dist/{runtime-Dc-Aem9j.js → runtime-tA99kYBU.js} +103 -26
- package/dist/runtime-tA99kYBU.js.map +1 -0
- package/dist/{server-BnsMo0dR.js → server-Bd7EYaQT.js} +3 -3
- package/dist/{server-BnsMo0dR.js.map → server-Bd7EYaQT.js.map} +1 -1
- package/dist/{structural-rollout-Zbntz3jo.js → structural-rollout-FBtZzm0q.js} +88 -51
- package/dist/structural-rollout-FBtZzm0q.js.map +1 -0
- package/dist/{supervise-CskGiJMk.js → supervise-dCZg-EB8.js} +3 -3
- package/dist/{supervise-CskGiJMk.js.map → supervise-dCZg-EB8.js.map} +1 -1
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +12 -12
- package/dist/tui/index.d.ts +1 -1
- package/dist/tui/index.js +1 -1
- package/package.json +10 -8
- package/dist/improvement-cycle-RpIiIKjM.js.map +0 -1
- package/dist/redact-B5g0jY2n.js.map +0 -1
- package/dist/runtime-Dc-Aem9j.js.map +0 -1
- package/dist/structural-rollout-Zbntz3jo.js.map +0 -1
|
@@ -8,6 +8,7 @@ import { AgentEvalError, AgentEvalError as AgentEvalError$1, AgentEvalErrorCode,
|
|
|
8
8
|
import { AgentRunOutcome } from "@tangle-network/sandbox/runtime";
|
|
9
9
|
import "@tangle-network/agent-profile-materialize";
|
|
10
10
|
import { BackendType, BranchOptions, CreateSandboxOptions, CreateSandboxOptions as CreateSandboxOptions$1, PromptOptions, SandboxEvent, SandboxEvent as SandboxEvent$1, SandboxInstance, SandboxInstance as SandboxInstance$1 } from "@tangle-network/sandbox";
|
|
11
|
+
import { AnalystRegistry, AnalystRunInputs as AnalystRunInputs$1, AnalystRunResult as AnalystRunResult$1, RegistryRunOpts as RegistryRunOpts$1 } from "@tangle-network/agent-eval/analyst";
|
|
11
12
|
import { DispatchFn, ExternalOptimizerModelCall, JudgeConfig, ProfileDispatchFn, RunProfileMatrixOptions, RunProfileMatrixResult, Scenario } from "@tangle-network/agent-eval/campaign";
|
|
12
13
|
import { stuckLoopView, toolWasteView } from "@tangle-network/agent-eval/pipelines";
|
|
13
14
|
import { AgentEnvironment, AgentEnvironmentCapabilities, AgentEnvironmentProvider, CreateAgentEnvironmentInput } from "@tangle-network/agent-interface/environment-provider";
|
|
@@ -2066,7 +2067,7 @@ interface DefinedAnalystRecord {
|
|
|
2066
2067
|
readonly digest: string;
|
|
2067
2068
|
readonly definedAt: number;
|
|
2068
2069
|
}
|
|
2069
|
-
interface AnalystRegistry {
|
|
2070
|
+
interface AnalystRegistry$1 {
|
|
2070
2071
|
readonly kinds: ReadonlyArray<AnalystKind>;
|
|
2071
2072
|
readonly run: (kindId: string, trace: TraceAnalysisStore) => Promise<AnalystLensOutput>;
|
|
2072
2073
|
/**
|
|
@@ -2403,7 +2404,7 @@ interface CoordinationToolsOptions {
|
|
|
2403
2404
|
* first passing submission is retained; a false or throwing check fails closed.
|
|
2404
2405
|
*/
|
|
2405
2406
|
readonly deliverable?: DeliverableSpec<unknown>;
|
|
2406
|
-
readonly analysts?: AnalystRegistry;
|
|
2407
|
+
readonly analysts?: AnalystRegistry$1;
|
|
2407
2408
|
/** Event-first for source compatibility; the second argument is its exact bus ordering stamp. */
|
|
2408
2409
|
readonly onEvent?: (event: CoordinationEvent, record: BusRecord<CoordinationEvent>) => void | Promise<void>;
|
|
2409
2410
|
/** Re-publish resumed settlements through the awaited observer before the driver starts. This is
|
|
@@ -3958,12 +3959,11 @@ interface ObserveInput {
|
|
|
3958
3959
|
outcome?: 'passed' | 'failed' | 'unknown';
|
|
3959
3960
|
/** Provenance back to the run. */
|
|
3960
3961
|
runId?: string;
|
|
3962
|
+
/** Caller-owned references to the retained evidence supplied in this input. */
|
|
3963
|
+
evidenceRefs?: ReadonlyArray<ProposalFinding['evidence_refs'][number]>;
|
|
3961
3964
|
}
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
profile: AgentProfile;
|
|
3965
|
-
/** Execution substrate. All behavior comes from the profile. */
|
|
3966
|
-
executor: ExecutorConfig;
|
|
3965
|
+
/** @inline */
|
|
3966
|
+
interface ObserveCommonOptions {
|
|
3967
3967
|
/** When set, learned facts are appended (idempotent) for the next run to read. */
|
|
3968
3968
|
corpus?: Corpus;
|
|
3969
3969
|
/** Tags written onto learned facts + used by the next run's corpus query. */
|
|
@@ -3971,7 +3971,24 @@ interface ObserveOptions {
|
|
|
3971
3971
|
signal?: AbortSignal;
|
|
3972
3972
|
/** Cap the trace lines fed to the observer (keeps the call cheap). Default 80. */
|
|
3973
3973
|
maxTraceLines?: number;
|
|
3974
|
+
/** Maximum output characters delivered to the default observer. Default 1200. */
|
|
3975
|
+
maxOutputChars?: number;
|
|
3976
|
+
/** Evidence origin for the default observer. Defaults to production for existing callers. */
|
|
3977
|
+
proposalOrigin?: ProposalFinding['proposal_origin'];
|
|
3974
3978
|
}
|
|
3979
|
+
/** A caller-selected analysis retains the same findings, usage, and corpus contract. */
|
|
3980
|
+
type ObservationAnalysis = (input: ObserveInput, context: {
|
|
3981
|
+
signal?: AbortSignal;
|
|
3982
|
+
}) => Promise<Pick<Observation, 'findings' | 'report' | 'usage'>>;
|
|
3983
|
+
type ObserveOptions = ObserveCommonOptions & ({
|
|
3984
|
+
analysis: ObservationAnalysis;
|
|
3985
|
+
profile?: AgentProfile;
|
|
3986
|
+
executor?: ExecutorConfig;
|
|
3987
|
+
} | {
|
|
3988
|
+
analysis?: undefined;
|
|
3989
|
+
profile: AgentProfile;
|
|
3990
|
+
executor: ExecutorConfig;
|
|
3991
|
+
});
|
|
3975
3992
|
/** The default observer instruction — exported so an optimizer can seed its population. */
|
|
3976
3993
|
declare const defaultAnalystInstruction: string;
|
|
3977
3994
|
interface Observation {
|
|
@@ -3987,20 +4004,21 @@ interface Observation {
|
|
|
3987
4004
|
known: boolean;
|
|
3988
4005
|
};
|
|
3989
4006
|
}
|
|
3990
|
-
/**
|
|
4007
|
+
/** Analysis can fail after paid work; its measured subtotal must remain recoverable. */
|
|
4008
|
+
declare class ObservationError extends Error {
|
|
4009
|
+
readonly usage: Observation['usage'];
|
|
4010
|
+
constructor(message: string, usage: Observation['usage'], options?: ErrorOptions);
|
|
4011
|
+
}
|
|
4012
|
+
/** Analyze through the selected implementation, then retain its validated findings in the corpus. */
|
|
3991
4013
|
declare function observe(input: ObserveInput, opts: ObserveOptions): Promise<Observation>;
|
|
3992
4014
|
/** Operator-facing report, split by who should act. The agent block is the
|
|
3993
4015
|
* steer; the operator block is the advice. */
|
|
3994
4016
|
declare function renderReport(findings: ReadonlyArray<AnalystFinding>): string;
|
|
3995
4017
|
//#endregion
|
|
3996
4018
|
//#region src/runtime/harvest-corpus.d.ts
|
|
3997
|
-
|
|
4019
|
+
type HarvestCorpusOptions = ObserveOptions & {
|
|
3998
4020
|
/** The completed runs to analyze — map your store's rows to `ObserveInput`. */
|
|
3999
4021
|
runs: AsyncIterable<ObserveInput> | Iterable<ObserveInput>;
|
|
4000
|
-
/** Exact analyst identity. */
|
|
4001
|
-
profile: AgentProfile;
|
|
4002
|
-
/** Execution substrate. All behavior comes from the profile. */
|
|
4003
|
-
executor: ExecutorConfig;
|
|
4004
4022
|
/** The durable corpus the facts accrete into. */
|
|
4005
4023
|
corpus: Corpus;
|
|
4006
4024
|
/** Tags written onto learned facts (the product/domain key the read side queries by). */
|
|
@@ -4010,7 +4028,7 @@ interface HarvestCorpusOptions {
|
|
|
4010
4028
|
/** Hard cap on runs consumed from the stream (a cost guard for unbounded stores). */
|
|
4011
4029
|
maxRuns?: number;
|
|
4012
4030
|
signal?: AbortSignal;
|
|
4013
|
-
}
|
|
4031
|
+
};
|
|
4014
4032
|
interface HarvestFailure {
|
|
4015
4033
|
runId: string;
|
|
4016
4034
|
error: string;
|
|
@@ -4026,7 +4044,12 @@ interface HarvestReport {
|
|
|
4026
4044
|
/** Measured analyst tokens; a failed or unmetered analysis leaves the subtotal incomplete. */
|
|
4027
4045
|
usage: Observation['usage'];
|
|
4028
4046
|
}
|
|
4029
|
-
/**
|
|
4047
|
+
/** The completed batch evidence remains available even when every analysis failed. */
|
|
4048
|
+
declare class HarvestError extends Error {
|
|
4049
|
+
readonly report: HarvestReport;
|
|
4050
|
+
constructor(report: HarvestReport);
|
|
4051
|
+
}
|
|
4052
|
+
/** Batch the selected observation implementation over completed runs and retain its findings. */
|
|
4030
4053
|
declare function harvestCorpus(opts: HarvestCorpusOptions): Promise<HarvestReport>;
|
|
4031
4054
|
//#endregion
|
|
4032
4055
|
//#region src/runtime/in-process-sandbox-client.d.ts
|
|
@@ -4793,7 +4816,7 @@ declare function serveCoordinationMcp(opts: CoordinationTransportOptions & {
|
|
|
4793
4816
|
* {@link DEFAULT_AWAIT_EVENT_TIMEOUT_MS}; `<= 0` = prior unbounded block (in-process only). */
|
|
4794
4817
|
awaitTimeoutMs?: number;
|
|
4795
4818
|
/** Trace-analyst lenses the driver can run (`run_analyst`) or auto-fire on settle. */
|
|
4796
|
-
analysts?: AnalystRegistry;
|
|
4819
|
+
analysts?: AnalystRegistry$1;
|
|
4797
4820
|
/** Analyst kinds to auto-run when a worker settles `done` — findings flow up the bus. */
|
|
4798
4821
|
analyzeOnSettle?: ReadonlyArray<string | AnalyzeOnSettleRoute>;
|
|
4799
4822
|
/** Run the ONLINE detector panel over each worker's live tool trace (raises `finding` events). */
|
|
@@ -5052,7 +5075,7 @@ interface SupervisorAgentDeps {
|
|
|
5052
5075
|
/** Runs an `extraTools` call; null/undefined falls through to the coordination dispatch. */
|
|
5053
5076
|
readonly executeExtraTool?: (name: string, args: Record<string, unknown>) => Promise<string | null | undefined>;
|
|
5054
5077
|
/** Analyst lenses available to the driver (both arms). Required for `analyzeOnSettle`. */
|
|
5055
|
-
readonly analysts?: AnalystRegistry;
|
|
5078
|
+
readonly analysts?: AnalystRegistry$1;
|
|
5056
5079
|
/** Where an `ask_parent` question goes when it leaves this manager. Omit and `ask_parent` reports
|
|
5057
5080
|
* `no-parent` — there is no runtime path that routes a question to a parent by itself. */
|
|
5058
5081
|
readonly escalateQuestion?: EscalateQuestion;
|
|
@@ -5271,7 +5294,7 @@ interface SuperviseRegistryTable<T> {
|
|
|
5271
5294
|
interface SuperviseRegistry {
|
|
5272
5295
|
readonly deliverables?: SuperviseRegistryTable<DeliverableSpec<unknown>>;
|
|
5273
5296
|
readonly finalizers?: SuperviseRegistryTable<SupervisorFinalizer>;
|
|
5274
|
-
readonly analysts?: SuperviseRegistryTable<AnalystRegistry>;
|
|
5297
|
+
readonly analysts?: SuperviseRegistryTable<AnalystRegistry$1>;
|
|
5275
5298
|
readonly probes?: SuperviseRegistryTable<WaitProbeRegistry>;
|
|
5276
5299
|
}
|
|
5277
5300
|
interface SuperviseOptions {
|
|
@@ -5508,7 +5531,7 @@ interface SuperviseOptions {
|
|
|
5508
5531
|
/** Analyst lenses available to the driver. Required for `analyzeOnSettle`. Unset → status quo
|
|
5509
5532
|
* (the driver receives settled worker outputs, no analyst findings). A `string` names an entry in
|
|
5510
5533
|
* `registry.analysts`. */
|
|
5511
|
-
readonly analysts?: AnalystRegistry | string;
|
|
5534
|
+
readonly analysts?: AnalystRegistry$1 | string;
|
|
5512
5535
|
/** Analyst kind ids run AUTOMATICALLY when a worker settles `done` — each re-enters as a `finding`
|
|
5513
5536
|
* the driver pulls (`await_event`) and composes its next steer from. The self-improving UP-leg,
|
|
5514
5537
|
* threaded to the driver at this level (propagate to sub-drivers via a recursive `makeWorkerAgent`).
|
|
@@ -6192,6 +6215,17 @@ declare function sanitizeMcpToolSchema(s: unknown): Record<string, unknown>;
|
|
|
6192
6215
|
/** Wrap any MCP server as an `Environment`: `tools/list` becomes `AgenticTool[]` with provider-safe schemas; the domain supplies only the artifact lifecycle hooks. */
|
|
6193
6216
|
declare function createMcpEnvironment(opts: McpEnvironmentOptions): Environment;
|
|
6194
6217
|
//#endregion
|
|
6218
|
+
//#region src/runtime/observation-registry.d.ts
|
|
6219
|
+
/** Adapt any Eval analyst registry, including recursive engines, to observation and harvesting. */
|
|
6220
|
+
declare function observationFromRegistry(registry: Pick<AnalystRegistry, 'run'>, options: {
|
|
6221
|
+
inputs: AnalystRunInputs$1 | ((input: ObserveInput) => AnalystRunInputs$1 | Promise<AnalystRunInputs$1>);
|
|
6222
|
+
/** The caller identifies the evidence admitted for this investigation. */
|
|
6223
|
+
proposalOrigin: ProposalFinding['proposal_origin'];
|
|
6224
|
+
runOptions?: RegistryRunOpts$1;
|
|
6225
|
+
/** Retain the complete registry result, including unsuccessful analysts, in caller-owned storage. */
|
|
6226
|
+
record?: (result: AnalystRunResult$1, input: ObserveInput) => void | Promise<void>;
|
|
6227
|
+
}): ObservationAnalysis;
|
|
6228
|
+
//#endregion
|
|
6195
6229
|
//#region src/runtime/personify/analyst.d.ts
|
|
6196
6230
|
/** Reject analyst findings derived from evaluation scores instead of execution traces. */
|
|
6197
6231
|
declare const assertTraceDerivedFindings: AssertTraceDerivedFindings;
|
|
@@ -7805,7 +7839,7 @@ interface DriverAgentOptions {
|
|
|
7805
7839
|
readonly maxLiveWorkers?: number;
|
|
7806
7840
|
/** The analyst lenses available to the driver. Required for `analyzeOnSettle` (and `run_analyst`).
|
|
7807
7841
|
* Unset → no analyst feed (status quo: the driver gets settled outputs, no findings). */
|
|
7808
|
-
readonly analysts?: AnalystRegistry;
|
|
7842
|
+
readonly analysts?: AnalystRegistry$1;
|
|
7809
7843
|
/** Where an `ask_parent` question goes when it leaves this manager. Omit = `no-parent`. */
|
|
7810
7844
|
readonly escalateQuestion?: EscalateQuestion;
|
|
7811
7845
|
/** Analyst kind ids run AUTOMATICALLY when a worker settles `done` — each result re-enters as a
|
|
@@ -8316,7 +8350,7 @@ interface RunGraphOptions extends Pick<SuperviseOptions, GraphInheritedSupervise
|
|
|
8316
8350
|
readonly hooks?: RuntimeHooks;
|
|
8317
8351
|
/** The analyst lens registry `analyzes` edges resolve against. ENVIRONMENT — needed only for
|
|
8318
8352
|
* lens analysts; an analyzes edge naming a graph NODE as its analyst needs no registry. */
|
|
8319
|
-
readonly analysts?: AnalystRegistry;
|
|
8353
|
+
readonly analysts?: AnalystRegistry$1;
|
|
8320
8354
|
/** Directive registry. Default: the seeded kernel registry (`kernelPromptRegistry()`).
|
|
8321
8355
|
*
|
|
8322
8356
|
* NOT `SuperviseOptions.registry`, which is the `SuperviseRegistry` name→value table for
|
|
@@ -9441,7 +9475,7 @@ declare function analystsFromRegistry(registry: AnalystRegistryLike, kinds?: Rea
|
|
|
9441
9475
|
}>, opts?: {
|
|
9442
9476
|
runOpts?: RegistryRunOpts;
|
|
9443
9477
|
authoring?: AnalystAuthoring;
|
|
9444
|
-
}): AnalystRegistry;
|
|
9478
|
+
}): AnalystRegistry$1;
|
|
9445
9479
|
/**
|
|
9446
9480
|
* What `analystsFromRegistry` needs before a manager may define its own lens.
|
|
9447
9481
|
*
|
|
@@ -9463,7 +9497,7 @@ interface AnalystAuthoring {
|
|
|
9463
9497
|
/** The default self-improvement LENS — authored content, not a code path. On each settled worker it hands
|
|
9464
9498
|
* the driver the still-FAILING tests (not just a score), so the next spawn targets the persistently-hard
|
|
9465
9499
|
* cases. Swap `analysts` to change what the driver improves from — that's the one knob. */
|
|
9466
|
-
declare function failuresAnalyst(): AnalystRegistry;
|
|
9500
|
+
declare function failuresAnalyst(): AnalystRegistry$1;
|
|
9467
9501
|
/** How a worker runs the surface task (its router substrate + per-attempt bounds). */
|
|
9468
9502
|
interface SurfaceWorkerConfig {
|
|
9469
9503
|
readonly routerBaseUrl: string;
|
|
@@ -9488,7 +9522,7 @@ interface SuperviseSurfaceOptions {
|
|
|
9488
9522
|
/** The self-improvement lens fed to the driver on each settled worker. Default `failuresAnalyst()`
|
|
9489
9523
|
* (target the still-failing tests). Pass a custom registry to change it, or `null` to turn the
|
|
9490
9524
|
* within-run self-improvement OFF (the driver sees raw settled outputs). */
|
|
9491
|
-
readonly analysts?: AnalystRegistry | null;
|
|
9525
|
+
readonly analysts?: AnalystRegistry$1 | null;
|
|
9492
9526
|
/** The strategy each worker runs over the surface. Default `refine` (iterate-with-feedback). */
|
|
9493
9527
|
readonly strategy?: Strategy;
|
|
9494
9528
|
/** Max workers live at once. Default 1 (serial — required when workers share a persistent artifact, so
|
|
@@ -9646,5 +9680,5 @@ interface VerifierEnvironmentOptions {
|
|
|
9646
9680
|
/** Any checkable task as an `Environment`, no tool surface required: the artifact is the worker's answer and the domain is one deployable `check` over it. */
|
|
9647
9681
|
declare function createVerifierEnvironment(opts: VerifierEnvironmentOptions): Environment;
|
|
9648
9682
|
//#endregion
|
|
9649
|
-
export { WorkspaceRun as $, printBenchmarkReport as $a, FanoutOptions as $c, CoderDelegate as $d, DelegationHistoryEntry as $f, acquireSandbox as $i, CompletionEvidence as $l, freeSlots as $n, CoordinationToolFace as $o, ExecutorResultMapping as $p, modelAuthoredChecks as $r, FinalizerSettled as $s, RunContext as $t, CoordinationEvent as $u, worktreeFanout as A, loopUntil as Aa, InProcessPromptCtx as Ac, canonicalFindingEvent as Ad, DelegationResumeDriver as Af, StdioMcpConnection as Ai, DefinePersonaInput as Al, profileMaterializationAxes$1 as Am, RunGraphTestOptions as An, loopCampaignDispatch as Ao, AgentEvalErrorCode as Ap, asAuthoredProfile as Ar, AllWorkersStalledOptions as As, readWorkerCancellation as At, anytimeReport as Au, VERIFY_TAIL_CHARS as B, createScopeAnalyst as Ba, defaultAnalystInstruction as Bc, DELEGATE_DESCRIPTION as Bd, DelegateCodeResult as Bf, TurnResult as Bi, ShapeRegistry as Bl, delegatesWorkerBriefPrompt as Bn, SuperviseTestOptions as Bo, RuntimeRunStateError as Bp, CheckSourceCtx as Br, allWorkersStalled as Bs, workerCancellationFile as Bt, AnalystDefinitionIssue as Bu, SurfaceWorkerConfig as C, definePersona as Ca, defaultSelectWinner as Cc, SpawnPreflightContext as Cd, detachedTurnEvents as Cf, authorStrategy as Ci, VerifySpec as Cl, ProfileMaterializationContract as Cm, EdgeDeliveryOutcome as Cn, sample as Co, DelegationPersistenceError as Cp, ReservationRejection as Cr, CoordinationHttpAudit as Cs, cancelRun as Ct, AuditIntentOptions as Cu, superviseSurface as D, renderCorpusToInstructions as Da, localSandboxClient as Dc, WorkerSpawnContext as Dd, DelegationArgs as Df, MaterializeLocalMcpOptions as Di, WidenSpec as Dl, controlProfileMaterialization as Dm, GraphNode as Dn, LoopOptionsForDispatch as Do, FileDelegationStoreOptions as Dp, AuthoredProfile as Dr, CoordinationOwnerId as Ds, readRunCancelRequest as Dt, AnytimeReport as Du, failuresAnalyst as E, InMemoryCorpus as Ea, LocalSandboxClientOptions as Ec, WorkerResumeContext as Ed, runDetachedTurn as Ef, LocalMcpMaterialization as Ei, WidenLineage as El, assertProfileMaterialization as Em, GraphEdgeCapError as En, LoopDispatchOptions as Eo, FileDelegationStore as Ep, spendFromUsageEvents as Er, CoordinationLog as Es, legacySupervisorRunsRoot as Et, defaultAuditorInstruction as Eu, readWorkerInteractiveBinding as F, widen as Fa, HarvestReport as Fc, questionEscalationTargets as Fd, SubmitInput as Ff, OpenSandboxRunBeforeStartContext as Fi, PersonaExecutors as Fl, renderProfileMaterializationIssues as Fm, PromptHandle as Fn, DEFAULT_AUTHORED_PROFILE_SECURITY_POLICY as Fo, PlannerError as Fp, CheckExecChannel as Fr, ProgressTrackerOptions as Fs, safeWorkerFile as Ft, WaterfallCollector as Fu, CopyOptions as G, sanitizeMcpToolSchema as Ga, Corpus as Gc, DelegateHandlerOptions as Gd, DelegateResearchResult as Gf, SandboxLineage as Gi, LeaderboardFlagSpec as Gl, naiveContinuationPrompt as Gn, WorkerSpawnRetryAttempt as Go, BusStats as Gp, StructuralRolloutResult as Gr, sampleFromSettled as Gs, workerSteerAcknowledgementFile as Gt, AnalystToolGroupName as Gu, closingWorkerNote as H, McpEndpoint as Ha, renderReport as Hc, DELEGATE_TOOL_NAME as Hd, DelegateFeedbackResult as Hf, BranchCapableBox as Hi, LeaderboardBenchScore as Hl, dumbContinuationPassPrompt as Hn, superviseWithTestBrain as Ho, CoderOutput as Hp, StructuralRolloutConfig as Hr, createProgressTracker as Hs, workerControlLogFile as Ht, AnalystKind as Hu, workerInteractiveBindingFile as I, CreateScopeAnalystOptions as Ia, harvestCorpus as Ic, McpServer as Id, SubmitOutput as If, OpenSandboxRunOptions as Ii, RunPersonified as Il, sandboxActProfileMaterialization as Im, PromptRegistry as In, DeliverableResolutionInput as Io, RetainedInteractiveAdmissionError as Ip, CheckOutcome as Ir, ProgressView as Is, supervisorRunDir as It, WaterfallReport as Iu, withUntrackedArtifacts as J, BenchmarkLift as Ja, EqualKArm as Jc, validateDelegateArgs as Jd, DelegateUiAuditResult as Jf, createSandboxLineage as Ji, LeaderboardScenario as Jl, DispatchReport as Jn, isPreSpawnExecutorFailure as Jo, createEventBus as Jp, compareCheckOutcomes as Jr, SupervisorSpanOutcome as Js, workerSteerRequestsDir as Jt, AuthoredAnalystLimits as Ju, UntrackedCopyStats as K, BenchmarkCell as Ka, CorpusFilter as Kc, DelegateResult as Kd, DelegateUiAuditArgs as Kf, SandboxLineageHandle as Ki, LeaderboardIterationInfo as Kl, promptHandle as Kn, WorkerSpawnRetryHooks as Ko, EventBus as Kp, VisibleCheck as Kr, SupervisorSpanAttributes as Ks, workerSteerAcknowledgementsDir as Kt, AnalyzeOnSettleRoute as Ku, workerInteractiveBindingsDir as L, RegistryAnalyzeProjection as La, Observation as Lc, McpServerOptions as Ld, hashIdempotencyInput as Lf, OpenSandboxRunPromptOptions as Li, RunPersonifiedOptions as Ll, validateProfileMaterialization as Lm, RegisteredPrompt as Ln, SuperviseOptions as Lo, RetainedInteractiveBindingError as Lp, CheckRunContext as Lr, StopDecision as Ls, supervisorRunsRoot as Lt, WaterfallSpan as Lu, WorkerInteractiveBinding as M, pipeline as Ma, inProcessSandboxClient as Mc, downMessageRefusalReasons as Md, DelegationRunContext as Mf, connectStdioMcp as Mi, Outcome as Ml, promptModelProfileMaterialization as Mm, defaultEdgeTraversalCap as Mn, superviseDispatch as Mo, ConfigError as Mp, defaultProfileRichnessThresholds as Mr, PlateauOptions as Ms, readWorkerSteerRequests as Mt, bestSoFar as Mu, WorkerInteractiveProviderSource as N, selectValidWinner as Na, HarvestCorpusOptions as Nc, normalizeAnalyzeOnSettle as Nd, DelegationTaskQueue as Nf, materializeLocalMcp as Ni, Persona as Nl, promptOnlyProfileMaterialization as Nm, runGraph as Nn, AuthorizedSpawn as No, JudgeError as Np, profileRichnessFinding as Nr, ProgressSample as Ns, runCancelRequestFile as Nt, plateauLength as Nu, AuthoredHarness as O, fanout as Oa, inlineSandboxClient as Oc, WorkerWatchOptions as Od, DelegationRecord as Of, McpSpawnFault as Oi, WinnerStrategy as Ol, defineProfileMaterializationContract as Om, GraphResult as On, SuperviseDispatchOptions as Oo, InMemoryDelegationStore as Op, ProfileRichness as Or, FileCoordinationLog as Os, readRunCancellation as Ot, AnytimeStrategySummary as Ou, attachWorker as P, verify as Pa, HarvestFailure as Pc, parseAuthoredAnalystDefinition as Pd, DelegationTaskQueueOptions as Pf, Deliverable as Pi, PersonaContext as Pl, promptResourceProfileMaterialization as Pm, runGraphWithTestBrain as Pn, AuthorizedSpawnContext as Po, NotFoundError as Pp, supervisorInstructions as Pr, ProgressTracker as Ps, runCancellationFile as Pt, renderAnytimeTable as Pu, WorkspaceCommit as Q, Environment as Qa, Fanout as Qc, eventToSnapshot as Qd, DelegationHistoryArgs as Qf, AcquireOptions as Qi, CompletionAnalyst as Ql, effectiveConcurrency as Qn, CoordinationBinding as Qo, DeliverableSpec as Qp, filterAuthoredAsserts as Qr, FinalizeContext as Qs, InMemoryRunContextOptions as Qt, ContinuityMode as Qu, EVIDENCE_MAX_CHARS as R, assertTraceDerivedFindings as Ra, ObserveInput as Rc, createInProcessTransport as Rd, DelegateCodeArgs as Rf, SandboxRun as Ri, ShapeBudget as Rl, worktreeCliProfileMaterialization as Rm, analyzesFindingsReportPrompt as Rn, SuperviseRegistry as Ro, RetainedRunAdmissionError as Rp, CheckRunner as Rr, StopRule as Rs, supervisorWorkersDir as Rt, createWaterfallCollector as Ru, SuperviseSurfaceResult as S, registerShape as Sa, TerminalDecision as Sc, SpawnPreflight as Sd, createDetachedTurnResumeDriver as Sf, assertStrategyContract as Si, Verify as Sl, KnownAgentProfileMaterializationAxis as Sm, AgentGraph as Sn, runAgentic as So, createDelegationTraceCollector as Sp, BudgetReadout as Sr, serveCoordinationMcp as Ss, WriteWorkerSteerOptions as St, AuditIntentInput as Su, analystsFromRegistry as T, FileCorpus as Ta, runAgentRounds as Tc, SpawnRefusalCause as Td, parseDetachedSessionRef as Tf, strategyAuthorSystemPrompt as Ti, WidenDecision as Tl, ValidateProfileMaterializationOptions as Tm, GraphEdge as Tn, LoopCampaignDispatchOptions as To, DelegationStore as Tp, createBudgetPool as Tr, CoordinationDeliveryEvidence as Ts, legacySupervisorRunDir as Tt, auditIntent as Tu, composeWorkerEvidence as U, McpEnvironmentOptions as Ua, AssertTraceDerivedFindings as Uc, DelegateArgs as Ud, DelegateResearchArgs as Uf, CheckpointCapableBox as Ui, LeaderboardBenchTask as Ul, formatPromptHandle as Un, workerFromBackend as Uo, BusEvent as Up, StructuralRolloutMessage as Ur, noProgressFor as Us, workerInboxFile as Ut, AnalystLensOutput as Uu, WorkerEvidenceInput as V, registryScopeAnalyst as Va, observe as Vc, DELEGATE_INPUT_SCHEMA as Vd, DelegateFeedbackArgs as Vf, openSandboxRun as Vi, DefinedLeaderboard as Vl, dumbContinuationFailPrompt as Vn, supervise as Vo, ValidationError as Vp, RepairStop as Vr, anyOf as Vs, workerCancellationsDir as Vt, AnalystFindingEvent as Vu, settledWorkerOut as W, createMcpEnvironment as Wa, CombinatorShape as Wc, DelegateError as Wd, DelegateResearchConfig as Wf, ForkCapableBox as Wi, LeaderboardBenchmarkAdapter as Wl, kernelPromptRegistry as Wn, ResolvedWorkerSpawnRetry as Wo, BusRecord as Wp, StructuralRolloutPolicy as Wr, plateau as Ws, workerInboxFileFromEventDir as Wt, AnalystRegistry as Wu, Shell as X, BenchmarkStrategySummary as Xa, EqualKOnCostOptions as Xc, FeedbackStore as Xd, DelegationError as Xf, SandboxCapabilities as Xi, LeaderboardSpec as Xl, DispatchUnit as Xn, retryPreSpawnRefusals as Xo, defaultToolDetectors as Xp, defaultExtractCandidate as Xr, createSupervisorSpanRecorder as Xs, writeWorkerSteer as Xt, AuthorizedDownMessage as Xu, GitWorkspaceOptions as Y, BenchmarkReport as Ya, EqualKOnCost as Yc, FeedbackEvent as Yd, DelegateUiAuditRoute as Yf, CriuCapableClient as Yi, LeaderboardScore as Yl, DispatchStopReason as Yn, resolveWorkerSpawnRetry as Yo, WatchTraceOptions as Yp, composeCheckSources as Yr, SupervisorSpanRecorder as Ys, workerSteersDir as Yt, AuthorizeDownMessage as Yu, Workspace as Z, BenchmarkTaskRow as Za, EqualKVerdict as Zc, InMemoryFeedbackStore as Zd, DelegationFeedbackSnapshot as Zf, probeSandboxCapabilities as Zi, defineLeaderboard as Zl, RollingDispatchOptions as Zn, withWorkerSpawnRetry as Zo, watchTrace as Zp, defaultStructuralRolloutPolicy as Zr, DeliveredOutput as Zs, InMemoryRunContext as Zt, ContinuationInstruction as Zu, boxSurfaceReader as _, assertProfileModelsAllowed as _a, OnUnmetContract as _c, QuestionOption as _d, DetachedTurn as _f, pickChampion as _i, SteerContext as _l, AGENT_PROFILE_MATERIALIZATION_AXES as _m, WorkerInteractiveAdmission as _n, adaptiveRefine as _o, DelegationTraceCollector as _p, chatTransportExecutor as _r, supervisorAgentWithTestBrain as _s, RunCancellation as _t, pairwiseSignificance as _u, SandboxInstance$1 as a, claimRetainedInteractiveControl as aa, DriverAttemptRecord as ac, DownMessageAuthorizationInput as ad, SettleDetachedCoderTurnOptions as af, visibleCheckScore as ai, LoopUntilState as al, InMemorySpawnJournal as am, SupervisorCleanupReceipt as an, AgenticTool as ao, DelegationStatusArgs as ap, DriverAgentOptions as ar, ResolveSupervisorTools as as, analyzeTrace as at, stopSentinel as au, AnalystAuthoring as b, builtinShapes as ba, RunAgentRoundsOptions as bc, QuestionUrgency as bd, DriveTurnTick as bf, AuthorStrategyOptions as bi, TrajectoryReportFn as bl, CanonicalAgentProfileMaterializationAxis as bm, InPlaceCliExecutorOptions as bn, depthStrategy as bo, capDelegationTrace as bp, BudgetPool as br, CoordinationPublicAddress as bs, WorkerSteerAcknowledgement as bt, renderLeaderboardSvg as bu, VerifierEnvironmentOptions as c, startRetainedInteractiveRun as ca, DriverBudgetReadout as cc, DownMessageEvent as cd, detachedSessionDelegate as cf, EvolutionArchiveNode as ci, PanelSpec as cl, SpawnForestInDoubtNode as cm, patchDelivered as cn, RunAgenticOptions as co, FeedbackRefersTo as cp, CodeModeOptions as cr, SupervisorAgentTestDeps as cs, captureWorkerTraceEvidence as ct, Interval as cu, HarvestSurfaceDiffsOptions as d, PromotionGateOptions as da, DriverReentry as dc, Question as dd, FleetHandle as df, EvolutionCandidate as di, PipelineStage as dl, SpawnForestTree as dm, createWorktreeCliExecutor as dn, StrategyArtifacts as do, UiAuditorDelegationOutput as dp, unsafeInProcessRunner as dr, SupervisorProfile as ds, createRootHandle as dt, LeaderboardRow as du, reconnectRetainedRun as ea, SupervisorFinalizer as ec, CoordinationStats as ed, CoderReview as ef, officialChecksFromMeta as ei, FanoutSynthesis as el, gateOnDeliverable as em, createFileRunContext as en, runBenchmark as eo, DelegationHistoryResult as ep, queueOf as er, CoordinationVerbs as es, gitWorkspace as et, CompletionPolicy as eu, SurfaceDiff as f, PromotionVerdict as fa, DriverRepromptPolicy as fc, QuestionDecision as fd, FleetWorkspaceExecutorOptions as ff, EvolutionGeneration as fi, RenderCorpusToInstructions as fl, loadSpawnForest as fm, InteractiveWorkerEnvironment as fn, StrategyCtx as fo, delegationProfiles as fp, ChatCompletionsTransport as fr, SupervisorToolDescriptor as fs, createSupervisor as ft, PairwiseOptions as fu, WatchedSurface as g, assertModelAllowed as ga, DriverUnmetContractDecision as gc, QuestionLevel as gd, DetachedSessionRefParts as gf, discriminatingMeans as gi, ScopeWidenGate as gl, contentAddress as gm, workerFromInteractiveProvider as gn, SurfaceScore as go, DelegationTraceCaps as gp, ChatWorkerSeamOptions as gr, supervisorAgent as gs, RunCancelRequest as gt, leaderboard as gu, SurfaceReader as h, profileOptimizerModelCall as ha, DriverUnmetContractContext as hc, QuestionEscalationTarget as hd, createSiblingSandboxExecutor as hf, StrategyEvolutionConfig as hi, ScopeAnalyzeInput as hl, replaySpawnTree as hm, InteractiveWorkerResult as hn, StrategyShotResult as ho, DELEGATION_TRACE_MAX_SPANS as hp, ChatTransportTool as hr, resolveSupervisorProfile as hs, settledToIteration as ht, ScoreOf as hu, SandboxEvent$1 as i, ClaimRetainedInteractiveControlOptions as ia, runFinalizer as ic, DefinedAnalystRecord as id, DetachedWinnerSelection as if, structuralRollout as ii, LoopUntilSpec as il, InMemoryResultBlobStore as im, ProvisionedSupervisor as in, AgenticTask as io, DelegationStatus as ip, delegate as ir, ResolveDriveHarness as is, TrajectoryAnalysis as it, sentinelCompletion as iu, AttachWorkerOptions as j, panel as ja, InProcessSandboxClientOptions as jc, createCoordinationTools as jd, DelegationResumeTick as jf, StdioMcpServerSpec as ji, LoopShape as jl, promptControlProfileMaterialization as jm, TraversalContinuity as jn, loopDispatch as jo, BackendTransportError as jp, assessAuthoredProfile as jr, NoProgressForOptions as js, readWorkerSteerAcknowledgement as jt, areaUnderCurve as ju, WorktreeFanoutOptions as k, flatWidenGate as ka, InProcessOnPrompt as kc, analystToolGroupNames as kd, DelegationResumeContext as kf, McpToolDescriptor as ki, DefinePersona as kl, fullProfileMaterialization as km, RunGraphOptions as kn, SuperviseOptionsForDispatch as ko, AgentEvalError$1 as kp, ProfileRichnessThresholds as kr, PriorCoordination as ks, readWorkerCancelRequests as kt, AnytimeTaskCurve as ku, createVerifierEnvironment as l, ResolveSandboxClientOptions as la, DriverContractState as lc, EscalateQuestion as ld, settleDetachedCoderTurn as lf, EvolutionAuthor as li, PanelVerdict as ll, SpawnForestMissingTree as lm, WorktreeCliExecutorOptions as ln, ShotSpec as lo, ResearchOutputShape as lp, CodeModeRunner as lr, SupervisorNodeContext as ls, parseWorkerToolTraceArtifact as lt, Leaderboard as lu, SurfaceReadOutcome as m, profileChatClient as ma, DriverRetryPolicy as mc, QuestionEscalationRecord as md, createFleetWorkspaceExecutor as mf, ReproductionCheck as mi, ScopeAnalyst as ml, pendingWaits as mm, InteractiveWorkerOptions as mn, StrategyResult as mo, DELEGATION_TRACE_MAX_BYTES as mp, ChatTransportExecutorOptions as mr, assertCoordinationBinding as ms, createScope as mt, ProfileKeyOf as mu, AnalystFinding$1 as n, startRetainedRun as na, collectDelivered as nc, CoordinationToolsOptions as nd, DelegateRunCtx as nf, sandboxCheckRunner as ni, FlatWidenGate as nl, FileResultBlobStore as nm, ProvisionSupervisorConnection as nn, AgenticRunResult as no, DelegationProgress as np, DelegateOptions as nr, DriveHarnessOwnerContext as ns, localShell as nt, completionAuthorizes as nu, computeFindingId$1 as o, reconnectRetainedInteractiveRun as oa, DriverAttemptStop as oc, DownMessageDeliveryAttempt as od, UiAuditorDelegate as of, ChampionPick as oi, Panel as ol, SpawnForest as om, provisionSupervisor as on, ArtifactHandle as oo, DelegationStatusResult as op, driverAgent as or, ResolvedSupervisorProfile as os, WORKER_TOOL_TRACE_SCHEMA_VERSION as ot, AxisScoresOf as ou, SurfaceReadBox as p, promotionGate as pa, DriverRepromptRefusal as pc, QuestionEscalationOutcome as pd, SiblingSandboxExecutorOptions as pf, EvolutionReport as pi, RenderCorpusToInstructionsOptions as pl, materializeTreeView as pm, InteractiveWorkerKeyInput as pn, StrategyMessage as po, CappedDelegationTrace as pp, ChatSessionStore as pr, SupervisorToolInvocationContext as ps, ScopeArgs as pt, PairwiseVerdict as pu, copyUntrackedIntoClone as q, BenchmarkConfig as qa, CorpusRecord as qc, createDelegateHandler as qd, DelegateUiAuditConfig as qf, SessionCapableBox as qi, LeaderboardRunContext as ql, ConcurrencyCaps as qn, WorkerSpawnRetryPolicy as qo, PublishOptions as qp, canDisplace as qr, SupervisorSpanOptions as qs, workerSteerRequestFile as qt, AuthoredAnalystDefinition as qu, CreateSandboxOptions$1 as r, startRetainedRunInEnvironment as ra, pickBestDelivered as rc, DEFAULT_AWAIT_EVENT_TIMEOUT_MS as rd, DetachedSessionDelegateOptions as rf, selectBestIndex as ri, LoopUntil as rl, FileSpawnJournal as rm, ProvisionSupervisorRequest as rn, AgenticSurface as ro, DelegationResultPayload as rp, defaultDelegateBudget as rr, ObserveSupervisorNodeEvent as rs, runInWorkspace as rt, deterministicCompletion as ru, makeFinding$1 as s, recoverRetainedInteractiveRun as sa, DriverAttemptsExhaustedError as sc, DownMessageDeliveryOutcome as sd, coderTaskFromArgs as sf, ChampionPolicy as si, PanelJudge as sl, SpawnForestEvent as sm, PatchDeliverableOptions as sn, CorpusReadbackOptions as so, FeedbackRating as sp, finalizeBestDelivered as sr, SupervisorAgentDeps as ss, WorkerToolTraceArtifact as st, GroupOf as su, AgentProfile$2 as t, recoverRetainedRun as ta, bestDelivered as tc, CoordinationTools as td, CoderReviewer as tf, resolveEntrySymbol as ti, FanoutWinnerSelector as tl, mapExecutorResult as tm, createInMemoryRunContext as tn, AgenticOptions as to, DelegationProfile as tp, rollingDispatch as tr, DriveHarness as ts, jjWorkspace as tt, CompletionVerdict as tu, BoxSurfaceReaderOptions as u, resolveSandboxClient as ua, DriverProgressMark as uc, MakeWorkerAgent as ud, DelegationExecutor as uf, EvolutionBandInfo as ui, Pipeline as ul, SpawnForestNode as um, WorktreePatchArtifact as un, Strategy as uo, UiAuditLensFilter as up, codeModeSupervisorTools as ur, SupervisorNodeContextSeed as us, workerTraceAnalysisStore as ut, LeaderboardOptions as uu, fsSurfaceReader as v, equalKOnCost as va, classifyDriverFailure as vc, QuestionPolicy as vd, DetachedTurnResumeDriverOptions as vf, runStrategyEvolution as vi, TrajectoryNode as vl, AgentProfileMaterializationAxis as vm, readWorkerInteractiveAdmissions as vn, breadthStrategy as vo, DelegationTraceSpan as vp, chatWorkerSeam as vr, CoordinationAuthentication as vs, WorkerCancelRequest as vt, renderLeaderboardHtml as vu, SurfaceWorkerOut as w, runPersonified as wa, isTerminalDecision as wc, SpawnRefusal as wd, formatDetachedSessionRef as wf, strategyAuthorContract as wi, Widen as wl, ProfileMaterializationIssue as wm, EdgeTraversal as wn, sampleThenRefine as wo, DelegationStateCorruptError as wp, ReservationTicket as wr, CoordinationHttpOptions as ws, cancelWorker as wt, IntentAudit as wu, SuperviseSurfaceOptions as x, createShapeRegistry as xa, TERMINAL_DECISIONS as xc, SettledWorker as xd, RunDetachedTurnOptions as xf, AuthoredStrategy as xi, TrajectoryReportOptions as xl, DefineProfileMaterializationContractOptions as xm, createInPlaceCliExecutor as xn, refine as xo, composeLoopTraceEmitters as xp, BudgetPoolRestore as xr, CoordinationTransportOptions as xs, WorkerSteerRequest as xt, renderPairwiseMarkdown as xu, harvestSurfaceDiffs as y, trajectoryReport as ya, defaultUnmetContractSteer as yc, QuestionRecord as yd, DriveTurnCapableBox as yf, selectChampion as yi, TrajectoryReport as yl, AssertProfileMaterializationOptions as ym, workerInteractiveAdmissionFile as yn, defineStrategy as yo, buildDelegationTraceSpans as yp, createChatSessionStore as yr, CoordinationMcpHandle as ys, WorkerCancellation as yt, renderLeaderboardMarkdown as yu, NOTE_MAX_CHARS as z, buildSteerContext as za, ObserveOptions as zc, createMcpServer as zd, DelegateCodeConfig as zf, SandboxRunAbortError as zi, ShapeContext as zl, createPromptRegistry as zn, SuperviseRegistryTable as zo, RetainedRunDispatchBindingError as zp, CheckSource as zr, allOf as zs, workerCancelRequestsFile as zt, ANALYST_DEFINITION_BOUNDS as zu };
|
|
9650
|
-
//# sourceMappingURL=index-
|
|
9683
|
+
export { WorkspaceRun as $, Environment as $a, EqualKOnCost as $c, FeedbackEvent as $d, DelegateUiAuditRoute as $f, acquireSandbox as $i, LeaderboardScore as $l, freeSlots as $n, CoordinationBinding as $o, WatchTraceOptions as $p, modelAuthoredChecks as $r, FinalizeContext as $s, RunContext as $t, AuthorizeDownMessage as $u, worktreeFanout as A, loopUntil as Aa, InProcessOnPrompt as Ac, WorkerResumeContext as Ad, runDetachedTurn as Af, StdioMcpConnection as Ai, WidenLineage as Al, assertProfileMaterialization as Am, RunGraphTestOptions as An, SuperviseOptionsForDispatch as Ao, FileDelegationStore as Ap, asAuthoredProfile as Ar, PriorCoordination as As, readWorkerCancellation as At, defaultAuditorInstruction as Au, VERIFY_TAIL_CHARS as B, createScopeAnalyst as Ba, ObservationAnalysis as Bc, McpServer as Bd, SubmitOutput as Bf, TurnResult as Bi, RunPersonified as Bl, sandboxActProfileMaterialization as Bm, delegatesWorkerBriefPrompt as Bn, SuperviseRegistryTable as Bo, RetainedInteractiveAdmissionError as Bp, CheckSourceCtx as Br, allOf as Bs, workerCancellationFile as Bt, WaterfallReport as Bu, SurfaceWorkerConfig as C, definePersona as Ca, TerminalDecision as Cc, QuestionRecord as Cd, DriveTurnCapableBox as Cf, authorStrategy as Ci, TrajectoryReport as Cl, AssertProfileMaterializationOptions as Cm, EdgeDeliveryOutcome as Cn, runAgentic as Co, buildDelegationTraceSpans as Cp, ReservationRejection as Cr, serveCoordinationMcp as Cs, cancelRun as Ct, renderLeaderboardMarkdown as Cu, superviseSurface as D, renderCorpusToInstructions as Da, LocalSandboxClientOptions as Dc, SpawnPreflightContext as Dd, detachedTurnEvents as Df, MaterializeLocalMcpOptions as Di, VerifySpec as Dl, ProfileMaterializationContract as Dm, GraphNode as Dn, LoopDispatchOptions as Do, DelegationPersistenceError as Dp, AuthoredProfile as Dr, CoordinationLog as Ds, readRunCancelRequest as Dt, AuditIntentOptions as Du, failuresAnalyst as E, InMemoryCorpus as Ea, runAgentRounds as Ec, SpawnPreflight as Ed, createDetachedTurnResumeDriver as Ef, LocalMcpMaterialization as Ei, Verify as El, KnownAgentProfileMaterializationAxis as Em, GraphEdgeCapError as En, LoopCampaignDispatchOptions as Eo, createDelegationTraceCollector as Ep, spendFromUsageEvents as Er, CoordinationDeliveryEvidence as Es, legacySupervisorRunsRoot as Et, AuditIntentInput as Eu, readWorkerInteractiveBinding as F, widen as Fa, HarvestError as Fc, createCoordinationTools as Fd, DelegationResumeTick as Ff, OpenSandboxRunBeforeStartContext as Fi, LoopShape as Fl, promptControlProfileMaterialization as Fm, PromptHandle as Fn, AuthorizedSpawnContext as Fo, BackendTransportError as Fp, CheckExecChannel as Fr, ProgressTracker as Fs, safeWorkerFile as Ft, areaUnderCurve as Fu, CopyOptions as G, createMcpEnvironment as Ga, observe as Gc, DELEGATE_INPUT_SCHEMA as Gd, DelegateFeedbackArgs as Gf, SandboxLineage as Gi, DefinedLeaderboard as Gl, naiveContinuationPrompt as Gn, ResolvedWorkerSpawnRetry as Go, ValidationError as Gp, StructuralRolloutResult as Gr, plateau as Gs, workerSteerAcknowledgementFile as Gt, AnalystFindingEvent as Gu, closingWorkerNote as H, observationFromRegistry as Ha, ObserveInput as Hc, createInProcessTransport as Hd, DelegateCodeArgs as Hf, BranchCapableBox as Hi, ShapeBudget as Hl, worktreeCliProfileMaterialization as Hm, dumbContinuationPassPrompt as Hn, supervise as Ho, RetainedRunAdmissionError as Hp, StructuralRolloutConfig as Hr, anyOf as Hs, workerControlLogFile as Ht, createWaterfallCollector as Hu, workerInteractiveBindingFile as I, CreateScopeAnalystOptions as Ia, HarvestFailure as Ic, downMessageRefusalReasons as Id, DelegationRunContext as If, OpenSandboxRunOptions as Ii, Outcome as Il, promptModelProfileMaterialization as Im, PromptRegistry as In, DEFAULT_AUTHORED_PROFILE_SECURITY_POLICY as Io, ConfigError as Ip, CheckOutcome as Ir, ProgressTrackerOptions as Is, supervisorRunDir as It, bestSoFar as Iu, withUntrackedArtifacts as J, BenchmarkConfig as Ja, CombinatorShape as Jc, DelegateError as Jd, DelegateResearchConfig as Jf, createSandboxLineage as Ji, LeaderboardBenchmarkAdapter as Jl, DispatchReport as Jn, WorkerSpawnRetryPolicy as Jo, BusRecord as Jp, compareCheckOutcomes as Jr, SupervisorSpanOptions as Js, workerSteerRequestsDir as Jt, AnalystRegistry$1 as Ju, UntrackedCopyStats as K, sanitizeMcpToolSchema as Ka, renderReport as Kc, DELEGATE_TOOL_NAME as Kd, DelegateFeedbackResult as Kf, SandboxLineageHandle as Ki, LeaderboardBenchScore as Kl, promptHandle as Kn, WorkerSpawnRetryAttempt as Ko, CoderOutput as Kp, VisibleCheck as Kr, sampleFromSettled as Ks, workerSteerAcknowledgementsDir as Kt, AnalystKind as Ku, workerInteractiveBindingsDir as L, RegistryAnalyzeProjection as La, HarvestReport as Lc, normalizeAnalyzeOnSettle as Ld, DelegationTaskQueue as Lf, OpenSandboxRunPromptOptions as Li, Persona as Ll, promptOnlyProfileMaterialization as Lm, RegisteredPrompt as Ln, DeliverableResolutionInput as Lo, JudgeError as Lp, CheckRunContext as Lr, ProgressView as Ls, supervisorRunsRoot as Lt, plateauLength as Lu, WorkerInteractiveBinding as M, pipeline as Ma, InProcessSandboxClientOptions as Mc, WorkerWatchOptions as Md, DelegationRecord as Mf, connectStdioMcp as Mi, WinnerStrategy as Ml, defineProfileMaterializationContract as Mm, defaultEdgeTraversalCap as Mn, loopDispatch as Mo, InMemoryDelegationStore as Mp, defaultProfileRichnessThresholds as Mr, NoProgressForOptions as Ms, readWorkerSteerRequests as Mt, AnytimeStrategySummary as Mu, WorkerInteractiveProviderSource as N, selectValidWinner as Na, inProcessSandboxClient as Nc, analystToolGroupNames as Nd, DelegationResumeContext as Nf, materializeLocalMcp as Ni, DefinePersona as Nl, fullProfileMaterialization as Nm, runGraph as Nn, superviseDispatch as No, AgentEvalError$1 as Np, profileRichnessFinding as Nr, PlateauOptions as Ns, runCancelRequestFile as Nt, AnytimeTaskCurve as Nu, AuthoredHarness as O, fanout as Oa, localSandboxClient as Oc, SpawnRefusal as Od, formatDetachedSessionRef as Of, McpSpawnFault as Oi, Widen as Ol, ProfileMaterializationIssue as Om, GraphResult as On, LoopOptionsForDispatch as Oo, DelegationStateCorruptError as Op, ProfileRichness as Or, CoordinationOwnerId as Os, readRunCancellation as Ot, IntentAudit as Ou, attachWorker as P, verify as Pa, HarvestCorpusOptions as Pc, canonicalFindingEvent as Pd, DelegationResumeDriver as Pf, Deliverable as Pi, DefinePersonaInput as Pl, profileMaterializationAxes$1 as Pm, runGraphWithTestBrain as Pn, AuthorizedSpawn as Po, AgentEvalErrorCode as Pp, supervisorInstructions as Pr, ProgressSample as Ps, runCancellationFile as Pt, anytimeReport as Pu, WorkspaceCommit as Q, BenchmarkTaskRow as Qa, EqualKArm as Qc, validateDelegateArgs as Qd, DelegateUiAuditResult as Qf, AcquireOptions as Qi, LeaderboardScenario as Ql, effectiveConcurrency as Qn, withWorkerSpawnRetry as Qo, createEventBus as Qp, filterAuthoredAsserts as Qr, DeliveredOutput as Qs, InMemoryRunContextOptions as Qt, AuthoredAnalystLimits as Qu, EVIDENCE_MAX_CHARS as R, assertTraceDerivedFindings as Ra, harvestCorpus as Rc, parseAuthoredAnalystDefinition as Rd, DelegationTaskQueueOptions as Rf, SandboxRun as Ri, PersonaContext as Rl, promptResourceProfileMaterialization as Rm, analyzesFindingsReportPrompt as Rn, SuperviseOptions as Ro, NotFoundError as Rp, CheckRunner as Rr, StopDecision as Rs, supervisorWorkersDir as Rt, renderAnytimeTable as Ru, SuperviseSurfaceResult as S, registerShape as Sa, TERMINAL_DECISIONS as Sc, QuestionPolicy as Sd, DetachedTurnResumeDriverOptions as Sf, assertStrategyContract as Si, TrajectoryNode as Sl, AgentProfileMaterializationAxis as Sm, AgentGraph as Sn, refine as So, DelegationTraceSpan as Sp, BudgetReadout as Sr, CoordinationTransportOptions as Ss, WriteWorkerSteerOptions as St, renderLeaderboardHtml as Su, analystsFromRegistry as T, FileCorpus as Ta, isTerminalDecision as Tc, SettledWorker as Td, RunDetachedTurnOptions as Tf, strategyAuthorSystemPrompt as Ti, TrajectoryReportOptions as Tl, DefineProfileMaterializationContractOptions as Tm, GraphEdge as Tn, sampleThenRefine as To, composeLoopTraceEmitters as Tp, createBudgetPool as Tr, CoordinationHttpOptions as Ts, legacySupervisorRunDir as Tt, renderPairwiseMarkdown as Tu, composeWorkerEvidence as U, McpEndpoint as Ua, ObserveOptions as Uc, createMcpServer as Ud, DelegateCodeConfig as Uf, CheckpointCapableBox as Ui, ShapeContext as Ul, formatPromptHandle as Un, superviseWithTestBrain as Uo, RetainedRunDispatchBindingError as Up, StructuralRolloutMessage as Ur, createProgressTracker as Us, workerInboxFile as Ut, ANALYST_DEFINITION_BOUNDS as Uu, WorkerEvidenceInput as V, registryScopeAnalyst as Va, ObservationError as Vc, McpServerOptions as Vd, hashIdempotencyInput as Vf, openSandboxRun as Vi, RunPersonifiedOptions as Vl, validateProfileMaterialization as Vm, dumbContinuationFailPrompt as Vn, SuperviseTestOptions as Vo, RetainedInteractiveBindingError as Vp, RepairStop as Vr, allWorkersStalled as Vs, workerCancellationsDir as Vt, WaterfallSpan as Vu, settledWorkerOut as W, McpEnvironmentOptions as Wa, defaultAnalystInstruction as Wc, DELEGATE_DESCRIPTION as Wd, DelegateCodeResult as Wf, ForkCapableBox as Wi, ShapeRegistry as Wl, kernelPromptRegistry as Wn, workerFromBackend as Wo, RuntimeRunStateError as Wp, StructuralRolloutPolicy as Wr, noProgressFor as Ws, workerInboxFileFromEventDir as Wt, AnalystDefinitionIssue as Wu, Shell as X, BenchmarkReport as Xa, CorpusFilter as Xc, DelegateResult as Xd, DelegateUiAuditArgs as Xf, SandboxCapabilities as Xi, LeaderboardIterationInfo as Xl, DispatchUnit as Xn, resolveWorkerSpawnRetry as Xo, EventBus as Xp, defaultExtractCandidate as Xr, SupervisorSpanRecorder as Xs, writeWorkerSteer as Xt, AnalyzeOnSettleRoute as Xu, GitWorkspaceOptions as Y, BenchmarkLift as Ya, Corpus as Yc, DelegateHandlerOptions as Yd, DelegateResearchResult as Yf, CriuCapableClient as Yi, LeaderboardFlagSpec as Yl, DispatchStopReason as Yn, isPreSpawnExecutorFailure as Yo, BusStats as Yp, composeCheckSources as Yr, SupervisorSpanOutcome as Ys, workerSteersDir as Yt, AnalystToolGroupName as Yu, Workspace as Z, BenchmarkStrategySummary as Za, CorpusRecord as Zc, createDelegateHandler as Zd, DelegateUiAuditConfig as Zf, probeSandboxCapabilities as Zi, LeaderboardRunContext as Zl, RollingDispatchOptions as Zn, retryPreSpawnRefusals as Zo, PublishOptions as Zp, defaultStructuralRolloutPolicy as Zr, createSupervisorSpanRecorder as Zs, InMemoryRunContext as Zt, AuthoredAnalystDefinition as Zu, boxSurfaceReader as _, assertProfileModelsAllowed as _a, DriverUnmetContractDecision as _c, QuestionEscalationOutcome as _d, SiblingSandboxExecutorOptions as _f, pickChampion as _i, RenderCorpusToInstructionsOptions as _l, materializeTreeView as _m, WorkerInteractiveAdmission as _n, SurfaceScore as _o, CappedDelegationTrace as _p, chatTransportExecutor as _r, supervisorAgent as _s, RunCancellation as _t, PairwiseVerdict as _u, SandboxInstance$1 as a, claimRetainedInteractiveControl as aa, runFinalizer as ac, CoordinationTools as ad, CoderReviewer as af, visibleCheckScore as ai, FanoutWinnerSelector as al, mapExecutorResult as am, SupervisorCleanupReceipt as an, AgenticTask as ao, DelegationProfile as ap, DriverAgentOptions as ar, ResolveDriveHarness as as, analyzeTrace as at, CompletionVerdict as au, AnalystAuthoring as b, builtinShapes as ba, defaultUnmetContractSteer as bc, QuestionLevel as bd, DetachedSessionRefParts as bf, AuthorStrategyOptions as bi, ScopeWidenGate as bl, contentAddress as bm, InPlaceCliExecutorOptions as bn, defineStrategy as bo, DelegationTraceCaps as bp, BudgetPool as br, CoordinationMcpHandle as bs, WorkerSteerAcknowledgement as bt, leaderboard as bu, VerifierEnvironmentOptions as c, startRetainedInteractiveRun as ca, DriverAttemptsExhaustedError as cc, DefinedAnalystRecord as cd, DetachedWinnerSelection as cf, EvolutionArchiveNode as ci, LoopUntilSpec as cl, InMemoryResultBlobStore as cm, patchDelivered as cn, CorpusReadbackOptions as co, DelegationStatus as cp, CodeModeOptions as cr, SupervisorAgentDeps as cs, captureWorkerTraceEvidence as ct, sentinelCompletion as cu, HarvestSurfaceDiffsOptions as d, PromotionGateOptions as da, DriverProgressMark as dc, DownMessageDeliveryOutcome as dd, coderTaskFromArgs as df, EvolutionCandidate as di, PanelJudge as dl, SpawnForestEvent as dm, createWorktreeCliExecutor as dn, Strategy as do, FeedbackRating as dp, unsafeInProcessRunner as dr, SupervisorNodeContextSeed as ds, createRootHandle as dt, GroupOf as du, reconnectRetainedRun as ea, FinalizerSettled as ec, AuthorizedDownMessage as ed, FeedbackStore as ef, officialChecksFromMeta as ei, EqualKOnCostOptions as el, defaultToolDetectors as em, createFileRunContext as en, printBenchmarkReport as eo, DelegationError as ep, queueOf as er, CoordinationToolFace as es, gitWorkspace as et, LeaderboardSpec as eu, SurfaceDiff as f, PromotionVerdict as fa, DriverReentry as fc, DownMessageEvent as fd, detachedSessionDelegate as ff, EvolutionGeneration as fi, PanelSpec as fl, SpawnForestInDoubtNode as fm, InteractiveWorkerEnvironment as fn, StrategyArtifacts as fo, FeedbackRefersTo as fp, ChatCompletionsTransport as fr, SupervisorProfile as fs, createSupervisor as ft, Interval as fu, WatchedSurface as g, assertModelAllowed as ga, DriverUnmetContractContext as gc, QuestionDecision as gd, FleetWorkspaceExecutorOptions as gf, discriminatingMeans as gi, RenderCorpusToInstructions as gl, loadSpawnForest as gm, workerFromInteractiveProvider as gn, StrategyShotResult as go, delegationProfiles as gp, ChatWorkerSeamOptions as gr, resolveSupervisorProfile as gs, RunCancelRequest as gt, PairwiseOptions as gu, SurfaceReader as h, profileOptimizerModelCall as ha, DriverRetryPolicy as hc, Question as hd, FleetHandle as hf, StrategyEvolutionConfig as hi, PipelineStage as hl, SpawnForestTree as hm, InteractiveWorkerResult as hn, StrategyResult as ho, UiAuditorDelegationOutput as hp, ChatTransportTool as hr, assertCoordinationBinding as hs, settledToIteration as ht, LeaderboardRow as hu, SandboxEvent$1 as i, ClaimRetainedInteractiveControlOptions as ia, pickBestDelivered as ic, CoordinationStats as id, CoderReview as if, structuralRollout as ii, FanoutSynthesis as il, gateOnDeliverable as im, ProvisionedSupervisor as in, AgenticSurface as io, DelegationHistoryResult as ip, delegate as ir, ObserveSupervisorNodeEvent as is, TrajectoryAnalysis as it, CompletionPolicy as iu, AttachWorkerOptions as j, panel as ja, InProcessPromptCtx as jc, WorkerSpawnContext as jd, DelegationArgs as jf, StdioMcpServerSpec as ji, WidenSpec as jl, controlProfileMaterialization as jm, TraversalContinuity as jn, loopCampaignDispatch as jo, FileDelegationStoreOptions as jp, assessAuthoredProfile as jr, AllWorkersStalledOptions as js, readWorkerSteerAcknowledgement as jt, AnytimeReport as ju, WorktreeFanoutOptions as k, flatWidenGate as ka, inlineSandboxClient as kc, SpawnRefusalCause as kd, parseDetachedSessionRef as kf, McpToolDescriptor as ki, WidenDecision as kl, ValidateProfileMaterializationOptions as km, RunGraphOptions as kn, SuperviseDispatchOptions as ko, DelegationStore as kp, ProfileRichnessThresholds as kr, FileCoordinationLog as ks, readWorkerCancelRequests as kt, auditIntent as ku, createVerifierEnvironment as l, ResolveSandboxClientOptions as la, DriverBudgetReadout as lc, DownMessageAuthorizationInput as ld, SettleDetachedCoderTurnOptions as lf, EvolutionAuthor as li, LoopUntilState as ll, InMemorySpawnJournal as lm, WorktreeCliExecutorOptions as ln, RunAgenticOptions as lo, DelegationStatusArgs as lp, CodeModeRunner as lr, SupervisorAgentTestDeps as ls, parseWorkerToolTraceArtifact as lt, stopSentinel as lu, SurfaceReadOutcome as m, profileChatClient as ma, DriverRepromptRefusal as mc, MakeWorkerAgent as md, DelegationExecutor as mf, ReproductionCheck as mi, Pipeline as ml, SpawnForestNode as mm, InteractiveWorkerOptions as mn, StrategyMessage as mo, UiAuditLensFilter as mp, ChatTransportExecutorOptions as mr, SupervisorToolInvocationContext as ms, createScope as mt, LeaderboardOptions as mu, AnalystFinding$1 as n, startRetainedRun as na, bestDelivered as nc, ContinuityMode as nd, eventToSnapshot as nf, sandboxCheckRunner as ni, Fanout as nl, DeliverableSpec as nm, ProvisionSupervisorConnection as nn, AgenticOptions as no, DelegationHistoryArgs as np, DelegateOptions as nr, DriveHarness as ns, localShell as nt, CompletionAnalyst as nu, computeFindingId$1 as o, reconnectRetainedInteractiveRun as oa, DriverAttemptRecord as oc, CoordinationToolsOptions as od, DelegateRunCtx as of, ChampionPick as oi, FlatWidenGate as ol, FileResultBlobStore as om, provisionSupervisor as on, AgenticTool as oo, DelegationProgress as op, driverAgent as or, ResolveSupervisorTools as os, WORKER_TOOL_TRACE_SCHEMA_VERSION as ot, completionAuthorizes as ou, SurfaceReadBox as p, promotionGate as pa, DriverRepromptPolicy as pc, EscalateQuestion as pd, settleDetachedCoderTurn as pf, EvolutionReport as pi, PanelVerdict as pl, SpawnForestMissingTree as pm, InteractiveWorkerKeyInput as pn, StrategyCtx as po, ResearchOutputShape as pp, ChatSessionStore as pr, SupervisorToolDescriptor as ps, ScopeArgs as pt, Leaderboard as pu, copyUntrackedIntoClone as q, BenchmarkCell as qa, AssertTraceDerivedFindings as qc, DelegateArgs as qd, DelegateResearchArgs as qf, SessionCapableBox as qi, LeaderboardBenchTask as ql, ConcurrencyCaps as qn, WorkerSpawnRetryHooks as qo, BusEvent as qp, canDisplace as qr, SupervisorSpanAttributes as qs, workerSteerRequestFile as qt, AnalystLensOutput as qu, CreateSandboxOptions$1 as r, startRetainedRunInEnvironment as ra, collectDelivered as rc, CoordinationEvent as rd, CoderDelegate as rf, selectBestIndex as ri, FanoutOptions as rl, ExecutorResultMapping as rm, ProvisionSupervisorRequest as rn, AgenticRunResult as ro, DelegationHistoryEntry as rp, defaultDelegateBudget as rr, DriveHarnessOwnerContext as rs, runInWorkspace as rt, CompletionEvidence as ru, makeFinding$1 as s, recoverRetainedInteractiveRun as sa, DriverAttemptStop as sc, DEFAULT_AWAIT_EVENT_TIMEOUT_MS as sd, DetachedSessionDelegateOptions as sf, ChampionPolicy as si, LoopUntil as sl, FileSpawnJournal as sm, PatchDeliverableOptions as sn, ArtifactHandle as so, DelegationResultPayload as sp, finalizeBestDelivered as sr, ResolvedSupervisorProfile as ss, WorkerToolTraceArtifact as st, deterministicCompletion as su, AgentProfile$2 as t, recoverRetainedRun as ta, SupervisorFinalizer as tc, ContinuationInstruction as td, InMemoryFeedbackStore as tf, resolveEntrySymbol as ti, EqualKVerdict as tl, watchTrace as tm, createInMemoryRunContext as tn, runBenchmark as to, DelegationFeedbackSnapshot as tp, rollingDispatch as tr, CoordinationVerbs as ts, jjWorkspace as tt, defineLeaderboard as tu, BoxSurfaceReaderOptions as u, resolveSandboxClient as ua, DriverContractState as uc, DownMessageDeliveryAttempt as ud, UiAuditorDelegate as uf, EvolutionBandInfo as ui, Panel as ul, SpawnForest as um, WorktreePatchArtifact as un, ShotSpec as uo, DelegationStatusResult as up, codeModeSupervisorTools as ur, SupervisorNodeContext as us, workerTraceAnalysisStore as ut, AxisScoresOf as uu, fsSurfaceReader as v, equalKOnCost as va, OnUnmetContract as vc, QuestionEscalationRecord as vd, createFleetWorkspaceExecutor as vf, runStrategyEvolution as vi, ScopeAnalyst as vl, pendingWaits as vm, readWorkerInteractiveAdmissions as vn, adaptiveRefine as vo, DELEGATION_TRACE_MAX_BYTES as vp, chatWorkerSeam as vr, supervisorAgentWithTestBrain as vs, WorkerCancelRequest as vt, ProfileKeyOf as vu, SurfaceWorkerOut as w, runPersonified as wa, defaultSelectWinner as wc, QuestionUrgency as wd, DriveTurnTick as wf, strategyAuthorContract as wi, TrajectoryReportFn as wl, CanonicalAgentProfileMaterializationAxis as wm, EdgeTraversal as wn, sample as wo, capDelegationTrace as wp, ReservationTicket as wr, CoordinationHttpAudit as ws, cancelWorker as wt, renderLeaderboardSvg as wu, SuperviseSurfaceOptions as x, createShapeRegistry as xa, RunAgentRoundsOptions as xc, QuestionOption as xd, DetachedTurn as xf, AuthoredStrategy as xi, SteerContext as xl, AGENT_PROFILE_MATERIALIZATION_AXES as xm, createInPlaceCliExecutor as xn, depthStrategy as xo, DelegationTraceCollector as xp, BudgetPoolRestore as xr, CoordinationPublicAddress as xs, WorkerSteerRequest as xt, pairwiseSignificance as xu, harvestSurfaceDiffs as y, trajectoryReport as ya, classifyDriverFailure as yc, QuestionEscalationTarget as yd, createSiblingSandboxExecutor as yf, selectChampion as yi, ScopeAnalyzeInput as yl, replaySpawnTree as ym, workerInteractiveAdmissionFile as yn, breadthStrategy as yo, DELEGATION_TRACE_MAX_SPANS as yp, createChatSessionStore as yr, CoordinationAuthentication as ys, WorkerCancellation as yt, ScoreOf as yu, NOTE_MAX_CHARS as z, buildSteerContext as za, Observation as zc, questionEscalationTargets as zd, SubmitInput as zf, SandboxRunAbortError as zi, PersonaExecutors as zl, renderProfileMaterializationIssues as zm, createPromptRegistry as zn, SuperviseRegistry as zo, PlannerError as zp, CheckSource as zr, StopRule as zs, workerCancelRequestsFile as zt, WaterfallCollector as zu };
|
|
9684
|
+
//# sourceMappingURL=index-prZR0SAw.d.ts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { $ as OpenAIChatToolChoice, A as RuntimeRunCompleteInput, B as AgentBackendInput, F as RuntimeRunRow, G as AgentTaskContext, H as AgentKnowledgeProvider, I as RuntimeRunStatus, J as AgentTaskStatus, K as AgentTaskRunResult, L as startRuntimeRun, M as RuntimeRunHandle, N as RuntimeRunOptions, P as RuntimeRunPersistenceAdapter, Q as OpenAIChatTool, R as AgentAdapter, U as AgentRuntimeEvent, V as AgentExecutionBackend, W as AgentRuntimeEventSink, X as KnowledgeReadinessDecision, Y as BackendErrorDetail, Z as OpenAIChatResponseFormat, at as RuntimeStreamEvent, et as RunAgentTaskOptions, it as RuntimeSessionStore, j as RuntimeRunCost, nt as RuntimeCanonicalStreamEvent, q as AgentTaskSpec, rt as RuntimeSession, tt as RunAgentTaskStreamOptions, z as AgentBackendContext } from "./types-Q0PMagdm.js";
|
|
2
2
|
import { i as SurfaceImprovementEdit } from "./improvement-adapter-D5gwwoXQ.js";
|
|
3
3
|
import { o as ImprovementProposalSource } from "./types-zWfqDjeL.js";
|
|
4
|
-
import {
|
|
4
|
+
import { Bp as RetainedInteractiveAdmissionError, Fp as BackendTransportError, Gp as ValidationError, Hp as RetainedRunAdmissionError, Ip as ConfigError, Lp as JudgeError, Np as AgentEvalError, Pp as AgentEvalErrorCode, Ro as SuperviseOptions, Rp as NotFoundError, Up as RetainedRunDispatchBindingError, Vp as RetainedInteractiveBindingError, Wp as RuntimeRunStateError, Wr as StructuralRolloutPolicy, fs as SupervisorProfile, nm as DeliverableSpec, zp as PlannerError } from "./index-prZR0SAw.js";
|
|
5
5
|
import { $i as sanitizeAgentRuntimeEvent, Ai as OtelExporter, Bi as loopEventToOtelSpan, Ci as EvalRunGeneration, Di as LoopSpanNode, Ei as INTELLIGENCE_WIRE_VERSION, Fi as buildRuntimeEventOtelSpans, Gi as RuntimeStreamEventCollector, Hi as padTraceId, Ii as createOpenInferenceFileExporter, Ji as RuntimeTelemetryOptions, Ki as RuntimeStreamEventSink, Li as createOtelExporter, Mi as RuntimeEventOtelOptions, Ni as buildLoopOtelSpans, Oi as OtelAttribute, Pi as buildLoopSpanNodes, Qi as createRuntimeStreamEventCollector, Qn as Redactor, Ri as exportEvalRuns, Si as EvalRunEvent, Ti as EvalRunsExportResult, Ui as toOtelAttributes, Vi as padSpanId, Wi as RuntimeEventCollector, Xi as SanitizedKnowledgeRequirement, Yi as SanitizedKnowledgeReadinessReport, Zi as createRuntimeEventCollector, Zr as SupervisedResult, Zt as WorktreeCheckRunner, ea as sanitizeKnowledgeReadinessReport, h as ExecutorConfig, ir as Budget, ji as OtelSpan, ki as OtelExportConfig, pr as ExecutorFactory, qi as RuntimeStreamEventSummary, ta as sanitizeRuntimeStreamEvent, wi as EvalRunsExportConfig, zi as generateSpanId } from "./stream-agent-turn-CAj0XcwD.js";
|
|
6
6
|
import { a as RuntimeHookErrorContext, c as RuntimeHookTarget, d as defineRuntimeHooks, f as notifyRuntimeDecisionPoint, i as RuntimeHookContext, l as RuntimeHooks, n as RuntimeDecisionKind, o as RuntimeHookEvent, p as notifyRuntimeHookEvent, r as RuntimeDecisionPoint, s as RuntimeHookPhase, t as RuntimeDecisionEvidenceRef, u as composeRuntimeHooks } from "./runtime-hooks-Bj6wJHlH.js";
|
|
7
7
|
import { y as AgentCandidateOutputArtifactPort } from "./types-CuXu5zuS.js";
|
|
8
8
|
import { $ as ImprovementProfilePopulationLineageNode, A as ImproveMethodResult, B as ImproveSkillsOptions, C as ImproveCost, D as ImproveMethodFactory, E as ImproveMethodContext, F as ImproveProfileComponents, G as ImprovementProfileCandidate, H as ImprovementCandidate, I as ImproveProfileSurface, J as ImprovementProfileCandidatePopulationUnavailable, K as ImprovementProfileCandidatePopulation, L as ImproveResult, M as ImproveOptimizationRunOptions, N as ImproveOptions, O as ImproveMethodLineage, P as ImproveProfileAgent, Q as ImprovementProfilePopulationLineage, R as ImproveRuntimeCodeGeneratorOptions, S as ImproveCodeRunOptions, T as ImproveLineage, U as ImprovementCodeCandidate, V as ImproveSurface, W as ImprovementMaterializedProfilePopulationCandidate, X as ImprovementProfilePopulationCandidate, Y as ImprovementProfilePopulationArtifactSource, Z as ImprovementProfilePopulationCandidateSource, _ as ImproveCandidateValidationInput, at as AgenticGeneratorOptions, b as ImproveCodeOptions, ct as AgenticGeneratorShotReceipt, dt as agenticGenerator, et as ImprovementProfilePopulationObservationSource, ft as commandVerifier, g as improve, i as AgentImprovementActivationTransition, it as AgenticGeneratorExecutorForWorktree, j as ImproveMethodSource, k as ImproveMethodOptions, lt as Verifier, mt as CandidateGenerator, n as AgentImprovementActivationResultStore, nt as DeepReadonly, ot as AgenticGeneratorShotDisposition, pt as defaultBuildPrompt, q as ImprovementProfileCandidatePopulationAvailable, rt as ReadonlyAgentProfile, st as AgenticGeneratorShotExecution, t as AgentImprovementActivationReconciliation, tt as ImprovementRefusedProfilePopulationCandidate, ut as VerifyResult, v as ImproveCandidateValidator, w as ImproveCustomCodeGeneratorOptions, x as ImproveCodeResult, y as ImproveCodeBaseOptions, z as ImproveScenarioPartitions } from "./activation-B_4qFpKR.js";
|
|
9
|
-
import { _ as researchLoopRunner, a as DELEGATED_LOOP_MODES, c as DelegatedLoopResult, d as ResearchLoopRunnerOptions, f as RunDelegatedLoopOptions, g as isDelegatedLoopMode, h as auditLoopRunner, i as runLoopRunnerCli, l as DelegatedLoopRunner, m as WorktreeLoopRunnerOptions, n as LoopRunnerCliResult, o as DelegatedLoopMode, p as VetoedFact, r as parseLoopRunnerArgv, s as DelegatedLoopRegistry, t as LoopRunnerCliArgs, u as ResearchLoopResult, v as runDelegatedLoop, y as worktreeLoopRunner } from "./loop-runner-bin-
|
|
9
|
+
import { _ as researchLoopRunner, a as DELEGATED_LOOP_MODES, c as DelegatedLoopResult, d as ResearchLoopRunnerOptions, f as RunDelegatedLoopOptions, g as isDelegatedLoopMode, h as auditLoopRunner, i as runLoopRunnerCli, l as DelegatedLoopRunner, m as WorktreeLoopRunnerOptions, n as LoopRunnerCliResult, o as DelegatedLoopMode, p as VetoedFact, r as parseLoopRunnerArgv, s as DelegatedLoopRegistry, t as LoopRunnerCliArgs, u as ResearchLoopResult, v as runDelegatedLoop, y as worktreeLoopRunner } from "./loop-runner-bin-CdLhMvhw.js";
|
|
10
10
|
import { n as mcpToolsForRuntimeMcpSubset, t as mcpToolsForRuntimeMcp } from "./openai-tools-CRQhVT_V.js";
|
|
11
11
|
import { AgentCandidateBundle, AgentCandidateCapturedArtifact, AgentCandidateKnowledge, AgentProfile, Sha256Digest } from "@tangle-network/agent-interface";
|
|
12
12
|
import { AgentProfile as AgentProfile$1, ControlBudget, ControlDecision, ControlEvalResult, ControlEvalResult as ControlEvalResult$1, ControlRunResult, ControlStep, DataAcquisitionPlan, KnowledgeReadinessReport, KnowledgeReadinessReport as KnowledgeReadinessReport$1, KnowledgeRequirement, MaximumCharge, ProposalFinding, RunRecord, RunRecord as RunRecord$1 } from "@tangle-network/agent-eval";
|
package/dist/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { $n as buildRuntimeEventOtelSpans, Hr as parseCommittedJsonLines, Mi as providerMessageText, Qn as buildLoopSpanNodes, Ur as prepareJsonlAppend, Vr as isNoEntError, Wr as writeAllBytes, Xn as INTELLIGENCE_WIRE_VERSION, Zn as buildLoopOtelSpans, ar as loopEventToOtelSpan, cr as toOtelAttributes, dr as sanitizeAgentRuntimeEvent, er as createOpenInferenceFileExporter, fr as sanitizeKnowledgeReadinessReport, ir as generateSpanId, li as executableAgentProfileSnapshot, lr as createRuntimeEventCollector, n as defaultRedactorIdentityMaterial, nr as exportEvalRuns, or as padSpanId, pr as sanitizeRuntimeStreamEvent, r as resolveRedactor, sr as padTraceId, t as defaultRedactor, tr as createOtelExporter, ur as createRuntimeStreamEventCollector } from "./redact-
|
|
1
|
+
import { $n as buildRuntimeEventOtelSpans, Hr as parseCommittedJsonLines, Mi as providerMessageText, Qn as buildLoopSpanNodes, Ur as prepareJsonlAppend, Vr as isNoEntError, Wr as writeAllBytes, Xn as INTELLIGENCE_WIRE_VERSION, Zn as buildLoopOtelSpans, ar as loopEventToOtelSpan, cr as toOtelAttributes, dr as sanitizeAgentRuntimeEvent, er as createOpenInferenceFileExporter, fr as sanitizeKnowledgeReadinessReport, ir as generateSpanId, li as executableAgentProfileSnapshot, lr as createRuntimeEventCollector, n as defaultRedactorIdentityMaterial, nr as exportEvalRuns, or as padSpanId, pr as sanitizeRuntimeStreamEvent, r as resolveRedactor, sr as padTraceId, t as defaultRedactor, tr as createOtelExporter, ur as createRuntimeStreamEventCollector } from "./redact-B1SbJVu9.js";
|
|
2
2
|
import { a as JudgeError, c as RetainedInteractiveAdmissionError, d as RetainedRunDispatchBindingError, f as RuntimeRunStateError, i as ConfigError, l as RetainedInteractiveBindingError, m as ValidationError, o as NotFoundError, r as BackendTransportError, s as PlannerError, t as AgentEvalError, u as RetainedRunAdmissionError } from "./errors-DodWX-cb.js";
|
|
3
|
-
import {
|
|
3
|
+
import { F as InMemoryRuntimeSessionStore, I as newRuntimeSession, L as nowIso, M as createIterableBackend, N as createSandboxPromptBackend, O as optimizerMethod, P as normalizeBackendStreamEvent, R as startOrResumeRuntimeSession, j as streamAgentTurn, k as strategyAuthorMethod, z as touchSession } from "./structural-rollout-FBtZzm0q.js";
|
|
4
4
|
import { t as assertExecutableAgentProfile } from "./model-policy-DKDyr-fc.js";
|
|
5
|
-
import {
|
|
5
|
+
import { It as McpSpawnFault, Lt as connectStdioMcp } from "./runtime-tA99kYBU.js";
|
|
6
6
|
import { i as notifyRuntimeHookEvent, n as defineRuntimeHooks, r as notifyRuntimeDecisionPoint, t as composeRuntimeHooks } from "./runtime-hooks-tXpAarhW.js";
|
|
7
|
-
import { B as ROLLOUT_POLICY_EXTENSION, G as structuralRolloutPolicyFromProfile, H as normalizeRolloutPolicy, J as defaultBuildPrompt, K as agenticGenerator, L as improve, R as withMethodRuntimeControls, U as parseRolloutPolicy, V as applyRolloutPolicyToProfile, W as serializeRolloutPolicy, q as commandVerifier, z as rawTraceDistiller } from "./improvement-cycle-
|
|
7
|
+
import { B as ROLLOUT_POLICY_EXTENSION, G as structuralRolloutPolicyFromProfile, H as normalizeRolloutPolicy, J as defaultBuildPrompt, K as agenticGenerator, L as improve, R as withMethodRuntimeControls, U as parseRolloutPolicy, V as applyRolloutPolicyToProfile, W as serializeRolloutPolicy, q as commandVerifier, z as rawTraceDistiller } from "./improvement-cycle-BxqzXYi8.js";
|
|
8
8
|
import { a as canonicalCandidateBytes, d as omitTopLevelDigest, l as embeddedCandidateArtifact, o as canonicalCandidateDigest$1, u as immutableCandidateValue } from "./protected-redaction-wGo44k2K.js";
|
|
9
9
|
import { d as persistCandidateOutputArtifact } from "./prepare-Dc30WRB0.js";
|
|
10
|
-
import { t as createAgentImprovementActivationResult } from "./activation-
|
|
10
|
+
import { t as createAgentImprovementActivationResult } from "./activation-jkFJVJRN.js";
|
|
11
11
|
import { i as sealAgentCandidateBundle, t as captureAgentCandidateWorkspace } from "./workspace-archive-CBX0hwL_.js";
|
|
12
|
-
import { n as supervise } from "./supervise-
|
|
13
|
-
import { a as isDelegatedLoopMode, c as worktreeLoopRunner, i as auditLoopRunner, n as runLoopRunnerCli, o as researchLoopRunner, r as DELEGATED_LOOP_MODES, s as runDelegatedLoop, t as parseLoopRunnerArgv } from "./loop-runner-bin-
|
|
12
|
+
import { n as supervise } from "./supervise-dCZg-EB8.js";
|
|
13
|
+
import { a as isDelegatedLoopMode, c as worktreeLoopRunner, i as auditLoopRunner, n as runLoopRunnerCli, o as researchLoopRunner, r as DELEGATED_LOOP_MODES, s as runDelegatedLoop, t as parseLoopRunnerArgv } from "./loop-runner-bin-CrRJTCHK.js";
|
|
14
14
|
import { n as mcpToolsForRuntimeMcpSubset, t as mcpToolsForRuntimeMcp } from "./openai-tools-DoQ32vpe.js";
|
|
15
15
|
import { agentCandidateKnowledgeSchema, agentProfileSchema, canonicalAgentProfileDigest, sha256DigestSchema } from "@tangle-network/agent-interface";
|
|
16
16
|
import { FAILURE_CLASSES, acquisitionPlansForKnowledgeGaps, blockingKnowledgeEval, canonicalJson, runAgentControlLoop, scoreKnowledgeReadiness, userQuestionsForKnowledgeGaps } from "@tangle-network/agent-eval";
|
package/dist/intelligence.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { $n as buildRuntimeEventOtelSpans, Zn as buildLoopOtelSpans, _n as resolveAgentEnvironmentProvider, r as resolveRedactor, rr as flatOtelSpan, t as defaultRedactor, tr as createOtelExporter } from "./redact-
|
|
2
|
-
import { C as optimizationActivationReceiptFromMetadata, D as agentImprovementProfileSurfaceDigest, E as agentImprovementProfileDiffs, F as isAgentImprovementProfileSurface, I as isAgentProfileMeasuredSurface, N as assertProfileImprovementTargetsShareIdentity, O as agentImprovementProfileSurfaceInput, P as buildAgentImprovementActivationTargets, S as createOptimizationActivationReceipt, T as AGENT_PROFILE_MEASURED_SURFACES, _ as profilePolicyWithBudget, a as executeAgentCandidateExperimentCell, b as profileTaskScenarioIdentity, d as verifyAgentImprovementActivation, f as verifyAgentImprovementProposal, g as profileImprovementMetadata, h as createProfileImprovementCostLedger, i as createAgentImprovementProposal, j as agentImprovementTargetProfileDiffs, l as reviewAgentImprovementProposal, m as verifyCandidateExecutionEvidence, n as createAgentImprovementActivation, o as proposeAgentImprovement, p as verifyAgentImprovementReview, r as createAgentImprovementMeasuredComparison, s as proposeAgentProfileImprovement, t as AgentCandidateExperimentCellExecutionError, u as runAgentCandidateExperiment, v as profilePreparationAccounting, w as AGENT_IMPROVEMENT_PROFILE_SURFACES, x as sealProfileImprovementBenchmark, y as profileStateDigest$1 } from "./improvement-cycle-
|
|
1
|
+
import { $n as buildRuntimeEventOtelSpans, Zn as buildLoopOtelSpans, _n as resolveAgentEnvironmentProvider, r as resolveRedactor, rr as flatOtelSpan, t as defaultRedactor, tr as createOtelExporter } from "./redact-B1SbJVu9.js";
|
|
2
|
+
import { C as optimizationActivationReceiptFromMetadata, D as agentImprovementProfileSurfaceDigest, E as agentImprovementProfileDiffs, F as isAgentImprovementProfileSurface, I as isAgentProfileMeasuredSurface, N as assertProfileImprovementTargetsShareIdentity, O as agentImprovementProfileSurfaceInput, P as buildAgentImprovementActivationTargets, S as createOptimizationActivationReceipt, T as AGENT_PROFILE_MEASURED_SURFACES, _ as profilePolicyWithBudget, a as executeAgentCandidateExperimentCell, b as profileTaskScenarioIdentity, d as verifyAgentImprovementActivation, f as verifyAgentImprovementProposal, g as profileImprovementMetadata, h as createProfileImprovementCostLedger, i as createAgentImprovementProposal, j as agentImprovementTargetProfileDiffs, l as reviewAgentImprovementProposal, m as verifyCandidateExecutionEvidence, n as createAgentImprovementActivation, o as proposeAgentImprovement, p as verifyAgentImprovementReview, r as createAgentImprovementMeasuredComparison, s as proposeAgentProfileImprovement, t as AgentCandidateExperimentCellExecutionError, u as runAgentCandidateExperiment, v as profilePreparationAccounting, w as AGENT_IMPROVEMENT_PROFILE_SURFACES, x as sealProfileImprovementBenchmark, y as profileStateDigest$1 } from "./improvement-cycle-BxqzXYi8.js";
|
|
3
3
|
import { o as canonicalCandidateDigest$1, u as immutableCandidateValue } from "./protected-redaction-wGo44k2K.js";
|
|
4
4
|
import { A as omitUndefinedObjectFields, M as parseExactAgentProfile, a as AGENT_CANDIDATE_EXECUTION_SUPPORT, j as parseAgentCandidateProfileActivation, w as applyExactAgentProfileDiff } from "./prepare-Dc30WRB0.js";
|
|
5
|
-
import { n as executeAgentImprovementActivation, r as verifyAgentImprovementActivationResult, t as createAgentImprovementActivationResult } from "./activation-
|
|
5
|
+
import { n as executeAgentImprovementActivation, r as verifyAgentImprovementActivationResult, t as createAgentImprovementActivationResult } from "./activation-jkFJVJRN.js";
|
|
6
6
|
import { n as exactProcessProviderAsCandidateExecutor, t as createProtectedAgentCandidateModelPort } from "./protected-model-port-D5gDcnrH.js";
|
|
7
7
|
import { agentImprovementSourceSchema, agentProfileImprovementArmSchema, applyAgentProfileDiff } from "@tangle-network/agent-interface";
|
|
8
8
|
import { contentHash } from "@tangle-network/agent-eval";
|
package/dist/kernel.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { C as MountRecorder, D as SelectionReceipt, E as SandboxClient, O as ValidationCtx, S as MountManifestEntry, T as RunProvenance, _ as LoopTeardownFailedPayload, a as Iteration, b as LoopTraceEvent, c as LoopIterationDispatchPayload, d as LoopLineageOptions, f as LoopPlanDescription, g as LoopStartedPayload, h as LoopSandboxPlacement, i as ExecCtx, k as Validator, l as LoopIterationEndedPayload, m as LoopResult, n as DefaultVerdict, o as LoopDecisionPayload, p as LoopPlanPayload, r as Driver, s as LoopEndedPayload, t as AgentRunSpec, u as LoopIterationStartedPayload, v as LoopTokenUsage, w as OutputAdapter, x as LoopWinner, y as LoopTraceEmitter } from "./types-Q0PMagdm.js";
|
|
2
|
-
import { $ as WorkspaceRun, $a as printBenchmarkReport, $c as FanoutOptions, $i as acquireSandbox, $l as CompletionEvidence, $n as freeSlots, $o as CoordinationToolFace, $p as ExecutorResultMapping, $r as modelAuthoredChecks, $s as FinalizerSettled, $t as RunContext, $u as CoordinationEvent, A as worktreeFanout, Aa as loopUntil, Ac as InProcessPromptCtx, Ad as canonicalFindingEvent, Ai as StdioMcpConnection, Al as DefinePersonaInput, Ao as loopCampaignDispatch, Ar as asAuthoredProfile, As as AllWorkersStalledOptions, At as readWorkerCancellation, Au as anytimeReport, B as VERIFY_TAIL_CHARS, Ba as createScopeAnalyst, Bc as defaultAnalystInstruction, Bi as TurnResult, Bl as ShapeRegistry, Bn as delegatesWorkerBriefPrompt, Br as CheckSourceCtx, Bs as allWorkersStalled, Bt as workerCancellationFile, C as SurfaceWorkerConfig, Ca as definePersona, Cc as defaultSelectWinner, Cd as SpawnPreflightContext, Ci as authorStrategy, Cl as VerifySpec, Cn as EdgeDeliveryOutcome, Co as sample, Cr as ReservationRejection, Cs as CoordinationHttpAudit, Ct as cancelRun, Cu as AuditIntentOptions, D as superviseSurface, Da as renderCorpusToInstructions, Dc as localSandboxClient, Dd as WorkerSpawnContext, Di as MaterializeLocalMcpOptions, Dl as WidenSpec, Dn as GraphNode, Do as LoopOptionsForDispatch, Dr as AuthoredProfile, Ds as CoordinationOwnerId, Dt as readRunCancelRequest, Du as AnytimeReport, E as failuresAnalyst, Ea as InMemoryCorpus, Ec as LocalSandboxClientOptions, Ed as WorkerResumeContext, Ei as LocalMcpMaterialization, El as WidenLineage, En as GraphEdgeCapError, Eo as LoopDispatchOptions, Er as spendFromUsageEvents, Es as CoordinationLog, Et as legacySupervisorRunsRoot, Eu as defaultAuditorInstruction, F as readWorkerInteractiveBinding, Fa as widen, Fc as HarvestReport, Fi as OpenSandboxRunBeforeStartContext, Fl as PersonaExecutors, Fn as PromptHandle, Fo as DEFAULT_AUTHORED_PROFILE_SECURITY_POLICY, Fr as CheckExecChannel, Fs as ProgressTrackerOptions, Ft as safeWorkerFile, Fu as WaterfallCollector, G as CopyOptions, Ga as sanitizeMcpToolSchema, Gc as Corpus, Gi as SandboxLineage, Gl as LeaderboardFlagSpec, Gn as naiveContinuationPrompt, Go as WorkerSpawnRetryAttempt, Gp as BusStats, Gr as StructuralRolloutResult, Gs as sampleFromSettled, Gt as workerSteerAcknowledgementFile, H as closingWorkerNote, Ha as McpEndpoint, Hc as renderReport, Hi as BranchCapableBox, Hl as LeaderboardBenchScore, Hn as dumbContinuationPassPrompt, Hr as StructuralRolloutConfig, Hs as createProgressTracker, Ht as workerControlLogFile, Hu as AnalystKind, I as workerInteractiveBindingFile, Ia as CreateScopeAnalystOptions, Ic as harvestCorpus, Ii as OpenSandboxRunOptions, Il as RunPersonified, In as PromptRegistry, Io as DeliverableResolutionInput, Ir as CheckOutcome, Is as ProgressView, It as supervisorRunDir, Iu as WaterfallReport, J as withUntrackedArtifacts, Ja as BenchmarkLift, Jc as EqualKArm, Ji as createSandboxLineage, Jl as LeaderboardScenario, Jn as DispatchReport, Jo as isPreSpawnExecutorFailure, Jp as createEventBus, Jr as compareCheckOutcomes, Js as SupervisorSpanOutcome, Jt as workerSteerRequestsDir, Ju as AuthoredAnalystLimits, K as UntrackedCopyStats, Ka as BenchmarkCell, Kc as CorpusFilter, Ki as SandboxLineageHandle, Kl as LeaderboardIterationInfo, Kn as promptHandle, Ko as WorkerSpawnRetryHooks, Kp as EventBus, Kr as VisibleCheck, Ks as SupervisorSpanAttributes, Kt as workerSteerAcknowledgementsDir, Ku as AnalyzeOnSettleRoute, L as workerInteractiveBindingsDir, La as RegistryAnalyzeProjection, Lc as Observation, Li as OpenSandboxRunPromptOptions, Ll as RunPersonifiedOptions, Ln as RegisteredPrompt, Lo as SuperviseOptions, Lr as CheckRunContext, Ls as StopDecision, Lt as supervisorRunsRoot, Lu as WaterfallSpan, M as WorkerInteractiveBinding, Ma as pipeline, Mc as inProcessSandboxClient, Mi as connectStdioMcp, Ml as Outcome, Mn as defaultEdgeTraversalCap, Mo as superviseDispatch, Mr as defaultProfileRichnessThresholds, Ms as PlateauOptions, Mt as readWorkerSteerRequests, Mu as bestSoFar, N as WorkerInteractiveProviderSource, Na as selectValidWinner, Nc as HarvestCorpusOptions, Nd as normalizeAnalyzeOnSettle, Ni as materializeLocalMcp, Nl as Persona, Nn as runGraph, No as AuthorizedSpawn, Nr as profileRichnessFinding, Ns as ProgressSample, Nt as runCancelRequestFile, Nu as plateauLength, O as AuthoredHarness, Oa as fanout, Oc as inlineSandboxClient, Od as WorkerWatchOptions, Oi as McpSpawnFault, Ol as WinnerStrategy, On as GraphResult, Oo as SuperviseDispatchOptions, Or as ProfileRichness, Os as FileCoordinationLog, Ot as readRunCancellation, Ou as AnytimeStrategySummary, P as attachWorker, Pa as verify, Pc as HarvestFailure, Pi as Deliverable, Pl as PersonaContext, Po as AuthorizedSpawnContext, Pr as supervisorInstructions, Ps as ProgressTracker, Pt as runCancellationFile, Pu as renderAnytimeTable, Q as WorkspaceCommit, Qa as Environment, Qc as Fanout, Qi as AcquireOptions, Ql as CompletionAnalyst, Qn as effectiveConcurrency, Qo as CoordinationBinding, Qp as DeliverableSpec, Qr as filterAuthoredAsserts, Qs as FinalizeContext, Qt as InMemoryRunContextOptions, Qu as ContinuityMode, R as EVIDENCE_MAX_CHARS, Ra as assertTraceDerivedFindings, Rc as ObserveInput, Ri as SandboxRun, Rl as ShapeBudget, Rn as analyzesFindingsReportPrompt, Ro as SuperviseRegistry, Rr as CheckRunner, Rs as StopRule, Rt as supervisorWorkersDir, Ru as createWaterfallCollector, S as SuperviseSurfaceResult, Sa as registerShape, Sc as TerminalDecision, Sd as SpawnPreflight, Si as assertStrategyContract, Sl as Verify, Sn as AgentGraph, So as runAgentic, Sr as BudgetReadout, Ss as serveCoordinationMcp, St as WriteWorkerSteerOptions, Su as AuditIntentInput, T as analystsFromRegistry, Ta as FileCorpus, Tc as runAgentRounds, Td as SpawnRefusalCause, Ti as strategyAuthorSystemPrompt, Tl as WidenDecision, Tn as GraphEdge, To as LoopCampaignDispatchOptions, Tr as createBudgetPool, Ts as CoordinationDeliveryEvidence, Tt as legacySupervisorRunDir, Tu as auditIntent, U as composeWorkerEvidence, Ua as McpEnvironmentOptions, Uc as AssertTraceDerivedFindings, Ui as CheckpointCapableBox, Ul as LeaderboardBenchTask, Un as formatPromptHandle, Uo as workerFromBackend, Up as BusEvent, Ur as StructuralRolloutMessage, Us as noProgressFor, Ut as workerInboxFile, Uu as AnalystLensOutput, V as WorkerEvidenceInput, Va as registryScopeAnalyst, Vc as observe, Vi as openSandboxRun, Vl as DefinedLeaderboard, Vn as dumbContinuationFailPrompt, Vo as supervise, Vr as RepairStop, Vs as anyOf, Vt as workerCancellationsDir, Vu as AnalystFindingEvent, W as settledWorkerOut, Wa as createMcpEnvironment, Wc as CombinatorShape, Wi as ForkCapableBox, Wl as LeaderboardBenchmarkAdapter, Wn as kernelPromptRegistry, Wo as ResolvedWorkerSpawnRetry, Wp as BusRecord, Wr as StructuralRolloutPolicy, Ws as plateau, Wt as workerInboxFileFromEventDir, Wu as AnalystRegistry, X as Shell, Xa as BenchmarkStrategySummary, Xc as EqualKOnCostOptions, Xi as SandboxCapabilities, Xl as LeaderboardSpec, Xn as DispatchUnit, Xo as retryPreSpawnRefusals, Xp as defaultToolDetectors, Xr as defaultExtractCandidate, Xs as createSupervisorSpanRecorder, Xt as writeWorkerSteer, Xu as AuthorizedDownMessage, Y as GitWorkspaceOptions, Ya as BenchmarkReport, Yc as EqualKOnCost, Yi as CriuCapableClient, Yl as LeaderboardScore, Yn as DispatchStopReason, Yo as resolveWorkerSpawnRetry, Yp as WatchTraceOptions, Yr as composeCheckSources, Ys as SupervisorSpanRecorder, Yt as workerSteersDir, Yu as AuthorizeDownMessage, Z as Workspace, Za as BenchmarkTaskRow, Zc as EqualKVerdict, Zi as probeSandboxCapabilities, Zl as defineLeaderboard, Zn as RollingDispatchOptions, Zo as withWorkerSpawnRetry, Zp as watchTrace, Zr as defaultStructuralRolloutPolicy, Zs as DeliveredOutput, Zt as InMemoryRunContext, Zu as ContinuationInstruction, _ as boxSurfaceReader, _a as assertProfileModelsAllowed, _c as OnUnmetContract, _i as pickChampion, _l as SteerContext, _n as WorkerInteractiveAdmission, _o as adaptiveRefine, _r as chatTransportExecutor, _t as RunCancellation, _u as pairwiseSignificance, a as SandboxInstance, aa as claimRetainedInteractiveControl, ac as DriverAttemptRecord, ad as DownMessageAuthorizationInput, ai as visibleCheckScore, al as LoopUntilState, am as InMemorySpawnJournal, an as SupervisorCleanupReceipt, ao as AgenticTool, as as ResolveSupervisorTools, at as analyzeTrace, au as stopSentinel, b as AnalystAuthoring, ba as builtinShapes, bc as RunAgentRoundsOptions, bi as AuthorStrategyOptions, bl as TrajectoryReportFn, bn as InPlaceCliExecutorOptions, bo as depthStrategy, br as BudgetPool, bs as CoordinationPublicAddress, bt as WorkerSteerAcknowledgement, bu as renderLeaderboardSvg, c as VerifierEnvironmentOptions, ca as startRetainedInteractiveRun, cc as DriverBudgetReadout, cd as DownMessageEvent, ci as EvolutionArchiveNode, cl as PanelSpec, cm as SpawnForestInDoubtNode, cn as patchDelivered, co as RunAgenticOptions, cr as CodeModeOptions, ct as captureWorkerTraceEvidence, cu as Interval, d as HarvestSurfaceDiffsOptions, da as PromotionGateOptions, dc as DriverReentry, di as EvolutionCandidate, dl as PipelineStage, dm as SpawnForestTree, dn as createWorktreeCliExecutor, do as StrategyArtifacts, dr as unsafeInProcessRunner, ds as SupervisorProfile, dt as createRootHandle, du as LeaderboardRow, ea as reconnectRetainedRun, ec as SupervisorFinalizer, ed as CoordinationStats, ei as officialChecksFromMeta, el as FanoutSynthesis, em as gateOnDeliverable, en as createFileRunContext, eo as runBenchmark, er as queueOf, es as CoordinationVerbs, et as gitWorkspace, eu as CompletionPolicy, f as SurfaceDiff, fa as PromotionVerdict, fc as DriverRepromptPolicy, fi as EvolutionGeneration, fl as RenderCorpusToInstructions, fm as loadSpawnForest, fn as InteractiveWorkerEnvironment, fo as StrategyCtx, fr as ChatCompletionsTransport, fs as SupervisorToolDescriptor, ft as createSupervisor, fu as PairwiseOptions, g as WatchedSurface, ga as assertModelAllowed, gc as DriverUnmetContractDecision, gi as discriminatingMeans, gl as ScopeWidenGate, gm as contentAddress, gn as workerFromInteractiveProvider, go as SurfaceScore, gr as ChatWorkerSeamOptions, gs as supervisorAgent, gt as RunCancelRequest, gu as leaderboard, h as SurfaceReader, ha as profileOptimizerModelCall, hc as DriverUnmetContractContext, hi as StrategyEvolutionConfig, hl as ScopeAnalyzeInput, hm as replaySpawnTree, hn as InteractiveWorkerResult, ho as StrategyShotResult, hr as ChatTransportTool, hs as resolveSupervisorProfile, ht as settledToIteration, hu as ScoreOf, i as SandboxEvent, ia as ClaimRetainedInteractiveControlOptions, ic as runFinalizer, id as DefinedAnalystRecord, ii as structuralRollout, il as LoopUntilSpec, im as InMemoryResultBlobStore, in as ProvisionedSupervisor, io as AgenticTask, ir as delegate, is as ResolveDriveHarness, it as TrajectoryAnalysis, iu as sentinelCompletion, j as AttachWorkerOptions, ja as panel, jc as InProcessSandboxClientOptions, ji as StdioMcpServerSpec, jl as LoopShape, jn as TraversalContinuity, jo as loopDispatch, jr as assessAuthoredProfile, js as NoProgressForOptions, jt as readWorkerSteerAcknowledgement, ju as areaUnderCurve, k as WorktreeFanoutOptions, ka as flatWidenGate, kc as InProcessOnPrompt, ki as McpToolDescriptor, kl as DefinePersona, kn as RunGraphOptions, ko as SuperviseOptionsForDispatch, kr as ProfileRichnessThresholds, ks as PriorCoordination, kt as readWorkerCancelRequests, ku as AnytimeTaskCurve, l as createVerifierEnvironment, la as ResolveSandboxClientOptions, lc as DriverContractState, ld as EscalateQuestion, li as EvolutionAuthor, ll as PanelVerdict, lm as SpawnForestMissingTree, ln as WorktreeCliExecutorOptions, lo as ShotSpec, lr as CodeModeRunner, ls as SupervisorNodeContext, lt as parseWorkerToolTraceArtifact, lu as Leaderboard, m as SurfaceReadOutcome, ma as profileChatClient, mc as DriverRetryPolicy, md as QuestionEscalationRecord, mi as ReproductionCheck, ml as ScopeAnalyst, mm as pendingWaits, mn as InteractiveWorkerOptions, mo as StrategyResult, mr as ChatTransportExecutorOptions, ms as assertCoordinationBinding, mt as createScope, mu as ProfileKeyOf, n as AnalystFinding, na as startRetainedRun, nc as collectDelivered, ni as sandboxCheckRunner, nl as FlatWidenGate, nm as FileResultBlobStore, nn as ProvisionSupervisorConnection, no as AgenticRunResult, nr as DelegateOptions, ns as DriveHarnessOwnerContext, nt as localShell, nu as completionAuthorizes, o as computeFindingId, oa as reconnectRetainedInteractiveRun, oc as DriverAttemptStop, od as DownMessageDeliveryAttempt, oi as ChampionPick, ol as Panel, om as SpawnForest, on as provisionSupervisor, oo as ArtifactHandle, os as ResolvedSupervisorProfile, ot as WORKER_TOOL_TRACE_SCHEMA_VERSION, ou as AxisScoresOf, p as SurfaceReadBox, pa as promotionGate, pc as DriverRepromptRefusal, pd as QuestionEscalationOutcome, pi as EvolutionReport, pl as RenderCorpusToInstructionsOptions, pm as materializeTreeView, pn as InteractiveWorkerKeyInput, po as StrategyMessage, pr as ChatSessionStore, ps as SupervisorToolInvocationContext, pt as ScopeArgs, pu as PairwiseVerdict, q as copyUntrackedIntoClone, qa as BenchmarkConfig, qc as CorpusRecord, qi as SessionCapableBox, ql as LeaderboardRunContext, qn as ConcurrencyCaps, qo as WorkerSpawnRetryPolicy, qp as PublishOptions, qr as canDisplace, qs as SupervisorSpanOptions, qt as workerSteerRequestFile, qu as AuthoredAnalystDefinition, r as CreateSandboxOptions, ra as startRetainedRunInEnvironment, rc as pickBestDelivered, rd as DEFAULT_AWAIT_EVENT_TIMEOUT_MS, ri as selectBestIndex, rl as LoopUntil, rm as FileSpawnJournal, rn as ProvisionSupervisorRequest, ro as AgenticSurface, rr as defaultDelegateBudget, rs as ObserveSupervisorNodeEvent, rt as runInWorkspace, ru as deterministicCompletion, s as makeFinding, sa as recoverRetainedInteractiveRun, sc as DriverAttemptsExhaustedError, sd as DownMessageDeliveryOutcome, si as ChampionPolicy, sl as PanelJudge, sm as SpawnForestEvent, sn as PatchDeliverableOptions, so as CorpusReadbackOptions, sr as finalizeBestDelivered, ss as SupervisorAgentDeps, st as WorkerToolTraceArtifact, su as GroupOf, t as AgentProfile, ta as recoverRetainedRun, tc as bestDelivered, ti as resolveEntrySymbol, tl as FanoutWinnerSelector, tm as mapExecutorResult, tn as createInMemoryRunContext, to as AgenticOptions, tr as rollingDispatch, ts as DriveHarness, tt as jjWorkspace, tu as CompletionVerdict, u as BoxSurfaceReaderOptions, ua as resolveSandboxClient, uc as DriverProgressMark, ud as MakeWorkerAgent, ui as EvolutionBandInfo, ul as Pipeline, um as SpawnForestNode, un as WorktreePatchArtifact, uo as Strategy, ur as codeModeSupervisorTools, us as SupervisorNodeContextSeed, ut as workerTraceAnalysisStore, uu as LeaderboardOptions, v as fsSurfaceReader, va as equalKOnCost, vc as classifyDriverFailure, vi as runStrategyEvolution, vl as TrajectoryNode, vn as readWorkerInteractiveAdmissions, vo as breadthStrategy, vr as chatWorkerSeam, vs as CoordinationAuthentication, vt as WorkerCancelRequest, vu as renderLeaderboardHtml, w as SurfaceWorkerOut, wa as runPersonified, wc as isTerminalDecision, wd as SpawnRefusal, wi as strategyAuthorContract, wl as Widen, wn as EdgeTraversal, wo as sampleThenRefine, wr as ReservationTicket, ws as CoordinationHttpOptions, wt as cancelWorker, wu as IntentAudit, x as SuperviseSurfaceOptions, xa as createShapeRegistry, xc as TERMINAL_DECISIONS, xi as AuthoredStrategy, xl as TrajectoryReportOptions, xn as createInPlaceCliExecutor, xo as refine, xr as BudgetPoolRestore, xs as CoordinationTransportOptions, xt as WorkerSteerRequest, xu as renderPairwiseMarkdown, y as harvestSurfaceDiffs, ya as trajectoryReport, yc as defaultUnmetContractSteer, yi as selectChampion, yl as TrajectoryReport, yn as workerInteractiveAdmissionFile, yo as defineStrategy, yr as createChatSessionStore, ys as CoordinationMcpHandle, yt as WorkerCancellation, yu as renderLeaderboardMarkdown, z as NOTE_MAX_CHARS, za as buildSteerContext, zc as ObserveOptions, zi as SandboxRunAbortError, zl as ShapeContext, zn as createPromptRegistry, zo as SuperviseRegistryTable, zr as CheckSource, zs as allOf, zt as workerCancelRequestsFile } from "./index-BLaGPXGh.js";
|
|
2
|
+
import { $ as WorkspaceRun, $a as Environment, $c as EqualKOnCost, $i as acquireSandbox, $l as LeaderboardScore, $n as freeSlots, $o as CoordinationBinding, $p as WatchTraceOptions, $r as modelAuthoredChecks, $s as FinalizeContext, $t as RunContext, $u as AuthorizeDownMessage, A as worktreeFanout, Aa as loopUntil, Ac as InProcessOnPrompt, Ad as WorkerResumeContext, Ai as StdioMcpConnection, Al as WidenLineage, Ao as SuperviseOptionsForDispatch, Ar as asAuthoredProfile, As as PriorCoordination, At as readWorkerCancellation, Au as defaultAuditorInstruction, B as VERIFY_TAIL_CHARS, Ba as createScopeAnalyst, Bc as ObservationAnalysis, Bi as TurnResult, Bl as RunPersonified, Bn as delegatesWorkerBriefPrompt, Bo as SuperviseRegistryTable, Br as CheckSourceCtx, Bs as allOf, Bt as workerCancellationFile, Bu as WaterfallReport, C as SurfaceWorkerConfig, Ca as definePersona, Cc as TerminalDecision, Ci as authorStrategy, Cl as TrajectoryReport, Cn as EdgeDeliveryOutcome, Co as runAgentic, Cr as ReservationRejection, Cs as serveCoordinationMcp, Ct as cancelRun, Cu as renderLeaderboardMarkdown, D as superviseSurface, Da as renderCorpusToInstructions, Dc as LocalSandboxClientOptions, Dd as SpawnPreflightContext, Di as MaterializeLocalMcpOptions, Dl as VerifySpec, Dn as GraphNode, Do as LoopDispatchOptions, Dr as AuthoredProfile, Ds as CoordinationLog, Dt as readRunCancelRequest, Du as AuditIntentOptions, E as failuresAnalyst, Ea as InMemoryCorpus, Ec as runAgentRounds, Ed as SpawnPreflight, Ei as LocalMcpMaterialization, El as Verify, En as GraphEdgeCapError, Eo as LoopCampaignDispatchOptions, Er as spendFromUsageEvents, Es as CoordinationDeliveryEvidence, Et as legacySupervisorRunsRoot, Eu as AuditIntentInput, F as readWorkerInteractiveBinding, Fa as widen, Fc as HarvestError, Fi as OpenSandboxRunBeforeStartContext, Fl as LoopShape, Fn as PromptHandle, Fo as AuthorizedSpawnContext, Fr as CheckExecChannel, Fs as ProgressTracker, Ft as safeWorkerFile, Fu as areaUnderCurve, G as CopyOptions, Ga as createMcpEnvironment, Gc as observe, Gi as SandboxLineage, Gl as DefinedLeaderboard, Gn as naiveContinuationPrompt, Go as ResolvedWorkerSpawnRetry, Gr as StructuralRolloutResult, Gs as plateau, Gt as workerSteerAcknowledgementFile, Gu as AnalystFindingEvent, H as closingWorkerNote, Ha as observationFromRegistry, Hc as ObserveInput, Hi as BranchCapableBox, Hl as ShapeBudget, Hn as dumbContinuationPassPrompt, Ho as supervise, Hr as StructuralRolloutConfig, Hs as anyOf, Ht as workerControlLogFile, Hu as createWaterfallCollector, I as workerInteractiveBindingFile, Ia as CreateScopeAnalystOptions, Ic as HarvestFailure, Ii as OpenSandboxRunOptions, Il as Outcome, In as PromptRegistry, Io as DEFAULT_AUTHORED_PROFILE_SECURITY_POLICY, Ir as CheckOutcome, Is as ProgressTrackerOptions, It as supervisorRunDir, Iu as bestSoFar, J as withUntrackedArtifacts, Ja as BenchmarkConfig, Jc as CombinatorShape, Ji as createSandboxLineage, Jl as LeaderboardBenchmarkAdapter, Jn as DispatchReport, Jo as WorkerSpawnRetryPolicy, Jp as BusRecord, Jr as compareCheckOutcomes, Js as SupervisorSpanOptions, Jt as workerSteerRequestsDir, Ju as AnalystRegistry, K as UntrackedCopyStats, Ka as sanitizeMcpToolSchema, Kc as renderReport, Ki as SandboxLineageHandle, Kl as LeaderboardBenchScore, Kn as promptHandle, Ko as WorkerSpawnRetryAttempt, Kr as VisibleCheck, Ks as sampleFromSettled, Kt as workerSteerAcknowledgementsDir, Ku as AnalystKind, L as workerInteractiveBindingsDir, La as RegistryAnalyzeProjection, Lc as HarvestReport, Ld as normalizeAnalyzeOnSettle, Li as OpenSandboxRunPromptOptions, Ll as Persona, Ln as RegisteredPrompt, Lo as DeliverableResolutionInput, Lr as CheckRunContext, Ls as ProgressView, Lt as supervisorRunsRoot, Lu as plateauLength, M as WorkerInteractiveBinding, Ma as pipeline, Mc as InProcessSandboxClientOptions, Md as WorkerWatchOptions, Mi as connectStdioMcp, Ml as WinnerStrategy, Mn as defaultEdgeTraversalCap, Mo as loopDispatch, Mr as defaultProfileRichnessThresholds, Ms as NoProgressForOptions, Mt as readWorkerSteerRequests, Mu as AnytimeStrategySummary, N as WorkerInteractiveProviderSource, Na as selectValidWinner, Nc as inProcessSandboxClient, Ni as materializeLocalMcp, Nl as DefinePersona, Nn as runGraph, No as superviseDispatch, Nr as profileRichnessFinding, Ns as PlateauOptions, Nt as runCancelRequestFile, Nu as AnytimeTaskCurve, O as AuthoredHarness, Oa as fanout, Oc as localSandboxClient, Od as SpawnRefusal, Oi as McpSpawnFault, Ol as Widen, On as GraphResult, Oo as LoopOptionsForDispatch, Or as ProfileRichness, Os as CoordinationOwnerId, Ot as readRunCancellation, Ou as IntentAudit, P as attachWorker, Pa as verify, Pc as HarvestCorpusOptions, Pd as canonicalFindingEvent, Pi as Deliverable, Pl as DefinePersonaInput, Po as AuthorizedSpawn, Pr as supervisorInstructions, Ps as ProgressSample, Pt as runCancellationFile, Pu as anytimeReport, Q as WorkspaceCommit, Qa as BenchmarkTaskRow, Qc as EqualKArm, Qi as AcquireOptions, Ql as LeaderboardScenario, Qn as effectiveConcurrency, Qo as withWorkerSpawnRetry, Qp as createEventBus, Qr as filterAuthoredAsserts, Qs as DeliveredOutput, Qt as InMemoryRunContextOptions, Qu as AuthoredAnalystLimits, R as EVIDENCE_MAX_CHARS, Ra as assertTraceDerivedFindings, Rc as harvestCorpus, Ri as SandboxRun, Rl as PersonaContext, Rn as analyzesFindingsReportPrompt, Ro as SuperviseOptions, Rr as CheckRunner, Rs as StopDecision, Rt as supervisorWorkersDir, Ru as renderAnytimeTable, S as SuperviseSurfaceResult, Sa as registerShape, Sc as TERMINAL_DECISIONS, Si as assertStrategyContract, Sl as TrajectoryNode, Sn as AgentGraph, So as refine, Sr as BudgetReadout, Ss as CoordinationTransportOptions, St as WriteWorkerSteerOptions, Su as renderLeaderboardHtml, T as analystsFromRegistry, Ta as FileCorpus, Tc as isTerminalDecision, Ti as strategyAuthorSystemPrompt, Tl as TrajectoryReportOptions, Tn as GraphEdge, To as sampleThenRefine, Tr as createBudgetPool, Ts as CoordinationHttpOptions, Tt as legacySupervisorRunDir, Tu as renderPairwiseMarkdown, U as composeWorkerEvidence, Ua as McpEndpoint, Uc as ObserveOptions, Ui as CheckpointCapableBox, Ul as ShapeContext, Un as formatPromptHandle, Ur as StructuralRolloutMessage, Us as createProgressTracker, Ut as workerInboxFile, V as WorkerEvidenceInput, Va as registryScopeAnalyst, Vc as ObservationError, Vi as openSandboxRun, Vl as RunPersonifiedOptions, Vn as dumbContinuationFailPrompt, Vr as RepairStop, Vs as allWorkersStalled, Vt as workerCancellationsDir, Vu as WaterfallSpan, W as settledWorkerOut, Wa as McpEnvironmentOptions, Wc as defaultAnalystInstruction, Wi as ForkCapableBox, Wl as ShapeRegistry, Wn as kernelPromptRegistry, Wo as workerFromBackend, Wr as StructuralRolloutPolicy, Ws as noProgressFor, Wt as workerInboxFileFromEventDir, X as Shell, Xa as BenchmarkReport, Xc as CorpusFilter, Xi as SandboxCapabilities, Xl as LeaderboardIterationInfo, Xn as DispatchUnit, Xo as resolveWorkerSpawnRetry, Xp as EventBus, Xr as defaultExtractCandidate, Xs as SupervisorSpanRecorder, Xt as writeWorkerSteer, Xu as AnalyzeOnSettleRoute, Y as GitWorkspaceOptions, Ya as BenchmarkLift, Yc as Corpus, Yi as CriuCapableClient, Yl as LeaderboardFlagSpec, Yn as DispatchStopReason, Yo as isPreSpawnExecutorFailure, Yp as BusStats, Yr as composeCheckSources, Ys as SupervisorSpanOutcome, Yt as workerSteersDir, Z as Workspace, Za as BenchmarkStrategySummary, Zc as CorpusRecord, Zi as probeSandboxCapabilities, Zl as LeaderboardRunContext, Zn as RollingDispatchOptions, Zo as retryPreSpawnRefusals, Zp as PublishOptions, Zr as defaultStructuralRolloutPolicy, Zs as createSupervisorSpanRecorder, Zt as InMemoryRunContext, Zu as AuthoredAnalystDefinition, _ as boxSurfaceReader, _a as assertProfileModelsAllowed, _c as DriverUnmetContractDecision, _d as QuestionEscalationOutcome, _i as pickChampion, _l as RenderCorpusToInstructionsOptions, _m as materializeTreeView, _n as WorkerInteractiveAdmission, _o as SurfaceScore, _r as chatTransportExecutor, _s as supervisorAgent, _t as RunCancellation, _u as PairwiseVerdict, a as SandboxInstance, aa as claimRetainedInteractiveControl, ac as runFinalizer, ai as visibleCheckScore, al as FanoutWinnerSelector, am as mapExecutorResult, an as SupervisorCleanupReceipt, ao as AgenticTask, as as ResolveDriveHarness, at as analyzeTrace, au as CompletionVerdict, b as AnalystAuthoring, ba as builtinShapes, bc as defaultUnmetContractSteer, bi as AuthorStrategyOptions, bl as ScopeWidenGate, bm as contentAddress, bn as InPlaceCliExecutorOptions, bo as defineStrategy, br as BudgetPool, bs as CoordinationMcpHandle, bt as WorkerSteerAcknowledgement, bu as leaderboard, c as VerifierEnvironmentOptions, ca as startRetainedInteractiveRun, cc as DriverAttemptsExhaustedError, cd as DefinedAnalystRecord, ci as EvolutionArchiveNode, cl as LoopUntilSpec, cm as InMemoryResultBlobStore, cn as patchDelivered, co as CorpusReadbackOptions, cr as CodeModeOptions, cs as SupervisorAgentDeps, ct as captureWorkerTraceEvidence, cu as sentinelCompletion, d as HarvestSurfaceDiffsOptions, da as PromotionGateOptions, dc as DriverProgressMark, dd as DownMessageDeliveryOutcome, di as EvolutionCandidate, dl as PanelJudge, dm as SpawnForestEvent, dn as createWorktreeCliExecutor, do as Strategy, dr as unsafeInProcessRunner, ds as SupervisorNodeContextSeed, dt as createRootHandle, du as GroupOf, ea as reconnectRetainedRun, ec as FinalizerSettled, ed as AuthorizedDownMessage, ei as officialChecksFromMeta, el as EqualKOnCostOptions, em as defaultToolDetectors, en as createFileRunContext, eo as printBenchmarkReport, er as queueOf, es as CoordinationToolFace, et as gitWorkspace, eu as LeaderboardSpec, f as SurfaceDiff, fa as PromotionVerdict, fc as DriverReentry, fd as DownMessageEvent, fi as EvolutionGeneration, fl as PanelSpec, fm as SpawnForestInDoubtNode, fn as InteractiveWorkerEnvironment, fo as StrategyArtifacts, fr as ChatCompletionsTransport, fs as SupervisorProfile, ft as createSupervisor, fu as Interval, g as WatchedSurface, ga as assertModelAllowed, gc as DriverUnmetContractContext, gi as discriminatingMeans, gl as RenderCorpusToInstructions, gm as loadSpawnForest, gn as workerFromInteractiveProvider, go as StrategyShotResult, gr as ChatWorkerSeamOptions, gs as resolveSupervisorProfile, gt as RunCancelRequest, gu as PairwiseOptions, h as SurfaceReader, ha as profileOptimizerModelCall, hc as DriverRetryPolicy, hi as StrategyEvolutionConfig, hl as PipelineStage, hm as SpawnForestTree, hn as InteractiveWorkerResult, ho as StrategyResult, hr as ChatTransportTool, hs as assertCoordinationBinding, ht as settledToIteration, hu as LeaderboardRow, i as SandboxEvent, ia as ClaimRetainedInteractiveControlOptions, ic as pickBestDelivered, id as CoordinationStats, ii as structuralRollout, il as FanoutSynthesis, im as gateOnDeliverable, in as ProvisionedSupervisor, io as AgenticSurface, ir as delegate, is as ObserveSupervisorNodeEvent, it as TrajectoryAnalysis, iu as CompletionPolicy, j as AttachWorkerOptions, ja as panel, jc as InProcessPromptCtx, jd as WorkerSpawnContext, ji as StdioMcpServerSpec, jl as WidenSpec, jn as TraversalContinuity, jo as loopCampaignDispatch, jr as assessAuthoredProfile, js as AllWorkersStalledOptions, jt as readWorkerSteerAcknowledgement, ju as AnytimeReport, k as WorktreeFanoutOptions, ka as flatWidenGate, kc as inlineSandboxClient, kd as SpawnRefusalCause, ki as McpToolDescriptor, kl as WidenDecision, kn as RunGraphOptions, ko as SuperviseDispatchOptions, kr as ProfileRichnessThresholds, ks as FileCoordinationLog, kt as readWorkerCancelRequests, ku as auditIntent, l as createVerifierEnvironment, la as ResolveSandboxClientOptions, lc as DriverBudgetReadout, ld as DownMessageAuthorizationInput, li as EvolutionAuthor, ll as LoopUntilState, lm as InMemorySpawnJournal, ln as WorktreeCliExecutorOptions, lo as RunAgenticOptions, lr as CodeModeRunner, lt as parseWorkerToolTraceArtifact, lu as stopSentinel, m as SurfaceReadOutcome, ma as profileChatClient, mc as DriverRepromptRefusal, md as MakeWorkerAgent, mi as ReproductionCheck, ml as Pipeline, mm as SpawnForestNode, mn as InteractiveWorkerOptions, mo as StrategyMessage, mr as ChatTransportExecutorOptions, ms as SupervisorToolInvocationContext, mt as createScope, mu as LeaderboardOptions, n as AnalystFinding, na as startRetainedRun, nc as bestDelivered, nd as ContinuityMode, ni as sandboxCheckRunner, nl as Fanout, nm as DeliverableSpec, nn as ProvisionSupervisorConnection, no as AgenticOptions, nr as DelegateOptions, ns as DriveHarness, nt as localShell, nu as CompletionAnalyst, o as computeFindingId, oa as reconnectRetainedInteractiveRun, oc as DriverAttemptRecord, oi as ChampionPick, ol as FlatWidenGate, om as FileResultBlobStore, on as provisionSupervisor, oo as AgenticTool, os as ResolveSupervisorTools, ot as WORKER_TOOL_TRACE_SCHEMA_VERSION, ou as completionAuthorizes, p as SurfaceReadBox, pa as promotionGate, pc as DriverRepromptPolicy, pd as EscalateQuestion, pi as EvolutionReport, pl as PanelVerdict, pm as SpawnForestMissingTree, pn as InteractiveWorkerKeyInput, po as StrategyCtx, pr as ChatSessionStore, ps as SupervisorToolDescriptor, pt as ScopeArgs, pu as Leaderboard, q as copyUntrackedIntoClone, qa as BenchmarkCell, qc as AssertTraceDerivedFindings, qi as SessionCapableBox, ql as LeaderboardBenchTask, qn as ConcurrencyCaps, qo as WorkerSpawnRetryHooks, qp as BusEvent, qr as canDisplace, qs as SupervisorSpanAttributes, qt as workerSteerRequestFile, qu as AnalystLensOutput, r as CreateSandboxOptions, ra as startRetainedRunInEnvironment, rc as collectDelivered, rd as CoordinationEvent, ri as selectBestIndex, rl as FanoutOptions, rm as ExecutorResultMapping, rn as ProvisionSupervisorRequest, ro as AgenticRunResult, rr as defaultDelegateBudget, rs as DriveHarnessOwnerContext, rt as runInWorkspace, ru as CompletionEvidence, s as makeFinding, sa as recoverRetainedInteractiveRun, sc as DriverAttemptStop, sd as DEFAULT_AWAIT_EVENT_TIMEOUT_MS, si as ChampionPolicy, sl as LoopUntil, sm as FileSpawnJournal, sn as PatchDeliverableOptions, so as ArtifactHandle, sr as finalizeBestDelivered, ss as ResolvedSupervisorProfile, st as WorkerToolTraceArtifact, su as deterministicCompletion, t as AgentProfile, ta as recoverRetainedRun, tc as SupervisorFinalizer, td as ContinuationInstruction, ti as resolveEntrySymbol, tl as EqualKVerdict, tm as watchTrace, tn as createInMemoryRunContext, to as runBenchmark, tr as rollingDispatch, ts as CoordinationVerbs, tt as jjWorkspace, tu as defineLeaderboard, u as BoxSurfaceReaderOptions, ua as resolveSandboxClient, uc as DriverContractState, ud as DownMessageDeliveryAttempt, ui as EvolutionBandInfo, ul as Panel, um as SpawnForest, un as WorktreePatchArtifact, uo as ShotSpec, ur as codeModeSupervisorTools, us as SupervisorNodeContext, ut as workerTraceAnalysisStore, uu as AxisScoresOf, v as fsSurfaceReader, va as equalKOnCost, vc as OnUnmetContract, vd as QuestionEscalationRecord, vi as runStrategyEvolution, vl as ScopeAnalyst, vm as pendingWaits, vn as readWorkerInteractiveAdmissions, vo as adaptiveRefine, vr as chatWorkerSeam, vt as WorkerCancelRequest, vu as ProfileKeyOf, w as SurfaceWorkerOut, wa as runPersonified, wc as defaultSelectWinner, wi as strategyAuthorContract, wl as TrajectoryReportFn, wn as EdgeTraversal, wo as sample, wr as ReservationTicket, ws as CoordinationHttpAudit, wt as cancelWorker, wu as renderLeaderboardSvg, x as SuperviseSurfaceOptions, xa as createShapeRegistry, xc as RunAgentRoundsOptions, xi as AuthoredStrategy, xl as SteerContext, xn as createInPlaceCliExecutor, xo as depthStrategy, xr as BudgetPoolRestore, xs as CoordinationPublicAddress, xt as WorkerSteerRequest, xu as pairwiseSignificance, y as harvestSurfaceDiffs, ya as trajectoryReport, yc as classifyDriverFailure, yi as selectChampion, yl as ScopeAnalyzeInput, ym as replaySpawnTree, yn as workerInteractiveAdmissionFile, yo as breadthStrategy, yr as createChatSessionStore, ys as CoordinationAuthentication, yt as WorkerCancellation, yu as ScoreOf, z as NOTE_MAX_CHARS, za as buildSteerContext, zc as Observation, zi as SandboxRunAbortError, zl as PersonaExecutors, zn as createPromptRegistry, zo as SuperviseRegistry, zr as CheckSource, zs as StopRule, zt as workerCancelRequestsFile, zu as WaterfallCollector } from "./index-prZR0SAw.js";
|
|
3
3
|
import { $ as resolveSecretEnv, $a as RetainedRunEnvironmentAdmission, $r as SupervisorOpts, $t as WorktreeHarnessResult, A as Inbox, Aa as RecoverRetainedInteractiveRunOptions, An as AUTHORITY_MARKERS, Ar as ProviderModelAttemptEvidence, At as providerAsExecutor, B as createSandboxToolPartState, Ba as RecoverRetainedRunIntentOptions, Bn as PeerMailSendInput, Br as Scope, Bt as CodexRolloutStoreReader, C as createExecutorRegistry, Ca as DEFAULT_STALL_AFTER_MS, Cn as ToolSpec, Cr as MaterializedModelIdentity, Ct as ProviderExecutorOptions, D as SteerableSandboxSession, Da as createActivityLog, Dn as ToolLoopCompactionOptions, Dr as NodeSnapshot, Dt as SandboxClientProviderOptions, E as SteerableSandboxArgs, Ea as WorkerProgress, En as ToolLoopCompaction, Er as NodeId, Et as ResourceRequest, F as SandboxOutputMarker, Fa as StartRetainedInteractiveRunOptions, Fn as PeerMailKind, Fr as RootHandle, Ft as SandboxControlClient, G as sandboxEventServedBackend, Ga as RetainedInteractiveIntentAdmission, Gn as isPeerMailEnvelope, Gr as SpawnPrior, Gt as createCodexRolloutStoreReader, H as extractLlmCallEvent, Ha as RecoverRetainedRunResult, Hn as PeerMailboxOptions, Hr as SpawnEvent, Ht as CodexRolloutTurn, I as SandboxServedBackend, Ia as NativeContextContinuationExecution, Ii as createOpenInferenceFileExporter, In as PeerMailLimits, Ir as RootMaterialization, It as createTangleSandboxExactProcessProvider, J as KeyProvider, Ja as RetainedRunAdmissionHook, Jr as SpendChannel, Jt as HarnessUsage, K as sandboxProgressEvents, Ka as RetainedInteractiveStartedAdmission, Kn as peerMailTools, Kr as SpawnRejection, Kt as harnessUsageIsEmpty, L as SandboxToolPartState, La as NativeContextContinuationHandle, Li as createOtelExporter, Ln as PeerMailOutcome, Lr as RootProviderModelEvidence, Lt as CodexForkBoundary, M as PeerInboxMessage, Ma as RetainedInteractiveEnvironmentInput, Mn as PEER_MAIL_WIRE_KEY, Mr as ResultBlobStore, Mt as resolveAgentEnvironmentProvider, N as createInbox, Na as RetainedInteractiveRunHandle, Nn as PeerMailEnvelope, Nr as ResumedKeyState, Nt as sandboxClientAsProvider, O as createSteerableSandboxSession, Oa as readWorkerProgress, On as ToolLoopMessageRecord, Or as NodeStatus, Ot as WorkspaceRequest, P as SandboxLeafOut, Pa as RetainedInteractiveStartMaterial, Pn as PeerMailEvent, Pr as ResumedWork, Pt as CreateTangleSandboxExactProcessProviderOptions, Q as resolveMcpServerLaunch, Qa as RetainedRunEffect, Qr as Supervisor, Qt as WorktreeCommandResult, R as SandboxUsageLedger, Ra as NativeContextContinuationInput, Rn as PeerMailReadout, Rr as RootSignal, Rt as CodexRolloutIdentity, S as createExecutor, Sa as ActivityNote, Sn as RouterTransportConfig, Sr as MaterializedExecutionIdentity, St as ProviderAsSandboxClientOptions, T as SandboxSteeringOptions, Ta as ScopeProgressInput, Tn as ToolLoopChat, Tr as NodeExecutionIdentity, Tt as ProviderPromptOptions, U as mapSandboxEvent, Ua as RetainedInteractiveAdmission, Un as claimsAuthority, Ur as SpawnJournal, Ut as CodexStoreDelta, V as createSandboxUsageLedger, Va as RecoverRetainedRunOptions, Vn as PeerMailbox, Vr as Settled, Vt as CodexRolloutStoreRef, W as mapSandboxToolEvent, Wa as RetainedInteractiveEnvironmentAdmission, Wn as createPeerMailbox, Wr as SpawnOpts, Wt as addHarnessUsage, X as envKeyProvider, Xa as RetainedRunCancellation, Xr as SteerableRootHandle, Xt as InPlaceHarnessResult, Y as ResolvedMcpServerLaunch, Ya as RetainedRunCancelOptions, Yr as SpendGap, Yt as decodeHarnessUsage, Z as mcpSecretEnvMetadataKey, Za as RetainedRunDispatchedAdmission, Zr as SupervisedResult, Zt as WorktreeCheckRunner, _ as RouterSeam, _a as TraceSource, _r as ExecutorRegistry, _t as CreateAgentEnvironmentInput, a as StreamAgentTurnOptions, aa as WaitProbeRegistry, ai as WaitOpts, ao as RetainedRunStartMaterial, at as AgentEnvironmentProviderRef, b as cliInPlaceExecutor, ba as sandboxSessionTraceSource, br as ExecutorToolCall, bt as ForkRequest, c as BridgeHarnessStore, ca as createWaitProbes, ci as WorkerInteractiveUnavailableReason, co as StartRetainedRunOptions, cr as ExecutorAccounting, ct as AgentEnvironmentStatus, d as CliInPlaceSeam, da as timerAt, di as WorkerTraceResolver, dr as ExecutorContext, dt as AgentSession, ei as TokenUsageProvenance, en as WorktreeProfileMaterializationReceipt, eo as RetainedRunEventOptions, et as secretEnvOfMcpServer, f as CliSeam, fa as validateWaitSpec, fi as WorkerTraceSeamCarrier, fr as ExecutorExecutionBinding, ft as AgentSessionRef, g as ProviderSeam, ga as ToolStepInput, gi as workerTraceSeamKey, gr as ExecutorProgressEvent, gt as CheckpointRequest, h as ExecutorConfig, ha as SessionTraceBox, hi as workerTraceHeaders, hr as ExecutorNodeContext, ht as CheckpointRef, i as CollectedAgentTurn, ia as WaitProbe, ii as UsageEvent, io as RetainedRunSnapshot, ir as Budget, it as AgentEnvironmentProvider, j as InboxMessage, ja as RetainedInteractiveAdmissionHook, jn as DEFAULT_PEER_MAIL_LIMITS, jr as ProviderModelExecutionEvidence, jt as providerAsSandboxClient, k as AuthorityInboxMessage, ka as ReconnectRetainedInteractiveRunOptions, kn as ToolLoopToolCall, kr as ProfileMaterializationReceipt, kt as createAgentEnvironmentProviderRegistry, l as BridgeModelCredential, la as isWaitOutcome, li as WorkerTraceEvidence, lr as ExecutorCancellation, lt as AgentEnvironmentSummary, m as CliWorktreeSeam, ma as SessionMessageLike, mi as workerTraceEnv, mr as ExecutorMaterialization, mt as AgentTurnResult, n as AgentTurnInput, na as PendingWait, ni as UnconfirmedTeardown, no as RetainedRunIntentAdmission, nr as AgentExecutionRef, nt as AgentEnvironmentCapabilities, o as collectAgentTurn, oa as WaitRejection, oi as WidenGate, oo as RetainedRunTurnInput, or as ExecutionBindingReceipt, ot as AgentEnvironmentProviderRegistry, p as CliWorktreeBridgeSeam, pa as waitUntil, pi as readWorkerTraceContext, pr as ExecutorFactory, pt as AgentSessionStatus, q as sumSandboxUsage, qa as RetainedRunAdmission, qn as peerMailVerbNames, qr as Spend, qt as readCodexRolloutSession, r as AgentTurnUsage, ra as WaitOutcome, ri as UnknownMaterializationReason, ro as RetainedRunReplayPoint, rr as AgentSpec, rt as AgentEnvironmentEvent, s as streamAgentTurn, sa as WaitSpec, si as WorkerInteractiveSession, so as StartRetainedRunInEnvironmentOptions, sr as Executor, st as AgentEnvironmentQuery, t as AgentTurnBackend, ti as TreeView, to as RetainedRunHandle, tr as Agent, tt as AgentEnvironment, u as BridgeSeam, ua as pollFor, ui as WorkerTraceUnavailableReason, ur as ExecutorCancellationRequest, ut as AgentProfileRef, v as RouterToolsSeam, va as createPushTraceSource, vr as ExecutorResult, vt as ExecRequest, w as DEFAULT_SANDBOX_STEERING_MAX_TURNS, wa as ExecutorProgress, wn as ToolLoopCallContext, wr as NoWinnerError, wt as ProviderLeafOut, x as cliWorktreeExecutor, xa as ActivityLog, xr as Handle, xt as PlacementInfo, y as SandboxSeam, ya as decodeToolPart, yr as ExecutorTeardownWarning, yt as ExecResult, z as assertSandboxServedModel, za as ReconnectRetainedRunOptions, zn as PeerMailRefusal, zr as Runtime, zt as CodexRolloutSession } from "./stream-agent-turn-CAj0XcwD.js";
|
|
4
|
-
export { AUTHORITY_MARKERS, type AcquireOptions, type ActivityLog, type ActivityNote, type Agent, type AgentEnvironment, type AgentEnvironmentCapabilities, type AgentEnvironmentEvent, type AgentEnvironmentProvider, type AgentEnvironmentProviderRef, type AgentEnvironmentProviderRegistry, type AgentEnvironmentQuery, type AgentEnvironmentStatus, type AgentEnvironmentSummary, type AgentExecutionRef, type AgentGraph, type AgentProfile, type AgentProfileRef, type AgentRunSpec, type AgentSession, type AgentSessionRef, type AgentSessionStatus, type AgentSpec, type AgentTurnBackend, type AgentTurnInput, type AgentTurnResult, type AgentTurnUsage, type AgenticOptions, type AgenticRunResult, type AgenticSurface, type AgenticTask, type AgenticTool, type AllWorkersStalledOptions, type AnalystAuthoring, type AnalystFinding, type AnalystFindingEvent, type AnalystKind, type AnalystLensOutput, type AnalystRegistry, type AnalyzeOnSettleRoute, type AnytimeReport, type AnytimeStrategySummary, type AnytimeTaskCurve, type ArtifactHandle, type AssertTraceDerivedFindings, type AttachWorkerOptions, type AuditIntentInput, type AuditIntentOptions, type AuthorStrategyOptions, type AuthoredAnalystDefinition, type AuthoredAnalystLimits, type AuthoredHarness, type AuthoredProfile, type AuthoredStrategy, type AuthorityInboxMessage, type AuthorizeDownMessage, type AuthorizedDownMessage, type AuthorizedSpawn, type AuthorizedSpawnContext, type AxisScoresOf, type BenchmarkCell, type BenchmarkConfig, type BenchmarkLift, type BenchmarkReport, type BenchmarkStrategySummary, type BenchmarkTaskRow, type BoxSurfaceReaderOptions, type BranchCapableBox, type BridgeHarnessStore, type BridgeModelCredential, type BridgeSeam, type Budget, type BudgetPool, type BudgetPoolRestore, type BudgetReadout, type BusEvent, type BusRecord, type BusStats, type ChampionPick, type ChampionPolicy, type ChatCompletionsTransport, type ChatSessionStore, type ChatTransportExecutorOptions, type ChatTransportTool, type ChatWorkerSeamOptions, type CheckExecChannel, type CheckOutcome, type CheckRunContext, type CheckRunner, type CheckSource, type CheckSourceCtx, type CheckpointCapableBox, type CheckpointRef, type CheckpointRequest, type ClaimRetainedInteractiveControlOptions, type CliInPlaceSeam, type CliSeam, type CliWorktreeBridgeSeam, type CliWorktreeSeam, type CodeModeOptions, type CodeModeRunner, type CodexForkBoundary, type CodexRolloutIdentity, type CodexRolloutSession, type CodexRolloutStoreReader, type CodexRolloutStoreRef, type CodexRolloutTurn, type CodexStoreDelta, type CollectedAgentTurn, type CombinatorShape, type CompletionAnalyst, type CompletionEvidence, type CompletionPolicy, type CompletionVerdict, type ConcurrencyCaps, type ContinuationInstruction, type ContinuityMode, type CoordinationAuthentication, type CoordinationBinding, type CoordinationDeliveryEvidence, type CoordinationEvent, type CoordinationHttpAudit, type CoordinationHttpOptions, type CoordinationLog, type CoordinationMcpHandle, type CoordinationOwnerId, type CoordinationPublicAddress, type CoordinationStats, type CoordinationToolFace, type CoordinationTransportOptions, type CoordinationVerbs, type CopyOptions, type Corpus, type CorpusFilter, type CorpusReadbackOptions, type CorpusRecord, type CreateAgentEnvironmentInput, type CreateSandboxOptions, type CreateScopeAnalystOptions, type CreateTangleSandboxExactProcessProviderOptions, type CriuCapableClient, DEFAULT_AUTHORED_PROFILE_SECURITY_POLICY, DEFAULT_AWAIT_EVENT_TIMEOUT_MS, DEFAULT_PEER_MAIL_LIMITS, DEFAULT_SANDBOX_STEERING_MAX_TURNS, DEFAULT_STALL_AFTER_MS, type DefaultVerdict, type DefinePersona, type DefinePersonaInput, type DefinedAnalystRecord, type DefinedLeaderboard, type DelegateOptions, type Deliverable, type DeliverableResolutionInput, type DeliverableSpec, type DeliveredOutput, type DispatchReport, type DispatchStopReason, type DispatchUnit, type DownMessageAuthorizationInput, type DownMessageDeliveryAttempt, type DownMessageDeliveryOutcome, type DownMessageEvent, type DriveHarness, type DriveHarnessOwnerContext, type Driver, type DriverAttemptRecord, type DriverAttemptStop, DriverAttemptsExhaustedError, type DriverBudgetReadout, type DriverContractState, type DriverProgressMark, type DriverReentry, type DriverRepromptPolicy, type DriverRepromptRefusal, type DriverRetryPolicy, type DriverUnmetContractContext, type DriverUnmetContractDecision, EVIDENCE_MAX_CHARS, type EdgeDeliveryOutcome, type EdgeTraversal, type Environment, type EqualKArm, type EqualKOnCost, type EqualKOnCostOptions, type EqualKVerdict, type EscalateQuestion, type EventBus, type EvolutionArchiveNode, type EvolutionAuthor, type EvolutionBandInfo, type EvolutionCandidate, type EvolutionGeneration, type EvolutionReport, type ExecCtx, type ExecRequest, type ExecResult, type ExecutionBindingReceipt, type Executor, type ExecutorAccounting, type ExecutorCancellation, type ExecutorCancellationRequest, type ExecutorConfig, type ExecutorContext, type ExecutorExecutionBinding, type ExecutorFactory, type ExecutorMaterialization, type ExecutorNodeContext, type ExecutorProgress, type ExecutorProgressEvent, type ExecutorRegistry, type ExecutorResult, type ExecutorResultMapping, type ExecutorTeardownWarning, type ExecutorToolCall, type Fanout, type FanoutOptions, type FanoutSynthesis, type FanoutWinnerSelector, FileCoordinationLog, FileCorpus, FileResultBlobStore, FileSpawnJournal, type FinalizeContext, type FinalizerSettled, type FlatWidenGate, type ForkCapableBox, type ForkRequest, type GitWorkspaceOptions, type GraphEdge, GraphEdgeCapError, type GraphNode, type GraphResult, type GroupOf, type Handle, type HarnessUsage, type HarvestCorpusOptions, type HarvestFailure, type HarvestReport, type HarvestSurfaceDiffsOptions, InMemoryCorpus, InMemoryResultBlobStore, type InMemoryRunContext, type InMemoryRunContextOptions, InMemorySpawnJournal, type InPlaceCliExecutorOptions, type InPlaceHarnessResult, type InProcessOnPrompt, type InProcessPromptCtx, type InProcessSandboxClientOptions, type Inbox, type InboxMessage, type IntentAudit, type InteractiveWorkerEnvironment, type InteractiveWorkerKeyInput, type InteractiveWorkerOptions, type InteractiveWorkerResult, type Interval, type Iteration, type KeyProvider, type Leaderboard, type LeaderboardBenchScore, type LeaderboardBenchTask, type LeaderboardBenchmarkAdapter, type LeaderboardFlagSpec, type LeaderboardIterationInfo, type LeaderboardOptions, type LeaderboardRow, type LeaderboardRunContext, type LeaderboardScenario, type LeaderboardScore, type LeaderboardSpec, type LocalMcpMaterialization, type LocalSandboxClientOptions, type LoopCampaignDispatchOptions, type LoopDecisionPayload, type LoopDispatchOptions, type LoopEndedPayload, type LoopIterationDispatchPayload, type LoopIterationEndedPayload, type LoopIterationStartedPayload, type LoopLineageOptions, type LoopOptionsForDispatch, type LoopPlanDescription, type LoopPlanPayload, type LoopResult, type LoopSandboxPlacement, type LoopShape, type LoopStartedPayload, type LoopTeardownFailedPayload, type LoopTokenUsage, type LoopTraceEmitter, type LoopTraceEvent, type LoopUntil, type LoopUntilSpec, type LoopUntilState, type LoopWinner, type MakeWorkerAgent, type MaterializeLocalMcpOptions, type MaterializedExecutionIdentity, type MaterializedModelIdentity, type McpEndpoint, type McpEnvironmentOptions, McpSpawnFault, type McpToolDescriptor, type MountManifestEntry, type MountRecorder, NOTE_MAX_CHARS, type NativeContextContinuationExecution, type NativeContextContinuationHandle, type NativeContextContinuationInput, type NoProgressForOptions, type NoWinnerError, type NodeExecutionIdentity, type NodeId, type NodeSnapshot, type NodeStatus, type Observation, type ObserveInput, type ObserveOptions, type ObserveSupervisorNodeEvent, type OnUnmetContract, type OpenSandboxRunBeforeStartContext, type OpenSandboxRunOptions, type OpenSandboxRunPromptOptions, type Outcome, type OutputAdapter, PEER_MAIL_WIRE_KEY, type PairwiseOptions, type PairwiseVerdict, type Panel, type PanelJudge, type PanelSpec, type PanelVerdict, type PatchDeliverableOptions, type PeerInboxMessage, type PeerMailEnvelope, type PeerMailEvent, type PeerMailKind, type PeerMailLimits, type PeerMailOutcome, type PeerMailReadout, type PeerMailRefusal, type PeerMailSendInput, type PeerMailbox, type PeerMailboxOptions, type PendingWait, type Persona, type PersonaContext, type PersonaExecutors, type Pipeline, type PipelineStage, type PlacementInfo, type PlateauOptions, type PriorCoordination, type ProfileKeyOf, type ProfileMaterializationReceipt, type ProfileRichness, type ProfileRichnessThresholds, type ProgressSample, type ProgressTracker, type ProgressTrackerOptions, type ProgressView, type PromotionGateOptions, type PromotionVerdict, type PromptHandle, type PromptRegistry, type ProviderAsSandboxClientOptions, type ProviderExecutorOptions, type ProviderLeafOut, type ProviderModelAttemptEvidence, type ProviderModelExecutionEvidence, type ProviderPromptOptions, type ProviderSeam, type ProvisionSupervisorConnection, type ProvisionSupervisorRequest, type ProvisionedSupervisor, type PublishOptions, type QuestionEscalationOutcome, type QuestionEscalationRecord, type ReconnectRetainedInteractiveRunOptions, type ReconnectRetainedRunOptions, type RecoverRetainedInteractiveRunOptions, type RecoverRetainedRunIntentOptions, type RecoverRetainedRunOptions, type RecoverRetainedRunResult, type RegisteredPrompt, type RegistryAnalyzeProjection, type RenderCorpusToInstructions, type RenderCorpusToInstructionsOptions, type RepairStop, type ReproductionCheck, type ReservationRejection, type ReservationTicket, type ResolveDriveHarness, type ResolveSandboxClientOptions, type ResolveSupervisorTools, type ResolvedMcpServerLaunch, type ResolvedSupervisorProfile, type ResolvedWorkerSpawnRetry, type ResourceRequest, type ResultBlobStore, type ResumedKeyState, type ResumedWork, type RetainedInteractiveAdmission, type RetainedInteractiveAdmissionHook, type RetainedInteractiveEnvironmentAdmission, type RetainedInteractiveEnvironmentInput, type RetainedInteractiveIntentAdmission, type RetainedInteractiveRunHandle, type RetainedInteractiveStartMaterial, type RetainedInteractiveStartedAdmission, type RetainedRunAdmission, type RetainedRunAdmissionHook, type RetainedRunCancelOptions, type RetainedRunCancellation, type RetainedRunDispatchedAdmission, type RetainedRunEffect, type RetainedRunEnvironmentAdmission, type RetainedRunEventOptions, type RetainedRunHandle, type RetainedRunIntentAdmission, type RetainedRunReplayPoint, type RetainedRunSnapshot, type RetainedRunStartMaterial, type RetainedRunTurnInput, type RollingDispatchOptions, type RootHandle, type RootMaterialization, type RootProviderModelEvidence, type RootSignal, type RouterSeam, type RouterToolsSeam, type RouterTransportConfig, type RunAgentRoundsOptions, type RunAgenticOptions, type RunCancelRequest, type RunCancellation, type RunContext, type RunGraphOptions, type RunPersonified, type RunPersonifiedOptions, type RunProvenance, type Runtime, type SandboxCapabilities, type SandboxClient, type SandboxClientProviderOptions, type SandboxControlClient, type SandboxEvent, type SandboxInstance, type SandboxLeafOut, type SandboxLineage, type SandboxLineageHandle, type SandboxOutputMarker, type SandboxRun, SandboxRunAbortError, type SandboxSeam, type SandboxServedBackend, type SandboxSteeringOptions, type SandboxToolPartState, type SandboxUsageLedger, type Scope, type ScopeAnalyst, type ScopeAnalyzeInput, type ScopeArgs, type ScopeProgressInput, type ScopeWidenGate, type ScoreOf, type SelectionReceipt, type SessionCapableBox, type SessionMessageLike, type SessionTraceBox, type Settled, type ShapeBudget, type ShapeContext, type ShapeRegistry, type Shell, type ShotSpec, type SpawnEvent, type SpawnForest, type SpawnForestEvent, type SpawnForestInDoubtNode, type SpawnForestMissingTree, type SpawnForestNode, type SpawnForestTree, type SpawnJournal, type SpawnOpts, type SpawnPreflight, type SpawnPreflightContext, type SpawnPrior, type SpawnRefusal, type SpawnRefusalCause, type SpawnRejection, type Spend, type SpendChannel, type SpendGap, type StartRetainedInteractiveRunOptions, type StartRetainedRunInEnvironmentOptions, type StartRetainedRunOptions, type StdioMcpConnection, type StdioMcpServerSpec, type SteerContext, type SteerableRootHandle, type SteerableSandboxArgs, type SteerableSandboxSession, type StopDecision, type StopRule, type Strategy, type StrategyArtifacts, type StrategyCtx, type StrategyEvolutionConfig, type StrategyMessage, type StrategyResult, type StrategyShotResult, type StreamAgentTurnOptions, type StructuralRolloutConfig, type StructuralRolloutMessage, type StructuralRolloutPolicy, type StructuralRolloutResult, type SuperviseDispatchOptions, type SuperviseOptions, type SuperviseOptionsForDispatch, type SuperviseRegistry, type SuperviseRegistryTable, type SuperviseSurfaceOptions, type SuperviseSurfaceResult, type SupervisedResult, type Supervisor, type SupervisorAgentDeps, type SupervisorCleanupReceipt, type SupervisorFinalizer, type SupervisorNodeContext, type SupervisorNodeContextSeed, type SupervisorOpts, type SupervisorProfile, type SupervisorSpanAttributes, type SupervisorSpanOptions, type SupervisorSpanOutcome, type SupervisorSpanRecorder, type SupervisorToolDescriptor, type SupervisorToolInvocationContext, type SurfaceDiff, type SurfaceReadBox, type SurfaceReadOutcome, type SurfaceReader, type SurfaceScore, type SurfaceWorkerConfig, type SurfaceWorkerOut, TERMINAL_DECISIONS, type TerminalDecision, type TokenUsageProvenance, type ToolLoopCallContext, type ToolLoopChat, type ToolLoopCompaction, type ToolLoopCompactionOptions, type ToolLoopMessageRecord, type ToolLoopToolCall, type ToolSpec, type ToolStepInput, type TraceSource, type TrajectoryAnalysis, type TrajectoryNode, type TrajectoryReport, type TrajectoryReportFn, type TrajectoryReportOptions, type TraversalContinuity, type TreeView, type TurnResult, type UnconfirmedTeardown, type UnknownMaterializationReason, type UntrackedCopyStats, type UsageEvent, VERIFY_TAIL_CHARS, type ValidationCtx, type Validator, type VerifierEnvironmentOptions, type Verify, type VerifySpec, type VisibleCheck, WORKER_TOOL_TRACE_SCHEMA_VERSION, type WaitOpts, type WaitOutcome, type WaitProbe, type WaitProbeRegistry, type WaitRejection, type WaitSpec, type WatchTraceOptions, type WatchedSurface, type WaterfallCollector, type WaterfallReport, type WaterfallSpan, type Widen, type WidenDecision, type WidenGate, type WidenLineage, type WidenSpec, type WinnerStrategy, type WorkerCancelRequest, type WorkerCancellation, type WorkerEvidenceInput, type WorkerInteractiveAdmission, type WorkerInteractiveBinding, type WorkerInteractiveProviderSource, type WorkerInteractiveSession, type WorkerInteractiveUnavailableReason, type WorkerProgress, type WorkerResumeContext, type WorkerSpawnContext, type WorkerSpawnRetryAttempt, type WorkerSpawnRetryHooks, type WorkerSpawnRetryPolicy, type WorkerSteerAcknowledgement, type WorkerSteerRequest, type WorkerToolTraceArtifact, type WorkerTraceEvidence, type WorkerTraceResolver, type WorkerTraceSeamCarrier, type WorkerTraceUnavailableReason, type WorkerWatchOptions, type Workspace, type WorkspaceCommit, type WorkspaceRequest, type WorkspaceRun, type WorktreeCheckRunner, type WorktreeCliExecutorOptions, type WorktreeCommandResult, type WorktreeFanoutOptions, type WorktreeHarnessResult, type WorktreePatchArtifact, type WorktreeProfileMaterializationReceipt, type WriteWorkerSteerOptions, acquireSandbox, adaptiveRefine, addHarnessUsage, allOf, allWorkersStalled, analystsFromRegistry, analyzeTrace, analyzesFindingsReportPrompt, anyOf, anytimeReport, areaUnderCurve, asAuthoredProfile, assertCoordinationBinding, assertModelAllowed, assertProfileModelsAllowed, assertSandboxServedModel, assertStrategyContract, assertTraceDerivedFindings, assessAuthoredProfile, attachWorker, auditIntent, authorStrategy, bestDelivered, bestSoFar, boxSurfaceReader, breadthStrategy, buildSteerContext, builtinShapes, canDisplace, cancelRun, cancelWorker, canonicalFindingEvent, captureWorkerTraceEvidence, chatTransportExecutor, chatWorkerSeam, claimRetainedInteractiveControl, claimsAuthority, classifyDriverFailure, cliInPlaceExecutor, cliWorktreeExecutor, closingWorkerNote, codeModeSupervisorTools, collectAgentTurn, collectDelivered, compareCheckOutcomes, completionAuthorizes, composeCheckSources, composeWorkerEvidence, computeFindingId, connectStdioMcp, contentAddress, copyUntrackedIntoClone, createActivityLog, createAgentEnvironmentProviderRegistry, createBudgetPool, createChatSessionStore, createCodexRolloutStoreReader, createEventBus, createExecutor, createExecutorRegistry, createFileRunContext, createInMemoryRunContext, createInPlaceCliExecutor, createInbox, createMcpEnvironment, createOpenInferenceFileExporter, createOtelExporter, createPeerMailbox, createProgressTracker, createPromptRegistry, createPushTraceSource, createRootHandle, createSandboxLineage, createSandboxToolPartState, createSandboxUsageLedger, createScope, createScopeAnalyst, createShapeRegistry, createSteerableSandboxSession, createSupervisor, createSupervisorSpanRecorder, createTangleSandboxExactProcessProvider, createVerifierEnvironment, createWaitProbes, createWaterfallCollector, createWorktreeCliExecutor, decodeHarnessUsage, decodeToolPart, defaultAnalystInstruction, defaultAuditorInstruction, defaultDelegateBudget, defaultEdgeTraversalCap, defaultExtractCandidate, defaultProfileRichnessThresholds, defaultSelectWinner, defaultStructuralRolloutPolicy, defaultToolDetectors, defaultUnmetContractSteer, defineLeaderboard, definePersona, defineStrategy, delegate, delegatesWorkerBriefPrompt, depthStrategy, deterministicCompletion, discriminatingMeans, dumbContinuationFailPrompt, dumbContinuationPassPrompt, effectiveConcurrency, envKeyProvider, equalKOnCost, extractLlmCallEvent, failuresAnalyst, fanout, filterAuthoredAsserts, finalizeBestDelivered, flatWidenGate, formatPromptHandle, freeSlots, fsSurfaceReader, gateOnDeliverable, gitWorkspace, harnessUsageIsEmpty, harvestCorpus, harvestSurfaceDiffs, inProcessSandboxClient, inlineSandboxClient, isPeerMailEnvelope, isPreSpawnExecutorFailure, isTerminalDecision, isWaitOutcome, jjWorkspace, kernelPromptRegistry, leaderboard, legacySupervisorRunDir, legacySupervisorRunsRoot, loadSpawnForest, localSandboxClient, localShell, loopCampaignDispatch, loopDispatch, loopUntil, makeFinding, mapExecutorResult, mapSandboxEvent, mapSandboxToolEvent, materializeLocalMcp, materializeTreeView, mcpSecretEnvMetadataKey, modelAuthoredChecks, naiveContinuationPrompt, noProgressFor, normalizeAnalyzeOnSettle, observe, officialChecksFromMeta, openSandboxRun, pairwiseSignificance, panel, parseWorkerToolTraceArtifact, patchDelivered, peerMailTools, peerMailVerbNames, pendingWaits, pickBestDelivered, pickChampion, pipeline, plateau, plateauLength, pollFor, printBenchmarkReport, probeSandboxCapabilities, profileChatClient, profileOptimizerModelCall, profileRichnessFinding, promotionGate, promptHandle, providerAsExecutor, providerAsSandboxClient, provisionSupervisor, queueOf, readCodexRolloutSession, readRunCancelRequest, readRunCancellation, readWorkerCancelRequests, readWorkerCancellation, readWorkerInteractiveAdmissions, readWorkerInteractiveBinding, readWorkerProgress, readWorkerSteerAcknowledgement, readWorkerSteerRequests, readWorkerTraceContext, reconnectRetainedInteractiveRun, reconnectRetainedRun, recoverRetainedInteractiveRun, recoverRetainedRun, refine, registerShape, registryScopeAnalyst, renderAnytimeTable, renderCorpusToInstructions, renderLeaderboardHtml, renderLeaderboardMarkdown, renderLeaderboardSvg, renderPairwiseMarkdown, renderReport, replaySpawnTree, resolveAgentEnvironmentProvider, resolveEntrySymbol, resolveMcpServerLaunch, resolveSandboxClient, resolveSecretEnv, resolveSupervisorProfile, resolveWorkerSpawnRetry, retryPreSpawnRefusals, rollingDispatch, runAgentRounds, runAgentic, runBenchmark, runCancelRequestFile, runCancellationFile, runFinalizer, runGraph, runInWorkspace, runPersonified, runStrategyEvolution, safeWorkerFile, sample, sampleFromSettled, sampleThenRefine, sandboxCheckRunner, sandboxClientAsProvider, sandboxEventServedBackend, sandboxProgressEvents, sandboxSessionTraceSource, sanitizeMcpToolSchema, secretEnvOfMcpServer, selectBestIndex, selectChampion, selectValidWinner, sentinelCompletion, serveCoordinationMcp, settledToIteration, settledWorkerOut, spendFromUsageEvents, startRetainedInteractiveRun, startRetainedRun, startRetainedRunInEnvironment, stopSentinel, strategyAuthorContract, strategyAuthorSystemPrompt, streamAgentTurn, structuralRollout, sumSandboxUsage, supervise, superviseDispatch, superviseSurface, supervisorAgent, supervisorInstructions, supervisorRunDir, supervisorRunsRoot, supervisorWorkersDir, timerAt, trajectoryReport, unsafeInProcessRunner, validateWaitSpec, verify, visibleCheckScore, waitUntil, watchTrace, widen, withUntrackedArtifacts, withWorkerSpawnRetry, workerCancelRequestsFile, workerCancellationFile, workerCancellationsDir, workerControlLogFile, workerFromBackend, workerFromInteractiveProvider, workerInboxFile, workerInboxFileFromEventDir, workerInteractiveAdmissionFile, workerInteractiveBindingFile, workerInteractiveBindingsDir, workerSteerAcknowledgementFile, workerSteerAcknowledgementsDir, workerSteerRequestFile, workerSteerRequestsDir, workerSteersDir, workerTraceAnalysisStore, workerTraceEnv, workerTraceHeaders, workerTraceSeamKey, worktreeFanout, writeWorkerSteer };
|
|
4
|
+
export { AUTHORITY_MARKERS, type AcquireOptions, type ActivityLog, type ActivityNote, type Agent, type AgentEnvironment, type AgentEnvironmentCapabilities, type AgentEnvironmentEvent, type AgentEnvironmentProvider, type AgentEnvironmentProviderRef, type AgentEnvironmentProviderRegistry, type AgentEnvironmentQuery, type AgentEnvironmentStatus, type AgentEnvironmentSummary, type AgentExecutionRef, type AgentGraph, type AgentProfile, type AgentProfileRef, type AgentRunSpec, type AgentSession, type AgentSessionRef, type AgentSessionStatus, type AgentSpec, type AgentTurnBackend, type AgentTurnInput, type AgentTurnResult, type AgentTurnUsage, type AgenticOptions, type AgenticRunResult, type AgenticSurface, type AgenticTask, type AgenticTool, type AllWorkersStalledOptions, type AnalystAuthoring, type AnalystFinding, type AnalystFindingEvent, type AnalystKind, type AnalystLensOutput, type AnalystRegistry, type AnalyzeOnSettleRoute, type AnytimeReport, type AnytimeStrategySummary, type AnytimeTaskCurve, type ArtifactHandle, type AssertTraceDerivedFindings, type AttachWorkerOptions, type AuditIntentInput, type AuditIntentOptions, type AuthorStrategyOptions, type AuthoredAnalystDefinition, type AuthoredAnalystLimits, type AuthoredHarness, type AuthoredProfile, type AuthoredStrategy, type AuthorityInboxMessage, type AuthorizeDownMessage, type AuthorizedDownMessage, type AuthorizedSpawn, type AuthorizedSpawnContext, type AxisScoresOf, type BenchmarkCell, type BenchmarkConfig, type BenchmarkLift, type BenchmarkReport, type BenchmarkStrategySummary, type BenchmarkTaskRow, type BoxSurfaceReaderOptions, type BranchCapableBox, type BridgeHarnessStore, type BridgeModelCredential, type BridgeSeam, type Budget, type BudgetPool, type BudgetPoolRestore, type BudgetReadout, type BusEvent, type BusRecord, type BusStats, type ChampionPick, type ChampionPolicy, type ChatCompletionsTransport, type ChatSessionStore, type ChatTransportExecutorOptions, type ChatTransportTool, type ChatWorkerSeamOptions, type CheckExecChannel, type CheckOutcome, type CheckRunContext, type CheckRunner, type CheckSource, type CheckSourceCtx, type CheckpointCapableBox, type CheckpointRef, type CheckpointRequest, type ClaimRetainedInteractiveControlOptions, type CliInPlaceSeam, type CliSeam, type CliWorktreeBridgeSeam, type CliWorktreeSeam, type CodeModeOptions, type CodeModeRunner, type CodexForkBoundary, type CodexRolloutIdentity, type CodexRolloutSession, type CodexRolloutStoreReader, type CodexRolloutStoreRef, type CodexRolloutTurn, type CodexStoreDelta, type CollectedAgentTurn, type CombinatorShape, type CompletionAnalyst, type CompletionEvidence, type CompletionPolicy, type CompletionVerdict, type ConcurrencyCaps, type ContinuationInstruction, type ContinuityMode, type CoordinationAuthentication, type CoordinationBinding, type CoordinationDeliveryEvidence, type CoordinationEvent, type CoordinationHttpAudit, type CoordinationHttpOptions, type CoordinationLog, type CoordinationMcpHandle, type CoordinationOwnerId, type CoordinationPublicAddress, type CoordinationStats, type CoordinationToolFace, type CoordinationTransportOptions, type CoordinationVerbs, type CopyOptions, type Corpus, type CorpusFilter, type CorpusReadbackOptions, type CorpusRecord, type CreateAgentEnvironmentInput, type CreateSandboxOptions, type CreateScopeAnalystOptions, type CreateTangleSandboxExactProcessProviderOptions, type CriuCapableClient, DEFAULT_AUTHORED_PROFILE_SECURITY_POLICY, DEFAULT_AWAIT_EVENT_TIMEOUT_MS, DEFAULT_PEER_MAIL_LIMITS, DEFAULT_SANDBOX_STEERING_MAX_TURNS, DEFAULT_STALL_AFTER_MS, type DefaultVerdict, type DefinePersona, type DefinePersonaInput, type DefinedAnalystRecord, type DefinedLeaderboard, type DelegateOptions, type Deliverable, type DeliverableResolutionInput, type DeliverableSpec, type DeliveredOutput, type DispatchReport, type DispatchStopReason, type DispatchUnit, type DownMessageAuthorizationInput, type DownMessageDeliveryAttempt, type DownMessageDeliveryOutcome, type DownMessageEvent, type DriveHarness, type DriveHarnessOwnerContext, type Driver, type DriverAttemptRecord, type DriverAttemptStop, DriverAttemptsExhaustedError, type DriverBudgetReadout, type DriverContractState, type DriverProgressMark, type DriverReentry, type DriverRepromptPolicy, type DriverRepromptRefusal, type DriverRetryPolicy, type DriverUnmetContractContext, type DriverUnmetContractDecision, EVIDENCE_MAX_CHARS, type EdgeDeliveryOutcome, type EdgeTraversal, type Environment, type EqualKArm, type EqualKOnCost, type EqualKOnCostOptions, type EqualKVerdict, type EscalateQuestion, type EventBus, type EvolutionArchiveNode, type EvolutionAuthor, type EvolutionBandInfo, type EvolutionCandidate, type EvolutionGeneration, type EvolutionReport, type ExecCtx, type ExecRequest, type ExecResult, type ExecutionBindingReceipt, type Executor, type ExecutorAccounting, type ExecutorCancellation, type ExecutorCancellationRequest, type ExecutorConfig, type ExecutorContext, type ExecutorExecutionBinding, type ExecutorFactory, type ExecutorMaterialization, type ExecutorNodeContext, type ExecutorProgress, type ExecutorProgressEvent, type ExecutorRegistry, type ExecutorResult, type ExecutorResultMapping, type ExecutorTeardownWarning, type ExecutorToolCall, type Fanout, type FanoutOptions, type FanoutSynthesis, type FanoutWinnerSelector, FileCoordinationLog, FileCorpus, FileResultBlobStore, FileSpawnJournal, type FinalizeContext, type FinalizerSettled, type FlatWidenGate, type ForkCapableBox, type ForkRequest, type GitWorkspaceOptions, type GraphEdge, GraphEdgeCapError, type GraphNode, type GraphResult, type GroupOf, type Handle, type HarnessUsage, type HarvestCorpusOptions, HarvestError, type HarvestFailure, type HarvestReport, type HarvestSurfaceDiffsOptions, InMemoryCorpus, InMemoryResultBlobStore, type InMemoryRunContext, type InMemoryRunContextOptions, InMemorySpawnJournal, type InPlaceCliExecutorOptions, type InPlaceHarnessResult, type InProcessOnPrompt, type InProcessPromptCtx, type InProcessSandboxClientOptions, type Inbox, type InboxMessage, type IntentAudit, type InteractiveWorkerEnvironment, type InteractiveWorkerKeyInput, type InteractiveWorkerOptions, type InteractiveWorkerResult, type Interval, type Iteration, type KeyProvider, type Leaderboard, type LeaderboardBenchScore, type LeaderboardBenchTask, type LeaderboardBenchmarkAdapter, type LeaderboardFlagSpec, type LeaderboardIterationInfo, type LeaderboardOptions, type LeaderboardRow, type LeaderboardRunContext, type LeaderboardScenario, type LeaderboardScore, type LeaderboardSpec, type LocalMcpMaterialization, type LocalSandboxClientOptions, type LoopCampaignDispatchOptions, type LoopDecisionPayload, type LoopDispatchOptions, type LoopEndedPayload, type LoopIterationDispatchPayload, type LoopIterationEndedPayload, type LoopIterationStartedPayload, type LoopLineageOptions, type LoopOptionsForDispatch, type LoopPlanDescription, type LoopPlanPayload, type LoopResult, type LoopSandboxPlacement, type LoopShape, type LoopStartedPayload, type LoopTeardownFailedPayload, type LoopTokenUsage, type LoopTraceEmitter, type LoopTraceEvent, type LoopUntil, type LoopUntilSpec, type LoopUntilState, type LoopWinner, type MakeWorkerAgent, type MaterializeLocalMcpOptions, type MaterializedExecutionIdentity, type MaterializedModelIdentity, type McpEndpoint, type McpEnvironmentOptions, McpSpawnFault, type McpToolDescriptor, type MountManifestEntry, type MountRecorder, NOTE_MAX_CHARS, type NativeContextContinuationExecution, type NativeContextContinuationHandle, type NativeContextContinuationInput, type NoProgressForOptions, type NoWinnerError, type NodeExecutionIdentity, type NodeId, type NodeSnapshot, type NodeStatus, type Observation, type ObservationAnalysis, ObservationError, type ObserveInput, type ObserveOptions, type ObserveSupervisorNodeEvent, type OnUnmetContract, type OpenSandboxRunBeforeStartContext, type OpenSandboxRunOptions, type OpenSandboxRunPromptOptions, type Outcome, type OutputAdapter, PEER_MAIL_WIRE_KEY, type PairwiseOptions, type PairwiseVerdict, type Panel, type PanelJudge, type PanelSpec, type PanelVerdict, type PatchDeliverableOptions, type PeerInboxMessage, type PeerMailEnvelope, type PeerMailEvent, type PeerMailKind, type PeerMailLimits, type PeerMailOutcome, type PeerMailReadout, type PeerMailRefusal, type PeerMailSendInput, type PeerMailbox, type PeerMailboxOptions, type PendingWait, type Persona, type PersonaContext, type PersonaExecutors, type Pipeline, type PipelineStage, type PlacementInfo, type PlateauOptions, type PriorCoordination, type ProfileKeyOf, type ProfileMaterializationReceipt, type ProfileRichness, type ProfileRichnessThresholds, type ProgressSample, type ProgressTracker, type ProgressTrackerOptions, type ProgressView, type PromotionGateOptions, type PromotionVerdict, type PromptHandle, type PromptRegistry, type ProviderAsSandboxClientOptions, type ProviderExecutorOptions, type ProviderLeafOut, type ProviderModelAttemptEvidence, type ProviderModelExecutionEvidence, type ProviderPromptOptions, type ProviderSeam, type ProvisionSupervisorConnection, type ProvisionSupervisorRequest, type ProvisionedSupervisor, type PublishOptions, type QuestionEscalationOutcome, type QuestionEscalationRecord, type ReconnectRetainedInteractiveRunOptions, type ReconnectRetainedRunOptions, type RecoverRetainedInteractiveRunOptions, type RecoverRetainedRunIntentOptions, type RecoverRetainedRunOptions, type RecoverRetainedRunResult, type RegisteredPrompt, type RegistryAnalyzeProjection, type RenderCorpusToInstructions, type RenderCorpusToInstructionsOptions, type RepairStop, type ReproductionCheck, type ReservationRejection, type ReservationTicket, type ResolveDriveHarness, type ResolveSandboxClientOptions, type ResolveSupervisorTools, type ResolvedMcpServerLaunch, type ResolvedSupervisorProfile, type ResolvedWorkerSpawnRetry, type ResourceRequest, type ResultBlobStore, type ResumedKeyState, type ResumedWork, type RetainedInteractiveAdmission, type RetainedInteractiveAdmissionHook, type RetainedInteractiveEnvironmentAdmission, type RetainedInteractiveEnvironmentInput, type RetainedInteractiveIntentAdmission, type RetainedInteractiveRunHandle, type RetainedInteractiveStartMaterial, type RetainedInteractiveStartedAdmission, type RetainedRunAdmission, type RetainedRunAdmissionHook, type RetainedRunCancelOptions, type RetainedRunCancellation, type RetainedRunDispatchedAdmission, type RetainedRunEffect, type RetainedRunEnvironmentAdmission, type RetainedRunEventOptions, type RetainedRunHandle, type RetainedRunIntentAdmission, type RetainedRunReplayPoint, type RetainedRunSnapshot, type RetainedRunStartMaterial, type RetainedRunTurnInput, type RollingDispatchOptions, type RootHandle, type RootMaterialization, type RootProviderModelEvidence, type RootSignal, type RouterSeam, type RouterToolsSeam, type RouterTransportConfig, type RunAgentRoundsOptions, type RunAgenticOptions, type RunCancelRequest, type RunCancellation, type RunContext, type RunGraphOptions, type RunPersonified, type RunPersonifiedOptions, type RunProvenance, type Runtime, type SandboxCapabilities, type SandboxClient, type SandboxClientProviderOptions, type SandboxControlClient, type SandboxEvent, type SandboxInstance, type SandboxLeafOut, type SandboxLineage, type SandboxLineageHandle, type SandboxOutputMarker, type SandboxRun, SandboxRunAbortError, type SandboxSeam, type SandboxServedBackend, type SandboxSteeringOptions, type SandboxToolPartState, type SandboxUsageLedger, type Scope, type ScopeAnalyst, type ScopeAnalyzeInput, type ScopeArgs, type ScopeProgressInput, type ScopeWidenGate, type ScoreOf, type SelectionReceipt, type SessionCapableBox, type SessionMessageLike, type SessionTraceBox, type Settled, type ShapeBudget, type ShapeContext, type ShapeRegistry, type Shell, type ShotSpec, type SpawnEvent, type SpawnForest, type SpawnForestEvent, type SpawnForestInDoubtNode, type SpawnForestMissingTree, type SpawnForestNode, type SpawnForestTree, type SpawnJournal, type SpawnOpts, type SpawnPreflight, type SpawnPreflightContext, type SpawnPrior, type SpawnRefusal, type SpawnRefusalCause, type SpawnRejection, type Spend, type SpendChannel, type SpendGap, type StartRetainedInteractiveRunOptions, type StartRetainedRunInEnvironmentOptions, type StartRetainedRunOptions, type StdioMcpConnection, type StdioMcpServerSpec, type SteerContext, type SteerableRootHandle, type SteerableSandboxArgs, type SteerableSandboxSession, type StopDecision, type StopRule, type Strategy, type StrategyArtifacts, type StrategyCtx, type StrategyEvolutionConfig, type StrategyMessage, type StrategyResult, type StrategyShotResult, type StreamAgentTurnOptions, type StructuralRolloutConfig, type StructuralRolloutMessage, type StructuralRolloutPolicy, type StructuralRolloutResult, type SuperviseDispatchOptions, type SuperviseOptions, type SuperviseOptionsForDispatch, type SuperviseRegistry, type SuperviseRegistryTable, type SuperviseSurfaceOptions, type SuperviseSurfaceResult, type SupervisedResult, type Supervisor, type SupervisorAgentDeps, type SupervisorCleanupReceipt, type SupervisorFinalizer, type SupervisorNodeContext, type SupervisorNodeContextSeed, type SupervisorOpts, type SupervisorProfile, type SupervisorSpanAttributes, type SupervisorSpanOptions, type SupervisorSpanOutcome, type SupervisorSpanRecorder, type SupervisorToolDescriptor, type SupervisorToolInvocationContext, type SurfaceDiff, type SurfaceReadBox, type SurfaceReadOutcome, type SurfaceReader, type SurfaceScore, type SurfaceWorkerConfig, type SurfaceWorkerOut, TERMINAL_DECISIONS, type TerminalDecision, type TokenUsageProvenance, type ToolLoopCallContext, type ToolLoopChat, type ToolLoopCompaction, type ToolLoopCompactionOptions, type ToolLoopMessageRecord, type ToolLoopToolCall, type ToolSpec, type ToolStepInput, type TraceSource, type TrajectoryAnalysis, type TrajectoryNode, type TrajectoryReport, type TrajectoryReportFn, type TrajectoryReportOptions, type TraversalContinuity, type TreeView, type TurnResult, type UnconfirmedTeardown, type UnknownMaterializationReason, type UntrackedCopyStats, type UsageEvent, VERIFY_TAIL_CHARS, type ValidationCtx, type Validator, type VerifierEnvironmentOptions, type Verify, type VerifySpec, type VisibleCheck, WORKER_TOOL_TRACE_SCHEMA_VERSION, type WaitOpts, type WaitOutcome, type WaitProbe, type WaitProbeRegistry, type WaitRejection, type WaitSpec, type WatchTraceOptions, type WatchedSurface, type WaterfallCollector, type WaterfallReport, type WaterfallSpan, type Widen, type WidenDecision, type WidenGate, type WidenLineage, type WidenSpec, type WinnerStrategy, type WorkerCancelRequest, type WorkerCancellation, type WorkerEvidenceInput, type WorkerInteractiveAdmission, type WorkerInteractiveBinding, type WorkerInteractiveProviderSource, type WorkerInteractiveSession, type WorkerInteractiveUnavailableReason, type WorkerProgress, type WorkerResumeContext, type WorkerSpawnContext, type WorkerSpawnRetryAttempt, type WorkerSpawnRetryHooks, type WorkerSpawnRetryPolicy, type WorkerSteerAcknowledgement, type WorkerSteerRequest, type WorkerToolTraceArtifact, type WorkerTraceEvidence, type WorkerTraceResolver, type WorkerTraceSeamCarrier, type WorkerTraceUnavailableReason, type WorkerWatchOptions, type Workspace, type WorkspaceCommit, type WorkspaceRequest, type WorkspaceRun, type WorktreeCheckRunner, type WorktreeCliExecutorOptions, type WorktreeCommandResult, type WorktreeFanoutOptions, type WorktreeHarnessResult, type WorktreePatchArtifact, type WorktreeProfileMaterializationReceipt, type WriteWorkerSteerOptions, acquireSandbox, adaptiveRefine, addHarnessUsage, allOf, allWorkersStalled, analystsFromRegistry, analyzeTrace, analyzesFindingsReportPrompt, anyOf, anytimeReport, areaUnderCurve, asAuthoredProfile, assertCoordinationBinding, assertModelAllowed, assertProfileModelsAllowed, assertSandboxServedModel, assertStrategyContract, assertTraceDerivedFindings, assessAuthoredProfile, attachWorker, auditIntent, authorStrategy, bestDelivered, bestSoFar, boxSurfaceReader, breadthStrategy, buildSteerContext, builtinShapes, canDisplace, cancelRun, cancelWorker, canonicalFindingEvent, captureWorkerTraceEvidence, chatTransportExecutor, chatWorkerSeam, claimRetainedInteractiveControl, claimsAuthority, classifyDriverFailure, cliInPlaceExecutor, cliWorktreeExecutor, closingWorkerNote, codeModeSupervisorTools, collectAgentTurn, collectDelivered, compareCheckOutcomes, completionAuthorizes, composeCheckSources, composeWorkerEvidence, computeFindingId, connectStdioMcp, contentAddress, copyUntrackedIntoClone, createActivityLog, createAgentEnvironmentProviderRegistry, createBudgetPool, createChatSessionStore, createCodexRolloutStoreReader, createEventBus, createExecutor, createExecutorRegistry, createFileRunContext, createInMemoryRunContext, createInPlaceCliExecutor, createInbox, createMcpEnvironment, createOpenInferenceFileExporter, createOtelExporter, createPeerMailbox, createProgressTracker, createPromptRegistry, createPushTraceSource, createRootHandle, createSandboxLineage, createSandboxToolPartState, createSandboxUsageLedger, createScope, createScopeAnalyst, createShapeRegistry, createSteerableSandboxSession, createSupervisor, createSupervisorSpanRecorder, createTangleSandboxExactProcessProvider, createVerifierEnvironment, createWaitProbes, createWaterfallCollector, createWorktreeCliExecutor, decodeHarnessUsage, decodeToolPart, defaultAnalystInstruction, defaultAuditorInstruction, defaultDelegateBudget, defaultEdgeTraversalCap, defaultExtractCandidate, defaultProfileRichnessThresholds, defaultSelectWinner, defaultStructuralRolloutPolicy, defaultToolDetectors, defaultUnmetContractSteer, defineLeaderboard, definePersona, defineStrategy, delegate, delegatesWorkerBriefPrompt, depthStrategy, deterministicCompletion, discriminatingMeans, dumbContinuationFailPrompt, dumbContinuationPassPrompt, effectiveConcurrency, envKeyProvider, equalKOnCost, extractLlmCallEvent, failuresAnalyst, fanout, filterAuthoredAsserts, finalizeBestDelivered, flatWidenGate, formatPromptHandle, freeSlots, fsSurfaceReader, gateOnDeliverable, gitWorkspace, harnessUsageIsEmpty, harvestCorpus, harvestSurfaceDiffs, inProcessSandboxClient, inlineSandboxClient, isPeerMailEnvelope, isPreSpawnExecutorFailure, isTerminalDecision, isWaitOutcome, jjWorkspace, kernelPromptRegistry, leaderboard, legacySupervisorRunDir, legacySupervisorRunsRoot, loadSpawnForest, localSandboxClient, localShell, loopCampaignDispatch, loopDispatch, loopUntil, makeFinding, mapExecutorResult, mapSandboxEvent, mapSandboxToolEvent, materializeLocalMcp, materializeTreeView, mcpSecretEnvMetadataKey, modelAuthoredChecks, naiveContinuationPrompt, noProgressFor, normalizeAnalyzeOnSettle, observationFromRegistry, observe, officialChecksFromMeta, openSandboxRun, pairwiseSignificance, panel, parseWorkerToolTraceArtifact, patchDelivered, peerMailTools, peerMailVerbNames, pendingWaits, pickBestDelivered, pickChampion, pipeline, plateau, plateauLength, pollFor, printBenchmarkReport, probeSandboxCapabilities, profileChatClient, profileOptimizerModelCall, profileRichnessFinding, promotionGate, promptHandle, providerAsExecutor, providerAsSandboxClient, provisionSupervisor, queueOf, readCodexRolloutSession, readRunCancelRequest, readRunCancellation, readWorkerCancelRequests, readWorkerCancellation, readWorkerInteractiveAdmissions, readWorkerInteractiveBinding, readWorkerProgress, readWorkerSteerAcknowledgement, readWorkerSteerRequests, readWorkerTraceContext, reconnectRetainedInteractiveRun, reconnectRetainedRun, recoverRetainedInteractiveRun, recoverRetainedRun, refine, registerShape, registryScopeAnalyst, renderAnytimeTable, renderCorpusToInstructions, renderLeaderboardHtml, renderLeaderboardMarkdown, renderLeaderboardSvg, renderPairwiseMarkdown, renderReport, replaySpawnTree, resolveAgentEnvironmentProvider, resolveEntrySymbol, resolveMcpServerLaunch, resolveSandboxClient, resolveSecretEnv, resolveSupervisorProfile, resolveWorkerSpawnRetry, retryPreSpawnRefusals, rollingDispatch, runAgentRounds, runAgentic, runBenchmark, runCancelRequestFile, runCancellationFile, runFinalizer, runGraph, runInWorkspace, runPersonified, runStrategyEvolution, safeWorkerFile, sample, sampleFromSettled, sampleThenRefine, sandboxCheckRunner, sandboxClientAsProvider, sandboxEventServedBackend, sandboxProgressEvents, sandboxSessionTraceSource, sanitizeMcpToolSchema, secretEnvOfMcpServer, selectBestIndex, selectChampion, selectValidWinner, sentinelCompletion, serveCoordinationMcp, settledToIteration, settledWorkerOut, spendFromUsageEvents, startRetainedInteractiveRun, startRetainedRun, startRetainedRunInEnvironment, stopSentinel, strategyAuthorContract, strategyAuthorSystemPrompt, streamAgentTurn, structuralRollout, sumSandboxUsage, supervise, superviseDispatch, superviseSurface, supervisorAgent, supervisorInstructions, supervisorRunDir, supervisorRunsRoot, supervisorWorkersDir, timerAt, trajectoryReport, unsafeInProcessRunner, validateWaitSpec, verify, visibleCheckScore, waitUntil, watchTrace, widen, withUntrackedArtifacts, withWorkerSpawnRetry, workerCancelRequestsFile, workerCancellationFile, workerCancellationsDir, workerControlLogFile, workerFromBackend, workerFromInteractiveProvider, workerInboxFile, workerInboxFileFromEventDir, workerInteractiveAdmissionFile, workerInteractiveBindingFile, workerInteractiveBindingsDir, workerSteerAcknowledgementFile, workerSteerAcknowledgementsDir, workerSteerRequestFile, workerSteerRequestsDir, workerSteersDir, workerTraceAnalysisStore, workerTraceEnv, workerTraceHeaders, workerTraceSeamKey, worktreeFanout, writeWorkerSteer };
|