@claudexor/schema 3.9.2 → 3.9.5
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/agent-capabilities.d.ts +8 -0
- package/dist/agent-capabilities.d.ts.map +1 -1
- package/dist/agent-capabilities.js +2 -1
- package/dist/agent-capabilities.js.map +1 -1
- package/dist/cancel-reason.d.ts +13 -0
- package/dist/cancel-reason.d.ts.map +1 -0
- package/dist/cancel-reason.js +16 -0
- package/dist/cancel-reason.js.map +1 -0
- package/dist/control-harness-list.d.ts +11 -0
- package/dist/control-harness-list.d.ts.map +1 -1
- package/dist/control-operation-responses.d.ts +7 -7
- package/dist/control-run-detail.d.ts +38 -28
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control-timeline.d.ts +54 -0
- package/dist/control-timeline.d.ts.map +1 -0
- package/dist/control-timeline.js +50 -0
- package/dist/control-timeline.js.map +1 -0
- package/dist/control.d.ts +35 -72
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +6 -37
- package/dist/control.js.map +1 -1
- package/dist/credential-profile-snapshot.d.ts +22 -0
- package/dist/credential-profile-snapshot.d.ts.map +1 -1
- package/dist/decision.d.ts +9 -9
- package/dist/decision.d.ts.map +1 -1
- package/dist/decision.js +6 -0
- package/dist/decision.js.map +1 -1
- package/dist/harness.d.ts +17 -0
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +7 -0
- package/dist/harness.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp-run-result.d.ts +24 -24
- package/dist/readiness.d.ts +9 -0
- package/dist/readiness.d.ts.map +1 -1
- package/dist/run-facts.d.ts +5 -5
- package/dist/run-facts.d.ts.map +1 -1
- package/dist/run-facts.js +6 -1
- package/dist/run-facts.js.map +1 -1
- package/dist/status-projection.d.ts +6 -3
- package/dist/status-projection.d.ts.map +1 -1
- package/dist/status-projection.js +24 -6
- package/dist/status-projection.js.map +1 -1
- package/dist/telemetry.d.ts +7 -7
- package/generated/AgentCapabilityCatalog.schema.json +10 -0
- package/generated/ControlCredentialProfilesQueryResponse.schema.json +10 -0
- package/generated/ControlCredentialProfilesSnapshotResponse.schema.json +10 -0
- package/generated/ControlHarnessListResponse.schema.json +10 -0
- package/generated/ControlRunControlRequest.schema.json +8 -0
- package/generated/ControlRunDetail.schema.json +24 -1
- package/generated/ControlRunListResponse.schema.json +2 -0
- package/generated/ControlRunSummary.schema.json +2 -0
- package/generated/ControlThreadDetail.schema.json +2 -0
- package/generated/DecisionRecord.schema.json +2 -0
- package/generated/HarnessManifest.schema.json +10 -0
- package/generated/HarnessStatusDto.schema.json +10 -0
- package/generated/McpRunHandleResult.schema.json +2 -0
- package/generated/McpRunToolResult.schema.json +2 -0
- package/generated/RunControl.schema.json +8 -0
- package/generated/RunFacts.schema.json +2 -0
- package/generated/RunTelemetry.schema.json +2 -0
- package/package.json +2 -2
package/dist/control.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from "zod/v3";
|
|
2
2
|
export { ControlQuotaResponse } from "./quota.js";
|
|
3
3
|
export { RunExecution } from "./control-run-execution.js";
|
|
4
|
+
export { ControlTimelineEvent } from "./control-timeline.js";
|
|
4
5
|
export declare const ControlReviewerPanelEntry: z.ZodObject<{
|
|
5
6
|
/** Explicit reviewer harness id. Repeated harness ids are allowed so one
|
|
6
7
|
* native provider can review through multiple requested models. */
|
|
@@ -1909,7 +1910,7 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
1909
1910
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
1910
1911
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
1911
1912
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
1912
|
-
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
1913
|
+
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
1913
1914
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
1914
1915
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
1915
1916
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -1948,7 +1949,7 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
1948
1949
|
noChanges: boolean;
|
|
1949
1950
|
checks: "failed" | "not_configured" | "passed";
|
|
1950
1951
|
review: "approved" | "blocked" | "not_run";
|
|
1951
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1952
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1952
1953
|
work_state?: {
|
|
1953
1954
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1954
1955
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1963,7 +1964,7 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
1963
1964
|
noChanges?: boolean | undefined;
|
|
1964
1965
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1965
1966
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1966
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1967
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1967
1968
|
work_state?: {
|
|
1968
1969
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1969
1970
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2193,7 +2194,7 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
2193
2194
|
noChanges: boolean;
|
|
2194
2195
|
checks: "failed" | "not_configured" | "passed";
|
|
2195
2196
|
review: "approved" | "blocked" | "not_run";
|
|
2196
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
2197
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
2197
2198
|
work_state?: {
|
|
2198
2199
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
2199
2200
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2363,7 +2364,7 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
2363
2364
|
noChanges?: boolean | undefined;
|
|
2364
2365
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
2365
2366
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
2366
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
2367
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
2367
2368
|
work_state?: {
|
|
2368
2369
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
2369
2370
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2405,52 +2406,6 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
2405
2406
|
finishedAt?: string | undefined;
|
|
2406
2407
|
}>;
|
|
2407
2408
|
export type ControlRunSummary = z.infer<typeof ControlRunSummary>;
|
|
2408
|
-
export declare const ControlTimelineEvent: z.ZodObject<{
|
|
2409
|
-
type: z.ZodString;
|
|
2410
|
-
ts: z.ZodOptional<z.ZodString>;
|
|
2411
|
-
harnessId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2412
|
-
attemptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2413
|
-
title: z.ZodString;
|
|
2414
|
-
detail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2415
|
-
severity: z.ZodDefault<z.ZodEnum<["info", "warning", "error"]>>;
|
|
2416
|
-
toolName: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2417
|
-
target: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2418
|
-
errorSummary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2419
|
-
/** Unsupported per-harness knobs the selected route silently could not honor
|
|
2420
|
-
* (INV-105): the engine discloses them on `harness.started`, and this
|
|
2421
|
-
* projection carries them so the row can render a visible warning ("max_turns
|
|
2422
|
-
* was ignored") instead of an indistinguishable benign start (QA-070). Empty
|
|
2423
|
-
* for every event that dropped nothing. */
|
|
2424
|
-
ignoredSettings: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2425
|
-
rawRef: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2426
|
-
}, "strip", z.ZodTypeAny, {
|
|
2427
|
-
type: string;
|
|
2428
|
-
ts?: string | undefined;
|
|
2429
|
-
harnessId: string | null;
|
|
2430
|
-
attemptId: string | null;
|
|
2431
|
-
title: string;
|
|
2432
|
-
detail: string | null;
|
|
2433
|
-
severity: "error" | "info" | "warning";
|
|
2434
|
-
toolName: string | null;
|
|
2435
|
-
target: string | null;
|
|
2436
|
-
errorSummary: string | null;
|
|
2437
|
-
ignoredSettings: string[];
|
|
2438
|
-
rawRef: string | null;
|
|
2439
|
-
}, {
|
|
2440
|
-
type: string;
|
|
2441
|
-
ts?: string | undefined;
|
|
2442
|
-
harnessId?: string | null | undefined;
|
|
2443
|
-
attemptId?: string | null | undefined;
|
|
2444
|
-
title: string;
|
|
2445
|
-
detail?: string | null | undefined;
|
|
2446
|
-
severity?: "error" | "info" | "warning" | undefined;
|
|
2447
|
-
toolName?: string | null | undefined;
|
|
2448
|
-
target?: string | null | undefined;
|
|
2449
|
-
errorSummary?: string | null | undefined;
|
|
2450
|
-
ignoredSettings?: string[] | undefined;
|
|
2451
|
-
rawRef?: string | null | undefined;
|
|
2452
|
-
}>;
|
|
2453
|
-
export type ControlTimelineEvent = z.infer<typeof ControlTimelineEvent>;
|
|
2454
2409
|
export declare const ControlEvidenceIntegrity: z.ZodEnum<["complete", "incomplete", "unavailable"]>;
|
|
2455
2410
|
export type ControlEvidenceIntegrity = z.infer<typeof ControlEvidenceIntegrity>;
|
|
2456
2411
|
export declare const ControlBudgetSnapshot: z.ZodObject<{
|
|
@@ -2678,6 +2633,7 @@ export declare const RunControl: z.ZodObject<{
|
|
|
2678
2633
|
requestId?: string | undefined;
|
|
2679
2634
|
}>>;
|
|
2680
2635
|
reason: z.ZodOptional<z.ZodString>;
|
|
2636
|
+
reason_code: z.ZodOptional<z.ZodEnum<["user_cancelled", "host_cancelled", "owner_task_gone"]>>;
|
|
2681
2637
|
}, "strip", z.ZodTypeAny, {
|
|
2682
2638
|
kind: "cancel";
|
|
2683
2639
|
target: {
|
|
@@ -2687,6 +2643,7 @@ export declare const RunControl: z.ZodObject<{
|
|
|
2687
2643
|
requestId?: string | undefined;
|
|
2688
2644
|
};
|
|
2689
2645
|
reason?: string | undefined;
|
|
2646
|
+
reason_code?: "host_cancelled" | "owner_task_gone" | "user_cancelled" | undefined;
|
|
2690
2647
|
}, {
|
|
2691
2648
|
kind: "cancel";
|
|
2692
2649
|
target?: {
|
|
@@ -2696,6 +2653,7 @@ export declare const RunControl: z.ZodObject<{
|
|
|
2696
2653
|
requestId?: string | undefined;
|
|
2697
2654
|
} | undefined;
|
|
2698
2655
|
reason?: string | undefined;
|
|
2656
|
+
reason_code?: "host_cancelled" | "owner_task_gone" | "user_cancelled" | undefined;
|
|
2699
2657
|
}>;
|
|
2700
2658
|
export type RunControl = z.infer<typeof RunControl>;
|
|
2701
2659
|
export declare const ControlRunControlRequest: z.ZodObject<{
|
|
@@ -2718,6 +2676,7 @@ export declare const ControlRunControlRequest: z.ZodObject<{
|
|
|
2718
2676
|
requestId?: string | undefined;
|
|
2719
2677
|
}>>;
|
|
2720
2678
|
reason: z.ZodOptional<z.ZodString>;
|
|
2679
|
+
reason_code: z.ZodOptional<z.ZodEnum<["user_cancelled", "host_cancelled", "owner_task_gone"]>>;
|
|
2721
2680
|
}, "strip", z.ZodTypeAny, {
|
|
2722
2681
|
kind: "cancel";
|
|
2723
2682
|
target: {
|
|
@@ -2727,6 +2686,7 @@ export declare const ControlRunControlRequest: z.ZodObject<{
|
|
|
2727
2686
|
requestId?: string | undefined;
|
|
2728
2687
|
};
|
|
2729
2688
|
reason?: string | undefined;
|
|
2689
|
+
reason_code?: "host_cancelled" | "owner_task_gone" | "user_cancelled" | undefined;
|
|
2730
2690
|
}, {
|
|
2731
2691
|
kind: "cancel";
|
|
2732
2692
|
target?: {
|
|
@@ -2736,6 +2696,7 @@ export declare const ControlRunControlRequest: z.ZodObject<{
|
|
|
2736
2696
|
requestId?: string | undefined;
|
|
2737
2697
|
} | undefined;
|
|
2738
2698
|
reason?: string | undefined;
|
|
2699
|
+
reason_code?: "host_cancelled" | "owner_task_gone" | "user_cancelled" | undefined;
|
|
2739
2700
|
}>;
|
|
2740
2701
|
}, "strip", z.ZodTypeAny, {
|
|
2741
2702
|
control: {
|
|
@@ -2747,6 +2708,7 @@ export declare const ControlRunControlRequest: z.ZodObject<{
|
|
|
2747
2708
|
requestId?: string | undefined;
|
|
2748
2709
|
};
|
|
2749
2710
|
reason?: string | undefined;
|
|
2711
|
+
reason_code?: "host_cancelled" | "owner_task_gone" | "user_cancelled" | undefined;
|
|
2750
2712
|
};
|
|
2751
2713
|
}, {
|
|
2752
2714
|
control: {
|
|
@@ -2758,6 +2720,7 @@ export declare const ControlRunControlRequest: z.ZodObject<{
|
|
|
2758
2720
|
requestId?: string | undefined;
|
|
2759
2721
|
} | undefined;
|
|
2760
2722
|
reason?: string | undefined;
|
|
2723
|
+
reason_code?: "host_cancelled" | "owner_task_gone" | "user_cancelled" | undefined;
|
|
2761
2724
|
};
|
|
2762
2725
|
}>;
|
|
2763
2726
|
export type ControlRunControlRequest = z.infer<typeof ControlRunControlRequest>;
|
|
@@ -3095,7 +3058,7 @@ export declare const ControlTurnRunCard: z.ZodObject<{
|
|
|
3095
3058
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
3096
3059
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
3097
3060
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
3098
|
-
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
3061
|
+
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
3099
3062
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
3100
3063
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
3101
3064
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -3134,7 +3097,7 @@ export declare const ControlTurnRunCard: z.ZodObject<{
|
|
|
3134
3097
|
noChanges: boolean;
|
|
3135
3098
|
checks: "failed" | "not_configured" | "passed";
|
|
3136
3099
|
review: "approved" | "blocked" | "not_run";
|
|
3137
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3100
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3138
3101
|
work_state?: {
|
|
3139
3102
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3140
3103
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3149,7 +3112,7 @@ export declare const ControlTurnRunCard: z.ZodObject<{
|
|
|
3149
3112
|
noChanges?: boolean | undefined;
|
|
3150
3113
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
3151
3114
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
3152
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3115
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3153
3116
|
work_state?: {
|
|
3154
3117
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3155
3118
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3221,7 +3184,7 @@ export declare const ControlTurnRunCard: z.ZodObject<{
|
|
|
3221
3184
|
noChanges: boolean;
|
|
3222
3185
|
checks: "failed" | "not_configured" | "passed";
|
|
3223
3186
|
review: "approved" | "blocked" | "not_run";
|
|
3224
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3187
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3225
3188
|
work_state?: {
|
|
3226
3189
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3227
3190
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3269,7 +3232,7 @@ export declare const ControlTurnRunCard: z.ZodObject<{
|
|
|
3269
3232
|
noChanges?: boolean | undefined;
|
|
3270
3233
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
3271
3234
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
3272
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3235
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3273
3236
|
work_state?: {
|
|
3274
3237
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3275
3238
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3382,7 +3345,7 @@ export declare const ControlThreadTurn: z.ZodObject<{
|
|
|
3382
3345
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
3383
3346
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
3384
3347
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
3385
|
-
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
3348
|
+
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
3386
3349
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
3387
3350
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
3388
3351
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -3421,7 +3384,7 @@ export declare const ControlThreadTurn: z.ZodObject<{
|
|
|
3421
3384
|
noChanges: boolean;
|
|
3422
3385
|
checks: "failed" | "not_configured" | "passed";
|
|
3423
3386
|
review: "approved" | "blocked" | "not_run";
|
|
3424
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3387
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3425
3388
|
work_state?: {
|
|
3426
3389
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3427
3390
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3436,7 +3399,7 @@ export declare const ControlThreadTurn: z.ZodObject<{
|
|
|
3436
3399
|
noChanges?: boolean | undefined;
|
|
3437
3400
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
3438
3401
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
3439
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3402
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3440
3403
|
work_state?: {
|
|
3441
3404
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3442
3405
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3508,7 +3471,7 @@ export declare const ControlThreadTurn: z.ZodObject<{
|
|
|
3508
3471
|
noChanges: boolean;
|
|
3509
3472
|
checks: "failed" | "not_configured" | "passed";
|
|
3510
3473
|
review: "approved" | "blocked" | "not_run";
|
|
3511
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3474
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3512
3475
|
work_state?: {
|
|
3513
3476
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3514
3477
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3556,7 +3519,7 @@ export declare const ControlThreadTurn: z.ZodObject<{
|
|
|
3556
3519
|
noChanges?: boolean | undefined;
|
|
3557
3520
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
3558
3521
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
3559
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3522
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3560
3523
|
work_state?: {
|
|
3561
3524
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3562
3525
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3680,7 +3643,7 @@ export declare const ControlThreadTurn: z.ZodObject<{
|
|
|
3680
3643
|
noChanges: boolean;
|
|
3681
3644
|
checks: "failed" | "not_configured" | "passed";
|
|
3682
3645
|
review: "approved" | "blocked" | "not_run";
|
|
3683
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3646
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3684
3647
|
work_state?: {
|
|
3685
3648
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3686
3649
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3758,7 +3721,7 @@ export declare const ControlThreadTurn: z.ZodObject<{
|
|
|
3758
3721
|
noChanges?: boolean | undefined;
|
|
3759
3722
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
3760
3723
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
3761
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3724
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3762
3725
|
work_state?: {
|
|
3763
3726
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3764
3727
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4233,7 +4196,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4233
4196
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
4234
4197
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
4235
4198
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
4236
|
-
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
4199
|
+
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
4237
4200
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
4238
4201
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
4239
4202
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -4272,7 +4235,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4272
4235
|
noChanges: boolean;
|
|
4273
4236
|
checks: "failed" | "not_configured" | "passed";
|
|
4274
4237
|
review: "approved" | "blocked" | "not_run";
|
|
4275
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
4238
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
4276
4239
|
work_state?: {
|
|
4277
4240
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4278
4241
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4287,7 +4250,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4287
4250
|
noChanges?: boolean | undefined;
|
|
4288
4251
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4289
4252
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4290
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4253
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4291
4254
|
work_state?: {
|
|
4292
4255
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4293
4256
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4359,7 +4322,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4359
4322
|
noChanges: boolean;
|
|
4360
4323
|
checks: "failed" | "not_configured" | "passed";
|
|
4361
4324
|
review: "approved" | "blocked" | "not_run";
|
|
4362
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
4325
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
4363
4326
|
work_state?: {
|
|
4364
4327
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4365
4328
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4407,7 +4370,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4407
4370
|
noChanges?: boolean | undefined;
|
|
4408
4371
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4409
4372
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4410
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4373
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4411
4374
|
work_state?: {
|
|
4412
4375
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4413
4376
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4531,7 +4494,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4531
4494
|
noChanges: boolean;
|
|
4532
4495
|
checks: "failed" | "not_configured" | "passed";
|
|
4533
4496
|
review: "approved" | "blocked" | "not_run";
|
|
4534
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
4497
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
4535
4498
|
work_state?: {
|
|
4536
4499
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4537
4500
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4609,7 +4572,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4609
4572
|
noChanges?: boolean | undefined;
|
|
4610
4573
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4611
4574
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4612
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4575
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4613
4576
|
work_state?: {
|
|
4614
4577
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4615
4578
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4718,7 +4681,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4718
4681
|
noChanges: boolean;
|
|
4719
4682
|
checks: "failed" | "not_configured" | "passed";
|
|
4720
4683
|
review: "approved" | "blocked" | "not_run";
|
|
4721
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
4684
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
4722
4685
|
work_state?: {
|
|
4723
4686
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4724
4687
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4827,7 +4790,7 @@ export declare const ControlThreadDetail: z.ZodObject<{
|
|
|
4827
4790
|
noChanges?: boolean | undefined;
|
|
4828
4791
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4829
4792
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4830
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4793
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4831
4794
|
work_state?: {
|
|
4832
4795
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4833
4796
|
source: "absent" | "constrained" | "validated";
|
package/dist/control.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control.d.ts","sourceRoot":"","sources":["../src/control.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAmB3B,OAAO,EAAE,oBAAoB,EAAE,MAAM,YAAY,CAAC;AAclD,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,eAAO,MAAM,yBAAyB;IAElC;uEACmE;;IAInE,qEAAqE;;IAIrE,sEAAsE;;;;;;;;;;;;;EAWvE,CAAC;AACJ,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAClF,eAAO,MAAM,sBAAsB;;IAG/B;;;uEAGmE;;IAOnE,6EAA6E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgB7E;;oDAEgD;;IAIhD;;uCAEmC;;;IAQnC;;;mFAG+E;;;;;;IAgC/E,mFAAmF;;IAKnF;+DAC2D;;IAK3D,sEAAsE;;IAEtE;;;;0CAIsC;;IAOtC;;mEAE+D;;;;;;;;;;;;;;;;;;IAQ/D,qGAAqG;;;;IAUrG,mEAAmE;;;;;;;;;;;;;;;;;;IAWnE;sEACkE;;;;;;;;;;;IAOlE,+DAA+D;;IAE/D;;;sEAGkE;;;;;IAalE;;+BAE2B;;IAI3B;;;;;8CAK0C;;;;;;;;;;;;;;IAY1C,4EAA4E;;QA9M5E;2EACmE;;QAInE,qEAAqE;;QAIrE,sEAAsE;;;;;;;;;;;;;;IA6MtE,+DAA+D;;IAE/D;;gDAE4C;;IAS5C;;;;;;iFAM6E;;IAO7E;;;iFAG6E;;IAa7E;;;;;;;sEAOkE;;IAOlE;;;;;;qEAMiE;;IAOjE;8EAC0E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW3E,CAAC;AACJ,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE5E;oDACoD;AACpD,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA5SvC;2EACmE;;QAInE,qEAAqE;;QAIrE,sEAAsE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuS/D,CAAC;AACZ,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AAG5F,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;EAA4B,CAAC;AAC7D,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AACtE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;EAA2B,CAAC;AAChE,eAAO,MAAM,oBAAoB;;;;QA9R7B;;;2EAGmE;;QAOnE,6EAA6E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAgB7E;;wDAEgD;;QAIhD;;2CAEmC;;;QAQnC;;;uFAG+E;;;;;;QAgC/E,mFAAmF;;QAKnF;mEAC2D;;QAK3D,sEAAsE;;QAEtE;;;;8CAIsC;;QAOtC;;uEAE+D;;;;;;;;;;;;;;;;;;QAQ/D,qGAAqG;;;;QAUrG,mEAAmE;;;;;;;;;;;;;;;;;;QAWnE;0EACkE;;;;;;;;;;;QAOlE,+DAA+D;;QAE/D;;;0EAGkE;;;;;QAalE;;mCAE2B;;QAI3B;;;;;kDAK0C;;;;;;;;;;;;;;QAY1C,4EAA4E;;YA9M5E;+EACmE;;YAInE,qEAAqE;;YAIrE,sEAAsE;;;;;;;;;;;;;;QA6MtE,+DAA+D;;QAE/D;;oDAE4C;;QAS5C;;;;;;qFAM6E;;QAO7E;;;qFAG6E;;QAa7E;;;;;;;0EAOkE;;QAOlE;;;;;;yEAMiE;;QAOjE;kFAC0E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BrB,CAAC;AAE1D,eAAO,MAAM,eAAe,qFAIzB,CAAC;AACJ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,oBAAoB;;;;;;;;;;;;EAM2B,CAAC;AAC7D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAiB0B,CAAC;AAC9D,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE5E,eAAO,MAAM,kBAAkB;;IAG3B,qDAAqD;;IAIrD,gGAAgG;;;;;;;;;IAiChG,gGAAgG;;;;;;;;;;;;;;;;;;;;;;;;;;EAQf,CAAC;AACtF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE;;;;GAIG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;EAgBkE,CAAC;AAChG,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,6EAcvB,CAAC;AACJ,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAE1D;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;EAqB1B,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;IAuBzB,qFAAqF;;IAQrF,gEAAgE;;;;;IAehE;;;gFAG4E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU7E,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwB1B,0GAA0G;;;;;;;;QAtjB1G;2EACmE;;QAInE,qEAAqE;;QAIrE,sEAAsE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAykBtE;;gFAE4E;;;;IAwB5E;;;iFAG6E;;IAQ7E;;;oDAGgD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA1RhD,qDAAqD;;QAIrD,gGAAgG;;;;;;;;;QAiChG,gGAAgG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuRhG,sEAAsE;;IAOtE,kFAAkF;;;;;;;;;;;;;;;;;QA5KlF,qFAAqF;;QAQrF,gEAAgE;;;;;QAehE;;;oFAG4E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoJ5E;;+EAE2E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM3E,6EAA6E;;IAO7E,6EAA6E;;;;;;;;;;;;;;;;;IAI7E;;;2DAGuD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxD,CAAC;AACJ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,oBAAoB;;;;;;;;;;;IAmB7B;;;;+CAI2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAagB,CAAC;AAChE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,wBAAwB,sDAIlC,CAAC;AACJ,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;IAQ9B;;;;;qDAKiD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmCgB,CAAC;AACtE,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,mBAAmB;;;;IAU5B;;uBAEmB;;;;;;;;;;;;EAMgC,CAAC;AACxD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,2EAA2E;AAC3E,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuBsD,CAAC;AAC7F,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAElF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;EAuByB,CAAC;AACtE,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAE9F,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;EAOwC,CAAC;AACtE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ8D,CAAC;AACtF,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAEpD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIkB,CAAC;AACxD,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;IAc2E,CAAC;AACpG,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKiB,CAAC;AACvD,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWuC,CAAC;AACxE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,+GAY3B,CAAC;AACJ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,yBAAyB;;IAGlC,4DAA4D;;IAK5D,8CAA8C;;IAE9C,uEAAuE;;IAKvE,kDAAkD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQyB,CAAC;AAChF,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAElF,eAAO,MAAM,0BAA0B;;;IAMnC,6EAA6E;;;;;;;;;;;;;EAM7B,CAAC;AACrD,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAIpF,eAAO,MAAM,aAAa;;;;;IAUtB,uEAAuE;;;;IAQvE,wEAAwE;;IAKxE;4EACwE;;IAMxE,2EAA2E;;;;;;;IAW3E,+EAA+E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQS,CAAC;AAC7F,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAE1D,eAAO,MAAM,cAAc;;;;;;IAevB;;oDAEgD;;;;;;;;;;;;;;;;;;;EAW8B,CAAC;AACnF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;QAxlB3B,qFAAqF;;QAQrF,gEAAgE;;;;;QAehE;;;oFAG4E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgmB7E,CAAC;AACJ,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,iBAAiB;;;;;;IAS1B,0EAA0E;;IAI1E;;;qFAGiF;;IAQjF;;;6EAGyE;;;;IASzE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;YAjqBjF,qFAAqF;;YAQrF,gEAAgE;;;;;YAehE;;;wFAG4E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA2oB5E;;;;;+DAK2D;;;;;;;;;;;;;;;;;;;;;;;IA+B3D;;;sEAGkE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkCgB,CAAC;AACvF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAanC,wEAAwE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU9B,CAAC;AAC/C,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAEpF;mFACmF;AACnF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;EAmBuD,CAAC;AAC/F,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAEpF;;6EAE6E;AAC7E,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;EAQgD,CAAC;AAC1F,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAExF,eAAO,MAAM,yBAAyB;;;;;;QAtSlC,uEAAuE;;;;QAQvE,wEAAwE;;QAKxE;gFACwE;;QAMxE,2EAA2E;;;;;;;QAW3E,+EAA+E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+Q1C,CAAC;AAC1C,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAElF,eAAO,MAAM,mBAAmB;;;;;;QAjT5B,uEAAuE;;;;QAQvE,wEAAwE;;QAKxE;gFACwE;;QAMxE,2EAA2E;;;;;;;QAW3E,+EAA+E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA0B/E;;wDAEgD;;;;;;;;;;;;;;;;;;;;;;;;;;QAgEhD,0EAA0E;;QAI1E;;;yFAGiF;;QAQjF;;;iFAGyE;;;;QASzE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;gBAjqBjF,qFAAqF;;gBAQrF,gEAAgE;;;;;gBAehE;;;4FAG4E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA2oB5E;;;;;mEAK2D;;;;;;;;;;;;;;;;;;;;;;;QA+B3D;;;0EAGkE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwHnE,CAAC;AACJ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE;;;;;;GAMG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;IAYrC;2EACuE;;;;;;;;;;;;;;;;;;;;;;EASF,CAAC;AAC1E,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAExF,eAAO,MAAM,uBAAuB;;IAMhC,+DAA+D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAmFvD;gDACwC;;;;;;;;;;;QA8CxC;;4EAEoE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAab,CAAC;AACpE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E;;;GAGG;AACH,eAAO,MAAM,2BAA2B;;IAGpC,iFAAiF;;;;;;;;;;;IAgCjF;uEACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpE,CAAC;AACJ,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEtF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA7CrC,iFAAiF;;;;;;;;;;;QAgCjF;2EACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuCiB,CAAC;AACzF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"control.d.ts","sourceRoot":"","sources":["../src/control.ts"],"names":[],"mappings":"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"}
|
package/dist/control.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from "zod/v3";
|
|
2
|
+
import { CANCEL_REASON_CODES } from "./cancel-reason.js";
|
|
2
3
|
import { AccessProfile, AuthPreference, ExternalContextPolicy, Id, ModeKind, NonBlankString, OutputReadyState, ProviderFamily, RecordedAccessProfile, } from "./primitives.js";
|
|
3
4
|
import { PaidBudget, PaidFallback, QualityTierSet, RouteRankingRationale, RoutingGoal, } from "./budget.js";
|
|
4
5
|
export { ControlQuotaResponse } from "./quota.js";
|
|
@@ -16,6 +17,7 @@ import { ControlAuthRoute } from "./control-auth-route.js";
|
|
|
16
17
|
import { DelegatedChildRunIds, RunDelegationInfo } from "./delegation.js";
|
|
17
18
|
import { HARNESS_INACTIVITY_TIMEOUT_DEFAULT_MS, InteractionTimeoutValue } from "./config.js";
|
|
18
19
|
export { RunExecution } from "./control-run-execution.js";
|
|
20
|
+
export { ControlTimelineEvent } from "./control-timeline.js";
|
|
19
21
|
export const ControlReviewerPanelEntry = z
|
|
20
22
|
.object({
|
|
21
23
|
/** Explicit reviewer harness id. Repeated harness ids are allowed so one
|
|
@@ -586,41 +588,6 @@ export const ControlRunSummary = z
|
|
|
586
588
|
finishedAt: z.string().optional().describe("When the run finished."),
|
|
587
589
|
})
|
|
588
590
|
.describe("Run summary row served by GET /runs and embedded in run detail: state, routing, budget, policies, and honest outcome.");
|
|
589
|
-
export const ControlTimelineEvent = z
|
|
590
|
-
.object({
|
|
591
|
-
type: z.string().describe("Run event type."),
|
|
592
|
-
ts: z.string().optional().describe("Event timestamp."),
|
|
593
|
-
harnessId: z.string().nullable().default(null).describe("Harness involved, when any."),
|
|
594
|
-
attemptId: z.string().nullable().default(null).describe("Attempt involved, when any."),
|
|
595
|
-
title: z.string().describe("Human-readable event title."),
|
|
596
|
-
detail: z.string().nullable().default(null).describe("Human-readable event detail."),
|
|
597
|
-
severity: z
|
|
598
|
-
.enum(["info", "warning", "error"])
|
|
599
|
-
.default("info")
|
|
600
|
-
.describe("Display severity of the event."),
|
|
601
|
-
toolName: z.string().nullable().default(null).describe("Tool name for tool events."),
|
|
602
|
-
target: z.string().nullable().default(null).describe("Redacted tool target for tool events."),
|
|
603
|
-
errorSummary: z
|
|
604
|
-
.string()
|
|
605
|
-
.nullable()
|
|
606
|
-
.default(null)
|
|
607
|
-
.describe("Redacted error detail for error events."),
|
|
608
|
-
/** Unsupported per-harness knobs the selected route silently could not honor
|
|
609
|
-
* (INV-105): the engine discloses them on `harness.started`, and this
|
|
610
|
-
* projection carries them so the row can render a visible warning ("max_turns
|
|
611
|
-
* was ignored") instead of an indistinguishable benign start (QA-070). Empty
|
|
612
|
-
* for every event that dropped nothing. */
|
|
613
|
-
ignoredSettings: z
|
|
614
|
-
.array(z.string())
|
|
615
|
-
.default([])
|
|
616
|
-
.describe("Unsupported per-harness knobs the route could not honor (INV-105), disclosed on harness.started; empty when nothing was dropped (QA-070)."),
|
|
617
|
-
rawRef: z
|
|
618
|
-
.string()
|
|
619
|
-
.nullable()
|
|
620
|
-
.default(null)
|
|
621
|
-
.describe("Reference to the raw underlying event/artifact."),
|
|
622
|
-
})
|
|
623
|
-
.describe("One projected timeline row of a run for display.");
|
|
624
591
|
export const ControlEvidenceIntegrity = z
|
|
625
592
|
.enum(["complete", "incomplete", "unavailable"])
|
|
626
593
|
.describe("Integrity of the canonical events.jsonl a projection was derived from: complete (every line parsed), incomplete (malformed or non-object lines were skipped and evidence is partial), or unavailable (the file existed but could not be read). Intentional volume/tail bounding is NOT reported here — it carries its own explicit marker.");
|
|
@@ -739,11 +706,13 @@ export const RunControlTarget = z
|
|
|
739
706
|
.describe("Optional narrowing of what a run control verb targets.");
|
|
740
707
|
export const RunControl = z
|
|
741
708
|
.object({
|
|
742
|
-
// `interrupt` was deleted as a fake knob
|
|
743
|
-
//
|
|
709
|
+
// `interrupt` was deleted as a fake knob mapping to the same daemon cancel
|
|
710
|
+
// (staged-field doctrine — no vocabulary without distinct behavior).
|
|
744
711
|
kind: z.enum(["cancel"]).describe("Control verb: cancel the run."),
|
|
745
712
|
target: RunControlTarget.default({}),
|
|
746
713
|
reason: z.string().optional().describe("Human-readable reason for the control."),
|
|
714
|
+
// Typed cancel class (vocabulary: cancel-reason.ts); absent = user_cancelled.
|
|
715
|
+
reason_code: z.enum(CANCEL_REASON_CODES).optional(),
|
|
747
716
|
})
|
|
748
717
|
.describe("A control verb (cancel) aimed at a run or a narrower target inside it.");
|
|
749
718
|
export const ControlRunControlRequest = z
|