@gaunt-sloth/core 2.0.0-alpha.11 → 2.0.0-alpha.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/loader.d.ts +43 -12
- package/dist/config/loader.js +87 -34
- package/dist/config/loader.js.map +1 -1
- package/dist/config/schema.d.ts +223 -105
- package/dist/config/schema.js +206 -80
- package/dist/config/schema.js.map +1 -1
- package/dist/config/shell-policy.d.ts +125 -23
- package/dist/config/shell-policy.js +118 -22
- package/dist/config/shell-policy.js.map +1 -1
- package/dist/config/types.d.ts +38 -17
- package/dist/config/types.js.map +1 -1
- package/dist/core/GthAgentRunner.d.ts +1 -1
- package/dist/core/GthAgentRunner.js +2 -2
- package/dist/core/GthAgentRunner.js.map +1 -1
- package/dist/core/types.d.ts +21 -0
- package/dist/providers/modelDiscovery.d.ts +57 -2
- package/dist/providers/modelDiscovery.js +64 -19
- package/dist/providers/modelDiscovery.js.map +1 -1
- package/package.json +1 -1
- package/schema/gsloth-config.schema.json +734 -302
|
@@ -174,10 +174,96 @@
|
|
|
174
174
|
]
|
|
175
175
|
},
|
|
176
176
|
"builtInTools": {
|
|
177
|
-
"
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
177
|
+
"anyOf": [
|
|
178
|
+
{
|
|
179
|
+
"type": "array",
|
|
180
|
+
"items": {
|
|
181
|
+
"type": "string"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"type": "object",
|
|
186
|
+
"propertyNames": {
|
|
187
|
+
"type": "string"
|
|
188
|
+
},
|
|
189
|
+
"additionalProperties": {
|
|
190
|
+
"anyOf": [
|
|
191
|
+
{
|
|
192
|
+
"type": "boolean"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"type": "object",
|
|
196
|
+
"properties": {
|
|
197
|
+
"enabled": {
|
|
198
|
+
"type": "boolean"
|
|
199
|
+
},
|
|
200
|
+
"command": {
|
|
201
|
+
"type": "string"
|
|
202
|
+
},
|
|
203
|
+
"timeout": {
|
|
204
|
+
"type": "number"
|
|
205
|
+
},
|
|
206
|
+
"maxOutputBytes": {
|
|
207
|
+
"type": "number"
|
|
208
|
+
},
|
|
209
|
+
"allowlist": {
|
|
210
|
+
"type": "boolean"
|
|
211
|
+
},
|
|
212
|
+
"persistAllowlist": {
|
|
213
|
+
"type": "boolean"
|
|
214
|
+
},
|
|
215
|
+
"judge": {
|
|
216
|
+
"anyOf": [
|
|
217
|
+
{
|
|
218
|
+
"type": "boolean"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"type": "object",
|
|
222
|
+
"properties": {
|
|
223
|
+
"enabled": {
|
|
224
|
+
"type": "boolean"
|
|
225
|
+
},
|
|
226
|
+
"autoApproveLow": {
|
|
227
|
+
"type": "boolean"
|
|
228
|
+
},
|
|
229
|
+
"blockHigh": {
|
|
230
|
+
"type": "boolean"
|
|
231
|
+
},
|
|
232
|
+
"model": {
|
|
233
|
+
"type": "object",
|
|
234
|
+
"properties": {
|
|
235
|
+
"type": {
|
|
236
|
+
"type": "string"
|
|
237
|
+
},
|
|
238
|
+
"model": {
|
|
239
|
+
"type": "string"
|
|
240
|
+
},
|
|
241
|
+
"configuration": {
|
|
242
|
+
"type": "object",
|
|
243
|
+
"propertyNames": {
|
|
244
|
+
"type": "string"
|
|
245
|
+
},
|
|
246
|
+
"additionalProperties": {}
|
|
247
|
+
},
|
|
248
|
+
"apiKeyEnvironmentVariable": {
|
|
249
|
+
"type": "string"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"additionalProperties": {}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
"yolo": {
|
|
259
|
+
"type": "boolean"
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
]
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
]
|
|
181
267
|
},
|
|
182
268
|
"tools": {
|
|
183
269
|
"type": "array",
|
|
@@ -294,6 +380,20 @@
|
|
|
294
380
|
},
|
|
295
381
|
"additionalProperties": {}
|
|
296
382
|
},
|
|
383
|
+
"tls": {
|
|
384
|
+
"type": "object",
|
|
385
|
+
"properties": {
|
|
386
|
+
"extraCaCerts": {
|
|
387
|
+
"type": "array",
|
|
388
|
+
"items": {
|
|
389
|
+
"type": "string"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"rejectUnauthorized": {
|
|
393
|
+
"type": "boolean"
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
},
|
|
297
397
|
"a2aAgents": {
|
|
298
398
|
"type": "object",
|
|
299
399
|
"propertyNames": {
|
|
@@ -353,10 +453,96 @@
|
|
|
353
453
|
]
|
|
354
454
|
},
|
|
355
455
|
"builtInTools": {
|
|
356
|
-
"
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
456
|
+
"anyOf": [
|
|
457
|
+
{
|
|
458
|
+
"type": "array",
|
|
459
|
+
"items": {
|
|
460
|
+
"type": "string"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"type": "object",
|
|
465
|
+
"propertyNames": {
|
|
466
|
+
"type": "string"
|
|
467
|
+
},
|
|
468
|
+
"additionalProperties": {
|
|
469
|
+
"anyOf": [
|
|
470
|
+
{
|
|
471
|
+
"type": "boolean"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"type": "object",
|
|
475
|
+
"properties": {
|
|
476
|
+
"enabled": {
|
|
477
|
+
"type": "boolean"
|
|
478
|
+
},
|
|
479
|
+
"command": {
|
|
480
|
+
"type": "string"
|
|
481
|
+
},
|
|
482
|
+
"timeout": {
|
|
483
|
+
"type": "number"
|
|
484
|
+
},
|
|
485
|
+
"maxOutputBytes": {
|
|
486
|
+
"type": "number"
|
|
487
|
+
},
|
|
488
|
+
"allowlist": {
|
|
489
|
+
"type": "boolean"
|
|
490
|
+
},
|
|
491
|
+
"persistAllowlist": {
|
|
492
|
+
"type": "boolean"
|
|
493
|
+
},
|
|
494
|
+
"judge": {
|
|
495
|
+
"anyOf": [
|
|
496
|
+
{
|
|
497
|
+
"type": "boolean"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"type": "object",
|
|
501
|
+
"properties": {
|
|
502
|
+
"enabled": {
|
|
503
|
+
"type": "boolean"
|
|
504
|
+
},
|
|
505
|
+
"autoApproveLow": {
|
|
506
|
+
"type": "boolean"
|
|
507
|
+
},
|
|
508
|
+
"blockHigh": {
|
|
509
|
+
"type": "boolean"
|
|
510
|
+
},
|
|
511
|
+
"model": {
|
|
512
|
+
"type": "object",
|
|
513
|
+
"properties": {
|
|
514
|
+
"type": {
|
|
515
|
+
"type": "string"
|
|
516
|
+
},
|
|
517
|
+
"model": {
|
|
518
|
+
"type": "string"
|
|
519
|
+
},
|
|
520
|
+
"configuration": {
|
|
521
|
+
"type": "object",
|
|
522
|
+
"propertyNames": {
|
|
523
|
+
"type": "string"
|
|
524
|
+
},
|
|
525
|
+
"additionalProperties": {}
|
|
526
|
+
},
|
|
527
|
+
"apiKeyEnvironmentVariable": {
|
|
528
|
+
"type": "string"
|
|
529
|
+
}
|
|
530
|
+
},
|
|
531
|
+
"additionalProperties": {}
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
]
|
|
536
|
+
},
|
|
537
|
+
"yolo": {
|
|
538
|
+
"type": "boolean"
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
]
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
]
|
|
360
546
|
},
|
|
361
547
|
"customTools": {
|
|
362
548
|
"anyOf": [
|
|
@@ -526,10 +712,96 @@
|
|
|
526
712
|
]
|
|
527
713
|
},
|
|
528
714
|
"builtInTools": {
|
|
529
|
-
"
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
715
|
+
"anyOf": [
|
|
716
|
+
{
|
|
717
|
+
"type": "array",
|
|
718
|
+
"items": {
|
|
719
|
+
"type": "string"
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"type": "object",
|
|
724
|
+
"propertyNames": {
|
|
725
|
+
"type": "string"
|
|
726
|
+
},
|
|
727
|
+
"additionalProperties": {
|
|
728
|
+
"anyOf": [
|
|
729
|
+
{
|
|
730
|
+
"type": "boolean"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"type": "object",
|
|
734
|
+
"properties": {
|
|
735
|
+
"enabled": {
|
|
736
|
+
"type": "boolean"
|
|
737
|
+
},
|
|
738
|
+
"command": {
|
|
739
|
+
"type": "string"
|
|
740
|
+
},
|
|
741
|
+
"timeout": {
|
|
742
|
+
"type": "number"
|
|
743
|
+
},
|
|
744
|
+
"maxOutputBytes": {
|
|
745
|
+
"type": "number"
|
|
746
|
+
},
|
|
747
|
+
"allowlist": {
|
|
748
|
+
"type": "boolean"
|
|
749
|
+
},
|
|
750
|
+
"persistAllowlist": {
|
|
751
|
+
"type": "boolean"
|
|
752
|
+
},
|
|
753
|
+
"judge": {
|
|
754
|
+
"anyOf": [
|
|
755
|
+
{
|
|
756
|
+
"type": "boolean"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"type": "object",
|
|
760
|
+
"properties": {
|
|
761
|
+
"enabled": {
|
|
762
|
+
"type": "boolean"
|
|
763
|
+
},
|
|
764
|
+
"autoApproveLow": {
|
|
765
|
+
"type": "boolean"
|
|
766
|
+
},
|
|
767
|
+
"blockHigh": {
|
|
768
|
+
"type": "boolean"
|
|
769
|
+
},
|
|
770
|
+
"model": {
|
|
771
|
+
"type": "object",
|
|
772
|
+
"properties": {
|
|
773
|
+
"type": {
|
|
774
|
+
"type": "string"
|
|
775
|
+
},
|
|
776
|
+
"model": {
|
|
777
|
+
"type": "string"
|
|
778
|
+
},
|
|
779
|
+
"configuration": {
|
|
780
|
+
"type": "object",
|
|
781
|
+
"propertyNames": {
|
|
782
|
+
"type": "string"
|
|
783
|
+
},
|
|
784
|
+
"additionalProperties": {}
|
|
785
|
+
},
|
|
786
|
+
"apiKeyEnvironmentVariable": {
|
|
787
|
+
"type": "string"
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
"additionalProperties": {}
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
]
|
|
795
|
+
},
|
|
796
|
+
"yolo": {
|
|
797
|
+
"type": "boolean"
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
]
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
]
|
|
533
805
|
},
|
|
534
806
|
"customTools": {
|
|
535
807
|
"anyOf": [
|
|
@@ -690,10 +962,96 @@
|
|
|
690
962
|
]
|
|
691
963
|
},
|
|
692
964
|
"builtInTools": {
|
|
693
|
-
"
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
965
|
+
"anyOf": [
|
|
966
|
+
{
|
|
967
|
+
"type": "array",
|
|
968
|
+
"items": {
|
|
969
|
+
"type": "string"
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"type": "object",
|
|
974
|
+
"propertyNames": {
|
|
975
|
+
"type": "string"
|
|
976
|
+
},
|
|
977
|
+
"additionalProperties": {
|
|
978
|
+
"anyOf": [
|
|
979
|
+
{
|
|
980
|
+
"type": "boolean"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"type": "object",
|
|
984
|
+
"properties": {
|
|
985
|
+
"enabled": {
|
|
986
|
+
"type": "boolean"
|
|
987
|
+
},
|
|
988
|
+
"command": {
|
|
989
|
+
"type": "string"
|
|
990
|
+
},
|
|
991
|
+
"timeout": {
|
|
992
|
+
"type": "number"
|
|
993
|
+
},
|
|
994
|
+
"maxOutputBytes": {
|
|
995
|
+
"type": "number"
|
|
996
|
+
},
|
|
997
|
+
"allowlist": {
|
|
998
|
+
"type": "boolean"
|
|
999
|
+
},
|
|
1000
|
+
"persistAllowlist": {
|
|
1001
|
+
"type": "boolean"
|
|
1002
|
+
},
|
|
1003
|
+
"judge": {
|
|
1004
|
+
"anyOf": [
|
|
1005
|
+
{
|
|
1006
|
+
"type": "boolean"
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"type": "object",
|
|
1010
|
+
"properties": {
|
|
1011
|
+
"enabled": {
|
|
1012
|
+
"type": "boolean"
|
|
1013
|
+
},
|
|
1014
|
+
"autoApproveLow": {
|
|
1015
|
+
"type": "boolean"
|
|
1016
|
+
},
|
|
1017
|
+
"blockHigh": {
|
|
1018
|
+
"type": "boolean"
|
|
1019
|
+
},
|
|
1020
|
+
"model": {
|
|
1021
|
+
"type": "object",
|
|
1022
|
+
"properties": {
|
|
1023
|
+
"type": {
|
|
1024
|
+
"type": "string"
|
|
1025
|
+
},
|
|
1026
|
+
"model": {
|
|
1027
|
+
"type": "string"
|
|
1028
|
+
},
|
|
1029
|
+
"configuration": {
|
|
1030
|
+
"type": "object",
|
|
1031
|
+
"propertyNames": {
|
|
1032
|
+
"type": "string"
|
|
1033
|
+
},
|
|
1034
|
+
"additionalProperties": {}
|
|
1035
|
+
},
|
|
1036
|
+
"apiKeyEnvironmentVariable": {
|
|
1037
|
+
"type": "string"
|
|
1038
|
+
}
|
|
1039
|
+
},
|
|
1040
|
+
"additionalProperties": {}
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
]
|
|
1045
|
+
},
|
|
1046
|
+
"yolo": {
|
|
1047
|
+
"type": "boolean"
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
]
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
]
|
|
697
1055
|
},
|
|
698
1056
|
"customTools": {
|
|
699
1057
|
"anyOf": [
|
|
@@ -762,96 +1120,6 @@
|
|
|
762
1120
|
"type": "string"
|
|
763
1121
|
}
|
|
764
1122
|
},
|
|
765
|
-
"devTools": {
|
|
766
|
-
"type": "object",
|
|
767
|
-
"properties": {
|
|
768
|
-
"run_tests": {
|
|
769
|
-
"type": "string"
|
|
770
|
-
},
|
|
771
|
-
"run_lint": {
|
|
772
|
-
"type": "string"
|
|
773
|
-
},
|
|
774
|
-
"run_build": {
|
|
775
|
-
"type": "string"
|
|
776
|
-
},
|
|
777
|
-
"run_single_test": {
|
|
778
|
-
"type": "string"
|
|
779
|
-
},
|
|
780
|
-
"shell": {
|
|
781
|
-
"anyOf": [
|
|
782
|
-
{
|
|
783
|
-
"type": "boolean"
|
|
784
|
-
},
|
|
785
|
-
{
|
|
786
|
-
"type": "object",
|
|
787
|
-
"properties": {
|
|
788
|
-
"enabled": {
|
|
789
|
-
"type": "boolean"
|
|
790
|
-
},
|
|
791
|
-
"timeout": {
|
|
792
|
-
"type": "number"
|
|
793
|
-
},
|
|
794
|
-
"maxOutputBytes": {
|
|
795
|
-
"type": "number"
|
|
796
|
-
},
|
|
797
|
-
"allowlist": {
|
|
798
|
-
"type": "boolean"
|
|
799
|
-
},
|
|
800
|
-
"persistAllowlist": {
|
|
801
|
-
"type": "boolean"
|
|
802
|
-
},
|
|
803
|
-
"judge": {
|
|
804
|
-
"anyOf": [
|
|
805
|
-
{
|
|
806
|
-
"type": "boolean"
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"type": "object",
|
|
810
|
-
"properties": {
|
|
811
|
-
"enabled": {
|
|
812
|
-
"type": "boolean"
|
|
813
|
-
},
|
|
814
|
-
"autoApproveLow": {
|
|
815
|
-
"type": "boolean"
|
|
816
|
-
},
|
|
817
|
-
"blockHigh": {
|
|
818
|
-
"type": "boolean"
|
|
819
|
-
},
|
|
820
|
-
"model": {
|
|
821
|
-
"type": "object",
|
|
822
|
-
"properties": {
|
|
823
|
-
"type": {
|
|
824
|
-
"type": "string"
|
|
825
|
-
},
|
|
826
|
-
"model": {
|
|
827
|
-
"type": "string"
|
|
828
|
-
},
|
|
829
|
-
"configuration": {
|
|
830
|
-
"type": "object",
|
|
831
|
-
"propertyNames": {
|
|
832
|
-
"type": "string"
|
|
833
|
-
},
|
|
834
|
-
"additionalProperties": {}
|
|
835
|
-
},
|
|
836
|
-
"apiKeyEnvironmentVariable": {
|
|
837
|
-
"type": "string"
|
|
838
|
-
}
|
|
839
|
-
},
|
|
840
|
-
"additionalProperties": {}
|
|
841
|
-
}
|
|
842
|
-
}
|
|
843
|
-
}
|
|
844
|
-
]
|
|
845
|
-
}
|
|
846
|
-
}
|
|
847
|
-
}
|
|
848
|
-
]
|
|
849
|
-
},
|
|
850
|
-
"shellYolo": {
|
|
851
|
-
"type": "boolean"
|
|
852
|
-
}
|
|
853
|
-
}
|
|
854
|
-
},
|
|
855
1123
|
"binaryFormats": {
|
|
856
1124
|
"anyOf": [
|
|
857
1125
|
{
|
|
@@ -924,10 +1192,96 @@
|
|
|
924
1192
|
]
|
|
925
1193
|
},
|
|
926
1194
|
"builtInTools": {
|
|
927
|
-
"
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
1195
|
+
"anyOf": [
|
|
1196
|
+
{
|
|
1197
|
+
"type": "array",
|
|
1198
|
+
"items": {
|
|
1199
|
+
"type": "string"
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"type": "object",
|
|
1204
|
+
"propertyNames": {
|
|
1205
|
+
"type": "string"
|
|
1206
|
+
},
|
|
1207
|
+
"additionalProperties": {
|
|
1208
|
+
"anyOf": [
|
|
1209
|
+
{
|
|
1210
|
+
"type": "boolean"
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"type": "object",
|
|
1214
|
+
"properties": {
|
|
1215
|
+
"enabled": {
|
|
1216
|
+
"type": "boolean"
|
|
1217
|
+
},
|
|
1218
|
+
"command": {
|
|
1219
|
+
"type": "string"
|
|
1220
|
+
},
|
|
1221
|
+
"timeout": {
|
|
1222
|
+
"type": "number"
|
|
1223
|
+
},
|
|
1224
|
+
"maxOutputBytes": {
|
|
1225
|
+
"type": "number"
|
|
1226
|
+
},
|
|
1227
|
+
"allowlist": {
|
|
1228
|
+
"type": "boolean"
|
|
1229
|
+
},
|
|
1230
|
+
"persistAllowlist": {
|
|
1231
|
+
"type": "boolean"
|
|
1232
|
+
},
|
|
1233
|
+
"judge": {
|
|
1234
|
+
"anyOf": [
|
|
1235
|
+
{
|
|
1236
|
+
"type": "boolean"
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"type": "object",
|
|
1240
|
+
"properties": {
|
|
1241
|
+
"enabled": {
|
|
1242
|
+
"type": "boolean"
|
|
1243
|
+
},
|
|
1244
|
+
"autoApproveLow": {
|
|
1245
|
+
"type": "boolean"
|
|
1246
|
+
},
|
|
1247
|
+
"blockHigh": {
|
|
1248
|
+
"type": "boolean"
|
|
1249
|
+
},
|
|
1250
|
+
"model": {
|
|
1251
|
+
"type": "object",
|
|
1252
|
+
"properties": {
|
|
1253
|
+
"type": {
|
|
1254
|
+
"type": "string"
|
|
1255
|
+
},
|
|
1256
|
+
"model": {
|
|
1257
|
+
"type": "string"
|
|
1258
|
+
},
|
|
1259
|
+
"configuration": {
|
|
1260
|
+
"type": "object",
|
|
1261
|
+
"propertyNames": {
|
|
1262
|
+
"type": "string"
|
|
1263
|
+
},
|
|
1264
|
+
"additionalProperties": {}
|
|
1265
|
+
},
|
|
1266
|
+
"apiKeyEnvironmentVariable": {
|
|
1267
|
+
"type": "string"
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"additionalProperties": {}
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
]
|
|
1275
|
+
},
|
|
1276
|
+
"yolo": {
|
|
1277
|
+
"type": "boolean"
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
]
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
]
|
|
931
1285
|
},
|
|
932
1286
|
"customTools": {
|
|
933
1287
|
"anyOf": [
|
|
@@ -1068,10 +1422,96 @@
|
|
|
1068
1422
|
]
|
|
1069
1423
|
},
|
|
1070
1424
|
"builtInTools": {
|
|
1071
|
-
"
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1425
|
+
"anyOf": [
|
|
1426
|
+
{
|
|
1427
|
+
"type": "array",
|
|
1428
|
+
"items": {
|
|
1429
|
+
"type": "string"
|
|
1430
|
+
}
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"type": "object",
|
|
1434
|
+
"propertyNames": {
|
|
1435
|
+
"type": "string"
|
|
1436
|
+
},
|
|
1437
|
+
"additionalProperties": {
|
|
1438
|
+
"anyOf": [
|
|
1439
|
+
{
|
|
1440
|
+
"type": "boolean"
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"type": "object",
|
|
1444
|
+
"properties": {
|
|
1445
|
+
"enabled": {
|
|
1446
|
+
"type": "boolean"
|
|
1447
|
+
},
|
|
1448
|
+
"command": {
|
|
1449
|
+
"type": "string"
|
|
1450
|
+
},
|
|
1451
|
+
"timeout": {
|
|
1452
|
+
"type": "number"
|
|
1453
|
+
},
|
|
1454
|
+
"maxOutputBytes": {
|
|
1455
|
+
"type": "number"
|
|
1456
|
+
},
|
|
1457
|
+
"allowlist": {
|
|
1458
|
+
"type": "boolean"
|
|
1459
|
+
},
|
|
1460
|
+
"persistAllowlist": {
|
|
1461
|
+
"type": "boolean"
|
|
1462
|
+
},
|
|
1463
|
+
"judge": {
|
|
1464
|
+
"anyOf": [
|
|
1465
|
+
{
|
|
1466
|
+
"type": "boolean"
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
"type": "object",
|
|
1470
|
+
"properties": {
|
|
1471
|
+
"enabled": {
|
|
1472
|
+
"type": "boolean"
|
|
1473
|
+
},
|
|
1474
|
+
"autoApproveLow": {
|
|
1475
|
+
"type": "boolean"
|
|
1476
|
+
},
|
|
1477
|
+
"blockHigh": {
|
|
1478
|
+
"type": "boolean"
|
|
1479
|
+
},
|
|
1480
|
+
"model": {
|
|
1481
|
+
"type": "object",
|
|
1482
|
+
"properties": {
|
|
1483
|
+
"type": {
|
|
1484
|
+
"type": "string"
|
|
1485
|
+
},
|
|
1486
|
+
"model": {
|
|
1487
|
+
"type": "string"
|
|
1488
|
+
},
|
|
1489
|
+
"configuration": {
|
|
1490
|
+
"type": "object",
|
|
1491
|
+
"propertyNames": {
|
|
1492
|
+
"type": "string"
|
|
1493
|
+
},
|
|
1494
|
+
"additionalProperties": {}
|
|
1495
|
+
},
|
|
1496
|
+
"apiKeyEnvironmentVariable": {
|
|
1497
|
+
"type": "string"
|
|
1498
|
+
}
|
|
1499
|
+
},
|
|
1500
|
+
"additionalProperties": {}
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
]
|
|
1505
|
+
},
|
|
1506
|
+
"yolo": {
|
|
1507
|
+
"type": "boolean"
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1510
|
+
}
|
|
1511
|
+
]
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
]
|
|
1075
1515
|
},
|
|
1076
1516
|
"customTools": {
|
|
1077
1517
|
"anyOf": [
|
|
@@ -1140,96 +1580,6 @@
|
|
|
1140
1580
|
"type": "string"
|
|
1141
1581
|
}
|
|
1142
1582
|
},
|
|
1143
|
-
"devTools": {
|
|
1144
|
-
"type": "object",
|
|
1145
|
-
"properties": {
|
|
1146
|
-
"run_tests": {
|
|
1147
|
-
"type": "string"
|
|
1148
|
-
},
|
|
1149
|
-
"run_lint": {
|
|
1150
|
-
"type": "string"
|
|
1151
|
-
},
|
|
1152
|
-
"run_build": {
|
|
1153
|
-
"type": "string"
|
|
1154
|
-
},
|
|
1155
|
-
"run_single_test": {
|
|
1156
|
-
"type": "string"
|
|
1157
|
-
},
|
|
1158
|
-
"shell": {
|
|
1159
|
-
"anyOf": [
|
|
1160
|
-
{
|
|
1161
|
-
"type": "boolean"
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
"type": "object",
|
|
1165
|
-
"properties": {
|
|
1166
|
-
"enabled": {
|
|
1167
|
-
"type": "boolean"
|
|
1168
|
-
},
|
|
1169
|
-
"timeout": {
|
|
1170
|
-
"type": "number"
|
|
1171
|
-
},
|
|
1172
|
-
"maxOutputBytes": {
|
|
1173
|
-
"type": "number"
|
|
1174
|
-
},
|
|
1175
|
-
"allowlist": {
|
|
1176
|
-
"type": "boolean"
|
|
1177
|
-
},
|
|
1178
|
-
"persistAllowlist": {
|
|
1179
|
-
"type": "boolean"
|
|
1180
|
-
},
|
|
1181
|
-
"judge": {
|
|
1182
|
-
"anyOf": [
|
|
1183
|
-
{
|
|
1184
|
-
"type": "boolean"
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
"type": "object",
|
|
1188
|
-
"properties": {
|
|
1189
|
-
"enabled": {
|
|
1190
|
-
"type": "boolean"
|
|
1191
|
-
},
|
|
1192
|
-
"autoApproveLow": {
|
|
1193
|
-
"type": "boolean"
|
|
1194
|
-
},
|
|
1195
|
-
"blockHigh": {
|
|
1196
|
-
"type": "boolean"
|
|
1197
|
-
},
|
|
1198
|
-
"model": {
|
|
1199
|
-
"type": "object",
|
|
1200
|
-
"properties": {
|
|
1201
|
-
"type": {
|
|
1202
|
-
"type": "string"
|
|
1203
|
-
},
|
|
1204
|
-
"model": {
|
|
1205
|
-
"type": "string"
|
|
1206
|
-
},
|
|
1207
|
-
"configuration": {
|
|
1208
|
-
"type": "object",
|
|
1209
|
-
"propertyNames": {
|
|
1210
|
-
"type": "string"
|
|
1211
|
-
},
|
|
1212
|
-
"additionalProperties": {}
|
|
1213
|
-
},
|
|
1214
|
-
"apiKeyEnvironmentVariable": {
|
|
1215
|
-
"type": "string"
|
|
1216
|
-
}
|
|
1217
|
-
},
|
|
1218
|
-
"additionalProperties": {}
|
|
1219
|
-
}
|
|
1220
|
-
}
|
|
1221
|
-
}
|
|
1222
|
-
]
|
|
1223
|
-
}
|
|
1224
|
-
}
|
|
1225
|
-
}
|
|
1226
|
-
]
|
|
1227
|
-
},
|
|
1228
|
-
"shellYolo": {
|
|
1229
|
-
"type": "boolean"
|
|
1230
|
-
}
|
|
1231
|
-
}
|
|
1232
|
-
},
|
|
1233
1583
|
"binaryFormats": {
|
|
1234
1584
|
"anyOf": [
|
|
1235
1585
|
{
|
|
@@ -1302,10 +1652,96 @@
|
|
|
1302
1652
|
]
|
|
1303
1653
|
},
|
|
1304
1654
|
"builtInTools": {
|
|
1305
|
-
"
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1655
|
+
"anyOf": [
|
|
1656
|
+
{
|
|
1657
|
+
"type": "array",
|
|
1658
|
+
"items": {
|
|
1659
|
+
"type": "string"
|
|
1660
|
+
}
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
"type": "object",
|
|
1664
|
+
"propertyNames": {
|
|
1665
|
+
"type": "string"
|
|
1666
|
+
},
|
|
1667
|
+
"additionalProperties": {
|
|
1668
|
+
"anyOf": [
|
|
1669
|
+
{
|
|
1670
|
+
"type": "boolean"
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"type": "object",
|
|
1674
|
+
"properties": {
|
|
1675
|
+
"enabled": {
|
|
1676
|
+
"type": "boolean"
|
|
1677
|
+
},
|
|
1678
|
+
"command": {
|
|
1679
|
+
"type": "string"
|
|
1680
|
+
},
|
|
1681
|
+
"timeout": {
|
|
1682
|
+
"type": "number"
|
|
1683
|
+
},
|
|
1684
|
+
"maxOutputBytes": {
|
|
1685
|
+
"type": "number"
|
|
1686
|
+
},
|
|
1687
|
+
"allowlist": {
|
|
1688
|
+
"type": "boolean"
|
|
1689
|
+
},
|
|
1690
|
+
"persistAllowlist": {
|
|
1691
|
+
"type": "boolean"
|
|
1692
|
+
},
|
|
1693
|
+
"judge": {
|
|
1694
|
+
"anyOf": [
|
|
1695
|
+
{
|
|
1696
|
+
"type": "boolean"
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"type": "object",
|
|
1700
|
+
"properties": {
|
|
1701
|
+
"enabled": {
|
|
1702
|
+
"type": "boolean"
|
|
1703
|
+
},
|
|
1704
|
+
"autoApproveLow": {
|
|
1705
|
+
"type": "boolean"
|
|
1706
|
+
},
|
|
1707
|
+
"blockHigh": {
|
|
1708
|
+
"type": "boolean"
|
|
1709
|
+
},
|
|
1710
|
+
"model": {
|
|
1711
|
+
"type": "object",
|
|
1712
|
+
"properties": {
|
|
1713
|
+
"type": {
|
|
1714
|
+
"type": "string"
|
|
1715
|
+
},
|
|
1716
|
+
"model": {
|
|
1717
|
+
"type": "string"
|
|
1718
|
+
},
|
|
1719
|
+
"configuration": {
|
|
1720
|
+
"type": "object",
|
|
1721
|
+
"propertyNames": {
|
|
1722
|
+
"type": "string"
|
|
1723
|
+
},
|
|
1724
|
+
"additionalProperties": {}
|
|
1725
|
+
},
|
|
1726
|
+
"apiKeyEnvironmentVariable": {
|
|
1727
|
+
"type": "string"
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"additionalProperties": {}
|
|
1731
|
+
}
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
]
|
|
1735
|
+
},
|
|
1736
|
+
"yolo": {
|
|
1737
|
+
"type": "boolean"
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
}
|
|
1741
|
+
]
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
]
|
|
1309
1745
|
},
|
|
1310
1746
|
"customTools": {
|
|
1311
1747
|
"anyOf": [
|
|
@@ -1374,96 +1810,6 @@
|
|
|
1374
1810
|
"type": "string"
|
|
1375
1811
|
}
|
|
1376
1812
|
},
|
|
1377
|
-
"devTools": {
|
|
1378
|
-
"type": "object",
|
|
1379
|
-
"properties": {
|
|
1380
|
-
"run_tests": {
|
|
1381
|
-
"type": "string"
|
|
1382
|
-
},
|
|
1383
|
-
"run_lint": {
|
|
1384
|
-
"type": "string"
|
|
1385
|
-
},
|
|
1386
|
-
"run_build": {
|
|
1387
|
-
"type": "string"
|
|
1388
|
-
},
|
|
1389
|
-
"run_single_test": {
|
|
1390
|
-
"type": "string"
|
|
1391
|
-
},
|
|
1392
|
-
"shell": {
|
|
1393
|
-
"anyOf": [
|
|
1394
|
-
{
|
|
1395
|
-
"type": "boolean"
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"type": "object",
|
|
1399
|
-
"properties": {
|
|
1400
|
-
"enabled": {
|
|
1401
|
-
"type": "boolean"
|
|
1402
|
-
},
|
|
1403
|
-
"timeout": {
|
|
1404
|
-
"type": "number"
|
|
1405
|
-
},
|
|
1406
|
-
"maxOutputBytes": {
|
|
1407
|
-
"type": "number"
|
|
1408
|
-
},
|
|
1409
|
-
"allowlist": {
|
|
1410
|
-
"type": "boolean"
|
|
1411
|
-
},
|
|
1412
|
-
"persistAllowlist": {
|
|
1413
|
-
"type": "boolean"
|
|
1414
|
-
},
|
|
1415
|
-
"judge": {
|
|
1416
|
-
"anyOf": [
|
|
1417
|
-
{
|
|
1418
|
-
"type": "boolean"
|
|
1419
|
-
},
|
|
1420
|
-
{
|
|
1421
|
-
"type": "object",
|
|
1422
|
-
"properties": {
|
|
1423
|
-
"enabled": {
|
|
1424
|
-
"type": "boolean"
|
|
1425
|
-
},
|
|
1426
|
-
"autoApproveLow": {
|
|
1427
|
-
"type": "boolean"
|
|
1428
|
-
},
|
|
1429
|
-
"blockHigh": {
|
|
1430
|
-
"type": "boolean"
|
|
1431
|
-
},
|
|
1432
|
-
"model": {
|
|
1433
|
-
"type": "object",
|
|
1434
|
-
"properties": {
|
|
1435
|
-
"type": {
|
|
1436
|
-
"type": "string"
|
|
1437
|
-
},
|
|
1438
|
-
"model": {
|
|
1439
|
-
"type": "string"
|
|
1440
|
-
},
|
|
1441
|
-
"configuration": {
|
|
1442
|
-
"type": "object",
|
|
1443
|
-
"propertyNames": {
|
|
1444
|
-
"type": "string"
|
|
1445
|
-
},
|
|
1446
|
-
"additionalProperties": {}
|
|
1447
|
-
},
|
|
1448
|
-
"apiKeyEnvironmentVariable": {
|
|
1449
|
-
"type": "string"
|
|
1450
|
-
}
|
|
1451
|
-
},
|
|
1452
|
-
"additionalProperties": {}
|
|
1453
|
-
}
|
|
1454
|
-
}
|
|
1455
|
-
}
|
|
1456
|
-
]
|
|
1457
|
-
}
|
|
1458
|
-
}
|
|
1459
|
-
}
|
|
1460
|
-
]
|
|
1461
|
-
},
|
|
1462
|
-
"shellYolo": {
|
|
1463
|
-
"type": "boolean"
|
|
1464
|
-
}
|
|
1465
|
-
}
|
|
1466
|
-
},
|
|
1467
1813
|
"binaryFormats": {
|
|
1468
1814
|
"anyOf": [
|
|
1469
1815
|
{
|
|
@@ -1536,10 +1882,96 @@
|
|
|
1536
1882
|
]
|
|
1537
1883
|
},
|
|
1538
1884
|
"builtInTools": {
|
|
1539
|
-
"
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1885
|
+
"anyOf": [
|
|
1886
|
+
{
|
|
1887
|
+
"type": "array",
|
|
1888
|
+
"items": {
|
|
1889
|
+
"type": "string"
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"type": "object",
|
|
1894
|
+
"propertyNames": {
|
|
1895
|
+
"type": "string"
|
|
1896
|
+
},
|
|
1897
|
+
"additionalProperties": {
|
|
1898
|
+
"anyOf": [
|
|
1899
|
+
{
|
|
1900
|
+
"type": "boolean"
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"type": "object",
|
|
1904
|
+
"properties": {
|
|
1905
|
+
"enabled": {
|
|
1906
|
+
"type": "boolean"
|
|
1907
|
+
},
|
|
1908
|
+
"command": {
|
|
1909
|
+
"type": "string"
|
|
1910
|
+
},
|
|
1911
|
+
"timeout": {
|
|
1912
|
+
"type": "number"
|
|
1913
|
+
},
|
|
1914
|
+
"maxOutputBytes": {
|
|
1915
|
+
"type": "number"
|
|
1916
|
+
},
|
|
1917
|
+
"allowlist": {
|
|
1918
|
+
"type": "boolean"
|
|
1919
|
+
},
|
|
1920
|
+
"persistAllowlist": {
|
|
1921
|
+
"type": "boolean"
|
|
1922
|
+
},
|
|
1923
|
+
"judge": {
|
|
1924
|
+
"anyOf": [
|
|
1925
|
+
{
|
|
1926
|
+
"type": "boolean"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"type": "object",
|
|
1930
|
+
"properties": {
|
|
1931
|
+
"enabled": {
|
|
1932
|
+
"type": "boolean"
|
|
1933
|
+
},
|
|
1934
|
+
"autoApproveLow": {
|
|
1935
|
+
"type": "boolean"
|
|
1936
|
+
},
|
|
1937
|
+
"blockHigh": {
|
|
1938
|
+
"type": "boolean"
|
|
1939
|
+
},
|
|
1940
|
+
"model": {
|
|
1941
|
+
"type": "object",
|
|
1942
|
+
"properties": {
|
|
1943
|
+
"type": {
|
|
1944
|
+
"type": "string"
|
|
1945
|
+
},
|
|
1946
|
+
"model": {
|
|
1947
|
+
"type": "string"
|
|
1948
|
+
},
|
|
1949
|
+
"configuration": {
|
|
1950
|
+
"type": "object",
|
|
1951
|
+
"propertyNames": {
|
|
1952
|
+
"type": "string"
|
|
1953
|
+
},
|
|
1954
|
+
"additionalProperties": {}
|
|
1955
|
+
},
|
|
1956
|
+
"apiKeyEnvironmentVariable": {
|
|
1957
|
+
"type": "string"
|
|
1958
|
+
}
|
|
1959
|
+
},
|
|
1960
|
+
"additionalProperties": {}
|
|
1961
|
+
}
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
]
|
|
1965
|
+
},
|
|
1966
|
+
"yolo": {
|
|
1967
|
+
"type": "boolean"
|
|
1968
|
+
}
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
]
|
|
1972
|
+
}
|
|
1973
|
+
}
|
|
1974
|
+
]
|
|
1543
1975
|
},
|
|
1544
1976
|
"port": {
|
|
1545
1977
|
"type": "number"
|