@claudexor/schema 3.1.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/agent-capabilities.d.ts +8 -8
  2. package/dist/budget.d.ts +9 -9
  3. package/dist/config.d.ts +70 -38
  4. package/dist/config.d.ts.map +1 -1
  5. package/dist/config.js +12 -1
  6. package/dist/config.js.map +1 -1
  7. package/dist/control-operation-responses.d.ts +27 -27
  8. package/dist/control-run-detail.d.ts +13 -13
  9. package/dist/control.d.ts +135 -84
  10. package/dist/control.d.ts.map +1 -1
  11. package/dist/effort.d.ts +132 -0
  12. package/dist/effort.d.ts.map +1 -0
  13. package/dist/effort.js +167 -0
  14. package/dist/effort.js.map +1 -0
  15. package/dist/events.d.ts +4 -4
  16. package/dist/events.d.ts.map +1 -1
  17. package/dist/events.js +6 -0
  18. package/dist/events.js.map +1 -1
  19. package/dist/gate.d.ts +2 -2
  20. package/dist/harness.d.ts +98 -25
  21. package/dist/harness.d.ts.map +1 -1
  22. package/dist/harness.js +30 -13
  23. package/dist/harness.js.map +1 -1
  24. package/dist/index.d.ts +1 -0
  25. package/dist/index.d.ts.map +1 -1
  26. package/dist/index.js +1 -0
  27. package/dist/index.js.map +1 -1
  28. package/dist/operation.d.ts +16 -16
  29. package/dist/readiness.d.ts +48 -7
  30. package/dist/readiness.d.ts.map +1 -1
  31. package/dist/task.d.ts +62 -59
  32. package/dist/task.d.ts.map +1 -1
  33. package/dist/task.js +9 -8
  34. package/dist/task.js.map +1 -1
  35. package/dist/telemetry.d.ts +16 -16
  36. package/generated/AgentCapabilityCatalog.schema.json +4 -8
  37. package/generated/ControlHarnessListResponse.schema.json +45 -9
  38. package/generated/ControlHarnessSettingsPatch.schema.json +4 -8
  39. package/generated/ControlRunAgainDraft.schema.json +3 -7
  40. package/generated/ControlRunDetail.schema.json +3 -7
  41. package/generated/ControlRunListResponse.schema.json +3 -7
  42. package/generated/ControlRunStartRequest.schema.json +3 -7
  43. package/generated/ControlRunSummary.schema.json +3 -7
  44. package/generated/ControlSettingsSnapshot.schema.json +4 -8
  45. package/generated/ControlSettingsUpdateRequest.schema.json +4 -8
  46. package/generated/ControlThreadTurnRequest.schema.json +3 -7
  47. package/generated/GlobalConfig.schema.json +4 -8
  48. package/generated/HarnessManifest.schema.json +45 -9
  49. package/generated/HarnessStatusDto.schema.json +45 -9
  50. package/generated/ProjectConfig.schema.json +26 -0
  51. package/generated/RunEvent.schema.json +1 -0
  52. package/generated/TaskContract.schema.json +5 -9
  53. package/package.json +2 -2
package/dist/control.d.ts CHANGED
@@ -15,15 +15,15 @@ export declare const ControlReviewerPanelEntry: z.ZodObject<{
15
15
  /** Optional per-reviewer model hint, passed to that harness only. */
16
16
  model: z.ZodOptional<z.ZodString>;
17
17
  /** Optional per-reviewer effort hint, passed to that harness only. */
18
- effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
18
+ effort: z.ZodOptional<z.ZodString>;
19
19
  }, "strict", z.ZodTypeAny, {
20
20
  harness: string;
21
21
  model?: string | undefined;
22
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
22
+ effort?: string | undefined;
23
23
  }, {
24
24
  harness: string;
25
25
  model?: string | undefined;
26
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
26
+ effort?: string | undefined;
27
27
  }>;
28
28
  export type ControlReviewerPanelEntry = z.infer<typeof ControlReviewerPanelEntry>;
29
29
  export declare const ControlRunStartRequest: z.ZodObject<{
@@ -79,14 +79,14 @@ export declare const ControlRunStartRequest: z.ZodObject<{
79
79
  * general: an entry here wins over the scalar `model` and over the
80
80
  * per-harness settings default. */
81
81
  models: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
82
- effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
82
+ effort: z.ZodOptional<z.ZodString>;
83
83
  /** Harness-scoped effort map (harness id → effort). Specific beats general:
84
84
  * an entry here wins over the scalar `effort` and the per-harness settings
85
85
  * default, analogous to `models`. Exact Retry replays the frozen
86
86
  * per-lane efforts through this map so a non-primary lane keeps its effort. */
87
- efforts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>>;
87
+ efforts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
88
88
  reviewerModels: z.ZodOptional<z.ZodRecord<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>, z.ZodString>>;
89
- reviewerEfforts: z.ZodOptional<z.ZodRecord<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>, z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>>;
89
+ reviewerEfforts: z.ZodOptional<z.ZodRecord<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>, z.ZodString>>;
90
90
  n: z.ZodOptional<z.ZodNumber>;
91
91
  attempts: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
92
92
  /** agent flag: iterate until the convergence predicate is clean (no fixed cap). */
@@ -196,15 +196,15 @@ export declare const ControlRunStartRequest: z.ZodObject<{
196
196
  /** Optional per-reviewer model hint, passed to that harness only. */
197
197
  model: z.ZodOptional<z.ZodString>;
198
198
  /** Optional per-reviewer effort hint, passed to that harness only. */
199
- effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
199
+ effort: z.ZodOptional<z.ZodString>;
200
200
  }, "strict", z.ZodTypeAny, {
201
201
  harness: string;
202
202
  model?: string | undefined;
203
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
203
+ effort?: string | undefined;
204
204
  }, {
205
205
  harness: string;
206
206
  model?: string | undefined;
207
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
207
+ effort?: string | undefined;
208
208
  }>, "many">>;
209
209
  /** Per-run auth route override (subscription/api_key/auto). */
210
210
  authPreference: z.ZodOptional<z.ZodEnum<["subscription", "api_key", "auto"]>>;
@@ -275,7 +275,7 @@ export declare const ControlRunStartRequest: z.ZodObject<{
275
275
  models?: Record<string, string> | undefined;
276
276
  harnesses?: string[] | undefined;
277
277
  model?: string | undefined;
278
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
278
+ effort?: string | undefined;
279
279
  tests?: {
280
280
  args: string[];
281
281
  program: string;
@@ -285,9 +285,9 @@ export declare const ControlRunStartRequest: z.ZodObject<{
285
285
  retryOf?: string | undefined;
286
286
  primaryHarness?: string | undefined;
287
287
  routingGoal?: "auto" | "quality" | "economy" | undefined;
288
- efforts?: Record<string, "low" | "medium" | "high" | "xhigh" | "max"> | undefined;
288
+ efforts?: Record<string, string> | undefined;
289
289
  reviewerModels?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
290
- reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", "low" | "medium" | "high" | "xhigh" | "max">> | undefined;
290
+ reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
291
291
  n?: number | undefined;
292
292
  attempts?: number | null | undefined;
293
293
  untilClean?: boolean | undefined;
@@ -310,7 +310,7 @@ export declare const ControlRunStartRequest: z.ZodObject<{
310
310
  reviewerPanel?: {
311
311
  harness: string;
312
312
  model?: string | undefined;
313
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
313
+ effort?: string | undefined;
314
314
  }[] | undefined;
315
315
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
316
316
  credentialProfileId?: string | null | undefined;
@@ -340,7 +340,7 @@ export declare const ControlRunStartRequest: z.ZodObject<{
340
340
  models?: Record<string, string> | undefined;
341
341
  harnesses?: string[] | undefined;
342
342
  model?: string | undefined;
343
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
343
+ effort?: string | undefined;
344
344
  tests?: {
345
345
  program: string;
346
346
  args?: string[] | undefined;
@@ -360,9 +360,9 @@ export declare const ControlRunStartRequest: z.ZodObject<{
360
360
  } | undefined;
361
361
  primaryHarness?: string | undefined;
362
362
  routingGoal?: "auto" | "quality" | "economy" | undefined;
363
- efforts?: Record<string, "low" | "medium" | "high" | "xhigh" | "max"> | undefined;
363
+ efforts?: Record<string, string> | undefined;
364
364
  reviewerModels?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
365
- reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", "low" | "medium" | "high" | "xhigh" | "max">> | undefined;
365
+ reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
366
366
  n?: number | undefined;
367
367
  attempts?: number | null | undefined;
368
368
  untilClean?: boolean | undefined;
@@ -385,7 +385,7 @@ export declare const ControlRunStartRequest: z.ZodObject<{
385
385
  reviewerPanel?: {
386
386
  harness: string;
387
387
  model?: string | undefined;
388
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
388
+ effort?: string | undefined;
389
389
  }[] | undefined;
390
390
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
391
391
  credentialProfileId?: string | null | undefined;
@@ -487,14 +487,14 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
487
487
  * general: an entry here wins over the scalar `model` and over the
488
488
  * per-harness settings default. */
489
489
  models: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
490
- effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
490
+ effort: z.ZodOptional<z.ZodString>;
491
491
  /** Harness-scoped effort map (harness id → effort). Specific beats general:
492
492
  * an entry here wins over the scalar `effort` and the per-harness settings
493
493
  * default, analogous to `models`. Exact Retry replays the frozen
494
494
  * per-lane efforts through this map so a non-primary lane keeps its effort. */
495
- efforts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>>;
495
+ efforts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
496
496
  reviewerModels: z.ZodOptional<z.ZodRecord<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>, z.ZodString>>;
497
- reviewerEfforts: z.ZodOptional<z.ZodRecord<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>, z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>>;
497
+ reviewerEfforts: z.ZodOptional<z.ZodRecord<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>, z.ZodString>>;
498
498
  n: z.ZodOptional<z.ZodNumber>;
499
499
  attempts: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
500
500
  /** agent flag: iterate until the convergence predicate is clean (no fixed cap). */
@@ -604,15 +604,15 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
604
604
  /** Optional per-reviewer model hint, passed to that harness only. */
605
605
  model: z.ZodOptional<z.ZodString>;
606
606
  /** Optional per-reviewer effort hint, passed to that harness only. */
607
- effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
607
+ effort: z.ZodOptional<z.ZodString>;
608
608
  }, "strict", z.ZodTypeAny, {
609
609
  harness: string;
610
610
  model?: string | undefined;
611
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
611
+ effort?: string | undefined;
612
612
  }, {
613
613
  harness: string;
614
614
  model?: string | undefined;
615
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
615
+ effort?: string | undefined;
616
616
  }>, "many">>;
617
617
  /** Per-run auth route override (subscription/api_key/auto). */
618
618
  authPreference: z.ZodOptional<z.ZodEnum<["subscription", "api_key", "auto"]>>;
@@ -683,7 +683,7 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
683
683
  models?: Record<string, string> | undefined;
684
684
  harnesses?: string[] | undefined;
685
685
  model?: string | undefined;
686
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
686
+ effort?: string | undefined;
687
687
  tests?: {
688
688
  args: string[];
689
689
  program: string;
@@ -693,9 +693,9 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
693
693
  retryOf?: string | undefined;
694
694
  primaryHarness?: string | undefined;
695
695
  routingGoal?: "auto" | "quality" | "economy" | undefined;
696
- efforts?: Record<string, "low" | "medium" | "high" | "xhigh" | "max"> | undefined;
696
+ efforts?: Record<string, string> | undefined;
697
697
  reviewerModels?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
698
- reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", "low" | "medium" | "high" | "xhigh" | "max">> | undefined;
698
+ reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
699
699
  n?: number | undefined;
700
700
  attempts?: number | null | undefined;
701
701
  untilClean?: boolean | undefined;
@@ -718,7 +718,7 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
718
718
  reviewerPanel?: {
719
719
  harness: string;
720
720
  model?: string | undefined;
721
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
721
+ effort?: string | undefined;
722
722
  }[] | undefined;
723
723
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
724
724
  credentialProfileId?: string | null | undefined;
@@ -748,7 +748,7 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
748
748
  models?: Record<string, string> | undefined;
749
749
  harnesses?: string[] | undefined;
750
750
  model?: string | undefined;
751
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
751
+ effort?: string | undefined;
752
752
  tests?: {
753
753
  program: string;
754
754
  args?: string[] | undefined;
@@ -768,9 +768,9 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
768
768
  } | undefined;
769
769
  primaryHarness?: string | undefined;
770
770
  routingGoal?: "auto" | "quality" | "economy" | undefined;
771
- efforts?: Record<string, "low" | "medium" | "high" | "xhigh" | "max"> | undefined;
771
+ efforts?: Record<string, string> | undefined;
772
772
  reviewerModels?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
773
- reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", "low" | "medium" | "high" | "xhigh" | "max">> | undefined;
773
+ reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
774
774
  n?: number | undefined;
775
775
  attempts?: number | null | undefined;
776
776
  untilClean?: boolean | undefined;
@@ -793,7 +793,7 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
793
793
  reviewerPanel?: {
794
794
  harness: string;
795
795
  model?: string | undefined;
796
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
796
+ effort?: string | undefined;
797
797
  }[] | undefined;
798
798
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
799
799
  credentialProfileId?: string | null | undefined;
@@ -849,7 +849,7 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
849
849
  models?: Record<string, string> | undefined;
850
850
  harnesses?: string[] | undefined;
851
851
  model?: string | undefined;
852
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
852
+ effort?: string | undefined;
853
853
  tests?: {
854
854
  args: string[];
855
855
  program: string;
@@ -859,9 +859,9 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
859
859
  retryOf?: string | undefined;
860
860
  primaryHarness?: string | undefined;
861
861
  routingGoal?: "auto" | "quality" | "economy" | undefined;
862
- efforts?: Record<string, "low" | "medium" | "high" | "xhigh" | "max"> | undefined;
862
+ efforts?: Record<string, string> | undefined;
863
863
  reviewerModels?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
864
- reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", "low" | "medium" | "high" | "xhigh" | "max">> | undefined;
864
+ reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
865
865
  n?: number | undefined;
866
866
  attempts?: number | null | undefined;
867
867
  untilClean?: boolean | undefined;
@@ -884,7 +884,7 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
884
884
  reviewerPanel?: {
885
885
  harness: string;
886
886
  model?: string | undefined;
887
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
887
+ effort?: string | undefined;
888
888
  }[] | undefined;
889
889
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
890
890
  credentialProfileId?: string | null | undefined;
@@ -922,7 +922,7 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
922
922
  models?: Record<string, string> | undefined;
923
923
  harnesses?: string[] | undefined;
924
924
  model?: string | undefined;
925
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
925
+ effort?: string | undefined;
926
926
  tests?: {
927
927
  program: string;
928
928
  args?: string[] | undefined;
@@ -942,9 +942,9 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
942
942
  } | undefined;
943
943
  primaryHarness?: string | undefined;
944
944
  routingGoal?: "auto" | "quality" | "economy" | undefined;
945
- efforts?: Record<string, "low" | "medium" | "high" | "xhigh" | "max"> | undefined;
945
+ efforts?: Record<string, string> | undefined;
946
946
  reviewerModels?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
947
- reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", "low" | "medium" | "high" | "xhigh" | "max">> | undefined;
947
+ reviewerEfforts?: Partial<Record<"openai" | "anthropic" | "google" | "cursor" | "opencode" | "xai" | "local" | "unknown", string>> | undefined;
948
948
  n?: number | undefined;
949
949
  attempts?: number | null | undefined;
950
950
  untilClean?: boolean | undefined;
@@ -967,7 +967,7 @@ export declare const ControlRunAgainDraft: z.ZodObject<{
967
967
  reviewerPanel?: {
968
968
  harness: string;
969
969
  model?: string | undefined;
970
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
970
+ effort?: string | undefined;
971
971
  }[] | undefined;
972
972
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
973
973
  credentialProfileId?: string | null | undefined;
@@ -1076,8 +1076,8 @@ export declare const ControlWebEvidence: z.ZodObject<{
1076
1076
  available: boolean;
1077
1077
  target: string | null;
1078
1078
  mode: "off" | "auto" | "cached" | "live";
1079
- tool: string | null;
1080
1079
  required: boolean;
1080
+ tool: string | null;
1081
1081
  attempted: boolean;
1082
1082
  rawDetailRef: string | null;
1083
1083
  effectiveMode: "off" | "auto" | "cached" | "live";
@@ -1088,8 +1088,8 @@ export declare const ControlWebEvidence: z.ZodObject<{
1088
1088
  available?: boolean | undefined;
1089
1089
  target?: string | null | undefined;
1090
1090
  mode?: "off" | "auto" | "cached" | "live" | undefined;
1091
- tool?: string | null | undefined;
1092
1091
  required?: boolean | undefined;
1092
+ tool?: string | null | undefined;
1093
1093
  attempted?: boolean | undefined;
1094
1094
  rawDetailRef?: string | null | undefined;
1095
1095
  effectiveMode?: "off" | "auto" | "cached" | "live" | undefined;
@@ -1286,15 +1286,15 @@ export declare const ControlRunSummary: z.ZodObject<{
1286
1286
  /** Optional per-reviewer model hint, passed to that harness only. */
1287
1287
  model: z.ZodOptional<z.ZodString>;
1288
1288
  /** Optional per-reviewer effort hint, passed to that harness only. */
1289
- effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1289
+ effort: z.ZodOptional<z.ZodString>;
1290
1290
  }, "strict", z.ZodTypeAny, {
1291
1291
  harness: string;
1292
1292
  model?: string | undefined;
1293
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1293
+ effort?: string | undefined;
1294
1294
  }, {
1295
1295
  harness: string;
1296
1296
  model?: string | undefined;
1297
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1297
+ effort?: string | undefined;
1298
1298
  }>, "many">>;
1299
1299
  protectedPathApprovals: z.ZodOptional<z.ZodArray<z.ZodObject<{
1300
1300
  path: z.ZodString;
@@ -1408,8 +1408,8 @@ export declare const ControlRunSummary: z.ZodObject<{
1408
1408
  available: boolean;
1409
1409
  target: string | null;
1410
1410
  mode: "off" | "auto" | "cached" | "live";
1411
- tool: string | null;
1412
1411
  required: boolean;
1412
+ tool: string | null;
1413
1413
  attempted: boolean;
1414
1414
  rawDetailRef: string | null;
1415
1415
  effectiveMode: "off" | "auto" | "cached" | "live";
@@ -1420,8 +1420,8 @@ export declare const ControlRunSummary: z.ZodObject<{
1420
1420
  available?: boolean | undefined;
1421
1421
  target?: string | null | undefined;
1422
1422
  mode?: "off" | "auto" | "cached" | "live" | undefined;
1423
- tool?: string | null | undefined;
1424
1423
  required?: boolean | undefined;
1424
+ tool?: string | null | undefined;
1425
1425
  attempted?: boolean | undefined;
1426
1426
  rawDetailRef?: string | null | undefined;
1427
1427
  effectiveMode?: "off" | "auto" | "cached" | "live" | undefined;
@@ -1705,8 +1705,8 @@ export declare const ControlRunSummary: z.ZodObject<{
1705
1705
  available: boolean;
1706
1706
  target: string | null;
1707
1707
  mode: "off" | "auto" | "cached" | "live";
1708
- tool: string | null;
1709
1708
  required: boolean;
1709
+ tool: string | null;
1710
1710
  attempted: boolean;
1711
1711
  rawDetailRef: string | null;
1712
1712
  effectiveMode: "off" | "auto" | "cached" | "live";
@@ -1808,7 +1808,7 @@ export declare const ControlRunSummary: z.ZodObject<{
1808
1808
  reviewerPanel?: {
1809
1809
  harness: string;
1810
1810
  model?: string | undefined;
1811
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1811
+ effort?: string | undefined;
1812
1812
  }[] | undefined;
1813
1813
  strategy?: "attempts" | "create" | "race" | "until_clean" | "deep_scan" | null | undefined;
1814
1814
  spendUsd?: number | null | undefined;
@@ -1878,7 +1878,7 @@ export declare const ControlRunSummary: z.ZodObject<{
1878
1878
  reviewerPanel?: {
1879
1879
  harness: string;
1880
1880
  model?: string | undefined;
1881
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1881
+ effort?: string | undefined;
1882
1882
  }[] | undefined;
1883
1883
  failure?: {
1884
1884
  safeMessage: string;
@@ -1921,8 +1921,8 @@ export declare const ControlRunSummary: z.ZodObject<{
1921
1921
  available?: boolean | undefined;
1922
1922
  target?: string | null | undefined;
1923
1923
  mode?: "off" | "auto" | "cached" | "live" | undefined;
1924
- tool?: string | null | undefined;
1925
1924
  required?: boolean | undefined;
1925
+ tool?: string | null | undefined;
1926
1926
  attempted?: boolean | undefined;
1927
1927
  rawDetailRef?: string | null | undefined;
1928
1928
  effectiveMode?: "off" | "auto" | "cached" | "live" | undefined;
@@ -4412,7 +4412,18 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4412
4412
  json_schema_output: z.ZodDefault<z.ZodBoolean>;
4413
4413
  work_report_transport: z.ZodDefault<z.ZodEnum<["constrained", "validated", "unsupported"]>>;
4414
4414
  structured_output_channel: z.ZodDefault<z.ZodEnum<["side_tool", "final_message"]>>;
4415
- effort_levels: z.ZodDefault<z.ZodArray<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>, "many">>;
4415
+ effort_levels: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
4416
+ model_effort_levels: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
4417
+ levels: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
4418
+ default: z.ZodDefault<z.ZodNullable<z.ZodString>>;
4419
+ }, "strict", z.ZodTypeAny, {
4420
+ levels: string[];
4421
+ default: string | null;
4422
+ }, {
4423
+ levels?: string[] | undefined;
4424
+ default?: string | null | undefined;
4425
+ }>>>;
4426
+ effort_levels_verified_against: z.ZodDefault<z.ZodNullable<z.ZodString>>;
4416
4427
  known_models: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
4417
4428
  id: z.ZodString;
4418
4429
  routes: z.ZodArray<z.ZodEnum<["local_session", "api_key"]>, "many">;
@@ -4441,7 +4452,12 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4441
4452
  json_schema_output: boolean;
4442
4453
  work_report_transport: "constrained" | "validated" | "unsupported";
4443
4454
  structured_output_channel: "side_tool" | "final_message";
4444
- effort_levels: ("low" | "medium" | "high" | "xhigh" | "max")[];
4455
+ effort_levels: string[];
4456
+ model_effort_levels: Record<string, {
4457
+ levels: string[];
4458
+ default: string | null;
4459
+ }>;
4460
+ effort_levels_verified_against: string | null;
4445
4461
  known_models: (string | {
4446
4462
  id: string;
4447
4463
  routes: ("api_key" | "local_session")[];
@@ -4464,7 +4480,12 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4464
4480
  json_schema_output?: boolean | undefined;
4465
4481
  work_report_transport?: "constrained" | "validated" | "unsupported" | undefined;
4466
4482
  structured_output_channel?: "side_tool" | "final_message" | undefined;
4467
- effort_levels?: ("low" | "medium" | "high" | "xhigh" | "max")[] | undefined;
4483
+ effort_levels?: string[] | undefined;
4484
+ model_effort_levels?: Record<string, {
4485
+ levels?: string[] | undefined;
4486
+ default?: string | null | undefined;
4487
+ }> | undefined;
4488
+ effort_levels_verified_against?: string | null | undefined;
4468
4489
  known_models?: (string | {
4469
4490
  id: string;
4470
4491
  routes: ("api_key" | "local_session")[];
@@ -4521,7 +4542,12 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4521
4542
  json_schema_output: boolean;
4522
4543
  work_report_transport: "constrained" | "validated" | "unsupported";
4523
4544
  structured_output_channel: "side_tool" | "final_message";
4524
- effort_levels: ("low" | "medium" | "high" | "xhigh" | "max")[];
4545
+ effort_levels: string[];
4546
+ model_effort_levels: Record<string, {
4547
+ levels: string[];
4548
+ default: string | null;
4549
+ }>;
4550
+ effort_levels_verified_against: string | null;
4525
4551
  known_models: (string | {
4526
4552
  id: string;
4527
4553
  routes: ("api_key" | "local_session")[];
@@ -4553,7 +4579,12 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4553
4579
  json_schema_output?: boolean | undefined;
4554
4580
  work_report_transport?: "constrained" | "validated" | "unsupported" | undefined;
4555
4581
  structured_output_channel?: "side_tool" | "final_message" | undefined;
4556
- effort_levels?: ("low" | "medium" | "high" | "xhigh" | "max")[] | undefined;
4582
+ effort_levels?: string[] | undefined;
4583
+ model_effort_levels?: Record<string, {
4584
+ levels?: string[] | undefined;
4585
+ default?: string | null | undefined;
4586
+ }> | undefined;
4587
+ effort_levels_verified_against?: string | null | undefined;
4557
4588
  known_models?: (string | {
4558
4589
  id: string;
4559
4590
  routes: ("api_key" | "local_session")[];
@@ -4737,7 +4768,12 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4737
4768
  json_schema_output: boolean;
4738
4769
  work_report_transport: "constrained" | "validated" | "unsupported";
4739
4770
  structured_output_channel: "side_tool" | "final_message";
4740
- effort_levels: ("low" | "medium" | "high" | "xhigh" | "max")[];
4771
+ effort_levels: string[];
4772
+ model_effort_levels: Record<string, {
4773
+ levels: string[];
4774
+ default: string | null;
4775
+ }>;
4776
+ effort_levels_verified_against: string | null;
4741
4777
  known_models: (string | {
4742
4778
  id: string;
4743
4779
  routes: ("api_key" | "local_session")[];
@@ -4787,7 +4823,12 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4787
4823
  json_schema_output?: boolean | undefined;
4788
4824
  work_report_transport?: "constrained" | "validated" | "unsupported" | undefined;
4789
4825
  structured_output_channel?: "side_tool" | "final_message" | undefined;
4790
- effort_levels?: ("low" | "medium" | "high" | "xhigh" | "max")[] | undefined;
4826
+ effort_levels?: string[] | undefined;
4827
+ model_effort_levels?: Record<string, {
4828
+ levels?: string[] | undefined;
4829
+ default?: string | null | undefined;
4830
+ }> | undefined;
4831
+ effort_levels_verified_against?: string | null | undefined;
4791
4832
  known_models?: (string | {
4792
4833
  id: string;
4793
4834
  routes: ("api_key" | "local_session")[];
@@ -4921,7 +4962,12 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4921
4962
  json_schema_output: boolean;
4922
4963
  work_report_transport: "constrained" | "validated" | "unsupported";
4923
4964
  structured_output_channel: "side_tool" | "final_message";
4924
- effort_levels: ("low" | "medium" | "high" | "xhigh" | "max")[];
4965
+ effort_levels: string[];
4966
+ model_effort_levels: Record<string, {
4967
+ levels: string[];
4968
+ default: string | null;
4969
+ }>;
4970
+ effort_levels_verified_against: string | null;
4925
4971
  known_models: (string | {
4926
4972
  id: string;
4927
4973
  routes: ("api_key" | "local_session")[];
@@ -4973,7 +5019,12 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
4973
5019
  json_schema_output?: boolean | undefined;
4974
5020
  work_report_transport?: "constrained" | "validated" | "unsupported" | undefined;
4975
5021
  structured_output_channel?: "side_tool" | "final_message" | undefined;
4976
- effort_levels?: ("low" | "medium" | "high" | "xhigh" | "max")[] | undefined;
5022
+ effort_levels?: string[] | undefined;
5023
+ model_effort_levels?: Record<string, {
5024
+ levels?: string[] | undefined;
5025
+ default?: string | null | undefined;
5026
+ }> | undefined;
5027
+ effort_levels_verified_against?: string | null | undefined;
4977
5028
  known_models?: (string | {
4978
5029
  id: string;
4979
5030
  routes: ("api_key" | "local_session")[];
@@ -5094,15 +5145,15 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5094
5145
  qualityTiers: z.ZodDefault<z.ZodRecord<z.ZodEnum<["plan", "spec", "implement", "create_from_scratch", "repair", "review", "verify", "synthesize", "explain", "audit"]>, z.ZodArray<z.ZodArray<z.ZodObject<{
5095
5146
  harness: z.ZodString;
5096
5147
  model: z.ZodString;
5097
- effort: z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>;
5148
+ effort: z.ZodString;
5098
5149
  }, "strict", z.ZodTypeAny, {
5099
5150
  harness: string;
5100
5151
  model: string;
5101
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5152
+ effort: string;
5102
5153
  }, {
5103
5154
  harness: string;
5104
5155
  model: string;
5105
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5156
+ effort: string;
5106
5157
  }>, "many">, "many">>>;
5107
5158
  }, "strip", z.ZodTypeAny, {
5108
5159
  goal: "auto" | "quality" | "economy";
@@ -5114,7 +5165,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5114
5165
  qualityTiers: Partial<Record<"plan" | "spec" | "implement" | "create_from_scratch" | "repair" | "review" | "verify" | "synthesize" | "explain" | "audit", {
5115
5166
  harness: string;
5116
5167
  model: string;
5117
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5168
+ effort: string;
5118
5169
  }[][]>>;
5119
5170
  }, {
5120
5171
  goal?: "auto" | "quality" | "economy" | undefined;
@@ -5126,7 +5177,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5126
5177
  qualityTiers?: Partial<Record<"plan" | "spec" | "implement" | "create_from_scratch" | "repair" | "review" | "verify" | "synthesize" | "explain" | "audit", {
5127
5178
  harness: string;
5128
5179
  model: string;
5129
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5180
+ effort: string;
5130
5181
  }[][]>> | undefined;
5131
5182
  }>>;
5132
5183
  budget: z.ZodDefault<z.ZodObject<{
@@ -5200,7 +5251,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5200
5251
  * ladder for this harness (INV-135). */
5201
5252
  nativeCredentialsEnabled: z.ZodDefault<z.ZodBoolean>;
5202
5253
  defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
5203
- effort: z.ZodDefault<z.ZodNullable<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>>;
5254
+ effort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
5204
5255
  maxTurns: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
5205
5256
  maxRounds: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
5206
5257
  toolsAllow: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -5215,7 +5266,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5215
5266
  }, "strip", z.ZodTypeAny, {
5216
5267
  enabled: boolean;
5217
5268
  web: "off" | "auto" | "cached" | "live";
5218
- effort: "low" | "medium" | "high" | "xhigh" | "max" | null;
5269
+ effort: string | null;
5219
5270
  authPreference: "auto" | "subscription" | "api_key";
5220
5271
  maxTurns: number | null;
5221
5272
  nativeCredentialsEnabled: boolean;
@@ -5228,7 +5279,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5228
5279
  }, {
5229
5280
  enabled?: boolean | undefined;
5230
5281
  web?: "off" | "auto" | "cached" | "live" | undefined;
5231
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | null | undefined;
5282
+ effort?: string | null | undefined;
5232
5283
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
5233
5284
  maxTurns?: number | null | undefined;
5234
5285
  nativeCredentialsEnabled?: boolean | undefined;
@@ -5243,7 +5294,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5243
5294
  harnesses: Record<string, {
5244
5295
  enabled: boolean;
5245
5296
  web: "off" | "auto" | "cached" | "live";
5246
- effort: "low" | "medium" | "high" | "xhigh" | "max" | null;
5297
+ effort: string | null;
5247
5298
  authPreference: "auto" | "subscription" | "api_key";
5248
5299
  maxTurns: number | null;
5249
5300
  nativeCredentialsEnabled: boolean;
@@ -5274,7 +5325,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5274
5325
  qualityTiers: Partial<Record<"plan" | "spec" | "implement" | "create_from_scratch" | "repair" | "review" | "verify" | "synthesize" | "explain" | "audit", {
5275
5326
  harness: string;
5276
5327
  model: string;
5277
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5328
+ effort: string;
5278
5329
  }[][]>>;
5279
5330
  };
5280
5331
  runtime: {
@@ -5290,7 +5341,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5290
5341
  harnesses?: Record<string, {
5291
5342
  enabled?: boolean | undefined;
5292
5343
  web?: "off" | "auto" | "cached" | "live" | undefined;
5293
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | null | undefined;
5344
+ effort?: string | null | undefined;
5294
5345
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
5295
5346
  maxTurns?: number | null | undefined;
5296
5347
  nativeCredentialsEnabled?: boolean | undefined;
@@ -5321,7 +5372,7 @@ export declare const ControlSettingsSnapshot: z.ZodObject<{
5321
5372
  qualityTiers?: Partial<Record<"plan" | "spec" | "implement" | "create_from_scratch" | "repair" | "review" | "verify" | "synthesize" | "explain" | "audit", {
5322
5373
  harness: string;
5323
5374
  model: string;
5324
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5375
+ effort: string;
5325
5376
  }[][]>> | undefined;
5326
5377
  } | undefined;
5327
5378
  runtime?: {
@@ -5344,7 +5395,7 @@ export declare const ControlHarnessSettingsPatch: z.ZodObject<{
5344
5395
  /** Toggle the native/CLI login in this harness's credential ladder (INV-135). */
5345
5396
  nativeCredentialsEnabled: z.ZodOptional<z.ZodBoolean>;
5346
5397
  defaultModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5347
- effort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>>;
5398
+ effort: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5348
5399
  maxTurns: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5349
5400
  maxRounds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5350
5401
  toolsAllow: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -5358,7 +5409,7 @@ export declare const ControlHarnessSettingsPatch: z.ZodObject<{
5358
5409
  }, "strict", z.ZodTypeAny, {
5359
5410
  enabled?: boolean | undefined;
5360
5411
  web?: "off" | "auto" | "cached" | "live" | undefined;
5361
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | null | undefined;
5412
+ effort?: string | null | undefined;
5362
5413
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
5363
5414
  maxTurns?: number | null | undefined;
5364
5415
  nativeCredentialsEnabled?: boolean | undefined;
@@ -5371,7 +5422,7 @@ export declare const ControlHarnessSettingsPatch: z.ZodObject<{
5371
5422
  }, {
5372
5423
  enabled?: boolean | undefined;
5373
5424
  web?: "off" | "auto" | "cached" | "live" | undefined;
5374
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | null | undefined;
5425
+ effort?: string | null | undefined;
5375
5426
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
5376
5427
  maxTurns?: number | null | undefined;
5377
5428
  nativeCredentialsEnabled?: boolean | undefined;
@@ -5389,15 +5440,15 @@ export declare const ControlSettingsUpdateRequest: z.ZodObject<{
5389
5440
  qualityTiers: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodEnum<["plan", "spec", "implement", "create_from_scratch", "repair", "review", "verify", "synthesize", "explain", "audit"]>, z.ZodArray<z.ZodArray<z.ZodObject<{
5390
5441
  harness: z.ZodString;
5391
5442
  model: z.ZodString;
5392
- effort: z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>;
5443
+ effort: z.ZodString;
5393
5444
  }, "strict", z.ZodTypeAny, {
5394
5445
  harness: string;
5395
5446
  model: string;
5396
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5447
+ effort: string;
5397
5448
  }, {
5398
5449
  harness: string;
5399
5450
  model: string;
5400
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5451
+ effort: string;
5401
5452
  }>, "many">, "many">>>>;
5402
5453
  interactionTimeoutMs: z.ZodOptional<z.ZodNumber>;
5403
5454
  primaryHarness: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5425,7 +5476,7 @@ export declare const ControlSettingsUpdateRequest: z.ZodObject<{
5425
5476
  /** Toggle the native/CLI login in this harness's credential ladder (INV-135). */
5426
5477
  nativeCredentialsEnabled: z.ZodOptional<z.ZodBoolean>;
5427
5478
  defaultModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5428
- effort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>>;
5479
+ effort: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5429
5480
  maxTurns: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5430
5481
  maxRounds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5431
5482
  toolsAllow: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -5439,7 +5490,7 @@ export declare const ControlSettingsUpdateRequest: z.ZodObject<{
5439
5490
  }, "strict", z.ZodTypeAny, {
5440
5491
  enabled?: boolean | undefined;
5441
5492
  web?: "off" | "auto" | "cached" | "live" | undefined;
5442
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | null | undefined;
5493
+ effort?: string | null | undefined;
5443
5494
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
5444
5495
  maxTurns?: number | null | undefined;
5445
5496
  nativeCredentialsEnabled?: boolean | undefined;
@@ -5452,7 +5503,7 @@ export declare const ControlSettingsUpdateRequest: z.ZodObject<{
5452
5503
  }, {
5453
5504
  enabled?: boolean | undefined;
5454
5505
  web?: "off" | "auto" | "cached" | "live" | undefined;
5455
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | null | undefined;
5506
+ effort?: string | null | undefined;
5456
5507
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
5457
5508
  maxTurns?: number | null | undefined;
5458
5509
  nativeCredentialsEnabled?: boolean | undefined;
@@ -5467,7 +5518,7 @@ export declare const ControlSettingsUpdateRequest: z.ZodObject<{
5467
5518
  harnesses?: Record<string, {
5468
5519
  enabled?: boolean | undefined;
5469
5520
  web?: "off" | "auto" | "cached" | "live" | undefined;
5470
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | null | undefined;
5521
+ effort?: string | null | undefined;
5471
5522
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
5472
5523
  maxTurns?: number | null | undefined;
5473
5524
  nativeCredentialsEnabled?: boolean | undefined;
@@ -5488,7 +5539,7 @@ export declare const ControlSettingsUpdateRequest: z.ZodObject<{
5488
5539
  qualityTiers?: Partial<Record<"plan" | "spec" | "implement" | "create_from_scratch" | "repair" | "review" | "verify" | "synthesize" | "explain" | "audit", {
5489
5540
  harness: string;
5490
5541
  model: string;
5491
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5542
+ effort: string;
5492
5543
  }[][]>> | undefined;
5493
5544
  paidBudgetPerRun?: {
5494
5545
  kind: "unlimited";
@@ -5500,7 +5551,7 @@ export declare const ControlSettingsUpdateRequest: z.ZodObject<{
5500
5551
  harnesses?: Record<string, {
5501
5552
  enabled?: boolean | undefined;
5502
5553
  web?: "off" | "auto" | "cached" | "live" | undefined;
5503
- effort?: "low" | "medium" | "high" | "xhigh" | "max" | null | undefined;
5554
+ effort?: string | null | undefined;
5504
5555
  authPreference?: "auto" | "subscription" | "api_key" | undefined;
5505
5556
  maxTurns?: number | null | undefined;
5506
5557
  nativeCredentialsEnabled?: boolean | undefined;
@@ -5521,7 +5572,7 @@ export declare const ControlSettingsUpdateRequest: z.ZodObject<{
5521
5572
  qualityTiers?: Partial<Record<"plan" | "spec" | "implement" | "create_from_scratch" | "repair" | "review" | "verify" | "synthesize" | "explain" | "audit", {
5522
5573
  harness: string;
5523
5574
  model: string;
5524
- effort: "low" | "medium" | "high" | "xhigh" | "max";
5575
+ effort: string;
5525
5576
  }[][]>> | undefined;
5526
5577
  paidBudgetPerRun?: {
5527
5578
  kind: "unlimited";