drizzy-agent 0.3.1 → 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 +334 -239
- 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
|
@@ -89,8 +89,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
89
89
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
90
90
|
description: z.ZodOptional<z.ZodString>;
|
|
91
91
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
92
|
-
primary: "primary";
|
|
93
92
|
subagent: "subagent";
|
|
93
|
+
primary: "primary";
|
|
94
94
|
all: "all";
|
|
95
95
|
}>>;
|
|
96
96
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -139,14 +139,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
139
139
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
140
140
|
}, z.core.$strip>>;
|
|
141
141
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
142
|
-
low: "low";
|
|
143
142
|
medium: "medium";
|
|
144
|
-
high: "high";
|
|
145
143
|
xhigh: "xhigh";
|
|
144
|
+
low: "low";
|
|
145
|
+
high: "high";
|
|
146
146
|
}>>;
|
|
147
147
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
148
|
-
low: "low";
|
|
149
148
|
medium: "medium";
|
|
149
|
+
low: "low";
|
|
150
150
|
high: "high";
|
|
151
151
|
}>>;
|
|
152
152
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -173,8 +173,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
173
173
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
174
174
|
description: z.ZodOptional<z.ZodString>;
|
|
175
175
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
176
|
-
primary: "primary";
|
|
177
176
|
subagent: "subagent";
|
|
177
|
+
primary: "primary";
|
|
178
178
|
all: "all";
|
|
179
179
|
}>>;
|
|
180
180
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -223,14 +223,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
223
223
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
224
224
|
}, z.core.$strip>>;
|
|
225
225
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
226
|
-
low: "low";
|
|
227
226
|
medium: "medium";
|
|
228
|
-
high: "high";
|
|
229
227
|
xhigh: "xhigh";
|
|
228
|
+
low: "low";
|
|
229
|
+
high: "high";
|
|
230
230
|
}>>;
|
|
231
231
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
232
|
-
low: "low";
|
|
233
232
|
medium: "medium";
|
|
233
|
+
low: "low";
|
|
234
234
|
high: "high";
|
|
235
235
|
}>>;
|
|
236
236
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -257,8 +257,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
257
257
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
258
258
|
description: z.ZodOptional<z.ZodString>;
|
|
259
259
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
260
|
-
primary: "primary";
|
|
261
260
|
subagent: "subagent";
|
|
261
|
+
primary: "primary";
|
|
262
262
|
all: "all";
|
|
263
263
|
}>>;
|
|
264
264
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -307,14 +307,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
307
307
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
308
308
|
}, z.core.$strip>>;
|
|
309
309
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
310
|
-
low: "low";
|
|
311
310
|
medium: "medium";
|
|
312
|
-
high: "high";
|
|
313
311
|
xhigh: "xhigh";
|
|
312
|
+
low: "low";
|
|
313
|
+
high: "high";
|
|
314
314
|
}>>;
|
|
315
315
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
316
|
-
low: "low";
|
|
317
316
|
medium: "medium";
|
|
317
|
+
low: "low";
|
|
318
318
|
high: "high";
|
|
319
319
|
}>>;
|
|
320
320
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -341,8 +341,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
341
341
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
342
342
|
description: z.ZodOptional<z.ZodString>;
|
|
343
343
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
344
|
-
primary: "primary";
|
|
345
344
|
subagent: "subagent";
|
|
345
|
+
primary: "primary";
|
|
346
346
|
all: "all";
|
|
347
347
|
}>>;
|
|
348
348
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -391,14 +391,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
391
391
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
392
392
|
}, z.core.$strip>>;
|
|
393
393
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
394
|
-
low: "low";
|
|
395
394
|
medium: "medium";
|
|
396
|
-
high: "high";
|
|
397
395
|
xhigh: "xhigh";
|
|
396
|
+
low: "low";
|
|
397
|
+
high: "high";
|
|
398
398
|
}>>;
|
|
399
399
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
400
|
-
low: "low";
|
|
401
400
|
medium: "medium";
|
|
401
|
+
low: "low";
|
|
402
402
|
high: "high";
|
|
403
403
|
}>>;
|
|
404
404
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -426,8 +426,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
426
426
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
427
427
|
description: z.ZodOptional<z.ZodString>;
|
|
428
428
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
429
|
-
primary: "primary";
|
|
430
429
|
subagent: "subagent";
|
|
430
|
+
primary: "primary";
|
|
431
431
|
all: "all";
|
|
432
432
|
}>>;
|
|
433
433
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -476,14 +476,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
476
476
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
477
477
|
}, z.core.$strip>>;
|
|
478
478
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
479
|
-
low: "low";
|
|
480
479
|
medium: "medium";
|
|
481
|
-
high: "high";
|
|
482
480
|
xhigh: "xhigh";
|
|
481
|
+
low: "low";
|
|
482
|
+
high: "high";
|
|
483
483
|
}>>;
|
|
484
484
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
485
|
-
low: "low";
|
|
486
485
|
medium: "medium";
|
|
486
|
+
low: "low";
|
|
487
487
|
high: "high";
|
|
488
488
|
}>>;
|
|
489
489
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -510,8 +510,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
510
510
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
511
511
|
description: z.ZodOptional<z.ZodString>;
|
|
512
512
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
513
|
-
primary: "primary";
|
|
514
513
|
subagent: "subagent";
|
|
514
|
+
primary: "primary";
|
|
515
515
|
all: "all";
|
|
516
516
|
}>>;
|
|
517
517
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -560,14 +560,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
560
560
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
561
561
|
}, z.core.$strip>>;
|
|
562
562
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
563
|
-
low: "low";
|
|
564
563
|
medium: "medium";
|
|
565
|
-
high: "high";
|
|
566
564
|
xhigh: "xhigh";
|
|
565
|
+
low: "low";
|
|
566
|
+
high: "high";
|
|
567
567
|
}>>;
|
|
568
568
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
569
|
-
low: "low";
|
|
570
569
|
medium: "medium";
|
|
570
|
+
low: "low";
|
|
571
571
|
high: "high";
|
|
572
572
|
}>>;
|
|
573
573
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -594,8 +594,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
594
594
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
595
595
|
description: z.ZodOptional<z.ZodString>;
|
|
596
596
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
597
|
-
primary: "primary";
|
|
598
597
|
subagent: "subagent";
|
|
598
|
+
primary: "primary";
|
|
599
599
|
all: "all";
|
|
600
600
|
}>>;
|
|
601
601
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -644,14 +644,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
644
644
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
645
645
|
}, z.core.$strip>>;
|
|
646
646
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
647
|
-
low: "low";
|
|
648
647
|
medium: "medium";
|
|
649
|
-
high: "high";
|
|
650
648
|
xhigh: "xhigh";
|
|
649
|
+
low: "low";
|
|
650
|
+
high: "high";
|
|
651
651
|
}>>;
|
|
652
652
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
653
|
-
low: "low";
|
|
654
653
|
medium: "medium";
|
|
654
|
+
low: "low";
|
|
655
655
|
high: "high";
|
|
656
656
|
}>>;
|
|
657
657
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -678,8 +678,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
678
678
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
679
679
|
description: z.ZodOptional<z.ZodString>;
|
|
680
680
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
681
|
-
primary: "primary";
|
|
682
681
|
subagent: "subagent";
|
|
682
|
+
primary: "primary";
|
|
683
683
|
all: "all";
|
|
684
684
|
}>>;
|
|
685
685
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -728,14 +728,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
728
728
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
729
729
|
}, z.core.$strip>>;
|
|
730
730
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
731
|
-
low: "low";
|
|
732
731
|
medium: "medium";
|
|
733
|
-
high: "high";
|
|
734
732
|
xhigh: "xhigh";
|
|
733
|
+
low: "low";
|
|
734
|
+
high: "high";
|
|
735
735
|
}>>;
|
|
736
736
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
737
|
-
low: "low";
|
|
738
737
|
medium: "medium";
|
|
738
|
+
low: "low";
|
|
739
739
|
high: "high";
|
|
740
740
|
}>>;
|
|
741
741
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -762,8 +762,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
762
762
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
763
763
|
description: z.ZodOptional<z.ZodString>;
|
|
764
764
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
765
|
-
primary: "primary";
|
|
766
765
|
subagent: "subagent";
|
|
766
|
+
primary: "primary";
|
|
767
767
|
all: "all";
|
|
768
768
|
}>>;
|
|
769
769
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -812,14 +812,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
812
812
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
813
813
|
}, z.core.$strip>>;
|
|
814
814
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
815
|
-
low: "low";
|
|
816
815
|
medium: "medium";
|
|
817
|
-
high: "high";
|
|
818
816
|
xhigh: "xhigh";
|
|
817
|
+
low: "low";
|
|
818
|
+
high: "high";
|
|
819
819
|
}>>;
|
|
820
820
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
821
|
-
low: "low";
|
|
822
821
|
medium: "medium";
|
|
822
|
+
low: "low";
|
|
823
823
|
high: "high";
|
|
824
824
|
}>>;
|
|
825
825
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -846,8 +846,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
846
846
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
847
847
|
description: z.ZodOptional<z.ZodString>;
|
|
848
848
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
849
|
-
primary: "primary";
|
|
850
849
|
subagent: "subagent";
|
|
850
|
+
primary: "primary";
|
|
851
851
|
all: "all";
|
|
852
852
|
}>>;
|
|
853
853
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -896,14 +896,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
896
896
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
897
897
|
}, z.core.$strip>>;
|
|
898
898
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
899
|
-
low: "low";
|
|
900
899
|
medium: "medium";
|
|
901
|
-
high: "high";
|
|
902
900
|
xhigh: "xhigh";
|
|
901
|
+
low: "low";
|
|
902
|
+
high: "high";
|
|
903
903
|
}>>;
|
|
904
904
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
905
|
-
low: "low";
|
|
906
905
|
medium: "medium";
|
|
906
|
+
low: "low";
|
|
907
907
|
high: "high";
|
|
908
908
|
}>>;
|
|
909
909
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -930,8 +930,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
930
930
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
931
931
|
description: z.ZodOptional<z.ZodString>;
|
|
932
932
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
933
|
-
primary: "primary";
|
|
934
933
|
subagent: "subagent";
|
|
934
|
+
primary: "primary";
|
|
935
935
|
all: "all";
|
|
936
936
|
}>>;
|
|
937
937
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -980,14 +980,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
980
980
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
981
981
|
}, z.core.$strip>>;
|
|
982
982
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
983
|
-
low: "low";
|
|
984
983
|
medium: "medium";
|
|
985
|
-
high: "high";
|
|
986
984
|
xhigh: "xhigh";
|
|
985
|
+
low: "low";
|
|
986
|
+
high: "high";
|
|
987
987
|
}>>;
|
|
988
988
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
989
|
-
low: "low";
|
|
990
989
|
medium: "medium";
|
|
990
|
+
low: "low";
|
|
991
991
|
high: "high";
|
|
992
992
|
}>>;
|
|
993
993
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1014,8 +1014,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
1014
1014
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1015
1015
|
description: z.ZodOptional<z.ZodString>;
|
|
1016
1016
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1017
|
-
primary: "primary";
|
|
1018
1017
|
subagent: "subagent";
|
|
1018
|
+
primary: "primary";
|
|
1019
1019
|
all: "all";
|
|
1020
1020
|
}>>;
|
|
1021
1021
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1064,14 +1064,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
1064
1064
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
1065
1065
|
}, z.core.$strip>>;
|
|
1066
1066
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1067
|
-
low: "low";
|
|
1068
1067
|
medium: "medium";
|
|
1069
|
-
high: "high";
|
|
1070
1068
|
xhigh: "xhigh";
|
|
1069
|
+
low: "low";
|
|
1070
|
+
high: "high";
|
|
1071
1071
|
}>>;
|
|
1072
1072
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1073
|
-
low: "low";
|
|
1074
1073
|
medium: "medium";
|
|
1074
|
+
low: "low";
|
|
1075
1075
|
high: "high";
|
|
1076
1076
|
}>>;
|
|
1077
1077
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1098,8 +1098,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
1098
1098
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1099
1099
|
description: z.ZodOptional<z.ZodString>;
|
|
1100
1100
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1101
|
-
primary: "primary";
|
|
1102
1101
|
subagent: "subagent";
|
|
1102
|
+
primary: "primary";
|
|
1103
1103
|
all: "all";
|
|
1104
1104
|
}>>;
|
|
1105
1105
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1148,14 +1148,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
1148
1148
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
1149
1149
|
}, z.core.$strip>>;
|
|
1150
1150
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1151
|
-
low: "low";
|
|
1152
1151
|
medium: "medium";
|
|
1153
|
-
high: "high";
|
|
1154
1152
|
xhigh: "xhigh";
|
|
1153
|
+
low: "low";
|
|
1154
|
+
high: "high";
|
|
1155
1155
|
}>>;
|
|
1156
1156
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1157
|
-
low: "low";
|
|
1158
1157
|
medium: "medium";
|
|
1158
|
+
low: "low";
|
|
1159
1159
|
high: "high";
|
|
1160
1160
|
}>>;
|
|
1161
1161
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1182,8 +1182,8 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
1182
1182
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1183
1183
|
description: z.ZodOptional<z.ZodString>;
|
|
1184
1184
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1185
|
-
primary: "primary";
|
|
1186
1185
|
subagent: "subagent";
|
|
1186
|
+
primary: "primary";
|
|
1187
1187
|
all: "all";
|
|
1188
1188
|
}>>;
|
|
1189
1189
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1232,14 +1232,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
1232
1232
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
1233
1233
|
}, z.core.$strip>>;
|
|
1234
1234
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1235
|
-
low: "low";
|
|
1236
1235
|
medium: "medium";
|
|
1237
|
-
high: "high";
|
|
1238
1236
|
xhigh: "xhigh";
|
|
1237
|
+
low: "low";
|
|
1238
|
+
high: "high";
|
|
1239
1239
|
}>>;
|
|
1240
1240
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1241
|
-
low: "low";
|
|
1242
1241
|
medium: "medium";
|
|
1242
|
+
low: "low";
|
|
1243
1243
|
high: "high";
|
|
1244
1244
|
}>>;
|
|
1245
1245
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1269,14 +1269,14 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
1269
1269
|
budgetTokens: z.ZodOptional<z.ZodNumber>;
|
|
1270
1270
|
}, z.core.$strip>>;
|
|
1271
1271
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1272
|
-
low: "low";
|
|
1273
1272
|
medium: "medium";
|
|
1274
|
-
high: "high";
|
|
1275
1273
|
xhigh: "xhigh";
|
|
1274
|
+
low: "low";
|
|
1275
|
+
high: "high";
|
|
1276
1276
|
}>>;
|
|
1277
1277
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1278
|
-
low: "low";
|
|
1279
1278
|
medium: "medium";
|
|
1279
|
+
low: "low";
|
|
1280
1280
|
high: "high";
|
|
1281
1281
|
}>>;
|
|
1282
1282
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1439,6 +1439,7 @@ export declare const DrizzyAgentConfigSchema: z.ZodObject<{
|
|
|
1439
1439
|
start_work: z.ZodOptional<z.ZodObject<{
|
|
1440
1440
|
auto_commit: z.ZodDefault<z.ZodBoolean>;
|
|
1441
1441
|
}, z.core.$strip>>;
|
|
1442
|
+
_install_defaults: z.ZodOptional<z.ZodType<import("./install-defaults").InstallDefaultsSnapshot, unknown, z.core.$ZodTypeInternals<import("./install-defaults").InstallDefaultsSnapshot, unknown>>>;
|
|
1442
1443
|
_migrations: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1443
1444
|
}, z.core.$strip>;
|
|
1444
1445
|
export type DrizzyAgentConfig = z.infer<typeof DrizzyAgentConfigSchema>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { type InstallDefaultsProviders, type InstallDefaultsSnapshot } from "../../shared/install-defaults-contract";
|
|
3
|
+
export type { InstallDefaultsProviders, InstallDefaultsSnapshot };
|
|
4
|
+
export declare const InstallDefaultsRootKey: "_install_defaults";
|
|
5
|
+
export declare const InstallDefaultsClaudeProviderSchema: z.ZodEnum<{
|
|
6
|
+
no: "no";
|
|
7
|
+
yes: "yes";
|
|
8
|
+
max20: "max20";
|
|
9
|
+
}>;
|
|
10
|
+
export declare const InstallDefaultsProvidersSchema: z.ZodType<InstallDefaultsProviders>;
|
|
11
|
+
export declare const InstallDefaultsSnapshotSchema: z.ZodType<InstallDefaultsSnapshot>;
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export * from "./schema/fallback-models";
|
|
|
13
13
|
export * from "./schema/git-env-prefix";
|
|
14
14
|
export * from "./schema/git-master";
|
|
15
15
|
export * from "./schema/hooks";
|
|
16
|
+
export * from "./schema/install-defaults";
|
|
16
17
|
export * from "./schema/notification";
|
|
17
18
|
export * from "./schema/drizzy-agent-config";
|
|
18
19
|
export * from "./schema/ralph-loop";
|
|
@@ -3919,6 +3919,61 @@
|
|
|
3919
3919
|
],
|
|
3920
3920
|
"additionalProperties": false
|
|
3921
3921
|
},
|
|
3922
|
+
"_install_defaults": {
|
|
3923
|
+
"type": "object",
|
|
3924
|
+
"properties": {
|
|
3925
|
+
"snapshot_version": {
|
|
3926
|
+
"type": "number",
|
|
3927
|
+
"const": 1
|
|
3928
|
+
},
|
|
3929
|
+
"providers": {
|
|
3930
|
+
"type": "object",
|
|
3931
|
+
"properties": {
|
|
3932
|
+
"claude": {
|
|
3933
|
+
"type": "string",
|
|
3934
|
+
"enum": [
|
|
3935
|
+
"no",
|
|
3936
|
+
"yes",
|
|
3937
|
+
"max20"
|
|
3938
|
+
]
|
|
3939
|
+
},
|
|
3940
|
+
"openai": {
|
|
3941
|
+
"type": "boolean"
|
|
3942
|
+
},
|
|
3943
|
+
"gemini": {
|
|
3944
|
+
"type": "boolean"
|
|
3945
|
+
},
|
|
3946
|
+
"copilot": {
|
|
3947
|
+
"type": "boolean"
|
|
3948
|
+
},
|
|
3949
|
+
"opencode_zen": {
|
|
3950
|
+
"type": "boolean"
|
|
3951
|
+
},
|
|
3952
|
+
"zai_coding_plan": {
|
|
3953
|
+
"type": "boolean"
|
|
3954
|
+
},
|
|
3955
|
+
"kimi_for_coding": {
|
|
3956
|
+
"type": "boolean"
|
|
3957
|
+
}
|
|
3958
|
+
},
|
|
3959
|
+
"required": [
|
|
3960
|
+
"claude",
|
|
3961
|
+
"openai",
|
|
3962
|
+
"gemini",
|
|
3963
|
+
"copilot",
|
|
3964
|
+
"opencode_zen",
|
|
3965
|
+
"zai_coding_plan",
|
|
3966
|
+
"kimi_for_coding"
|
|
3967
|
+
],
|
|
3968
|
+
"additionalProperties": false
|
|
3969
|
+
}
|
|
3970
|
+
},
|
|
3971
|
+
"required": [
|
|
3972
|
+
"snapshot_version",
|
|
3973
|
+
"providers"
|
|
3974
|
+
],
|
|
3975
|
+
"additionalProperties": false
|
|
3976
|
+
},
|
|
3922
3977
|
"_migrations": {
|
|
3923
3978
|
"type": "array",
|
|
3924
3979
|
"items": {
|