kraken-code 1.1.2 → 1.1.4

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.
@@ -0,0 +1,1865 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://raw.githubusercontent.com/leviathofnoesia/kraken-code/main/assets/kraken-code.schema.json",
4
+ "title": "Kraken-Code Configuration",
5
+ "description": "Configuration schema for kraken-code plugin",
6
+ "type": "object",
7
+ "properties": {
8
+ "$schema": {
9
+ "type": "string"
10
+ },
11
+ "disabled_hooks": {
12
+ "type": "array",
13
+ "items": {
14
+ "type": "string",
15
+ "enum": [
16
+ "ralph-loop",
17
+ "think-mode",
18
+ "context-window-monitor",
19
+ "session-recovery",
20
+ "comment-checker",
21
+ "keyword-detector",
22
+ "auto-slash-command",
23
+ "directory-agents-injector",
24
+ "directory-readme-injector",
25
+ "rules-injector",
26
+ "preemptive-compaction",
27
+ "compaction-context-injector",
28
+ "edit-error-recovery",
29
+ "empty-message-sanitizer",
30
+ "thinking-block-validator",
31
+ "tool-output-truncator",
32
+ "grep-output-truncator",
33
+ "empty-task-response-detector",
34
+ "blitzkrieg-test-plan-enforcer",
35
+ "blitzkrieg-tdd-workflow",
36
+ "blitzkrieg-evidence-verifier",
37
+ "blitzkrieg-planner-constraints"
38
+ ]
39
+ }
40
+ },
41
+ "disabled_commands": {
42
+ "type": "array",
43
+ "items": {
44
+ "type": "string",
45
+ "enum": [
46
+ "init-deep"
47
+ ]
48
+ }
49
+ },
50
+ "agents": {
51
+ "type": "object",
52
+ "properties": {
53
+ "Kraken": {
54
+ "type": "object",
55
+ "properties": {
56
+ "model": {
57
+ "type": "string"
58
+ },
59
+ "temperature": {
60
+ "type": "number"
61
+ },
62
+ "top_p": {
63
+ "type": "number"
64
+ },
65
+ "prompt": {
66
+ "type": "string"
67
+ },
68
+ "prompt_append": {
69
+ "type": "string"
70
+ },
71
+ "tools": {
72
+ "type": "object",
73
+ "propertyNames": {
74
+ "type": "string"
75
+ },
76
+ "additionalProperties": {
77
+ "type": "boolean"
78
+ }
79
+ },
80
+ "disable": {
81
+ "type": "boolean"
82
+ },
83
+ "description": {
84
+ "type": "string"
85
+ },
86
+ "mode": {
87
+ "type": "string",
88
+ "enum": [
89
+ "subagent",
90
+ "primary",
91
+ "all"
92
+ ]
93
+ },
94
+ "color": {
95
+ "type": "string"
96
+ },
97
+ "permission": {
98
+ "type": "object",
99
+ "properties": {
100
+ "edit": {
101
+ "default": "ask",
102
+ "type": "string",
103
+ "enum": [
104
+ "allow",
105
+ "ask",
106
+ "deny"
107
+ ]
108
+ },
109
+ "bash": {
110
+ "default": "ask",
111
+ "anyOf": [
112
+ {
113
+ "type": "string",
114
+ "enum": [
115
+ "allow",
116
+ "ask",
117
+ "deny"
118
+ ]
119
+ },
120
+ {
121
+ "type": "object",
122
+ "propertyNames": {
123
+ "type": "string"
124
+ },
125
+ "additionalProperties": {
126
+ "type": "string",
127
+ "enum": [
128
+ "allow",
129
+ "ask",
130
+ "deny"
131
+ ]
132
+ }
133
+ }
134
+ ]
135
+ },
136
+ "webfetch": {
137
+ "default": "ask",
138
+ "type": "string",
139
+ "enum": [
140
+ "allow",
141
+ "ask",
142
+ "deny"
143
+ ]
144
+ },
145
+ "doom_loop": {
146
+ "default": "ask",
147
+ "type": "string",
148
+ "enum": [
149
+ "allow",
150
+ "ask",
151
+ "deny"
152
+ ]
153
+ },
154
+ "external_directory": {
155
+ "default": "ask",
156
+ "type": "string",
157
+ "enum": [
158
+ "allow",
159
+ "ask",
160
+ "deny"
161
+ ]
162
+ }
163
+ }
164
+ }
165
+ }
166
+ },
167
+ "Maelstrom": {
168
+ "type": "object",
169
+ "properties": {
170
+ "model": {
171
+ "type": "string"
172
+ },
173
+ "temperature": {
174
+ "type": "number"
175
+ },
176
+ "top_p": {
177
+ "type": "number"
178
+ },
179
+ "prompt": {
180
+ "type": "string"
181
+ },
182
+ "prompt_append": {
183
+ "type": "string"
184
+ },
185
+ "tools": {
186
+ "type": "object",
187
+ "propertyNames": {
188
+ "type": "string"
189
+ },
190
+ "additionalProperties": {
191
+ "type": "boolean"
192
+ }
193
+ },
194
+ "disable": {
195
+ "type": "boolean"
196
+ },
197
+ "description": {
198
+ "type": "string"
199
+ },
200
+ "mode": {
201
+ "type": "string",
202
+ "enum": [
203
+ "subagent",
204
+ "primary",
205
+ "all"
206
+ ]
207
+ },
208
+ "color": {
209
+ "type": "string"
210
+ },
211
+ "permission": {
212
+ "type": "object",
213
+ "properties": {
214
+ "edit": {
215
+ "default": "ask",
216
+ "type": "string",
217
+ "enum": [
218
+ "allow",
219
+ "ask",
220
+ "deny"
221
+ ]
222
+ },
223
+ "bash": {
224
+ "default": "ask",
225
+ "anyOf": [
226
+ {
227
+ "type": "string",
228
+ "enum": [
229
+ "allow",
230
+ "ask",
231
+ "deny"
232
+ ]
233
+ },
234
+ {
235
+ "type": "object",
236
+ "propertyNames": {
237
+ "type": "string"
238
+ },
239
+ "additionalProperties": {
240
+ "type": "string",
241
+ "enum": [
242
+ "allow",
243
+ "ask",
244
+ "deny"
245
+ ]
246
+ }
247
+ }
248
+ ]
249
+ },
250
+ "webfetch": {
251
+ "default": "ask",
252
+ "type": "string",
253
+ "enum": [
254
+ "allow",
255
+ "ask",
256
+ "deny"
257
+ ]
258
+ },
259
+ "doom_loop": {
260
+ "default": "ask",
261
+ "type": "string",
262
+ "enum": [
263
+ "allow",
264
+ "ask",
265
+ "deny"
266
+ ]
267
+ },
268
+ "external_directory": {
269
+ "default": "ask",
270
+ "type": "string",
271
+ "enum": [
272
+ "allow",
273
+ "ask",
274
+ "deny"
275
+ ]
276
+ }
277
+ }
278
+ }
279
+ }
280
+ },
281
+ "Nautilus": {
282
+ "type": "object",
283
+ "properties": {
284
+ "model": {
285
+ "type": "string"
286
+ },
287
+ "temperature": {
288
+ "type": "number"
289
+ },
290
+ "top_p": {
291
+ "type": "number"
292
+ },
293
+ "prompt": {
294
+ "type": "string"
295
+ },
296
+ "prompt_append": {
297
+ "type": "string"
298
+ },
299
+ "tools": {
300
+ "type": "object",
301
+ "propertyNames": {
302
+ "type": "string"
303
+ },
304
+ "additionalProperties": {
305
+ "type": "boolean"
306
+ }
307
+ },
308
+ "disable": {
309
+ "type": "boolean"
310
+ },
311
+ "description": {
312
+ "type": "string"
313
+ },
314
+ "mode": {
315
+ "type": "string",
316
+ "enum": [
317
+ "subagent",
318
+ "primary",
319
+ "all"
320
+ ]
321
+ },
322
+ "color": {
323
+ "type": "string"
324
+ },
325
+ "permission": {
326
+ "type": "object",
327
+ "properties": {
328
+ "edit": {
329
+ "default": "ask",
330
+ "type": "string",
331
+ "enum": [
332
+ "allow",
333
+ "ask",
334
+ "deny"
335
+ ]
336
+ },
337
+ "bash": {
338
+ "default": "ask",
339
+ "anyOf": [
340
+ {
341
+ "type": "string",
342
+ "enum": [
343
+ "allow",
344
+ "ask",
345
+ "deny"
346
+ ]
347
+ },
348
+ {
349
+ "type": "object",
350
+ "propertyNames": {
351
+ "type": "string"
352
+ },
353
+ "additionalProperties": {
354
+ "type": "string",
355
+ "enum": [
356
+ "allow",
357
+ "ask",
358
+ "deny"
359
+ ]
360
+ }
361
+ }
362
+ ]
363
+ },
364
+ "webfetch": {
365
+ "default": "ask",
366
+ "type": "string",
367
+ "enum": [
368
+ "allow",
369
+ "ask",
370
+ "deny"
371
+ ]
372
+ },
373
+ "doom_loop": {
374
+ "default": "ask",
375
+ "type": "string",
376
+ "enum": [
377
+ "allow",
378
+ "ask",
379
+ "deny"
380
+ ]
381
+ },
382
+ "external_directory": {
383
+ "default": "ask",
384
+ "type": "string",
385
+ "enum": [
386
+ "allow",
387
+ "ask",
388
+ "deny"
389
+ ]
390
+ }
391
+ }
392
+ }
393
+ }
394
+ },
395
+ "Abyssal": {
396
+ "type": "object",
397
+ "properties": {
398
+ "model": {
399
+ "type": "string"
400
+ },
401
+ "temperature": {
402
+ "type": "number"
403
+ },
404
+ "top_p": {
405
+ "type": "number"
406
+ },
407
+ "prompt": {
408
+ "type": "string"
409
+ },
410
+ "prompt_append": {
411
+ "type": "string"
412
+ },
413
+ "tools": {
414
+ "type": "object",
415
+ "propertyNames": {
416
+ "type": "string"
417
+ },
418
+ "additionalProperties": {
419
+ "type": "boolean"
420
+ }
421
+ },
422
+ "disable": {
423
+ "type": "boolean"
424
+ },
425
+ "description": {
426
+ "type": "string"
427
+ },
428
+ "mode": {
429
+ "type": "string",
430
+ "enum": [
431
+ "subagent",
432
+ "primary",
433
+ "all"
434
+ ]
435
+ },
436
+ "color": {
437
+ "type": "string"
438
+ },
439
+ "permission": {
440
+ "type": "object",
441
+ "properties": {
442
+ "edit": {
443
+ "default": "ask",
444
+ "type": "string",
445
+ "enum": [
446
+ "allow",
447
+ "ask",
448
+ "deny"
449
+ ]
450
+ },
451
+ "bash": {
452
+ "default": "ask",
453
+ "anyOf": [
454
+ {
455
+ "type": "string",
456
+ "enum": [
457
+ "allow",
458
+ "ask",
459
+ "deny"
460
+ ]
461
+ },
462
+ {
463
+ "type": "object",
464
+ "propertyNames": {
465
+ "type": "string"
466
+ },
467
+ "additionalProperties": {
468
+ "type": "string",
469
+ "enum": [
470
+ "allow",
471
+ "ask",
472
+ "deny"
473
+ ]
474
+ }
475
+ }
476
+ ]
477
+ },
478
+ "webfetch": {
479
+ "default": "ask",
480
+ "type": "string",
481
+ "enum": [
482
+ "allow",
483
+ "ask",
484
+ "deny"
485
+ ]
486
+ },
487
+ "doom_loop": {
488
+ "default": "ask",
489
+ "type": "string",
490
+ "enum": [
491
+ "allow",
492
+ "ask",
493
+ "deny"
494
+ ]
495
+ },
496
+ "external_directory": {
497
+ "default": "ask",
498
+ "type": "string",
499
+ "enum": [
500
+ "allow",
501
+ "ask",
502
+ "deny"
503
+ ]
504
+ }
505
+ }
506
+ }
507
+ }
508
+ },
509
+ "Coral": {
510
+ "type": "object",
511
+ "properties": {
512
+ "model": {
513
+ "type": "string"
514
+ },
515
+ "temperature": {
516
+ "type": "number"
517
+ },
518
+ "top_p": {
519
+ "type": "number"
520
+ },
521
+ "prompt": {
522
+ "type": "string"
523
+ },
524
+ "prompt_append": {
525
+ "type": "string"
526
+ },
527
+ "tools": {
528
+ "type": "object",
529
+ "propertyNames": {
530
+ "type": "string"
531
+ },
532
+ "additionalProperties": {
533
+ "type": "boolean"
534
+ }
535
+ },
536
+ "disable": {
537
+ "type": "boolean"
538
+ },
539
+ "description": {
540
+ "type": "string"
541
+ },
542
+ "mode": {
543
+ "type": "string",
544
+ "enum": [
545
+ "subagent",
546
+ "primary",
547
+ "all"
548
+ ]
549
+ },
550
+ "color": {
551
+ "type": "string"
552
+ },
553
+ "permission": {
554
+ "type": "object",
555
+ "properties": {
556
+ "edit": {
557
+ "default": "ask",
558
+ "type": "string",
559
+ "enum": [
560
+ "allow",
561
+ "ask",
562
+ "deny"
563
+ ]
564
+ },
565
+ "bash": {
566
+ "default": "ask",
567
+ "anyOf": [
568
+ {
569
+ "type": "string",
570
+ "enum": [
571
+ "allow",
572
+ "ask",
573
+ "deny"
574
+ ]
575
+ },
576
+ {
577
+ "type": "object",
578
+ "propertyNames": {
579
+ "type": "string"
580
+ },
581
+ "additionalProperties": {
582
+ "type": "string",
583
+ "enum": [
584
+ "allow",
585
+ "ask",
586
+ "deny"
587
+ ]
588
+ }
589
+ }
590
+ ]
591
+ },
592
+ "webfetch": {
593
+ "default": "ask",
594
+ "type": "string",
595
+ "enum": [
596
+ "allow",
597
+ "ask",
598
+ "deny"
599
+ ]
600
+ },
601
+ "doom_loop": {
602
+ "default": "ask",
603
+ "type": "string",
604
+ "enum": [
605
+ "allow",
606
+ "ask",
607
+ "deny"
608
+ ]
609
+ },
610
+ "external_directory": {
611
+ "default": "ask",
612
+ "type": "string",
613
+ "enum": [
614
+ "allow",
615
+ "ask",
616
+ "deny"
617
+ ]
618
+ }
619
+ }
620
+ }
621
+ }
622
+ },
623
+ "Siren": {
624
+ "type": "object",
625
+ "properties": {
626
+ "model": {
627
+ "type": "string"
628
+ },
629
+ "temperature": {
630
+ "type": "number"
631
+ },
632
+ "top_p": {
633
+ "type": "number"
634
+ },
635
+ "prompt": {
636
+ "type": "string"
637
+ },
638
+ "prompt_append": {
639
+ "type": "string"
640
+ },
641
+ "tools": {
642
+ "type": "object",
643
+ "propertyNames": {
644
+ "type": "string"
645
+ },
646
+ "additionalProperties": {
647
+ "type": "boolean"
648
+ }
649
+ },
650
+ "disable": {
651
+ "type": "boolean"
652
+ },
653
+ "description": {
654
+ "type": "string"
655
+ },
656
+ "mode": {
657
+ "type": "string",
658
+ "enum": [
659
+ "subagent",
660
+ "primary",
661
+ "all"
662
+ ]
663
+ },
664
+ "color": {
665
+ "type": "string"
666
+ },
667
+ "permission": {
668
+ "type": "object",
669
+ "properties": {
670
+ "edit": {
671
+ "default": "ask",
672
+ "type": "string",
673
+ "enum": [
674
+ "allow",
675
+ "ask",
676
+ "deny"
677
+ ]
678
+ },
679
+ "bash": {
680
+ "default": "ask",
681
+ "anyOf": [
682
+ {
683
+ "type": "string",
684
+ "enum": [
685
+ "allow",
686
+ "ask",
687
+ "deny"
688
+ ]
689
+ },
690
+ {
691
+ "type": "object",
692
+ "propertyNames": {
693
+ "type": "string"
694
+ },
695
+ "additionalProperties": {
696
+ "type": "string",
697
+ "enum": [
698
+ "allow",
699
+ "ask",
700
+ "deny"
701
+ ]
702
+ }
703
+ }
704
+ ]
705
+ },
706
+ "webfetch": {
707
+ "default": "ask",
708
+ "type": "string",
709
+ "enum": [
710
+ "allow",
711
+ "ask",
712
+ "deny"
713
+ ]
714
+ },
715
+ "doom_loop": {
716
+ "default": "ask",
717
+ "type": "string",
718
+ "enum": [
719
+ "allow",
720
+ "ask",
721
+ "deny"
722
+ ]
723
+ },
724
+ "external_directory": {
725
+ "default": "ask",
726
+ "type": "string",
727
+ "enum": [
728
+ "allow",
729
+ "ask",
730
+ "deny"
731
+ ]
732
+ }
733
+ }
734
+ }
735
+ }
736
+ },
737
+ "Leviathan": {
738
+ "type": "object",
739
+ "properties": {
740
+ "model": {
741
+ "type": "string"
742
+ },
743
+ "temperature": {
744
+ "type": "number"
745
+ },
746
+ "top_p": {
747
+ "type": "number"
748
+ },
749
+ "prompt": {
750
+ "type": "string"
751
+ },
752
+ "prompt_append": {
753
+ "type": "string"
754
+ },
755
+ "tools": {
756
+ "type": "object",
757
+ "propertyNames": {
758
+ "type": "string"
759
+ },
760
+ "additionalProperties": {
761
+ "type": "boolean"
762
+ }
763
+ },
764
+ "disable": {
765
+ "type": "boolean"
766
+ },
767
+ "description": {
768
+ "type": "string"
769
+ },
770
+ "mode": {
771
+ "type": "string",
772
+ "enum": [
773
+ "subagent",
774
+ "primary",
775
+ "all"
776
+ ]
777
+ },
778
+ "color": {
779
+ "type": "string"
780
+ },
781
+ "permission": {
782
+ "type": "object",
783
+ "properties": {
784
+ "edit": {
785
+ "default": "ask",
786
+ "type": "string",
787
+ "enum": [
788
+ "allow",
789
+ "ask",
790
+ "deny"
791
+ ]
792
+ },
793
+ "bash": {
794
+ "default": "ask",
795
+ "anyOf": [
796
+ {
797
+ "type": "string",
798
+ "enum": [
799
+ "allow",
800
+ "ask",
801
+ "deny"
802
+ ]
803
+ },
804
+ {
805
+ "type": "object",
806
+ "propertyNames": {
807
+ "type": "string"
808
+ },
809
+ "additionalProperties": {
810
+ "type": "string",
811
+ "enum": [
812
+ "allow",
813
+ "ask",
814
+ "deny"
815
+ ]
816
+ }
817
+ }
818
+ ]
819
+ },
820
+ "webfetch": {
821
+ "default": "ask",
822
+ "type": "string",
823
+ "enum": [
824
+ "allow",
825
+ "ask",
826
+ "deny"
827
+ ]
828
+ },
829
+ "doom_loop": {
830
+ "default": "ask",
831
+ "type": "string",
832
+ "enum": [
833
+ "allow",
834
+ "ask",
835
+ "deny"
836
+ ]
837
+ },
838
+ "external_directory": {
839
+ "default": "ask",
840
+ "type": "string",
841
+ "enum": [
842
+ "allow",
843
+ "ask",
844
+ "deny"
845
+ ]
846
+ }
847
+ }
848
+ }
849
+ }
850
+ },
851
+ "Poseidon (Plan Consultant)": {
852
+ "type": "object",
853
+ "properties": {
854
+ "model": {
855
+ "type": "string"
856
+ },
857
+ "temperature": {
858
+ "type": "number"
859
+ },
860
+ "top_p": {
861
+ "type": "number"
862
+ },
863
+ "prompt": {
864
+ "type": "string"
865
+ },
866
+ "prompt_append": {
867
+ "type": "string"
868
+ },
869
+ "tools": {
870
+ "type": "object",
871
+ "propertyNames": {
872
+ "type": "string"
873
+ },
874
+ "additionalProperties": {
875
+ "type": "boolean"
876
+ }
877
+ },
878
+ "disable": {
879
+ "type": "boolean"
880
+ },
881
+ "description": {
882
+ "type": "string"
883
+ },
884
+ "mode": {
885
+ "type": "string",
886
+ "enum": [
887
+ "subagent",
888
+ "primary",
889
+ "all"
890
+ ]
891
+ },
892
+ "color": {
893
+ "type": "string"
894
+ },
895
+ "permission": {
896
+ "type": "object",
897
+ "properties": {
898
+ "edit": {
899
+ "default": "ask",
900
+ "type": "string",
901
+ "enum": [
902
+ "allow",
903
+ "ask",
904
+ "deny"
905
+ ]
906
+ },
907
+ "bash": {
908
+ "default": "ask",
909
+ "anyOf": [
910
+ {
911
+ "type": "string",
912
+ "enum": [
913
+ "allow",
914
+ "ask",
915
+ "deny"
916
+ ]
917
+ },
918
+ {
919
+ "type": "object",
920
+ "propertyNames": {
921
+ "type": "string"
922
+ },
923
+ "additionalProperties": {
924
+ "type": "string",
925
+ "enum": [
926
+ "allow",
927
+ "ask",
928
+ "deny"
929
+ ]
930
+ }
931
+ }
932
+ ]
933
+ },
934
+ "webfetch": {
935
+ "default": "ask",
936
+ "type": "string",
937
+ "enum": [
938
+ "allow",
939
+ "ask",
940
+ "deny"
941
+ ]
942
+ },
943
+ "doom_loop": {
944
+ "default": "ask",
945
+ "type": "string",
946
+ "enum": [
947
+ "allow",
948
+ "ask",
949
+ "deny"
950
+ ]
951
+ },
952
+ "external_directory": {
953
+ "default": "ask",
954
+ "type": "string",
955
+ "enum": [
956
+ "allow",
957
+ "ask",
958
+ "deny"
959
+ ]
960
+ }
961
+ }
962
+ }
963
+ }
964
+ },
965
+ "Scylla (Plan Reviewer)": {
966
+ "type": "object",
967
+ "properties": {
968
+ "model": {
969
+ "type": "string"
970
+ },
971
+ "temperature": {
972
+ "type": "number"
973
+ },
974
+ "top_p": {
975
+ "type": "number"
976
+ },
977
+ "prompt": {
978
+ "type": "string"
979
+ },
980
+ "prompt_append": {
981
+ "type": "string"
982
+ },
983
+ "tools": {
984
+ "type": "object",
985
+ "propertyNames": {
986
+ "type": "string"
987
+ },
988
+ "additionalProperties": {
989
+ "type": "boolean"
990
+ }
991
+ },
992
+ "disable": {
993
+ "type": "boolean"
994
+ },
995
+ "description": {
996
+ "type": "string"
997
+ },
998
+ "mode": {
999
+ "type": "string",
1000
+ "enum": [
1001
+ "subagent",
1002
+ "primary",
1003
+ "all"
1004
+ ]
1005
+ },
1006
+ "color": {
1007
+ "type": "string"
1008
+ },
1009
+ "permission": {
1010
+ "type": "object",
1011
+ "properties": {
1012
+ "edit": {
1013
+ "default": "ask",
1014
+ "type": "string",
1015
+ "enum": [
1016
+ "allow",
1017
+ "ask",
1018
+ "deny"
1019
+ ]
1020
+ },
1021
+ "bash": {
1022
+ "default": "ask",
1023
+ "anyOf": [
1024
+ {
1025
+ "type": "string",
1026
+ "enum": [
1027
+ "allow",
1028
+ "ask",
1029
+ "deny"
1030
+ ]
1031
+ },
1032
+ {
1033
+ "type": "object",
1034
+ "propertyNames": {
1035
+ "type": "string"
1036
+ },
1037
+ "additionalProperties": {
1038
+ "type": "string",
1039
+ "enum": [
1040
+ "allow",
1041
+ "ask",
1042
+ "deny"
1043
+ ]
1044
+ }
1045
+ }
1046
+ ]
1047
+ },
1048
+ "webfetch": {
1049
+ "default": "ask",
1050
+ "type": "string",
1051
+ "enum": [
1052
+ "allow",
1053
+ "ask",
1054
+ "deny"
1055
+ ]
1056
+ },
1057
+ "doom_loop": {
1058
+ "default": "ask",
1059
+ "type": "string",
1060
+ "enum": [
1061
+ "allow",
1062
+ "ask",
1063
+ "deny"
1064
+ ]
1065
+ },
1066
+ "external_directory": {
1067
+ "default": "ask",
1068
+ "type": "string",
1069
+ "enum": [
1070
+ "allow",
1071
+ "ask",
1072
+ "deny"
1073
+ ]
1074
+ }
1075
+ }
1076
+ }
1077
+ }
1078
+ },
1079
+ "Pearl": {
1080
+ "type": "object",
1081
+ "properties": {
1082
+ "model": {
1083
+ "type": "string"
1084
+ },
1085
+ "temperature": {
1086
+ "type": "number"
1087
+ },
1088
+ "top_p": {
1089
+ "type": "number"
1090
+ },
1091
+ "prompt": {
1092
+ "type": "string"
1093
+ },
1094
+ "prompt_append": {
1095
+ "type": "string"
1096
+ },
1097
+ "tools": {
1098
+ "type": "object",
1099
+ "propertyNames": {
1100
+ "type": "string"
1101
+ },
1102
+ "additionalProperties": {
1103
+ "type": "boolean"
1104
+ }
1105
+ },
1106
+ "disable": {
1107
+ "type": "boolean"
1108
+ },
1109
+ "description": {
1110
+ "type": "string"
1111
+ },
1112
+ "mode": {
1113
+ "type": "string",
1114
+ "enum": [
1115
+ "subagent",
1116
+ "primary",
1117
+ "all"
1118
+ ]
1119
+ },
1120
+ "color": {
1121
+ "type": "string"
1122
+ },
1123
+ "permission": {
1124
+ "type": "object",
1125
+ "properties": {
1126
+ "edit": {
1127
+ "default": "ask",
1128
+ "type": "string",
1129
+ "enum": [
1130
+ "allow",
1131
+ "ask",
1132
+ "deny"
1133
+ ]
1134
+ },
1135
+ "bash": {
1136
+ "default": "ask",
1137
+ "anyOf": [
1138
+ {
1139
+ "type": "string",
1140
+ "enum": [
1141
+ "allow",
1142
+ "ask",
1143
+ "deny"
1144
+ ]
1145
+ },
1146
+ {
1147
+ "type": "object",
1148
+ "propertyNames": {
1149
+ "type": "string"
1150
+ },
1151
+ "additionalProperties": {
1152
+ "type": "string",
1153
+ "enum": [
1154
+ "allow",
1155
+ "ask",
1156
+ "deny"
1157
+ ]
1158
+ }
1159
+ }
1160
+ ]
1161
+ },
1162
+ "webfetch": {
1163
+ "default": "ask",
1164
+ "type": "string",
1165
+ "enum": [
1166
+ "allow",
1167
+ "ask",
1168
+ "deny"
1169
+ ]
1170
+ },
1171
+ "doom_loop": {
1172
+ "default": "ask",
1173
+ "type": "string",
1174
+ "enum": [
1175
+ "allow",
1176
+ "ask",
1177
+ "deny"
1178
+ ]
1179
+ },
1180
+ "external_directory": {
1181
+ "default": "ask",
1182
+ "type": "string",
1183
+ "enum": [
1184
+ "allow",
1185
+ "ask",
1186
+ "deny"
1187
+ ]
1188
+ }
1189
+ }
1190
+ }
1191
+ }
1192
+ }
1193
+ }
1194
+ },
1195
+ "ralphLoop": {
1196
+ "type": "object",
1197
+ "properties": {
1198
+ "enabled": {
1199
+ "default": true,
1200
+ "type": "boolean"
1201
+ },
1202
+ "default_max_iterations": {
1203
+ "default": 24,
1204
+ "type": "number"
1205
+ },
1206
+ "state_dir": {
1207
+ "type": "string"
1208
+ }
1209
+ }
1210
+ },
1211
+ "backgroundTask": {
1212
+ "type": "object",
1213
+ "properties": {
1214
+ "defaultConcurrency": {
1215
+ "type": "number"
1216
+ },
1217
+ "providerConcurrency": {
1218
+ "type": "object",
1219
+ "propertyNames": {
1220
+ "type": "string"
1221
+ },
1222
+ "additionalProperties": {
1223
+ "type": "number"
1224
+ }
1225
+ },
1226
+ "modelConcurrency": {
1227
+ "type": "object",
1228
+ "propertyNames": {
1229
+ "type": "string"
1230
+ },
1231
+ "additionalProperties": {
1232
+ "type": "number"
1233
+ }
1234
+ }
1235
+ }
1236
+ },
1237
+ "thinkMode": {
1238
+ "type": "object",
1239
+ "properties": {
1240
+ "enabled": {
1241
+ "default": true,
1242
+ "type": "boolean"
1243
+ },
1244
+ "model": {
1245
+ "type": "string"
1246
+ },
1247
+ "thinkingBudget": {
1248
+ "type": "number"
1249
+ }
1250
+ }
1251
+ },
1252
+ "compression": {
1253
+ "type": "object",
1254
+ "properties": {
1255
+ "enabled": {
1256
+ "default": true,
1257
+ "type": "boolean"
1258
+ },
1259
+ "level": {
1260
+ "default": "partial",
1261
+ "type": "string",
1262
+ "enum": [
1263
+ "cache_hit",
1264
+ "partial",
1265
+ "full"
1266
+ ]
1267
+ }
1268
+ }
1269
+ },
1270
+ "blitzkrieg": {
1271
+ "type": "object",
1272
+ "properties": {
1273
+ "enabled": {
1274
+ "default": true,
1275
+ "type": "boolean"
1276
+ },
1277
+ "testPlan": {
1278
+ "type": "object",
1279
+ "properties": {
1280
+ "requiredBeforeImplementation": {
1281
+ "default": true,
1282
+ "type": "boolean"
1283
+ },
1284
+ "minTestCases": {
1285
+ "default": 3,
1286
+ "type": "integer",
1287
+ "minimum": 1,
1288
+ "maximum": 9007199254740991
1289
+ },
1290
+ "requireCoverageThreshold": {
1291
+ "default": true,
1292
+ "type": "boolean"
1293
+ },
1294
+ "coverageThresholdPercent": {
1295
+ "default": 80,
1296
+ "type": "integer",
1297
+ "minimum": 0,
1298
+ "maximum": 100
1299
+ }
1300
+ }
1301
+ },
1302
+ "tddWorkflow": {
1303
+ "type": "object",
1304
+ "properties": {
1305
+ "enforceWriteTestFirst": {
1306
+ "default": true,
1307
+ "type": "boolean"
1308
+ },
1309
+ "forbidCodeWithoutTest": {
1310
+ "default": true,
1311
+ "type": "boolean"
1312
+ },
1313
+ "allowRefactorWithoutTest": {
1314
+ "default": true,
1315
+ "type": "boolean"
1316
+ }
1317
+ }
1318
+ },
1319
+ "evidence": {
1320
+ "type": "object",
1321
+ "properties": {
1322
+ "requireTestExecutionEvidence": {
1323
+ "default": true,
1324
+ "type": "boolean"
1325
+ },
1326
+ "requireAssertionEvidence": {
1327
+ "default": true,
1328
+ "type": "boolean"
1329
+ },
1330
+ "requireEdgeCaseEvidence": {
1331
+ "default": true,
1332
+ "type": "boolean"
1333
+ }
1334
+ }
1335
+ },
1336
+ "plannerConstraints": {
1337
+ "type": "object",
1338
+ "properties": {
1339
+ "requireTestStep": {
1340
+ "default": true,
1341
+ "type": "boolean"
1342
+ },
1343
+ "requireVerificationStep": {
1344
+ "default": true,
1345
+ "type": "boolean"
1346
+ },
1347
+ "maxImplementationStepComplexity": {
1348
+ "default": 3,
1349
+ "type": "integer",
1350
+ "minimum": 1,
1351
+ "maximum": 10
1352
+ }
1353
+ }
1354
+ }
1355
+ },
1356
+ "required": [
1357
+ "testPlan",
1358
+ "tddWorkflow",
1359
+ "evidence",
1360
+ "plannerConstraints"
1361
+ ]
1362
+ },
1363
+ "mcp": {
1364
+ "type": "object",
1365
+ "properties": {
1366
+ "websearch": {
1367
+ "type": "object",
1368
+ "properties": {
1369
+ "enabled": {
1370
+ "default": true,
1371
+ "type": "boolean"
1372
+ },
1373
+ "apiKey": {
1374
+ "type": "string"
1375
+ },
1376
+ "timeout": {
1377
+ "default": 30000,
1378
+ "type": "integer",
1379
+ "minimum": 1000,
1380
+ "maximum": 120000
1381
+ },
1382
+ "numResults": {
1383
+ "default": 8,
1384
+ "type": "integer",
1385
+ "minimum": 1,
1386
+ "maximum": 20
1387
+ },
1388
+ "livecrawl": {
1389
+ "default": "fallback",
1390
+ "type": "string",
1391
+ "enum": [
1392
+ "fallback",
1393
+ "preferred"
1394
+ ]
1395
+ },
1396
+ "searchType": {
1397
+ "default": "auto",
1398
+ "type": "string",
1399
+ "enum": [
1400
+ "auto",
1401
+ "fast",
1402
+ "deep"
1403
+ ]
1404
+ },
1405
+ "contextMaxCharacters": {
1406
+ "default": 10000,
1407
+ "type": "integer",
1408
+ "minimum": 1000,
1409
+ "maximum": 50000
1410
+ }
1411
+ }
1412
+ },
1413
+ "context7": {
1414
+ "type": "object",
1415
+ "properties": {
1416
+ "enabled": {
1417
+ "default": true,
1418
+ "type": "boolean"
1419
+ },
1420
+ "apiKey": {
1421
+ "type": "string"
1422
+ },
1423
+ "timeout": {
1424
+ "default": 30000,
1425
+ "type": "integer",
1426
+ "minimum": 1000,
1427
+ "maximum": 120000
1428
+ },
1429
+ "numResults": {
1430
+ "default": 5,
1431
+ "type": "integer",
1432
+ "minimum": 1,
1433
+ "maximum": 10
1434
+ },
1435
+ "cacheTTL": {
1436
+ "default": 300,
1437
+ "type": "integer",
1438
+ "minimum": 60,
1439
+ "maximum": 3600
1440
+ },
1441
+ "maxTokens": {
1442
+ "default": 5000,
1443
+ "type": "integer",
1444
+ "minimum": 1000,
1445
+ "maximum": 20000
1446
+ }
1447
+ }
1448
+ },
1449
+ "grep_app": {
1450
+ "type": "object",
1451
+ "properties": {
1452
+ "enabled": {
1453
+ "default": true,
1454
+ "type": "boolean"
1455
+ },
1456
+ "githubToken": {
1457
+ "type": "string"
1458
+ },
1459
+ "timeout": {
1460
+ "default": 30000,
1461
+ "type": "integer",
1462
+ "minimum": 1000,
1463
+ "maximum": 120000
1464
+ },
1465
+ "maxResults": {
1466
+ "default": 10,
1467
+ "type": "integer",
1468
+ "minimum": 1,
1469
+ "maximum": 30
1470
+ },
1471
+ "rateLimitDelay": {
1472
+ "default": 1000,
1473
+ "type": "integer",
1474
+ "minimum": 100,
1475
+ "maximum": 10000
1476
+ },
1477
+ "defaultExtensions": {
1478
+ "default": [
1479
+ "ts",
1480
+ "js",
1481
+ "tsx",
1482
+ "jsx",
1483
+ "py",
1484
+ "java",
1485
+ "go",
1486
+ "rs"
1487
+ ],
1488
+ "type": "array",
1489
+ "items": {
1490
+ "type": "string"
1491
+ }
1492
+ },
1493
+ "defaultLanguages": {
1494
+ "default": [
1495
+ "TypeScript",
1496
+ "JavaScript",
1497
+ "Python",
1498
+ "Java",
1499
+ "Go",
1500
+ "Rust"
1501
+ ],
1502
+ "type": "array",
1503
+ "items": {
1504
+ "type": "string"
1505
+ }
1506
+ }
1507
+ }
1508
+ }
1509
+ }
1510
+ },
1511
+ "kratos": {
1512
+ "type": "object",
1513
+ "properties": {
1514
+ "enabled": {
1515
+ "default": true,
1516
+ "type": "boolean"
1517
+ },
1518
+ "autoSave": {
1519
+ "default": true,
1520
+ "type": "boolean"
1521
+ },
1522
+ "storagePath": {
1523
+ "default": "~/.kratos",
1524
+ "type": "string"
1525
+ }
1526
+ }
1527
+ },
1528
+ "lsp": {
1529
+ "type": "object",
1530
+ "properties": {
1531
+ "enabled": {
1532
+ "default": true,
1533
+ "type": "boolean"
1534
+ },
1535
+ "workspacePath": {
1536
+ "type": "string"
1537
+ },
1538
+ "servers": {
1539
+ "type": "object",
1540
+ "propertyNames": {
1541
+ "type": "string"
1542
+ },
1543
+ "additionalProperties": {
1544
+ "type": "object",
1545
+ "properties": {
1546
+ "enabled": {
1547
+ "default": true,
1548
+ "type": "boolean"
1549
+ },
1550
+ "command": {
1551
+ "type": "string"
1552
+ },
1553
+ "args": {
1554
+ "type": "array",
1555
+ "items": {
1556
+ "type": "string"
1557
+ }
1558
+ }
1559
+ }
1560
+ }
1561
+ }
1562
+ }
1563
+ },
1564
+ "notifications": {
1565
+ "type": "object",
1566
+ "properties": {
1567
+ "enabled": {
1568
+ "default": true,
1569
+ "type": "boolean"
1570
+ },
1571
+ "soundEnabled": {
1572
+ "default": true,
1573
+ "type": "boolean"
1574
+ },
1575
+ "idleTimeout": {
1576
+ "default": 60000,
1577
+ "type": "integer",
1578
+ "minimum": 1000,
1579
+ "maximum": 9007199254740991
1580
+ },
1581
+ "skipIfIncompleteTodos": {
1582
+ "default": false,
1583
+ "type": "boolean"
1584
+ },
1585
+ "batchSize": {
1586
+ "default": 5,
1587
+ "type": "integer",
1588
+ "minimum": 1,
1589
+ "maximum": 20
1590
+ },
1591
+ "batchDelay": {
1592
+ "default": 100,
1593
+ "type": "integer",
1594
+ "minimum": 100,
1595
+ "maximum": 10000
1596
+ },
1597
+ "maxRetries": {
1598
+ "default": 3,
1599
+ "type": "integer",
1600
+ "minimum": 1,
1601
+ "maximum": 10
1602
+ }
1603
+ }
1604
+ },
1605
+ "enhanced": {
1606
+ "type": "object",
1607
+ "properties": {
1608
+ "enabled": {
1609
+ "default": true,
1610
+ "type": "boolean"
1611
+ },
1612
+ "keywords": {
1613
+ "default": [
1614
+ "enhanced",
1615
+ "max",
1616
+ "full"
1617
+ ],
1618
+ "type": "array",
1619
+ "items": {
1620
+ "type": "string"
1621
+ }
1622
+ },
1623
+ "searchKeywords": {
1624
+ "default": [
1625
+ "search",
1626
+ "find",
1627
+ "locate"
1628
+ ],
1629
+ "type": "array",
1630
+ "items": {
1631
+ "type": "string"
1632
+ }
1633
+ },
1634
+ "analyzeKeywords": {
1635
+ "default": [
1636
+ "analyze",
1637
+ "examine"
1638
+ ],
1639
+ "type": "array",
1640
+ "items": {
1641
+ "type": "string"
1642
+ }
1643
+ },
1644
+ "thinkKeywords": {
1645
+ "default": [
1646
+ "think",
1647
+ "reason"
1648
+ ],
1649
+ "type": "array",
1650
+ "items": {
1651
+ "type": "string"
1652
+ }
1653
+ }
1654
+ }
1655
+ },
1656
+ "modes": {
1657
+ "type": "object",
1658
+ "properties": {
1659
+ "blitzkrieg": {
1660
+ "type": "object",
1661
+ "properties": {
1662
+ "enabled": {
1663
+ "default": true,
1664
+ "type": "boolean"
1665
+ }
1666
+ }
1667
+ },
1668
+ "ultrawork": {
1669
+ "type": "object",
1670
+ "properties": {
1671
+ "enabled": {
1672
+ "default": true,
1673
+ "type": "boolean"
1674
+ },
1675
+ "parallelAgents": {
1676
+ "default": 4,
1677
+ "type": "integer",
1678
+ "minimum": 1,
1679
+ "maximum": 10
1680
+ },
1681
+ "concurrencyLimits": {
1682
+ "type": "object",
1683
+ "propertyNames": {
1684
+ "type": "string"
1685
+ },
1686
+ "additionalProperties": {
1687
+ "type": "integer",
1688
+ "minimum": 1,
1689
+ "maximum": 10
1690
+ }
1691
+ }
1692
+ }
1693
+ },
1694
+ "search": {
1695
+ "type": "object",
1696
+ "properties": {
1697
+ "enabled": {
1698
+ "default": true,
1699
+ "type": "boolean"
1700
+ },
1701
+ "maxResults": {
1702
+ "default": 50,
1703
+ "type": "integer",
1704
+ "minimum": 1,
1705
+ "maximum": 100
1706
+ }
1707
+ }
1708
+ },
1709
+ "analyze": {
1710
+ "type": "object",
1711
+ "properties": {
1712
+ "enabled": {
1713
+ "default": true,
1714
+ "type": "boolean"
1715
+ },
1716
+ "consultationPhases": {
1717
+ "default": 3,
1718
+ "type": "integer",
1719
+ "minimum": 1,
1720
+ "maximum": 5
1721
+ },
1722
+ "expertAgents": {
1723
+ "type": "array",
1724
+ "items": {
1725
+ "type": "string"
1726
+ }
1727
+ }
1728
+ }
1729
+ },
1730
+ "ultrathink": {
1731
+ "type": "object",
1732
+ "properties": {
1733
+ "enabled": {
1734
+ "default": true,
1735
+ "type": "boolean"
1736
+ },
1737
+ "thinkingBudget": {
1738
+ "default": 32000,
1739
+ "type": "integer",
1740
+ "minimum": 1000,
1741
+ "maximum": 200000
1742
+ },
1743
+ "autoVariantSwitch": {
1744
+ "default": true,
1745
+ "type": "boolean"
1746
+ }
1747
+ }
1748
+ }
1749
+ }
1750
+ },
1751
+ "skillMcp": {
1752
+ "type": "object",
1753
+ "properties": {
1754
+ "enabled": {
1755
+ "default": true,
1756
+ "type": "boolean"
1757
+ },
1758
+ "idleTimeout": {
1759
+ "default": 300000,
1760
+ "type": "integer",
1761
+ "minimum": 60000,
1762
+ "maximum": 600000
1763
+ },
1764
+ "maxConnections": {
1765
+ "default": 10,
1766
+ "type": "integer",
1767
+ "minimum": 1,
1768
+ "maximum": 50
1769
+ }
1770
+ }
1771
+ },
1772
+ "commandLoader": {
1773
+ "type": "object",
1774
+ "properties": {
1775
+ "enabled": {
1776
+ "default": true,
1777
+ "type": "boolean"
1778
+ },
1779
+ "disabledScopes": {
1780
+ "type": "array",
1781
+ "items": {
1782
+ "type": "string",
1783
+ "enum": [
1784
+ "builtin",
1785
+ "user",
1786
+ "project",
1787
+ "opencode",
1788
+ "opencode-project",
1789
+ "skill",
1790
+ "claude-user",
1791
+ "claude-project"
1792
+ ]
1793
+ }
1794
+ }
1795
+ }
1796
+ },
1797
+ "claudeCodeCompatibility": {
1798
+ "type": "object",
1799
+ "properties": {
1800
+ "enabled": {
1801
+ "default": true,
1802
+ "type": "boolean"
1803
+ },
1804
+ "settingsJsonHooks": {
1805
+ "default": true,
1806
+ "type": "boolean"
1807
+ },
1808
+ "commandLoader": {
1809
+ "default": true,
1810
+ "type": "boolean"
1811
+ },
1812
+ "skillLoader": {
1813
+ "default": true,
1814
+ "type": "boolean"
1815
+ },
1816
+ "agentLoader": {
1817
+ "default": true,
1818
+ "type": "boolean"
1819
+ },
1820
+ "mcpLoader": {
1821
+ "default": true,
1822
+ "type": "boolean"
1823
+ },
1824
+ "dataStorage": {
1825
+ "default": true,
1826
+ "type": "boolean"
1827
+ },
1828
+ "toggles": {
1829
+ "type": "object",
1830
+ "properties": {
1831
+ "mcp": {
1832
+ "default": true,
1833
+ "type": "boolean"
1834
+ },
1835
+ "commands": {
1836
+ "default": true,
1837
+ "type": "boolean"
1838
+ },
1839
+ "skills": {
1840
+ "default": true,
1841
+ "type": "boolean"
1842
+ },
1843
+ "agents": {
1844
+ "default": true,
1845
+ "type": "boolean"
1846
+ },
1847
+ "hooks": {
1848
+ "default": true,
1849
+ "type": "boolean"
1850
+ },
1851
+ "plugins": {
1852
+ "type": "object",
1853
+ "propertyNames": {
1854
+ "type": "string"
1855
+ },
1856
+ "additionalProperties": {
1857
+ "type": "boolean"
1858
+ }
1859
+ }
1860
+ }
1861
+ }
1862
+ }
1863
+ }
1864
+ }
1865
+ }