@claudexor/schema 3.9.7 → 3.9.8
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/control-operation-responses.d.ts +15 -0
- package/dist/control-operation-responses.d.ts.map +1 -1
- package/dist/control-run-detail.d.ts +43 -5
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control.d.ts +40 -0
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +8 -0
- package/dist/control.js.map +1 -1
- package/dist/decision.d.ts +15 -4
- package/dist/decision.d.ts.map +1 -1
- package/dist/decision.js +13 -9
- package/dist/decision.js.map +1 -1
- package/dist/mcp-run-result.d.ts +24 -0
- package/dist/mcp-run-result.d.ts.map +1 -1
- package/dist/run-facts.d.ts +5 -0
- package/dist/run-facts.d.ts.map +1 -1
- package/dist/run-facts.js +3 -3
- package/dist/run-facts.js.map +1 -1
- package/dist/run-strategy.d.ts +17 -0
- package/dist/run-strategy.d.ts.map +1 -1
- package/dist/run-strategy.js +31 -0
- package/dist/run-strategy.js.map +1 -1
- package/dist/status-projection.d.ts.map +1 -1
- package/dist/status-projection.js +13 -1
- package/dist/status-projection.js.map +1 -1
- package/dist/surface-run-controls.d.ts.map +1 -1
- package/dist/surface-run-controls.js +3 -0
- package/dist/surface-run-controls.js.map +1 -1
- package/dist/task.d.ts +9 -0
- package/dist/task.d.ts.map +1 -1
- package/dist/task.js +4 -0
- package/dist/task.js.map +1 -1
- package/dist/telemetry.d.ts +7 -0
- package/dist/telemetry.d.ts.map +1 -1
- package/generated/ControlRunAgainDraft.schema.json +4 -0
- package/generated/ControlRunDetail.schema.json +10 -1
- package/generated/ControlRunListResponse.schema.json +8 -0
- package/generated/ControlRunStartRequest.schema.json +4 -0
- package/generated/ControlRunSummary.schema.json +8 -0
- package/generated/ControlThreadDetail.schema.json +4 -0
- package/generated/ControlThreadTurnRequest.schema.json +4 -0
- package/generated/DecisionRecord.schema.json +6 -1
- package/generated/McpRunHandleResult.schema.json +4 -0
- package/generated/McpRunToolResult.schema.json +4 -0
- package/generated/RunFacts.schema.json +4 -0
- package/generated/RunTelemetry.schema.json +4 -0
- package/generated/TaskContract.schema.json +4 -0
- package/package.json +2 -2
|
@@ -166,6 +166,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
166
166
|
primaryHarness: z.ZodOptional<z.ZodString>;
|
|
167
167
|
routingGoal: z.ZodOptional<z.ZodEnum<["auto", "quality", "economy"]>>;
|
|
168
168
|
model: z.ZodOptional<z.ZodString>;
|
|
169
|
+
review: z.ZodOptional<z.ZodBoolean>;
|
|
169
170
|
reviewerPanel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
170
171
|
harness: z.ZodString;
|
|
171
172
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -385,6 +386,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
385
386
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
386
387
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
387
388
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
389
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
388
390
|
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"]>>>;
|
|
389
391
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
390
392
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -424,6 +426,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
424
426
|
noChanges: boolean;
|
|
425
427
|
checks: "failed" | "not_configured" | "passed";
|
|
426
428
|
review: "approved" | "blocked" | "not_run";
|
|
429
|
+
review_requested?: boolean | undefined;
|
|
427
430
|
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;
|
|
428
431
|
work_state?: {
|
|
429
432
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -439,6 +442,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
439
442
|
noChanges?: boolean | undefined;
|
|
440
443
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
441
444
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
445
|
+
review_requested?: boolean | undefined;
|
|
442
446
|
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;
|
|
443
447
|
work_state?: {
|
|
444
448
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -576,6 +580,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
576
580
|
primaryHarness?: string | undefined;
|
|
577
581
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
578
582
|
model?: string | undefined;
|
|
583
|
+
review?: boolean | undefined;
|
|
579
584
|
reviewerPanel?: {
|
|
580
585
|
harness: string;
|
|
581
586
|
model?: string | undefined;
|
|
@@ -663,6 +668,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
663
668
|
noChanges: boolean;
|
|
664
669
|
checks: "failed" | "not_configured" | "passed";
|
|
665
670
|
review: "approved" | "blocked" | "not_run";
|
|
671
|
+
review_requested?: boolean | undefined;
|
|
666
672
|
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;
|
|
667
673
|
work_state?: {
|
|
668
674
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -746,6 +752,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
746
752
|
primaryHarness?: string | undefined;
|
|
747
753
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
748
754
|
model?: string | undefined;
|
|
755
|
+
review?: boolean | undefined;
|
|
749
756
|
reviewerPanel?: {
|
|
750
757
|
harness: string;
|
|
751
758
|
model?: string | undefined;
|
|
@@ -833,6 +840,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
833
840
|
noChanges?: boolean | undefined;
|
|
834
841
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
835
842
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
843
|
+
review_requested?: boolean | undefined;
|
|
836
844
|
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;
|
|
837
845
|
work_state?: {
|
|
838
846
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -926,6 +934,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
926
934
|
primaryHarness?: string | undefined;
|
|
927
935
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
928
936
|
model?: string | undefined;
|
|
937
|
+
review?: boolean | undefined;
|
|
929
938
|
reviewerPanel?: {
|
|
930
939
|
harness: string;
|
|
931
940
|
model?: string | undefined;
|
|
@@ -1013,6 +1022,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
1013
1022
|
noChanges: boolean;
|
|
1014
1023
|
checks: "failed" | "not_configured" | "passed";
|
|
1015
1024
|
review: "approved" | "blocked" | "not_run";
|
|
1025
|
+
review_requested?: boolean | undefined;
|
|
1016
1026
|
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;
|
|
1017
1027
|
work_state?: {
|
|
1018
1028
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1100,6 +1110,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
1100
1110
|
primaryHarness?: string | undefined;
|
|
1101
1111
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
1102
1112
|
model?: string | undefined;
|
|
1113
|
+
review?: boolean | undefined;
|
|
1103
1114
|
reviewerPanel?: {
|
|
1104
1115
|
harness: string;
|
|
1105
1116
|
model?: string | undefined;
|
|
@@ -1187,6 +1198,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
1187
1198
|
noChanges?: boolean | undefined;
|
|
1188
1199
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1189
1200
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1201
|
+
review_requested?: boolean | undefined;
|
|
1190
1202
|
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;
|
|
1191
1203
|
work_state?: {
|
|
1192
1204
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1481,6 +1493,7 @@ export declare const ControlThreadTurnRequest: z.ZodObject<Omit<{
|
|
|
1481
1493
|
models: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1482
1494
|
effort: z.ZodOptional<z.ZodString>;
|
|
1483
1495
|
efforts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1496
|
+
review: z.ZodOptional<z.ZodBoolean>;
|
|
1484
1497
|
reviewerModels: z.ZodOptional<z.ZodRecord<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>, z.ZodString>>;
|
|
1485
1498
|
reviewerEfforts: z.ZodOptional<z.ZodRecord<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>, z.ZodString>>;
|
|
1486
1499
|
n: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1599,6 +1612,7 @@ export declare const ControlThreadTurnRequest: z.ZodObject<Omit<{
|
|
|
1599
1612
|
models?: Record<string, string> | undefined;
|
|
1600
1613
|
effort?: string | undefined;
|
|
1601
1614
|
efforts?: Record<string, string> | undefined;
|
|
1615
|
+
review?: boolean | undefined;
|
|
1602
1616
|
reviewerModels?: Partial<Record<"anthropic" | "cursor" | "google" | "local" | "openai" | "opencode" | "unknown" | "xai", string>> | undefined;
|
|
1603
1617
|
reviewerEfforts?: Partial<Record<"anthropic" | "cursor" | "google" | "local" | "openai" | "opencode" | "unknown" | "xai", string>> | undefined;
|
|
1604
1618
|
n?: number | undefined;
|
|
@@ -1658,6 +1672,7 @@ export declare const ControlThreadTurnRequest: z.ZodObject<Omit<{
|
|
|
1658
1672
|
models?: Record<string, string> | undefined;
|
|
1659
1673
|
effort?: string | undefined;
|
|
1660
1674
|
efforts?: Record<string, string> | undefined;
|
|
1675
|
+
review?: boolean | undefined;
|
|
1661
1676
|
reviewerModels?: Partial<Record<"anthropic" | "cursor" | "google" | "local" | "openai" | "opencode" | "unknown" | "xai", string>> | undefined;
|
|
1662
1677
|
reviewerEfforts?: Partial<Record<"anthropic" | "cursor" | "google" | "local" | "openai" | "opencode" | "unknown" | "xai", string>> | undefined;
|
|
1663
1678
|
n?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-operation-responses.d.ts","sourceRoot":"","sources":["../src/control-operation-responses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAW3B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEqC,CAAC;AAC1E,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,gCAAgC;;;;;;;;;;;;EAUI,CAAC;AAClD,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAEhG,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;EAcW,CAAC;AAClD,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAElF,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"control-operation-responses.d.ts","sourceRoot":"","sources":["../src/control-operation-responses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAW3B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEqC,CAAC;AAC1E,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,gCAAgC;;;;;;;;;;;;EAUI,CAAC;AAClD,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAEhG,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;EAcW,CAAC;AAClD,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAElF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAG/B;;gFAE4E;;IAQ5E;;4BAEwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASzB,CAAC;AACJ,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE5E,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG+B,CAAC;AACxE,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEtF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKvC,CAAC;AACJ,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAE1F,eAAO,MAAM,yBAAyB;;;;IAKlC;;;;gBAIY;;;;;;;;;;;;EAOmC,CAAC;AACpD,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAElF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEnC,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAWjC;sEACkE;;IAIlE;oEACgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM8B,CAAC;AACnG,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKsC,CAAC;AAC7E,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC"}
|
|
@@ -258,6 +258,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
258
258
|
primaryHarness: z.ZodOptional<z.ZodString>;
|
|
259
259
|
routingGoal: z.ZodOptional<z.ZodEnum<["auto", "quality", "economy"]>>;
|
|
260
260
|
model: z.ZodOptional<z.ZodString>;
|
|
261
|
+
review: z.ZodOptional<z.ZodBoolean>;
|
|
261
262
|
reviewerPanel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
262
263
|
harness: z.ZodString;
|
|
263
264
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -477,6 +478,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
477
478
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
478
479
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
479
480
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
481
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
480
482
|
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"]>>>;
|
|
481
483
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
482
484
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -516,6 +518,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
516
518
|
noChanges: boolean;
|
|
517
519
|
checks: "failed" | "not_configured" | "passed";
|
|
518
520
|
review: "approved" | "blocked" | "not_run";
|
|
521
|
+
review_requested?: boolean | undefined;
|
|
519
522
|
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;
|
|
520
523
|
work_state?: {
|
|
521
524
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -531,6 +534,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
531
534
|
noChanges?: boolean | undefined;
|
|
532
535
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
533
536
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
537
|
+
review_requested?: boolean | undefined;
|
|
534
538
|
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;
|
|
535
539
|
work_state?: {
|
|
536
540
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -668,6 +672,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
668
672
|
primaryHarness?: string | undefined;
|
|
669
673
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
670
674
|
model?: string | undefined;
|
|
675
|
+
review?: boolean | undefined;
|
|
671
676
|
reviewerPanel?: {
|
|
672
677
|
harness: string;
|
|
673
678
|
model?: string | undefined;
|
|
@@ -755,6 +760,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
755
760
|
noChanges: boolean;
|
|
756
761
|
checks: "failed" | "not_configured" | "passed";
|
|
757
762
|
review: "approved" | "blocked" | "not_run";
|
|
763
|
+
review_requested?: boolean | undefined;
|
|
758
764
|
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;
|
|
759
765
|
work_state?: {
|
|
760
766
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -838,6 +844,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
838
844
|
primaryHarness?: string | undefined;
|
|
839
845
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
840
846
|
model?: string | undefined;
|
|
847
|
+
review?: boolean | undefined;
|
|
841
848
|
reviewerPanel?: {
|
|
842
849
|
harness: string;
|
|
843
850
|
model?: string | undefined;
|
|
@@ -925,6 +932,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
925
932
|
noChanges?: boolean | undefined;
|
|
926
933
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
927
934
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
935
|
+
review_requested?: boolean | undefined;
|
|
928
936
|
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;
|
|
929
937
|
work_state?: {
|
|
930
938
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1069,6 +1077,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1069
1077
|
primaryHarness: z.ZodOptional<z.ZodString>;
|
|
1070
1078
|
routingGoal: z.ZodOptional<z.ZodEnum<["auto", "quality", "economy"]>>;
|
|
1071
1079
|
model: z.ZodOptional<z.ZodString>;
|
|
1080
|
+
review: z.ZodOptional<z.ZodBoolean>;
|
|
1072
1081
|
reviewerPanel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1073
1082
|
harness: z.ZodString;
|
|
1074
1083
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1288,6 +1297,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1288
1297
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
1289
1298
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
1290
1299
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
1300
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
1291
1301
|
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"]>>>;
|
|
1292
1302
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
1293
1303
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -1327,6 +1337,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1327
1337
|
noChanges: boolean;
|
|
1328
1338
|
checks: "failed" | "not_configured" | "passed";
|
|
1329
1339
|
review: "approved" | "blocked" | "not_run";
|
|
1340
|
+
review_requested?: boolean | undefined;
|
|
1330
1341
|
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;
|
|
1331
1342
|
work_state?: {
|
|
1332
1343
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1342,6 +1353,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1342
1353
|
noChanges?: boolean | undefined;
|
|
1343
1354
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1344
1355
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1356
|
+
review_requested?: boolean | undefined;
|
|
1345
1357
|
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;
|
|
1346
1358
|
work_state?: {
|
|
1347
1359
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1479,6 +1491,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1479
1491
|
primaryHarness?: string | undefined;
|
|
1480
1492
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
1481
1493
|
model?: string | undefined;
|
|
1494
|
+
review?: boolean | undefined;
|
|
1482
1495
|
reviewerPanel?: {
|
|
1483
1496
|
harness: string;
|
|
1484
1497
|
model?: string | undefined;
|
|
@@ -1566,6 +1579,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1566
1579
|
noChanges: boolean;
|
|
1567
1580
|
checks: "failed" | "not_configured" | "passed";
|
|
1568
1581
|
review: "approved" | "blocked" | "not_run";
|
|
1582
|
+
review_requested?: boolean | undefined;
|
|
1569
1583
|
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;
|
|
1570
1584
|
work_state?: {
|
|
1571
1585
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1649,6 +1663,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1649
1663
|
primaryHarness?: string | undefined;
|
|
1650
1664
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
1651
1665
|
model?: string | undefined;
|
|
1666
|
+
review?: boolean | undefined;
|
|
1652
1667
|
reviewerPanel?: {
|
|
1653
1668
|
harness: string;
|
|
1654
1669
|
model?: string | undefined;
|
|
@@ -1736,6 +1751,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1736
1751
|
noChanges?: boolean | undefined;
|
|
1737
1752
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1738
1753
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1754
|
+
review_requested?: boolean | undefined;
|
|
1739
1755
|
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;
|
|
1740
1756
|
work_state?: {
|
|
1741
1757
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1789,6 +1805,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1789
1805
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
1790
1806
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
1791
1807
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
1808
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
1792
1809
|
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"]>>>;
|
|
1793
1810
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
1794
1811
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -1828,6 +1845,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1828
1845
|
noChanges: boolean;
|
|
1829
1846
|
checks: "failed" | "not_configured" | "passed";
|
|
1830
1847
|
review: "approved" | "blocked" | "not_run";
|
|
1848
|
+
review_requested?: boolean | undefined;
|
|
1831
1849
|
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;
|
|
1832
1850
|
work_state?: {
|
|
1833
1851
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1843,6 +1861,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1843
1861
|
noChanges?: boolean | undefined;
|
|
1844
1862
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1845
1863
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1864
|
+
review_requested?: boolean | undefined;
|
|
1846
1865
|
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;
|
|
1847
1866
|
work_state?: {
|
|
1848
1867
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -2026,6 +2045,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2026
2045
|
noChanges: boolean;
|
|
2027
2046
|
checks: "failed" | "not_configured" | "passed";
|
|
2028
2047
|
review: "approved" | "blocked" | "not_run";
|
|
2048
|
+
review_requested?: boolean | undefined;
|
|
2029
2049
|
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;
|
|
2030
2050
|
work_state?: {
|
|
2031
2051
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -2097,6 +2117,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2097
2117
|
noChanges?: boolean | undefined;
|
|
2098
2118
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
2099
2119
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
2120
|
+
review_requested?: boolean | undefined;
|
|
2100
2121
|
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;
|
|
2101
2122
|
work_state?: {
|
|
2102
2123
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -2315,6 +2336,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2315
2336
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
2316
2337
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
2317
2338
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
2339
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
2318
2340
|
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"]>>>;
|
|
2319
2341
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
2320
2342
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -2354,6 +2376,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2354
2376
|
noChanges: boolean;
|
|
2355
2377
|
checks: "failed" | "not_configured" | "passed";
|
|
2356
2378
|
review: "approved" | "blocked" | "not_run";
|
|
2379
|
+
review_requested?: boolean | undefined;
|
|
2357
2380
|
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;
|
|
2358
2381
|
work_state?: {
|
|
2359
2382
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -2369,6 +2392,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2369
2392
|
noChanges?: boolean | undefined;
|
|
2370
2393
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
2371
2394
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
2395
|
+
review_requested?: boolean | undefined;
|
|
2372
2396
|
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;
|
|
2373
2397
|
work_state?: {
|
|
2374
2398
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -2433,7 +2457,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2433
2457
|
valuation_knowledge?: "estimated" | "exact" | "unknown" | undefined;
|
|
2434
2458
|
}>>;
|
|
2435
2459
|
apply_recommendation: z.ZodDefault<z.ZodEnum<["apply", "inspect", "continue", "human_review"]>>;
|
|
2436
|
-
verification_basis: z.ZodDefault<z.ZodEnum<["none", "cross_family_review", "both"]>>;
|
|
2460
|
+
verification_basis: z.ZodDefault<z.ZodEnum<["none", "deterministic_checks", "cross_family_review", "both"]>>;
|
|
2437
2461
|
final_verify: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
2438
2462
|
attempted: z.ZodBoolean;
|
|
2439
2463
|
base_sha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -2481,6 +2505,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2481
2505
|
noChanges: boolean;
|
|
2482
2506
|
checks: "failed" | "not_configured" | "passed";
|
|
2483
2507
|
review: "approved" | "blocked" | "not_run";
|
|
2508
|
+
review_requested?: boolean | undefined;
|
|
2484
2509
|
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;
|
|
2485
2510
|
work_state?: {
|
|
2486
2511
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -2517,7 +2542,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2517
2542
|
valuation_knowledge?: "estimated" | "exact" | "unknown" | undefined;
|
|
2518
2543
|
};
|
|
2519
2544
|
apply_recommendation: "apply" | "continue" | "human_review" | "inspect";
|
|
2520
|
-
verification_basis: "both" | "cross_family_review" | "none";
|
|
2545
|
+
verification_basis: "both" | "cross_family_review" | "deterministic_checks" | "none";
|
|
2521
2546
|
final_verify: {
|
|
2522
2547
|
attempted: boolean;
|
|
2523
2548
|
base_sha: string | null;
|
|
@@ -2537,6 +2562,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2537
2562
|
noChanges?: boolean | undefined;
|
|
2538
2563
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
2539
2564
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
2565
|
+
review_requested?: boolean | undefined;
|
|
2540
2566
|
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;
|
|
2541
2567
|
work_state?: {
|
|
2542
2568
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -2573,7 +2599,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2573
2599
|
valuation_knowledge?: "estimated" | "exact" | "unknown" | undefined;
|
|
2574
2600
|
} | undefined;
|
|
2575
2601
|
apply_recommendation?: "apply" | "continue" | "human_review" | "inspect" | undefined;
|
|
2576
|
-
verification_basis?: "both" | "cross_family_review" | "none" | undefined;
|
|
2602
|
+
verification_basis?: "both" | "cross_family_review" | "deterministic_checks" | "none" | undefined;
|
|
2577
2603
|
final_verify?: {
|
|
2578
2604
|
attempted: boolean;
|
|
2579
2605
|
base_sha?: string | null | undefined;
|
|
@@ -3208,6 +3234,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3208
3234
|
primaryHarness?: string | undefined;
|
|
3209
3235
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
3210
3236
|
model?: string | undefined;
|
|
3237
|
+
review?: boolean | undefined;
|
|
3211
3238
|
reviewerPanel?: {
|
|
3212
3239
|
harness: string;
|
|
3213
3240
|
model?: string | undefined;
|
|
@@ -3295,6 +3322,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3295
3322
|
noChanges: boolean;
|
|
3296
3323
|
checks: "failed" | "not_configured" | "passed";
|
|
3297
3324
|
review: "approved" | "blocked" | "not_run";
|
|
3325
|
+
review_requested?: boolean | undefined;
|
|
3298
3326
|
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;
|
|
3299
3327
|
work_state?: {
|
|
3300
3328
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -3379,6 +3407,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3379
3407
|
primaryHarness?: string | undefined;
|
|
3380
3408
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
3381
3409
|
model?: string | undefined;
|
|
3410
|
+
review?: boolean | undefined;
|
|
3382
3411
|
reviewerPanel?: {
|
|
3383
3412
|
harness: string;
|
|
3384
3413
|
model?: string | undefined;
|
|
@@ -3466,6 +3495,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3466
3495
|
noChanges: boolean;
|
|
3467
3496
|
checks: "failed" | "not_configured" | "passed";
|
|
3468
3497
|
review: "approved" | "blocked" | "not_run";
|
|
3498
|
+
review_requested?: boolean | undefined;
|
|
3469
3499
|
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;
|
|
3470
3500
|
work_state?: {
|
|
3471
3501
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -3517,6 +3547,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3517
3547
|
noChanges: boolean;
|
|
3518
3548
|
checks: "failed" | "not_configured" | "passed";
|
|
3519
3549
|
review: "approved" | "blocked" | "not_run";
|
|
3550
|
+
review_requested?: boolean | undefined;
|
|
3520
3551
|
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;
|
|
3521
3552
|
work_state?: {
|
|
3522
3553
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -3633,6 +3664,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3633
3664
|
noChanges: boolean;
|
|
3634
3665
|
checks: "failed" | "not_configured" | "passed";
|
|
3635
3666
|
review: "approved" | "blocked" | "not_run";
|
|
3667
|
+
review_requested?: boolean | undefined;
|
|
3636
3668
|
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;
|
|
3637
3669
|
work_state?: {
|
|
3638
3670
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -3669,7 +3701,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3669
3701
|
valuation_knowledge?: "estimated" | "exact" | "unknown" | undefined;
|
|
3670
3702
|
};
|
|
3671
3703
|
apply_recommendation: "apply" | "continue" | "human_review" | "inspect";
|
|
3672
|
-
verification_basis: "both" | "cross_family_review" | "none";
|
|
3704
|
+
verification_basis: "both" | "cross_family_review" | "deterministic_checks" | "none";
|
|
3673
3705
|
final_verify: {
|
|
3674
3706
|
attempted: boolean;
|
|
3675
3707
|
base_sha: string | null;
|
|
@@ -3875,6 +3907,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3875
3907
|
primaryHarness?: string | undefined;
|
|
3876
3908
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
3877
3909
|
model?: string | undefined;
|
|
3910
|
+
review?: boolean | undefined;
|
|
3878
3911
|
reviewerPanel?: {
|
|
3879
3912
|
harness: string;
|
|
3880
3913
|
model?: string | undefined;
|
|
@@ -3962,6 +3995,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3962
3995
|
noChanges?: boolean | undefined;
|
|
3963
3996
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
3964
3997
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
3998
|
+
review_requested?: boolean | undefined;
|
|
3965
3999
|
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;
|
|
3966
4000
|
work_state?: {
|
|
3967
4001
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -4046,6 +4080,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4046
4080
|
primaryHarness?: string | undefined;
|
|
4047
4081
|
routingGoal?: "auto" | "economy" | "quality" | undefined;
|
|
4048
4082
|
model?: string | undefined;
|
|
4083
|
+
review?: boolean | undefined;
|
|
4049
4084
|
reviewerPanel?: {
|
|
4050
4085
|
harness: string;
|
|
4051
4086
|
model?: string | undefined;
|
|
@@ -4133,6 +4168,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4133
4168
|
noChanges?: boolean | undefined;
|
|
4134
4169
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4135
4170
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4171
|
+
review_requested?: boolean | undefined;
|
|
4136
4172
|
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;
|
|
4137
4173
|
work_state?: {
|
|
4138
4174
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -4184,6 +4220,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4184
4220
|
noChanges?: boolean | undefined;
|
|
4185
4221
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4186
4222
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4223
|
+
review_requested?: boolean | undefined;
|
|
4187
4224
|
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;
|
|
4188
4225
|
work_state?: {
|
|
4189
4226
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -4300,6 +4337,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4300
4337
|
noChanges?: boolean | undefined;
|
|
4301
4338
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4302
4339
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4340
|
+
review_requested?: boolean | undefined;
|
|
4303
4341
|
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;
|
|
4304
4342
|
work_state?: {
|
|
4305
4343
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -4336,7 +4374,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4336
4374
|
valuation_knowledge?: "estimated" | "exact" | "unknown" | undefined;
|
|
4337
4375
|
} | undefined;
|
|
4338
4376
|
apply_recommendation?: "apply" | "continue" | "human_review" | "inspect" | undefined;
|
|
4339
|
-
verification_basis?: "both" | "cross_family_review" | "none" | undefined;
|
|
4377
|
+
verification_basis?: "both" | "cross_family_review" | "deterministic_checks" | "none" | undefined;
|
|
4340
4378
|
final_verify?: {
|
|
4341
4379
|
attempted: boolean;
|
|
4342
4380
|
base_sha?: string | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-run-detail.d.ts","sourceRoot":"","sources":["../src/control-run-detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAmB3B,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAe4B,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE;;;kCAGkC;AAClC,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAwBrC,CAAC;AACJ,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEtF;;;gCAGgC;AAChC,eAAO,MAAM,gBAAgB;;;;;;;;;;IAgCzB,0DAA0D;;;;;;;;;;;;;;;;;;IA0B1D;;;;;;;;OAQG;;IAQH;uEACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpE,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"control-run-detail.d.ts","sourceRoot":"","sources":["../src/control-run-detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAmB3B,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAe4B,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE;;;kCAGkC;AAClC,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAwBrC,CAAC;AACJ,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEtF;;;gCAGgC;AAChC,eAAO,MAAM,gBAAgB;;;;;;;;;;IAgCzB,0DAA0D;;;;;;;;;;;;;;;;;;IA0B1D;;;;;;;;OAQG;;IAQH;uEACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpE,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUzB;sEACkE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|