drizzy-agent 0.3.0 → 0.4.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.
- package/README.md +63 -4
- package/dist/cli/index.js +354 -241
- package/dist/cli/install-intent-types.d.ts +13 -0
- package/dist/cli/provider-availability.d.ts +2 -0
- package/dist/cli/types.d.ts +6 -1
- package/dist/computed-install-defaults.d.ts +3 -0
- package/dist/config/index.d.ts +1 -1
- package/dist/config/schema/agent-names.d.ts +15 -15
- package/dist/config/schema/agent-overrides.d.ts +60 -60
- package/dist/config/schema/categories.d.ts +11 -11
- package/dist/config/schema/drizzy-agent-config.d.ts +60 -59
- package/dist/config/schema/install-defaults.d.ts +11 -0
- package/dist/config/schema.d.ts +1 -0
- package/dist/drizzy-agent.schema.json +55 -0
- package/dist/index.js +6622 -6071
- package/dist/plugin-config-test-fixture.d.ts +12 -0
- package/dist/shared/computed-install-defaults.d.ts +12 -0
- package/dist/shared/index.d.ts +2 -0
- package/dist/shared/install-defaults-contract.d.ts +35 -0
- package/dist/shared/migration/config-migration.d.ts +3 -1
- package/dist/shared/migration.d.ts +0 -1
- package/package.json +12 -12
- package/dist/shared/migration/agent-category.d.ts +0 -19
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { InstallDefaultsClaudeProvider, InstallDefaultsProviders } from "../shared/install-defaults-contract";
|
|
2
|
+
export interface InstallIntent {
|
|
3
|
+
claude?: InstallDefaultsClaudeProvider;
|
|
4
|
+
openai?: boolean;
|
|
5
|
+
gemini?: boolean;
|
|
6
|
+
copilot?: boolean;
|
|
7
|
+
opencode_zen?: boolean;
|
|
8
|
+
zai_coding_plan?: boolean;
|
|
9
|
+
kimi_for_coding?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export type InstallIntentProviders = Partial<InstallDefaultsProviders> & {
|
|
12
|
+
claude?: InstallDefaultsClaudeProvider;
|
|
13
|
+
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import type { InstallConfig } from "./types";
|
|
2
2
|
import type { ProviderAvailability } from "./model-fallback-types";
|
|
3
|
+
import type { InstallDefaultsProviders } from "../shared/install-defaults-contract";
|
|
4
|
+
export declare function toInstallDefaultsProviders(config: InstallConfig): InstallDefaultsProviders;
|
|
3
5
|
export declare function toProviderAvailability(config: InstallConfig): ProviderAvailability;
|
|
4
6
|
export declare function isProviderAvailable(provider: string, availability: ProviderAvailability): boolean;
|
package/dist/cli/types.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import type { InstallDefaultsClaudeProvider, InstallDefaultsProviders, InstallDefaultsSnapshot } from "../shared/install-defaults-contract";
|
|
2
|
+
import type { InstallIntent as _InstallIntent } from "./install-intent-types";
|
|
3
|
+
export type ClaudeSubscription = InstallDefaultsClaudeProvider;
|
|
2
4
|
export type BooleanArg = "no" | "yes";
|
|
3
5
|
export interface InstallArgs {
|
|
4
6
|
tui: boolean;
|
|
@@ -21,6 +23,9 @@ export interface InstallConfig {
|
|
|
21
23
|
hasZaiCodingPlan: boolean;
|
|
22
24
|
hasKimiForCoding: boolean;
|
|
23
25
|
}
|
|
26
|
+
export type InstallSnapshotProviders = InstallDefaultsProviders;
|
|
27
|
+
export type InstallSnapshot = InstallDefaultsSnapshot;
|
|
28
|
+
export type InstallIntent = _InstallIntent;
|
|
24
29
|
export interface ConfigMergeResult {
|
|
25
30
|
success: boolean;
|
|
26
31
|
configPath: string;
|
package/dist/config/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { DrizzyAgentConfigSchema, } from "./schema";
|
|
2
|
-
export type { DrizzyAgentConfig, AgentOverrideConfig, AgentOverrides, McpName, AgentName, HookName, BuiltinCommandName, CoderAgentConfig, ExperimentalConfig, DynamicContextPruningConfig, RalphLoopConfig, TmuxConfig, TmuxLayout, CoderConfig, CoderTasksConfig, RuntimeFallbackConfig, FallbackModels, } from "./schema";
|
|
2
|
+
export type { DrizzyAgentConfig, AgentOverrideConfig, AgentOverrides, McpName, AgentName, HookName, BuiltinCommandName, CoderAgentConfig, ExperimentalConfig, DynamicContextPruningConfig, RalphLoopConfig, TmuxConfig, TmuxLayout, CoderConfig, CoderTasksConfig, RuntimeFallbackConfig, FallbackModels, InstallDefaultsSnapshot, InstallDefaultsProviders, } from "./schema";
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const BuiltinAgentNameSchema: z.ZodEnum<{
|
|
3
|
+
explore: "explore";
|
|
4
|
+
librarian: "librarian";
|
|
3
5
|
coder: "coder";
|
|
4
6
|
gptcoder: "gptcoder";
|
|
5
7
|
oracle: "oracle";
|
|
6
|
-
librarian: "librarian";
|
|
7
|
-
explore: "explore";
|
|
8
8
|
"multimodal-looker": "multimodal-looker";
|
|
9
|
-
|
|
10
|
-
"plan-reviewer": "plan-reviewer";
|
|
9
|
+
planner: "planner";
|
|
11
10
|
atlas: "atlas";
|
|
12
11
|
"coder-junior": "coder-junior";
|
|
13
|
-
|
|
12
|
+
"plan-consultant": "plan-consultant";
|
|
13
|
+
"plan-reviewer": "plan-reviewer";
|
|
14
14
|
}>;
|
|
15
15
|
export declare const BuiltinSkillNameSchema: z.ZodEnum<{
|
|
16
16
|
playwright: "playwright";
|
|
@@ -20,33 +20,33 @@ export declare const BuiltinSkillNameSchema: z.ZodEnum<{
|
|
|
20
20
|
"git-master": "git-master";
|
|
21
21
|
}>;
|
|
22
22
|
export declare const OverridableAgentNameSchema: z.ZodEnum<{
|
|
23
|
+
explore: "explore";
|
|
24
|
+
librarian: "librarian";
|
|
23
25
|
coder: "coder";
|
|
24
26
|
gptcoder: "gptcoder";
|
|
25
27
|
oracle: "oracle";
|
|
26
|
-
librarian: "librarian";
|
|
27
|
-
explore: "explore";
|
|
28
28
|
"multimodal-looker": "multimodal-looker";
|
|
29
|
-
|
|
30
|
-
"plan-reviewer": "plan-reviewer";
|
|
29
|
+
planner: "planner";
|
|
31
30
|
atlas: "atlas";
|
|
32
31
|
"coder-junior": "coder-junior";
|
|
32
|
+
"plan-consultant": "plan-consultant";
|
|
33
|
+
"plan-reviewer": "plan-reviewer";
|
|
33
34
|
build: "build";
|
|
34
35
|
plan: "plan";
|
|
35
|
-
planner: "planner";
|
|
36
36
|
"OpenCode-Builder": "OpenCode-Builder";
|
|
37
37
|
}>;
|
|
38
38
|
export declare const AgentNameSchema: z.ZodEnum<{
|
|
39
|
+
explore: "explore";
|
|
40
|
+
librarian: "librarian";
|
|
39
41
|
coder: "coder";
|
|
40
42
|
gptcoder: "gptcoder";
|
|
41
43
|
oracle: "oracle";
|
|
42
|
-
librarian: "librarian";
|
|
43
|
-
explore: "explore";
|
|
44
44
|
"multimodal-looker": "multimodal-looker";
|
|
45
|
-
|
|
46
|
-
"plan-reviewer": "plan-reviewer";
|
|
45
|
+
planner: "planner";
|
|
47
46
|
atlas: "atlas";
|
|
48
47
|
"coder-junior": "coder-junior";
|
|
49
|
-
|
|
48
|
+
"plan-consultant": "plan-consultant";
|
|
49
|
+
"plan-reviewer": "plan-reviewer";
|
|
50
50
|
}>;
|
|
51
51
|
export type AgentName = z.infer<typeof AgentNameSchema>;
|
|
52
52
|
export type BuiltinSkillName = z.infer<typeof BuiltinSkillNameSchema>;
|
|
@@ -13,8 +13,8 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
|
13
13
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
14
14
|
description: z.ZodOptional<z.ZodString>;
|
|
15
15
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
16
|
-
primary: "primary";
|
|
17
16
|
subagent: "subagent";
|
|
17
|
+
primary: "primary";
|
|
18
18
|
all: "all";
|
|
19
19
|
}>>;
|
|
20
20
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -63,14 +63,14 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
|
63
63
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
64
64
|
}, z.core.$strip>>;
|
|
65
65
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
66
|
-
low: "low";
|
|
67
66
|
medium: "medium";
|
|
68
|
-
high: "high";
|
|
69
67
|
xhigh: "xhigh";
|
|
68
|
+
low: "low";
|
|
69
|
+
high: "high";
|
|
70
70
|
}>>;
|
|
71
71
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
72
|
-
low: "low";
|
|
73
72
|
medium: "medium";
|
|
73
|
+
low: "low";
|
|
74
74
|
high: "high";
|
|
75
75
|
}>>;
|
|
76
76
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -98,8 +98,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
98
98
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
99
99
|
description: z.ZodOptional<z.ZodString>;
|
|
100
100
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
101
|
-
primary: "primary";
|
|
102
101
|
subagent: "subagent";
|
|
102
|
+
primary: "primary";
|
|
103
103
|
all: "all";
|
|
104
104
|
}>>;
|
|
105
105
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -148,14 +148,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
148
148
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
149
149
|
}, z.core.$strip>>;
|
|
150
150
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
151
|
-
low: "low";
|
|
152
151
|
medium: "medium";
|
|
153
|
-
high: "high";
|
|
154
152
|
xhigh: "xhigh";
|
|
153
|
+
low: "low";
|
|
154
|
+
high: "high";
|
|
155
155
|
}>>;
|
|
156
156
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
157
|
-
low: "low";
|
|
158
157
|
medium: "medium";
|
|
158
|
+
low: "low";
|
|
159
159
|
high: "high";
|
|
160
160
|
}>>;
|
|
161
161
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -182,8 +182,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
182
182
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
183
183
|
description: z.ZodOptional<z.ZodString>;
|
|
184
184
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
185
|
-
primary: "primary";
|
|
186
185
|
subagent: "subagent";
|
|
186
|
+
primary: "primary";
|
|
187
187
|
all: "all";
|
|
188
188
|
}>>;
|
|
189
189
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -232,14 +232,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
232
232
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
233
233
|
}, z.core.$strip>>;
|
|
234
234
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
235
|
-
low: "low";
|
|
236
235
|
medium: "medium";
|
|
237
|
-
high: "high";
|
|
238
236
|
xhigh: "xhigh";
|
|
237
|
+
low: "low";
|
|
238
|
+
high: "high";
|
|
239
239
|
}>>;
|
|
240
240
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
241
|
-
low: "low";
|
|
242
241
|
medium: "medium";
|
|
242
|
+
low: "low";
|
|
243
243
|
high: "high";
|
|
244
244
|
}>>;
|
|
245
245
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -266,8 +266,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
266
266
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
267
267
|
description: z.ZodOptional<z.ZodString>;
|
|
268
268
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
269
|
-
primary: "primary";
|
|
270
269
|
subagent: "subagent";
|
|
270
|
+
primary: "primary";
|
|
271
271
|
all: "all";
|
|
272
272
|
}>>;
|
|
273
273
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -316,14 +316,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
316
316
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
317
317
|
}, z.core.$strip>>;
|
|
318
318
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
319
|
-
low: "low";
|
|
320
319
|
medium: "medium";
|
|
321
|
-
high: "high";
|
|
322
320
|
xhigh: "xhigh";
|
|
321
|
+
low: "low";
|
|
322
|
+
high: "high";
|
|
323
323
|
}>>;
|
|
324
324
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
325
|
-
low: "low";
|
|
326
325
|
medium: "medium";
|
|
326
|
+
low: "low";
|
|
327
327
|
high: "high";
|
|
328
328
|
}>>;
|
|
329
329
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -350,8 +350,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
350
350
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
351
351
|
description: z.ZodOptional<z.ZodString>;
|
|
352
352
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
353
|
-
primary: "primary";
|
|
354
353
|
subagent: "subagent";
|
|
354
|
+
primary: "primary";
|
|
355
355
|
all: "all";
|
|
356
356
|
}>>;
|
|
357
357
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -400,14 +400,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
400
400
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
401
401
|
}, z.core.$strip>>;
|
|
402
402
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
403
|
-
low: "low";
|
|
404
403
|
medium: "medium";
|
|
405
|
-
high: "high";
|
|
406
404
|
xhigh: "xhigh";
|
|
405
|
+
low: "low";
|
|
406
|
+
high: "high";
|
|
407
407
|
}>>;
|
|
408
408
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
409
|
-
low: "low";
|
|
410
409
|
medium: "medium";
|
|
410
|
+
low: "low";
|
|
411
411
|
high: "high";
|
|
412
412
|
}>>;
|
|
413
413
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -435,8 +435,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
435
435
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
436
436
|
description: z.ZodOptional<z.ZodString>;
|
|
437
437
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
438
|
-
primary: "primary";
|
|
439
438
|
subagent: "subagent";
|
|
439
|
+
primary: "primary";
|
|
440
440
|
all: "all";
|
|
441
441
|
}>>;
|
|
442
442
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -485,14 +485,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
485
485
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
486
486
|
}, z.core.$strip>>;
|
|
487
487
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
488
|
-
low: "low";
|
|
489
488
|
medium: "medium";
|
|
490
|
-
high: "high";
|
|
491
489
|
xhigh: "xhigh";
|
|
490
|
+
low: "low";
|
|
491
|
+
high: "high";
|
|
492
492
|
}>>;
|
|
493
493
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
494
|
-
low: "low";
|
|
495
494
|
medium: "medium";
|
|
495
|
+
low: "low";
|
|
496
496
|
high: "high";
|
|
497
497
|
}>>;
|
|
498
498
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -519,8 +519,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
519
519
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
520
520
|
description: z.ZodOptional<z.ZodString>;
|
|
521
521
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
522
|
-
primary: "primary";
|
|
523
522
|
subagent: "subagent";
|
|
523
|
+
primary: "primary";
|
|
524
524
|
all: "all";
|
|
525
525
|
}>>;
|
|
526
526
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -569,14 +569,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
569
569
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
570
570
|
}, z.core.$strip>>;
|
|
571
571
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
572
|
-
low: "low";
|
|
573
572
|
medium: "medium";
|
|
574
|
-
high: "high";
|
|
575
573
|
xhigh: "xhigh";
|
|
574
|
+
low: "low";
|
|
575
|
+
high: "high";
|
|
576
576
|
}>>;
|
|
577
577
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
578
|
-
low: "low";
|
|
579
578
|
medium: "medium";
|
|
579
|
+
low: "low";
|
|
580
580
|
high: "high";
|
|
581
581
|
}>>;
|
|
582
582
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -603,8 +603,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
603
603
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
604
604
|
description: z.ZodOptional<z.ZodString>;
|
|
605
605
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
606
|
-
primary: "primary";
|
|
607
606
|
subagent: "subagent";
|
|
607
|
+
primary: "primary";
|
|
608
608
|
all: "all";
|
|
609
609
|
}>>;
|
|
610
610
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -653,14 +653,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
653
653
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
654
654
|
}, z.core.$strip>>;
|
|
655
655
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
656
|
-
low: "low";
|
|
657
656
|
medium: "medium";
|
|
658
|
-
high: "high";
|
|
659
657
|
xhigh: "xhigh";
|
|
658
|
+
low: "low";
|
|
659
|
+
high: "high";
|
|
660
660
|
}>>;
|
|
661
661
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
662
|
-
low: "low";
|
|
663
662
|
medium: "medium";
|
|
663
|
+
low: "low";
|
|
664
664
|
high: "high";
|
|
665
665
|
}>>;
|
|
666
666
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -687,8 +687,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
687
687
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
688
688
|
description: z.ZodOptional<z.ZodString>;
|
|
689
689
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
690
|
-
primary: "primary";
|
|
691
690
|
subagent: "subagent";
|
|
691
|
+
primary: "primary";
|
|
692
692
|
all: "all";
|
|
693
693
|
}>>;
|
|
694
694
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -737,14 +737,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
737
737
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
738
738
|
}, z.core.$strip>>;
|
|
739
739
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
740
|
-
low: "low";
|
|
741
740
|
medium: "medium";
|
|
742
|
-
high: "high";
|
|
743
741
|
xhigh: "xhigh";
|
|
742
|
+
low: "low";
|
|
743
|
+
high: "high";
|
|
744
744
|
}>>;
|
|
745
745
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
746
|
-
low: "low";
|
|
747
746
|
medium: "medium";
|
|
747
|
+
low: "low";
|
|
748
748
|
high: "high";
|
|
749
749
|
}>>;
|
|
750
750
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -771,8 +771,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
771
771
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
772
772
|
description: z.ZodOptional<z.ZodString>;
|
|
773
773
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
774
|
-
primary: "primary";
|
|
775
774
|
subagent: "subagent";
|
|
775
|
+
primary: "primary";
|
|
776
776
|
all: "all";
|
|
777
777
|
}>>;
|
|
778
778
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -821,14 +821,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
821
821
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
822
822
|
}, z.core.$strip>>;
|
|
823
823
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
824
|
-
low: "low";
|
|
825
824
|
medium: "medium";
|
|
826
|
-
high: "high";
|
|
827
825
|
xhigh: "xhigh";
|
|
826
|
+
low: "low";
|
|
827
|
+
high: "high";
|
|
828
828
|
}>>;
|
|
829
829
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
830
|
-
low: "low";
|
|
831
830
|
medium: "medium";
|
|
831
|
+
low: "low";
|
|
832
832
|
high: "high";
|
|
833
833
|
}>>;
|
|
834
834
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -855,8 +855,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
855
855
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
856
856
|
description: z.ZodOptional<z.ZodString>;
|
|
857
857
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
858
|
-
primary: "primary";
|
|
859
858
|
subagent: "subagent";
|
|
859
|
+
primary: "primary";
|
|
860
860
|
all: "all";
|
|
861
861
|
}>>;
|
|
862
862
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -905,14 +905,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
905
905
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
906
906
|
}, z.core.$strip>>;
|
|
907
907
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
908
|
-
low: "low";
|
|
909
908
|
medium: "medium";
|
|
910
|
-
high: "high";
|
|
911
909
|
xhigh: "xhigh";
|
|
910
|
+
low: "low";
|
|
911
|
+
high: "high";
|
|
912
912
|
}>>;
|
|
913
913
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
914
|
-
low: "low";
|
|
915
914
|
medium: "medium";
|
|
915
|
+
low: "low";
|
|
916
916
|
high: "high";
|
|
917
917
|
}>>;
|
|
918
918
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -939,8 +939,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
939
939
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
940
940
|
description: z.ZodOptional<z.ZodString>;
|
|
941
941
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
942
|
-
primary: "primary";
|
|
943
942
|
subagent: "subagent";
|
|
943
|
+
primary: "primary";
|
|
944
944
|
all: "all";
|
|
945
945
|
}>>;
|
|
946
946
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -989,14 +989,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
989
989
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
990
990
|
}, z.core.$strip>>;
|
|
991
991
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
992
|
-
low: "low";
|
|
993
992
|
medium: "medium";
|
|
994
|
-
high: "high";
|
|
995
993
|
xhigh: "xhigh";
|
|
994
|
+
low: "low";
|
|
995
|
+
high: "high";
|
|
996
996
|
}>>;
|
|
997
997
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
998
|
-
low: "low";
|
|
999
998
|
medium: "medium";
|
|
999
|
+
low: "low";
|
|
1000
1000
|
high: "high";
|
|
1001
1001
|
}>>;
|
|
1002
1002
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1023,8 +1023,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1023
1023
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1024
1024
|
description: z.ZodOptional<z.ZodString>;
|
|
1025
1025
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1026
|
-
primary: "primary";
|
|
1027
1026
|
subagent: "subagent";
|
|
1027
|
+
primary: "primary";
|
|
1028
1028
|
all: "all";
|
|
1029
1029
|
}>>;
|
|
1030
1030
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1073,14 +1073,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1073
1073
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
1074
1074
|
}, z.core.$strip>>;
|
|
1075
1075
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1076
|
-
low: "low";
|
|
1077
1076
|
medium: "medium";
|
|
1078
|
-
high: "high";
|
|
1079
1077
|
xhigh: "xhigh";
|
|
1078
|
+
low: "low";
|
|
1079
|
+
high: "high";
|
|
1080
1080
|
}>>;
|
|
1081
1081
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1082
|
-
low: "low";
|
|
1083
1082
|
medium: "medium";
|
|
1083
|
+
low: "low";
|
|
1084
1084
|
high: "high";
|
|
1085
1085
|
}>>;
|
|
1086
1086
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1107,8 +1107,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1107
1107
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1108
1108
|
description: z.ZodOptional<z.ZodString>;
|
|
1109
1109
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1110
|
-
primary: "primary";
|
|
1111
1110
|
subagent: "subagent";
|
|
1111
|
+
primary: "primary";
|
|
1112
1112
|
all: "all";
|
|
1113
1113
|
}>>;
|
|
1114
1114
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1157,14 +1157,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1157
1157
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
1158
1158
|
}, z.core.$strip>>;
|
|
1159
1159
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1160
|
-
low: "low";
|
|
1161
1160
|
medium: "medium";
|
|
1162
|
-
high: "high";
|
|
1163
1161
|
xhigh: "xhigh";
|
|
1162
|
+
low: "low";
|
|
1163
|
+
high: "high";
|
|
1164
1164
|
}>>;
|
|
1165
1165
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1166
|
-
low: "low";
|
|
1167
1166
|
medium: "medium";
|
|
1167
|
+
low: "low";
|
|
1168
1168
|
high: "high";
|
|
1169
1169
|
}>>;
|
|
1170
1170
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1191,8 +1191,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1191
1191
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1192
1192
|
description: z.ZodOptional<z.ZodString>;
|
|
1193
1193
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1194
|
-
primary: "primary";
|
|
1195
1194
|
subagent: "subagent";
|
|
1195
|
+
primary: "primary";
|
|
1196
1196
|
all: "all";
|
|
1197
1197
|
}>>;
|
|
1198
1198
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1241,14 +1241,14 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1241
1241
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
1242
1242
|
}, z.core.$strip>>;
|
|
1243
1243
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1244
|
-
low: "low";
|
|
1245
1244
|
medium: "medium";
|
|
1246
|
-
high: "high";
|
|
1247
1245
|
xhigh: "xhigh";
|
|
1246
|
+
low: "low";
|
|
1247
|
+
high: "high";
|
|
1248
1248
|
}>>;
|
|
1249
1249
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1250
|
-
low: "low";
|
|
1251
1250
|
medium: "medium";
|
|
1251
|
+
low: "low";
|
|
1252
1252
|
high: "high";
|
|
1253
1253
|
}>>;
|
|
1254
1254
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -15,14 +15,14 @@ export declare const CategoryConfigSchema: z.ZodObject<{
|
|
|
15
15
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
16
16
|
}, z.core.$strip>>;
|
|
17
17
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
18
|
-
low: "low";
|
|
19
18
|
medium: "medium";
|
|
20
|
-
high: "high";
|
|
21
19
|
xhigh: "xhigh";
|
|
20
|
+
low: "low";
|
|
21
|
+
high: "high";
|
|
22
22
|
}>>;
|
|
23
23
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
24
|
-
low: "low";
|
|
25
24
|
medium: "medium";
|
|
25
|
+
low: "low";
|
|
26
26
|
high: "high";
|
|
27
27
|
}>>;
|
|
28
28
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -32,14 +32,14 @@ export declare const CategoryConfigSchema: z.ZodObject<{
|
|
|
32
32
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
33
33
|
}, z.core.$strip>;
|
|
34
34
|
export declare const BuiltinCategoryNameSchema: z.ZodEnum<{
|
|
35
|
-
deep: "deep";
|
|
36
|
-
"unspecified-high": "unspecified-high";
|
|
37
|
-
"visual-engineering": "visual-engineering";
|
|
38
|
-
ultrabrain: "ultrabrain";
|
|
39
35
|
artistry: "artistry";
|
|
40
36
|
quick: "quick";
|
|
41
|
-
"
|
|
37
|
+
"visual-engineering": "visual-engineering";
|
|
42
38
|
writing: "writing";
|
|
39
|
+
ultrabrain: "ultrabrain";
|
|
40
|
+
deep: "deep";
|
|
41
|
+
"unspecified-low": "unspecified-low";
|
|
42
|
+
"unspecified-high": "unspecified-high";
|
|
43
43
|
}>;
|
|
44
44
|
export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45
45
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -57,14 +57,14 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
|
|
|
57
57
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
58
58
|
}, z.core.$strip>>;
|
|
59
59
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
60
|
-
low: "low";
|
|
61
60
|
medium: "medium";
|
|
62
|
-
high: "high";
|
|
63
61
|
xhigh: "xhigh";
|
|
62
|
+
low: "low";
|
|
63
|
+
high: "high";
|
|
64
64
|
}>>;
|
|
65
65
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
66
|
-
low: "low";
|
|
67
66
|
medium: "medium";
|
|
67
|
+
low: "low";
|
|
68
68
|
high: "high";
|
|
69
69
|
}>>;
|
|
70
70
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|