@generacy-ai/config 0.4.0 → 0.5.0

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.
@@ -13,19 +13,29 @@ export declare const TemplateReposSchema: z.ZodObject<{
13
13
  clone?: string[] | null | undefined;
14
14
  }>;
15
15
  /**
16
- * A single agent selector: `{ provider?, model? }`. Both fields are optional and
17
- * resolve independently a phase override may set only `model` and let
18
- * `provider` fall through from a lower precedence tier.
16
+ * Reasoning effort levels understood by the Claude CLI (v2.1.150). Matches the
17
+ * `--effort <level>` flag vocabulary verbatim. Consumers that lack an effort
18
+ * mechanism silently drop the field at spawn time (with a warning).
19
+ */
20
+ export declare const EffortSchema: z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>;
21
+ export type Effort = z.infer<typeof EffortSchema>;
22
+ /**
23
+ * A single agent selector: `{ provider?, model?, effort? }`. All fields are
24
+ * optional and resolve independently — a phase override may set only `model`
25
+ * and let `provider` fall through from a lower precedence tier.
19
26
  */
20
27
  export declare const AgentEntrySchema: z.ZodObject<{
21
28
  provider: z.ZodOptional<z.ZodString>;
22
29
  model: z.ZodOptional<z.ZodString>;
23
- }, "strip", z.ZodTypeAny, {
30
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
31
+ }, "strict", z.ZodTypeAny, {
24
32
  provider?: string | undefined;
25
33
  model?: string | undefined;
34
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
26
35
  }, {
27
36
  provider?: string | undefined;
28
37
  model?: string | undefined;
38
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
29
39
  }>;
30
40
  export type AgentEntry = z.infer<typeof AgentEntrySchema>;
31
41
  /**
@@ -37,185 +47,232 @@ export declare const WorkflowAgentEntriesSchema: z.ZodObject<{
37
47
  default: z.ZodOptional<z.ZodObject<{
38
48
  provider: z.ZodOptional<z.ZodString>;
39
49
  model: z.ZodOptional<z.ZodString>;
40
- }, "strip", z.ZodTypeAny, {
50
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
51
+ }, "strict", z.ZodTypeAny, {
41
52
  provider?: string | undefined;
42
53
  model?: string | undefined;
54
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
43
55
  }, {
44
56
  provider?: string | undefined;
45
57
  model?: string | undefined;
58
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
46
59
  }>>;
47
60
  phases: z.ZodOptional<z.ZodObject<{
48
61
  specify: z.ZodOptional<z.ZodObject<{
49
62
  provider: z.ZodOptional<z.ZodString>;
50
63
  model: z.ZodOptional<z.ZodString>;
51
- }, "strip", z.ZodTypeAny, {
64
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
65
+ }, "strict", z.ZodTypeAny, {
52
66
  provider?: string | undefined;
53
67
  model?: string | undefined;
68
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
54
69
  }, {
55
70
  provider?: string | undefined;
56
71
  model?: string | undefined;
72
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
57
73
  }>>;
58
74
  clarify: z.ZodOptional<z.ZodObject<{
59
75
  provider: z.ZodOptional<z.ZodString>;
60
76
  model: z.ZodOptional<z.ZodString>;
61
- }, "strip", z.ZodTypeAny, {
77
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
78
+ }, "strict", z.ZodTypeAny, {
62
79
  provider?: string | undefined;
63
80
  model?: string | undefined;
81
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
64
82
  }, {
65
83
  provider?: string | undefined;
66
84
  model?: string | undefined;
85
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
67
86
  }>>;
68
87
  plan: z.ZodOptional<z.ZodObject<{
69
88
  provider: z.ZodOptional<z.ZodString>;
70
89
  model: z.ZodOptional<z.ZodString>;
71
- }, "strip", z.ZodTypeAny, {
90
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
91
+ }, "strict", z.ZodTypeAny, {
72
92
  provider?: string | undefined;
73
93
  model?: string | undefined;
94
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
74
95
  }, {
75
96
  provider?: string | undefined;
76
97
  model?: string | undefined;
98
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
77
99
  }>>;
78
100
  tasks: z.ZodOptional<z.ZodObject<{
79
101
  provider: z.ZodOptional<z.ZodString>;
80
102
  model: z.ZodOptional<z.ZodString>;
81
- }, "strip", z.ZodTypeAny, {
103
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
104
+ }, "strict", z.ZodTypeAny, {
82
105
  provider?: string | undefined;
83
106
  model?: string | undefined;
107
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
84
108
  }, {
85
109
  provider?: string | undefined;
86
110
  model?: string | undefined;
111
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
87
112
  }>>;
88
113
  implement: z.ZodOptional<z.ZodObject<{
89
114
  provider: z.ZodOptional<z.ZodString>;
90
115
  model: z.ZodOptional<z.ZodString>;
91
- }, "strip", z.ZodTypeAny, {
116
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
117
+ }, "strict", z.ZodTypeAny, {
92
118
  provider?: string | undefined;
93
119
  model?: string | undefined;
120
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
94
121
  }, {
95
122
  provider?: string | undefined;
96
123
  model?: string | undefined;
124
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
97
125
  }>>;
98
126
  validate: z.ZodOptional<z.ZodObject<{
99
127
  provider: z.ZodOptional<z.ZodString>;
100
128
  model: z.ZodOptional<z.ZodString>;
101
- }, "strip", z.ZodTypeAny, {
129
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
130
+ }, "strict", z.ZodTypeAny, {
102
131
  provider?: string | undefined;
103
132
  model?: string | undefined;
133
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
104
134
  }, {
105
135
  provider?: string | undefined;
106
136
  model?: string | undefined;
137
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
107
138
  }>>;
108
- }, "strip", z.ZodTypeAny, {
139
+ }, "strict", z.ZodTypeAny, {
109
140
  specify?: {
110
141
  provider?: string | undefined;
111
142
  model?: string | undefined;
143
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
112
144
  } | undefined;
113
145
  clarify?: {
114
146
  provider?: string | undefined;
115
147
  model?: string | undefined;
148
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
116
149
  } | undefined;
117
150
  plan?: {
118
151
  provider?: string | undefined;
119
152
  model?: string | undefined;
153
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
120
154
  } | undefined;
121
155
  tasks?: {
122
156
  provider?: string | undefined;
123
157
  model?: string | undefined;
158
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
124
159
  } | undefined;
125
160
  implement?: {
126
161
  provider?: string | undefined;
127
162
  model?: string | undefined;
163
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
128
164
  } | undefined;
129
165
  validate?: {
130
166
  provider?: string | undefined;
131
167
  model?: string | undefined;
168
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
132
169
  } | undefined;
133
170
  }, {
134
171
  specify?: {
135
172
  provider?: string | undefined;
136
173
  model?: string | undefined;
174
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
137
175
  } | undefined;
138
176
  clarify?: {
139
177
  provider?: string | undefined;
140
178
  model?: string | undefined;
179
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
141
180
  } | undefined;
142
181
  plan?: {
143
182
  provider?: string | undefined;
144
183
  model?: string | undefined;
184
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
145
185
  } | undefined;
146
186
  tasks?: {
147
187
  provider?: string | undefined;
148
188
  model?: string | undefined;
189
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
149
190
  } | undefined;
150
191
  implement?: {
151
192
  provider?: string | undefined;
152
193
  model?: string | undefined;
194
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
153
195
  } | undefined;
154
196
  validate?: {
155
197
  provider?: string | undefined;
156
198
  model?: string | undefined;
199
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
157
200
  } | undefined;
158
201
  }>>;
159
- }, "strip", z.ZodTypeAny, {
202
+ }, "strict", z.ZodTypeAny, {
160
203
  default?: {
161
204
  provider?: string | undefined;
162
205
  model?: string | undefined;
206
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
163
207
  } | undefined;
164
208
  phases?: {
165
209
  specify?: {
166
210
  provider?: string | undefined;
167
211
  model?: string | undefined;
212
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
168
213
  } | undefined;
169
214
  clarify?: {
170
215
  provider?: string | undefined;
171
216
  model?: string | undefined;
217
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
172
218
  } | undefined;
173
219
  plan?: {
174
220
  provider?: string | undefined;
175
221
  model?: string | undefined;
222
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
176
223
  } | undefined;
177
224
  tasks?: {
178
225
  provider?: string | undefined;
179
226
  model?: string | undefined;
227
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
180
228
  } | undefined;
181
229
  implement?: {
182
230
  provider?: string | undefined;
183
231
  model?: string | undefined;
232
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
184
233
  } | undefined;
185
234
  validate?: {
186
235
  provider?: string | undefined;
187
236
  model?: string | undefined;
237
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
188
238
  } | undefined;
189
239
  } | undefined;
190
240
  }, {
191
241
  default?: {
192
242
  provider?: string | undefined;
193
243
  model?: string | undefined;
244
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
194
245
  } | undefined;
195
246
  phases?: {
196
247
  specify?: {
197
248
  provider?: string | undefined;
198
249
  model?: string | undefined;
250
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
199
251
  } | undefined;
200
252
  clarify?: {
201
253
  provider?: string | undefined;
202
254
  model?: string | undefined;
255
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
203
256
  } | undefined;
204
257
  plan?: {
205
258
  provider?: string | undefined;
206
259
  model?: string | undefined;
260
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
207
261
  } | undefined;
208
262
  tasks?: {
209
263
  provider?: string | undefined;
210
264
  model?: string | undefined;
265
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
211
266
  } | undefined;
212
267
  implement?: {
213
268
  provider?: string | undefined;
214
269
  model?: string | undefined;
270
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
215
271
  } | undefined;
216
272
  validate?: {
217
273
  provider?: string | undefined;
218
274
  model?: string | undefined;
275
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
219
276
  } | undefined;
220
277
  } | undefined;
221
278
  }>;
@@ -224,247 +281,306 @@ export type WorkflowAgentEntries = z.infer<typeof WorkflowAgentEntriesSchema>;
224
281
  * Agents configuration block under `orchestrator.agents`. Structure:
225
282
  * ```
226
283
  * agents:
227
- * default: { provider?, model? }
284
+ * default: { provider?, model?, effort? }
228
285
  * workflows:
229
286
  * <name>:
230
- * default: { provider?, model? }
287
+ * default: { provider?, model?, effort? }
231
288
  * phases:
232
- * implement: { provider?, model? }
289
+ * implement: { provider?, model?, effort? }
233
290
  * ```
234
291
  * Workflow names are extensible (`speckit-feature`, `speckit-bugfix`, …); phase
235
- * keys are closed to the `WorkflowPhase` enum.
292
+ * keys are closed to the `WorkflowPhase` enum. `workflows` stays a `z.record`
293
+ * because arbitrary workflow names are legal by design.
236
294
  */
237
295
  export declare const AgentsConfigSchema: z.ZodObject<{
238
296
  default: z.ZodOptional<z.ZodObject<{
239
297
  provider: z.ZodOptional<z.ZodString>;
240
298
  model: z.ZodOptional<z.ZodString>;
241
- }, "strip", z.ZodTypeAny, {
299
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
300
+ }, "strict", z.ZodTypeAny, {
242
301
  provider?: string | undefined;
243
302
  model?: string | undefined;
303
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
244
304
  }, {
245
305
  provider?: string | undefined;
246
306
  model?: string | undefined;
307
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
247
308
  }>>;
248
309
  workflows: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
249
310
  default: z.ZodOptional<z.ZodObject<{
250
311
  provider: z.ZodOptional<z.ZodString>;
251
312
  model: z.ZodOptional<z.ZodString>;
252
- }, "strip", z.ZodTypeAny, {
313
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
314
+ }, "strict", z.ZodTypeAny, {
253
315
  provider?: string | undefined;
254
316
  model?: string | undefined;
317
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
255
318
  }, {
256
319
  provider?: string | undefined;
257
320
  model?: string | undefined;
321
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
258
322
  }>>;
259
323
  phases: z.ZodOptional<z.ZodObject<{
260
324
  specify: z.ZodOptional<z.ZodObject<{
261
325
  provider: z.ZodOptional<z.ZodString>;
262
326
  model: z.ZodOptional<z.ZodString>;
263
- }, "strip", z.ZodTypeAny, {
327
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
328
+ }, "strict", z.ZodTypeAny, {
264
329
  provider?: string | undefined;
265
330
  model?: string | undefined;
331
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
266
332
  }, {
267
333
  provider?: string | undefined;
268
334
  model?: string | undefined;
335
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
269
336
  }>>;
270
337
  clarify: z.ZodOptional<z.ZodObject<{
271
338
  provider: z.ZodOptional<z.ZodString>;
272
339
  model: z.ZodOptional<z.ZodString>;
273
- }, "strip", z.ZodTypeAny, {
340
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
341
+ }, "strict", z.ZodTypeAny, {
274
342
  provider?: string | undefined;
275
343
  model?: string | undefined;
344
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
276
345
  }, {
277
346
  provider?: string | undefined;
278
347
  model?: string | undefined;
348
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
279
349
  }>>;
280
350
  plan: z.ZodOptional<z.ZodObject<{
281
351
  provider: z.ZodOptional<z.ZodString>;
282
352
  model: z.ZodOptional<z.ZodString>;
283
- }, "strip", z.ZodTypeAny, {
353
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
354
+ }, "strict", z.ZodTypeAny, {
284
355
  provider?: string | undefined;
285
356
  model?: string | undefined;
357
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
286
358
  }, {
287
359
  provider?: string | undefined;
288
360
  model?: string | undefined;
361
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
289
362
  }>>;
290
363
  tasks: z.ZodOptional<z.ZodObject<{
291
364
  provider: z.ZodOptional<z.ZodString>;
292
365
  model: z.ZodOptional<z.ZodString>;
293
- }, "strip", z.ZodTypeAny, {
366
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
367
+ }, "strict", z.ZodTypeAny, {
294
368
  provider?: string | undefined;
295
369
  model?: string | undefined;
370
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
296
371
  }, {
297
372
  provider?: string | undefined;
298
373
  model?: string | undefined;
374
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
299
375
  }>>;
300
376
  implement: z.ZodOptional<z.ZodObject<{
301
377
  provider: z.ZodOptional<z.ZodString>;
302
378
  model: z.ZodOptional<z.ZodString>;
303
- }, "strip", z.ZodTypeAny, {
379
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
380
+ }, "strict", z.ZodTypeAny, {
304
381
  provider?: string | undefined;
305
382
  model?: string | undefined;
383
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
306
384
  }, {
307
385
  provider?: string | undefined;
308
386
  model?: string | undefined;
387
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
309
388
  }>>;
310
389
  validate: z.ZodOptional<z.ZodObject<{
311
390
  provider: z.ZodOptional<z.ZodString>;
312
391
  model: z.ZodOptional<z.ZodString>;
313
- }, "strip", z.ZodTypeAny, {
392
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
393
+ }, "strict", z.ZodTypeAny, {
314
394
  provider?: string | undefined;
315
395
  model?: string | undefined;
396
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
316
397
  }, {
317
398
  provider?: string | undefined;
318
399
  model?: string | undefined;
400
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
319
401
  }>>;
320
- }, "strip", z.ZodTypeAny, {
402
+ }, "strict", z.ZodTypeAny, {
321
403
  specify?: {
322
404
  provider?: string | undefined;
323
405
  model?: string | undefined;
406
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
324
407
  } | undefined;
325
408
  clarify?: {
326
409
  provider?: string | undefined;
327
410
  model?: string | undefined;
411
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
328
412
  } | undefined;
329
413
  plan?: {
330
414
  provider?: string | undefined;
331
415
  model?: string | undefined;
416
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
332
417
  } | undefined;
333
418
  tasks?: {
334
419
  provider?: string | undefined;
335
420
  model?: string | undefined;
421
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
336
422
  } | undefined;
337
423
  implement?: {
338
424
  provider?: string | undefined;
339
425
  model?: string | undefined;
426
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
340
427
  } | undefined;
341
428
  validate?: {
342
429
  provider?: string | undefined;
343
430
  model?: string | undefined;
431
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
344
432
  } | undefined;
345
433
  }, {
346
434
  specify?: {
347
435
  provider?: string | undefined;
348
436
  model?: string | undefined;
437
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
349
438
  } | undefined;
350
439
  clarify?: {
351
440
  provider?: string | undefined;
352
441
  model?: string | undefined;
442
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
353
443
  } | undefined;
354
444
  plan?: {
355
445
  provider?: string | undefined;
356
446
  model?: string | undefined;
447
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
357
448
  } | undefined;
358
449
  tasks?: {
359
450
  provider?: string | undefined;
360
451
  model?: string | undefined;
452
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
361
453
  } | undefined;
362
454
  implement?: {
363
455
  provider?: string | undefined;
364
456
  model?: string | undefined;
457
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
365
458
  } | undefined;
366
459
  validate?: {
367
460
  provider?: string | undefined;
368
461
  model?: string | undefined;
462
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
369
463
  } | undefined;
370
464
  }>>;
371
- }, "strip", z.ZodTypeAny, {
465
+ }, "strict", z.ZodTypeAny, {
372
466
  default?: {
373
467
  provider?: string | undefined;
374
468
  model?: string | undefined;
469
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
375
470
  } | undefined;
376
471
  phases?: {
377
472
  specify?: {
378
473
  provider?: string | undefined;
379
474
  model?: string | undefined;
475
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
380
476
  } | undefined;
381
477
  clarify?: {
382
478
  provider?: string | undefined;
383
479
  model?: string | undefined;
480
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
384
481
  } | undefined;
385
482
  plan?: {
386
483
  provider?: string | undefined;
387
484
  model?: string | undefined;
485
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
388
486
  } | undefined;
389
487
  tasks?: {
390
488
  provider?: string | undefined;
391
489
  model?: string | undefined;
490
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
392
491
  } | undefined;
393
492
  implement?: {
394
493
  provider?: string | undefined;
395
494
  model?: string | undefined;
495
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
396
496
  } | undefined;
397
497
  validate?: {
398
498
  provider?: string | undefined;
399
499
  model?: string | undefined;
500
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
400
501
  } | undefined;
401
502
  } | undefined;
402
503
  }, {
403
504
  default?: {
404
505
  provider?: string | undefined;
405
506
  model?: string | undefined;
507
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
406
508
  } | undefined;
407
509
  phases?: {
408
510
  specify?: {
409
511
  provider?: string | undefined;
410
512
  model?: string | undefined;
513
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
411
514
  } | undefined;
412
515
  clarify?: {
413
516
  provider?: string | undefined;
414
517
  model?: string | undefined;
518
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
415
519
  } | undefined;
416
520
  plan?: {
417
521
  provider?: string | undefined;
418
522
  model?: string | undefined;
523
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
419
524
  } | undefined;
420
525
  tasks?: {
421
526
  provider?: string | undefined;
422
527
  model?: string | undefined;
528
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
423
529
  } | undefined;
424
530
  implement?: {
425
531
  provider?: string | undefined;
426
532
  model?: string | undefined;
533
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
427
534
  } | undefined;
428
535
  validate?: {
429
536
  provider?: string | undefined;
430
537
  model?: string | undefined;
538
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
431
539
  } | undefined;
432
540
  } | undefined;
433
541
  }>>>;
434
- }, "strip", z.ZodTypeAny, {
542
+ }, "strict", z.ZodTypeAny, {
435
543
  default?: {
436
544
  provider?: string | undefined;
437
545
  model?: string | undefined;
546
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
438
547
  } | undefined;
439
548
  workflows?: Record<string, {
440
549
  default?: {
441
550
  provider?: string | undefined;
442
551
  model?: string | undefined;
552
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
443
553
  } | undefined;
444
554
  phases?: {
445
555
  specify?: {
446
556
  provider?: string | undefined;
447
557
  model?: string | undefined;
558
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
448
559
  } | undefined;
449
560
  clarify?: {
450
561
  provider?: string | undefined;
451
562
  model?: string | undefined;
563
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
452
564
  } | undefined;
453
565
  plan?: {
454
566
  provider?: string | undefined;
455
567
  model?: string | undefined;
568
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
456
569
  } | undefined;
457
570
  tasks?: {
458
571
  provider?: string | undefined;
459
572
  model?: string | undefined;
573
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
460
574
  } | undefined;
461
575
  implement?: {
462
576
  provider?: string | undefined;
463
577
  model?: string | undefined;
578
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
464
579
  } | undefined;
465
580
  validate?: {
466
581
  provider?: string | undefined;
467
582
  model?: string | undefined;
583
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
468
584
  } | undefined;
469
585
  } | undefined;
470
586
  }> | undefined;
@@ -472,36 +588,44 @@ export declare const AgentsConfigSchema: z.ZodObject<{
472
588
  default?: {
473
589
  provider?: string | undefined;
474
590
  model?: string | undefined;
591
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
475
592
  } | undefined;
476
593
  workflows?: Record<string, {
477
594
  default?: {
478
595
  provider?: string | undefined;
479
596
  model?: string | undefined;
597
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
480
598
  } | undefined;
481
599
  phases?: {
482
600
  specify?: {
483
601
  provider?: string | undefined;
484
602
  model?: string | undefined;
603
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
485
604
  } | undefined;
486
605
  clarify?: {
487
606
  provider?: string | undefined;
488
607
  model?: string | undefined;
608
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
489
609
  } | undefined;
490
610
  plan?: {
491
611
  provider?: string | undefined;
492
612
  model?: string | undefined;
613
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
493
614
  } | undefined;
494
615
  tasks?: {
495
616
  provider?: string | undefined;
496
617
  model?: string | undefined;
618
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
497
619
  } | undefined;
498
620
  implement?: {
499
621
  provider?: string | undefined;
500
622
  model?: string | undefined;
623
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
501
624
  } | undefined;
502
625
  validate?: {
503
626
  provider?: string | undefined;
504
627
  model?: string | undefined;
628
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
505
629
  } | undefined;
506
630
  } | undefined;
507
631
  }> | undefined;
@@ -533,233 +657,291 @@ export declare const OrchestratorSettingsSchema: z.ZodObject<{
533
657
  default: z.ZodOptional<z.ZodObject<{
534
658
  provider: z.ZodOptional<z.ZodString>;
535
659
  model: z.ZodOptional<z.ZodString>;
536
- }, "strip", z.ZodTypeAny, {
660
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
661
+ }, "strict", z.ZodTypeAny, {
537
662
  provider?: string | undefined;
538
663
  model?: string | undefined;
664
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
539
665
  }, {
540
666
  provider?: string | undefined;
541
667
  model?: string | undefined;
668
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
542
669
  }>>;
543
670
  workflows: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
544
671
  default: z.ZodOptional<z.ZodObject<{
545
672
  provider: z.ZodOptional<z.ZodString>;
546
673
  model: z.ZodOptional<z.ZodString>;
547
- }, "strip", z.ZodTypeAny, {
674
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
675
+ }, "strict", z.ZodTypeAny, {
548
676
  provider?: string | undefined;
549
677
  model?: string | undefined;
678
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
550
679
  }, {
551
680
  provider?: string | undefined;
552
681
  model?: string | undefined;
682
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
553
683
  }>>;
554
684
  phases: z.ZodOptional<z.ZodObject<{
555
685
  specify: z.ZodOptional<z.ZodObject<{
556
686
  provider: z.ZodOptional<z.ZodString>;
557
687
  model: z.ZodOptional<z.ZodString>;
558
- }, "strip", z.ZodTypeAny, {
688
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
689
+ }, "strict", z.ZodTypeAny, {
559
690
  provider?: string | undefined;
560
691
  model?: string | undefined;
692
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
561
693
  }, {
562
694
  provider?: string | undefined;
563
695
  model?: string | undefined;
696
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
564
697
  }>>;
565
698
  clarify: z.ZodOptional<z.ZodObject<{
566
699
  provider: z.ZodOptional<z.ZodString>;
567
700
  model: z.ZodOptional<z.ZodString>;
568
- }, "strip", z.ZodTypeAny, {
701
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
702
+ }, "strict", z.ZodTypeAny, {
569
703
  provider?: string | undefined;
570
704
  model?: string | undefined;
705
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
571
706
  }, {
572
707
  provider?: string | undefined;
573
708
  model?: string | undefined;
709
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
574
710
  }>>;
575
711
  plan: z.ZodOptional<z.ZodObject<{
576
712
  provider: z.ZodOptional<z.ZodString>;
577
713
  model: z.ZodOptional<z.ZodString>;
578
- }, "strip", z.ZodTypeAny, {
714
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
715
+ }, "strict", z.ZodTypeAny, {
579
716
  provider?: string | undefined;
580
717
  model?: string | undefined;
718
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
581
719
  }, {
582
720
  provider?: string | undefined;
583
721
  model?: string | undefined;
722
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
584
723
  }>>;
585
724
  tasks: z.ZodOptional<z.ZodObject<{
586
725
  provider: z.ZodOptional<z.ZodString>;
587
726
  model: z.ZodOptional<z.ZodString>;
588
- }, "strip", z.ZodTypeAny, {
727
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
728
+ }, "strict", z.ZodTypeAny, {
589
729
  provider?: string | undefined;
590
730
  model?: string | undefined;
731
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
591
732
  }, {
592
733
  provider?: string | undefined;
593
734
  model?: string | undefined;
735
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
594
736
  }>>;
595
737
  implement: z.ZodOptional<z.ZodObject<{
596
738
  provider: z.ZodOptional<z.ZodString>;
597
739
  model: z.ZodOptional<z.ZodString>;
598
- }, "strip", z.ZodTypeAny, {
740
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
741
+ }, "strict", z.ZodTypeAny, {
599
742
  provider?: string | undefined;
600
743
  model?: string | undefined;
744
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
601
745
  }, {
602
746
  provider?: string | undefined;
603
747
  model?: string | undefined;
748
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
604
749
  }>>;
605
750
  validate: z.ZodOptional<z.ZodObject<{
606
751
  provider: z.ZodOptional<z.ZodString>;
607
752
  model: z.ZodOptional<z.ZodString>;
608
- }, "strip", z.ZodTypeAny, {
753
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
754
+ }, "strict", z.ZodTypeAny, {
609
755
  provider?: string | undefined;
610
756
  model?: string | undefined;
757
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
611
758
  }, {
612
759
  provider?: string | undefined;
613
760
  model?: string | undefined;
761
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
614
762
  }>>;
615
- }, "strip", z.ZodTypeAny, {
763
+ }, "strict", z.ZodTypeAny, {
616
764
  specify?: {
617
765
  provider?: string | undefined;
618
766
  model?: string | undefined;
767
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
619
768
  } | undefined;
620
769
  clarify?: {
621
770
  provider?: string | undefined;
622
771
  model?: string | undefined;
772
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
623
773
  } | undefined;
624
774
  plan?: {
625
775
  provider?: string | undefined;
626
776
  model?: string | undefined;
777
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
627
778
  } | undefined;
628
779
  tasks?: {
629
780
  provider?: string | undefined;
630
781
  model?: string | undefined;
782
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
631
783
  } | undefined;
632
784
  implement?: {
633
785
  provider?: string | undefined;
634
786
  model?: string | undefined;
787
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
635
788
  } | undefined;
636
789
  validate?: {
637
790
  provider?: string | undefined;
638
791
  model?: string | undefined;
792
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
639
793
  } | undefined;
640
794
  }, {
641
795
  specify?: {
642
796
  provider?: string | undefined;
643
797
  model?: string | undefined;
798
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
644
799
  } | undefined;
645
800
  clarify?: {
646
801
  provider?: string | undefined;
647
802
  model?: string | undefined;
803
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
648
804
  } | undefined;
649
805
  plan?: {
650
806
  provider?: string | undefined;
651
807
  model?: string | undefined;
808
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
652
809
  } | undefined;
653
810
  tasks?: {
654
811
  provider?: string | undefined;
655
812
  model?: string | undefined;
813
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
656
814
  } | undefined;
657
815
  implement?: {
658
816
  provider?: string | undefined;
659
817
  model?: string | undefined;
818
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
660
819
  } | undefined;
661
820
  validate?: {
662
821
  provider?: string | undefined;
663
822
  model?: string | undefined;
823
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
664
824
  } | undefined;
665
825
  }>>;
666
- }, "strip", z.ZodTypeAny, {
826
+ }, "strict", z.ZodTypeAny, {
667
827
  default?: {
668
828
  provider?: string | undefined;
669
829
  model?: string | undefined;
830
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
670
831
  } | undefined;
671
832
  phases?: {
672
833
  specify?: {
673
834
  provider?: string | undefined;
674
835
  model?: string | undefined;
836
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
675
837
  } | undefined;
676
838
  clarify?: {
677
839
  provider?: string | undefined;
678
840
  model?: string | undefined;
841
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
679
842
  } | undefined;
680
843
  plan?: {
681
844
  provider?: string | undefined;
682
845
  model?: string | undefined;
846
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
683
847
  } | undefined;
684
848
  tasks?: {
685
849
  provider?: string | undefined;
686
850
  model?: string | undefined;
851
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
687
852
  } | undefined;
688
853
  implement?: {
689
854
  provider?: string | undefined;
690
855
  model?: string | undefined;
856
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
691
857
  } | undefined;
692
858
  validate?: {
693
859
  provider?: string | undefined;
694
860
  model?: string | undefined;
861
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
695
862
  } | undefined;
696
863
  } | undefined;
697
864
  }, {
698
865
  default?: {
699
866
  provider?: string | undefined;
700
867
  model?: string | undefined;
868
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
701
869
  } | undefined;
702
870
  phases?: {
703
871
  specify?: {
704
872
  provider?: string | undefined;
705
873
  model?: string | undefined;
874
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
706
875
  } | undefined;
707
876
  clarify?: {
708
877
  provider?: string | undefined;
709
878
  model?: string | undefined;
879
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
710
880
  } | undefined;
711
881
  plan?: {
712
882
  provider?: string | undefined;
713
883
  model?: string | undefined;
884
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
714
885
  } | undefined;
715
886
  tasks?: {
716
887
  provider?: string | undefined;
717
888
  model?: string | undefined;
889
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
718
890
  } | undefined;
719
891
  implement?: {
720
892
  provider?: string | undefined;
721
893
  model?: string | undefined;
894
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
722
895
  } | undefined;
723
896
  validate?: {
724
897
  provider?: string | undefined;
725
898
  model?: string | undefined;
899
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
726
900
  } | undefined;
727
901
  } | undefined;
728
902
  }>>>;
729
- }, "strip", z.ZodTypeAny, {
903
+ }, "strict", z.ZodTypeAny, {
730
904
  default?: {
731
905
  provider?: string | undefined;
732
906
  model?: string | undefined;
907
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
733
908
  } | undefined;
734
909
  workflows?: Record<string, {
735
910
  default?: {
736
911
  provider?: string | undefined;
737
912
  model?: string | undefined;
913
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
738
914
  } | undefined;
739
915
  phases?: {
740
916
  specify?: {
741
917
  provider?: string | undefined;
742
918
  model?: string | undefined;
919
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
743
920
  } | undefined;
744
921
  clarify?: {
745
922
  provider?: string | undefined;
746
923
  model?: string | undefined;
924
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
747
925
  } | undefined;
748
926
  plan?: {
749
927
  provider?: string | undefined;
750
928
  model?: string | undefined;
929
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
751
930
  } | undefined;
752
931
  tasks?: {
753
932
  provider?: string | undefined;
754
933
  model?: string | undefined;
934
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
755
935
  } | undefined;
756
936
  implement?: {
757
937
  provider?: string | undefined;
758
938
  model?: string | undefined;
939
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
759
940
  } | undefined;
760
941
  validate?: {
761
942
  provider?: string | undefined;
762
943
  model?: string | undefined;
944
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
763
945
  } | undefined;
764
946
  } | undefined;
765
947
  }> | undefined;
@@ -767,36 +949,44 @@ export declare const OrchestratorSettingsSchema: z.ZodObject<{
767
949
  default?: {
768
950
  provider?: string | undefined;
769
951
  model?: string | undefined;
952
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
770
953
  } | undefined;
771
954
  workflows?: Record<string, {
772
955
  default?: {
773
956
  provider?: string | undefined;
774
957
  model?: string | undefined;
958
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
775
959
  } | undefined;
776
960
  phases?: {
777
961
  specify?: {
778
962
  provider?: string | undefined;
779
963
  model?: string | undefined;
964
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
780
965
  } | undefined;
781
966
  clarify?: {
782
967
  provider?: string | undefined;
783
968
  model?: string | undefined;
969
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
784
970
  } | undefined;
785
971
  plan?: {
786
972
  provider?: string | undefined;
787
973
  model?: string | undefined;
974
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
788
975
  } | undefined;
789
976
  tasks?: {
790
977
  provider?: string | undefined;
791
978
  model?: string | undefined;
979
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
792
980
  } | undefined;
793
981
  implement?: {
794
982
  provider?: string | undefined;
795
983
  model?: string | undefined;
984
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
796
985
  } | undefined;
797
986
  validate?: {
798
987
  provider?: string | undefined;
799
988
  model?: string | undefined;
989
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
800
990
  } | undefined;
801
991
  } | undefined;
802
992
  }> | undefined;
@@ -811,36 +1001,44 @@ export declare const OrchestratorSettingsSchema: z.ZodObject<{
811
1001
  default?: {
812
1002
  provider?: string | undefined;
813
1003
  model?: string | undefined;
1004
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
814
1005
  } | undefined;
815
1006
  workflows?: Record<string, {
816
1007
  default?: {
817
1008
  provider?: string | undefined;
818
1009
  model?: string | undefined;
1010
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
819
1011
  } | undefined;
820
1012
  phases?: {
821
1013
  specify?: {
822
1014
  provider?: string | undefined;
823
1015
  model?: string | undefined;
1016
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
824
1017
  } | undefined;
825
1018
  clarify?: {
826
1019
  provider?: string | undefined;
827
1020
  model?: string | undefined;
1021
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
828
1022
  } | undefined;
829
1023
  plan?: {
830
1024
  provider?: string | undefined;
831
1025
  model?: string | undefined;
1026
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
832
1027
  } | undefined;
833
1028
  tasks?: {
834
1029
  provider?: string | undefined;
835
1030
  model?: string | undefined;
1031
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
836
1032
  } | undefined;
837
1033
  implement?: {
838
1034
  provider?: string | undefined;
839
1035
  model?: string | undefined;
1036
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
840
1037
  } | undefined;
841
1038
  validate?: {
842
1039
  provider?: string | undefined;
843
1040
  model?: string | undefined;
1041
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
844
1042
  } | undefined;
845
1043
  } | undefined;
846
1044
  }> | undefined;
@@ -855,42 +1053,56 @@ export declare const OrchestratorSettingsSchema: z.ZodObject<{
855
1053
  default?: {
856
1054
  provider?: string | undefined;
857
1055
  model?: string | undefined;
1056
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
858
1057
  } | undefined;
859
1058
  workflows?: Record<string, {
860
1059
  default?: {
861
1060
  provider?: string | undefined;
862
1061
  model?: string | undefined;
1062
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
863
1063
  } | undefined;
864
1064
  phases?: {
865
1065
  specify?: {
866
1066
  provider?: string | undefined;
867
1067
  model?: string | undefined;
1068
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
868
1069
  } | undefined;
869
1070
  clarify?: {
870
1071
  provider?: string | undefined;
871
1072
  model?: string | undefined;
1073
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
872
1074
  } | undefined;
873
1075
  plan?: {
874
1076
  provider?: string | undefined;
875
1077
  model?: string | undefined;
1078
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
876
1079
  } | undefined;
877
1080
  tasks?: {
878
1081
  provider?: string | undefined;
879
1082
  model?: string | undefined;
1083
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
880
1084
  } | undefined;
881
1085
  implement?: {
882
1086
  provider?: string | undefined;
883
1087
  model?: string | undefined;
1088
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
884
1089
  } | undefined;
885
1090
  validate?: {
886
1091
  provider?: string | undefined;
887
1092
  model?: string | undefined;
1093
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
888
1094
  } | undefined;
889
1095
  } | undefined;
890
1096
  }> | undefined;
891
1097
  } | undefined;
892
1098
  }>;
893
1099
  export declare const TemplateConfigSchema: z.ZodObject<{
1100
+ /**
1101
+ * Target branch for every workspace repo. Omit for "no preference" — setup
1102
+ * then leaves existing checkouts on their current branch and clones new repos
1103
+ * on the remote default.
1104
+ */
1105
+ branch: z.ZodOptional<z.ZodString>;
894
1106
  project: z.ZodOptional<z.ZodObject<{
895
1107
  org_name: z.ZodOptional<z.ZodString>;
896
1108
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -937,233 +1149,291 @@ export declare const TemplateConfigSchema: z.ZodObject<{
937
1149
  default: z.ZodOptional<z.ZodObject<{
938
1150
  provider: z.ZodOptional<z.ZodString>;
939
1151
  model: z.ZodOptional<z.ZodString>;
940
- }, "strip", z.ZodTypeAny, {
1152
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1153
+ }, "strict", z.ZodTypeAny, {
941
1154
  provider?: string | undefined;
942
1155
  model?: string | undefined;
1156
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
943
1157
  }, {
944
1158
  provider?: string | undefined;
945
1159
  model?: string | undefined;
1160
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
946
1161
  }>>;
947
1162
  workflows: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
948
1163
  default: z.ZodOptional<z.ZodObject<{
949
1164
  provider: z.ZodOptional<z.ZodString>;
950
1165
  model: z.ZodOptional<z.ZodString>;
951
- }, "strip", z.ZodTypeAny, {
1166
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1167
+ }, "strict", z.ZodTypeAny, {
952
1168
  provider?: string | undefined;
953
1169
  model?: string | undefined;
1170
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
954
1171
  }, {
955
1172
  provider?: string | undefined;
956
1173
  model?: string | undefined;
1174
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
957
1175
  }>>;
958
1176
  phases: z.ZodOptional<z.ZodObject<{
959
1177
  specify: z.ZodOptional<z.ZodObject<{
960
1178
  provider: z.ZodOptional<z.ZodString>;
961
1179
  model: z.ZodOptional<z.ZodString>;
962
- }, "strip", z.ZodTypeAny, {
1180
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1181
+ }, "strict", z.ZodTypeAny, {
963
1182
  provider?: string | undefined;
964
1183
  model?: string | undefined;
1184
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
965
1185
  }, {
966
1186
  provider?: string | undefined;
967
1187
  model?: string | undefined;
1188
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
968
1189
  }>>;
969
1190
  clarify: z.ZodOptional<z.ZodObject<{
970
1191
  provider: z.ZodOptional<z.ZodString>;
971
1192
  model: z.ZodOptional<z.ZodString>;
972
- }, "strip", z.ZodTypeAny, {
1193
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1194
+ }, "strict", z.ZodTypeAny, {
973
1195
  provider?: string | undefined;
974
1196
  model?: string | undefined;
1197
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
975
1198
  }, {
976
1199
  provider?: string | undefined;
977
1200
  model?: string | undefined;
1201
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
978
1202
  }>>;
979
1203
  plan: z.ZodOptional<z.ZodObject<{
980
1204
  provider: z.ZodOptional<z.ZodString>;
981
1205
  model: z.ZodOptional<z.ZodString>;
982
- }, "strip", z.ZodTypeAny, {
1206
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1207
+ }, "strict", z.ZodTypeAny, {
983
1208
  provider?: string | undefined;
984
1209
  model?: string | undefined;
1210
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
985
1211
  }, {
986
1212
  provider?: string | undefined;
987
1213
  model?: string | undefined;
1214
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
988
1215
  }>>;
989
1216
  tasks: z.ZodOptional<z.ZodObject<{
990
1217
  provider: z.ZodOptional<z.ZodString>;
991
1218
  model: z.ZodOptional<z.ZodString>;
992
- }, "strip", z.ZodTypeAny, {
1219
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1220
+ }, "strict", z.ZodTypeAny, {
993
1221
  provider?: string | undefined;
994
1222
  model?: string | undefined;
1223
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
995
1224
  }, {
996
1225
  provider?: string | undefined;
997
1226
  model?: string | undefined;
1227
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
998
1228
  }>>;
999
1229
  implement: z.ZodOptional<z.ZodObject<{
1000
1230
  provider: z.ZodOptional<z.ZodString>;
1001
1231
  model: z.ZodOptional<z.ZodString>;
1002
- }, "strip", z.ZodTypeAny, {
1232
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1233
+ }, "strict", z.ZodTypeAny, {
1003
1234
  provider?: string | undefined;
1004
1235
  model?: string | undefined;
1236
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1005
1237
  }, {
1006
1238
  provider?: string | undefined;
1007
1239
  model?: string | undefined;
1240
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1008
1241
  }>>;
1009
1242
  validate: z.ZodOptional<z.ZodObject<{
1010
1243
  provider: z.ZodOptional<z.ZodString>;
1011
1244
  model: z.ZodOptional<z.ZodString>;
1012
- }, "strip", z.ZodTypeAny, {
1245
+ effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max"]>>;
1246
+ }, "strict", z.ZodTypeAny, {
1013
1247
  provider?: string | undefined;
1014
1248
  model?: string | undefined;
1249
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1015
1250
  }, {
1016
1251
  provider?: string | undefined;
1017
1252
  model?: string | undefined;
1253
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1018
1254
  }>>;
1019
- }, "strip", z.ZodTypeAny, {
1255
+ }, "strict", z.ZodTypeAny, {
1020
1256
  specify?: {
1021
1257
  provider?: string | undefined;
1022
1258
  model?: string | undefined;
1259
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1023
1260
  } | undefined;
1024
1261
  clarify?: {
1025
1262
  provider?: string | undefined;
1026
1263
  model?: string | undefined;
1264
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1027
1265
  } | undefined;
1028
1266
  plan?: {
1029
1267
  provider?: string | undefined;
1030
1268
  model?: string | undefined;
1269
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1031
1270
  } | undefined;
1032
1271
  tasks?: {
1033
1272
  provider?: string | undefined;
1034
1273
  model?: string | undefined;
1274
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1035
1275
  } | undefined;
1036
1276
  implement?: {
1037
1277
  provider?: string | undefined;
1038
1278
  model?: string | undefined;
1279
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1039
1280
  } | undefined;
1040
1281
  validate?: {
1041
1282
  provider?: string | undefined;
1042
1283
  model?: string | undefined;
1284
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1043
1285
  } | undefined;
1044
1286
  }, {
1045
1287
  specify?: {
1046
1288
  provider?: string | undefined;
1047
1289
  model?: string | undefined;
1290
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1048
1291
  } | undefined;
1049
1292
  clarify?: {
1050
1293
  provider?: string | undefined;
1051
1294
  model?: string | undefined;
1295
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1052
1296
  } | undefined;
1053
1297
  plan?: {
1054
1298
  provider?: string | undefined;
1055
1299
  model?: string | undefined;
1300
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1056
1301
  } | undefined;
1057
1302
  tasks?: {
1058
1303
  provider?: string | undefined;
1059
1304
  model?: string | undefined;
1305
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1060
1306
  } | undefined;
1061
1307
  implement?: {
1062
1308
  provider?: string | undefined;
1063
1309
  model?: string | undefined;
1310
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1064
1311
  } | undefined;
1065
1312
  validate?: {
1066
1313
  provider?: string | undefined;
1067
1314
  model?: string | undefined;
1315
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1068
1316
  } | undefined;
1069
1317
  }>>;
1070
- }, "strip", z.ZodTypeAny, {
1318
+ }, "strict", z.ZodTypeAny, {
1071
1319
  default?: {
1072
1320
  provider?: string | undefined;
1073
1321
  model?: string | undefined;
1322
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1074
1323
  } | undefined;
1075
1324
  phases?: {
1076
1325
  specify?: {
1077
1326
  provider?: string | undefined;
1078
1327
  model?: string | undefined;
1328
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1079
1329
  } | undefined;
1080
1330
  clarify?: {
1081
1331
  provider?: string | undefined;
1082
1332
  model?: string | undefined;
1333
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1083
1334
  } | undefined;
1084
1335
  plan?: {
1085
1336
  provider?: string | undefined;
1086
1337
  model?: string | undefined;
1338
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1087
1339
  } | undefined;
1088
1340
  tasks?: {
1089
1341
  provider?: string | undefined;
1090
1342
  model?: string | undefined;
1343
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1091
1344
  } | undefined;
1092
1345
  implement?: {
1093
1346
  provider?: string | undefined;
1094
1347
  model?: string | undefined;
1348
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1095
1349
  } | undefined;
1096
1350
  validate?: {
1097
1351
  provider?: string | undefined;
1098
1352
  model?: string | undefined;
1353
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1099
1354
  } | undefined;
1100
1355
  } | undefined;
1101
1356
  }, {
1102
1357
  default?: {
1103
1358
  provider?: string | undefined;
1104
1359
  model?: string | undefined;
1360
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1105
1361
  } | undefined;
1106
1362
  phases?: {
1107
1363
  specify?: {
1108
1364
  provider?: string | undefined;
1109
1365
  model?: string | undefined;
1366
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1110
1367
  } | undefined;
1111
1368
  clarify?: {
1112
1369
  provider?: string | undefined;
1113
1370
  model?: string | undefined;
1371
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1114
1372
  } | undefined;
1115
1373
  plan?: {
1116
1374
  provider?: string | undefined;
1117
1375
  model?: string | undefined;
1376
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1118
1377
  } | undefined;
1119
1378
  tasks?: {
1120
1379
  provider?: string | undefined;
1121
1380
  model?: string | undefined;
1381
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1122
1382
  } | undefined;
1123
1383
  implement?: {
1124
1384
  provider?: string | undefined;
1125
1385
  model?: string | undefined;
1386
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1126
1387
  } | undefined;
1127
1388
  validate?: {
1128
1389
  provider?: string | undefined;
1129
1390
  model?: string | undefined;
1391
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1130
1392
  } | undefined;
1131
1393
  } | undefined;
1132
1394
  }>>>;
1133
- }, "strip", z.ZodTypeAny, {
1395
+ }, "strict", z.ZodTypeAny, {
1134
1396
  default?: {
1135
1397
  provider?: string | undefined;
1136
1398
  model?: string | undefined;
1399
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1137
1400
  } | undefined;
1138
1401
  workflows?: Record<string, {
1139
1402
  default?: {
1140
1403
  provider?: string | undefined;
1141
1404
  model?: string | undefined;
1405
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1142
1406
  } | undefined;
1143
1407
  phases?: {
1144
1408
  specify?: {
1145
1409
  provider?: string | undefined;
1146
1410
  model?: string | undefined;
1411
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1147
1412
  } | undefined;
1148
1413
  clarify?: {
1149
1414
  provider?: string | undefined;
1150
1415
  model?: string | undefined;
1416
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1151
1417
  } | undefined;
1152
1418
  plan?: {
1153
1419
  provider?: string | undefined;
1154
1420
  model?: string | undefined;
1421
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1155
1422
  } | undefined;
1156
1423
  tasks?: {
1157
1424
  provider?: string | undefined;
1158
1425
  model?: string | undefined;
1426
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1159
1427
  } | undefined;
1160
1428
  implement?: {
1161
1429
  provider?: string | undefined;
1162
1430
  model?: string | undefined;
1431
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1163
1432
  } | undefined;
1164
1433
  validate?: {
1165
1434
  provider?: string | undefined;
1166
1435
  model?: string | undefined;
1436
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1167
1437
  } | undefined;
1168
1438
  } | undefined;
1169
1439
  }> | undefined;
@@ -1171,36 +1441,44 @@ export declare const TemplateConfigSchema: z.ZodObject<{
1171
1441
  default?: {
1172
1442
  provider?: string | undefined;
1173
1443
  model?: string | undefined;
1444
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1174
1445
  } | undefined;
1175
1446
  workflows?: Record<string, {
1176
1447
  default?: {
1177
1448
  provider?: string | undefined;
1178
1449
  model?: string | undefined;
1450
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1179
1451
  } | undefined;
1180
1452
  phases?: {
1181
1453
  specify?: {
1182
1454
  provider?: string | undefined;
1183
1455
  model?: string | undefined;
1456
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1184
1457
  } | undefined;
1185
1458
  clarify?: {
1186
1459
  provider?: string | undefined;
1187
1460
  model?: string | undefined;
1461
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1188
1462
  } | undefined;
1189
1463
  plan?: {
1190
1464
  provider?: string | undefined;
1191
1465
  model?: string | undefined;
1466
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1192
1467
  } | undefined;
1193
1468
  tasks?: {
1194
1469
  provider?: string | undefined;
1195
1470
  model?: string | undefined;
1471
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1196
1472
  } | undefined;
1197
1473
  implement?: {
1198
1474
  provider?: string | undefined;
1199
1475
  model?: string | undefined;
1476
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1200
1477
  } | undefined;
1201
1478
  validate?: {
1202
1479
  provider?: string | undefined;
1203
1480
  model?: string | undefined;
1481
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1204
1482
  } | undefined;
1205
1483
  } | undefined;
1206
1484
  }> | undefined;
@@ -1215,36 +1493,44 @@ export declare const TemplateConfigSchema: z.ZodObject<{
1215
1493
  default?: {
1216
1494
  provider?: string | undefined;
1217
1495
  model?: string | undefined;
1496
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1218
1497
  } | undefined;
1219
1498
  workflows?: Record<string, {
1220
1499
  default?: {
1221
1500
  provider?: string | undefined;
1222
1501
  model?: string | undefined;
1502
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1223
1503
  } | undefined;
1224
1504
  phases?: {
1225
1505
  specify?: {
1226
1506
  provider?: string | undefined;
1227
1507
  model?: string | undefined;
1508
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1228
1509
  } | undefined;
1229
1510
  clarify?: {
1230
1511
  provider?: string | undefined;
1231
1512
  model?: string | undefined;
1513
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1232
1514
  } | undefined;
1233
1515
  plan?: {
1234
1516
  provider?: string | undefined;
1235
1517
  model?: string | undefined;
1518
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1236
1519
  } | undefined;
1237
1520
  tasks?: {
1238
1521
  provider?: string | undefined;
1239
1522
  model?: string | undefined;
1523
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1240
1524
  } | undefined;
1241
1525
  implement?: {
1242
1526
  provider?: string | undefined;
1243
1527
  model?: string | undefined;
1528
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1244
1529
  } | undefined;
1245
1530
  validate?: {
1246
1531
  provider?: string | undefined;
1247
1532
  model?: string | undefined;
1533
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1248
1534
  } | undefined;
1249
1535
  } | undefined;
1250
1536
  }> | undefined;
@@ -1259,36 +1545,44 @@ export declare const TemplateConfigSchema: z.ZodObject<{
1259
1545
  default?: {
1260
1546
  provider?: string | undefined;
1261
1547
  model?: string | undefined;
1548
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1262
1549
  } | undefined;
1263
1550
  workflows?: Record<string, {
1264
1551
  default?: {
1265
1552
  provider?: string | undefined;
1266
1553
  model?: string | undefined;
1554
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1267
1555
  } | undefined;
1268
1556
  phases?: {
1269
1557
  specify?: {
1270
1558
  provider?: string | undefined;
1271
1559
  model?: string | undefined;
1560
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1272
1561
  } | undefined;
1273
1562
  clarify?: {
1274
1563
  provider?: string | undefined;
1275
1564
  model?: string | undefined;
1565
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1276
1566
  } | undefined;
1277
1567
  plan?: {
1278
1568
  provider?: string | undefined;
1279
1569
  model?: string | undefined;
1570
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1280
1571
  } | undefined;
1281
1572
  tasks?: {
1282
1573
  provider?: string | undefined;
1283
1574
  model?: string | undefined;
1575
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1284
1576
  } | undefined;
1285
1577
  implement?: {
1286
1578
  provider?: string | undefined;
1287
1579
  model?: string | undefined;
1580
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1288
1581
  } | undefined;
1289
1582
  validate?: {
1290
1583
  provider?: string | undefined;
1291
1584
  model?: string | undefined;
1585
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1292
1586
  } | undefined;
1293
1587
  } | undefined;
1294
1588
  }> | undefined;
@@ -1300,6 +1594,7 @@ export declare const TemplateConfigSchema: z.ZodObject<{
1300
1594
  dev: string[];
1301
1595
  clone: string[];
1302
1596
  };
1597
+ branch?: string | undefined;
1303
1598
  project?: z.objectOutputType<{
1304
1599
  org_name: z.ZodOptional<z.ZodString>;
1305
1600
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -1313,36 +1608,44 @@ export declare const TemplateConfigSchema: z.ZodObject<{
1313
1608
  default?: {
1314
1609
  provider?: string | undefined;
1315
1610
  model?: string | undefined;
1611
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1316
1612
  } | undefined;
1317
1613
  workflows?: Record<string, {
1318
1614
  default?: {
1319
1615
  provider?: string | undefined;
1320
1616
  model?: string | undefined;
1617
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1321
1618
  } | undefined;
1322
1619
  phases?: {
1323
1620
  specify?: {
1324
1621
  provider?: string | undefined;
1325
1622
  model?: string | undefined;
1623
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1326
1624
  } | undefined;
1327
1625
  clarify?: {
1328
1626
  provider?: string | undefined;
1329
1627
  model?: string | undefined;
1628
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1330
1629
  } | undefined;
1331
1630
  plan?: {
1332
1631
  provider?: string | undefined;
1333
1632
  model?: string | undefined;
1633
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1334
1634
  } | undefined;
1335
1635
  tasks?: {
1336
1636
  provider?: string | undefined;
1337
1637
  model?: string | undefined;
1638
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1338
1639
  } | undefined;
1339
1640
  implement?: {
1340
1641
  provider?: string | undefined;
1341
1642
  model?: string | undefined;
1643
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1342
1644
  } | undefined;
1343
1645
  validate?: {
1344
1646
  provider?: string | undefined;
1345
1647
  model?: string | undefined;
1648
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1346
1649
  } | undefined;
1347
1650
  } | undefined;
1348
1651
  }> | undefined;
@@ -1354,6 +1657,7 @@ export declare const TemplateConfigSchema: z.ZodObject<{
1354
1657
  dev?: string[] | null | undefined;
1355
1658
  clone?: string[] | null | undefined;
1356
1659
  };
1660
+ branch?: string | undefined;
1357
1661
  project?: z.objectInputType<{
1358
1662
  org_name: z.ZodOptional<z.ZodString>;
1359
1663
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -1367,36 +1671,44 @@ export declare const TemplateConfigSchema: z.ZodObject<{
1367
1671
  default?: {
1368
1672
  provider?: string | undefined;
1369
1673
  model?: string | undefined;
1674
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1370
1675
  } | undefined;
1371
1676
  workflows?: Record<string, {
1372
1677
  default?: {
1373
1678
  provider?: string | undefined;
1374
1679
  model?: string | undefined;
1680
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1375
1681
  } | undefined;
1376
1682
  phases?: {
1377
1683
  specify?: {
1378
1684
  provider?: string | undefined;
1379
1685
  model?: string | undefined;
1686
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1380
1687
  } | undefined;
1381
1688
  clarify?: {
1382
1689
  provider?: string | undefined;
1383
1690
  model?: string | undefined;
1691
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1384
1692
  } | undefined;
1385
1693
  plan?: {
1386
1694
  provider?: string | undefined;
1387
1695
  model?: string | undefined;
1696
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1388
1697
  } | undefined;
1389
1698
  tasks?: {
1390
1699
  provider?: string | undefined;
1391
1700
  model?: string | undefined;
1701
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1392
1702
  } | undefined;
1393
1703
  implement?: {
1394
1704
  provider?: string | undefined;
1395
1705
  model?: string | undefined;
1706
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1396
1707
  } | undefined;
1397
1708
  validate?: {
1398
1709
  provider?: string | undefined;
1399
1710
  model?: string | undefined;
1711
+ effort?: "low" | "medium" | "high" | "xhigh" | "max" | undefined;
1400
1712
  } | undefined;
1401
1713
  } | undefined;
1402
1714
  }> | undefined;