cyrus-core 0.2.33 → 0.2.34

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,833 @@
1
+ {
2
+ "$id": "https://atcyrus.com/schemas/EdgeConfig.json",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "type": "object",
5
+ "properties": {
6
+ "repositories": {
7
+ "type": "array",
8
+ "items": {
9
+ "type": "object",
10
+ "properties": {
11
+ "id": {
12
+ "type": "string"
13
+ },
14
+ "name": {
15
+ "type": "string"
16
+ },
17
+ "repositoryPath": {
18
+ "type": "string"
19
+ },
20
+ "baseBranch": {
21
+ "type": "string"
22
+ },
23
+ "githubUrl": {
24
+ "type": "string"
25
+ },
26
+ "linearWorkspaceId": {
27
+ "type": "string"
28
+ },
29
+ "teamKeys": {
30
+ "type": "array",
31
+ "items": {
32
+ "type": "string"
33
+ }
34
+ },
35
+ "routingLabels": {
36
+ "type": "array",
37
+ "items": {
38
+ "type": "string"
39
+ }
40
+ },
41
+ "projectKeys": {
42
+ "type": "array",
43
+ "items": {
44
+ "type": "string"
45
+ }
46
+ },
47
+ "linearToken": {
48
+ "type": "string"
49
+ },
50
+ "linearRefreshToken": {
51
+ "type": "string"
52
+ },
53
+ "linearWorkspaceName": {
54
+ "type": "string"
55
+ },
56
+ "workspaceBaseDir": {
57
+ "type": "string"
58
+ },
59
+ "isActive": {
60
+ "type": "boolean"
61
+ },
62
+ "promptTemplatePath": {
63
+ "type": "string"
64
+ },
65
+ "allowedTools": {
66
+ "type": "array",
67
+ "items": {
68
+ "type": "string"
69
+ }
70
+ },
71
+ "disallowedTools": {
72
+ "type": "array",
73
+ "items": {
74
+ "type": "string"
75
+ }
76
+ },
77
+ "mcpConfigPath": {
78
+ "anyOf": [
79
+ {
80
+ "type": "string"
81
+ },
82
+ {
83
+ "type": "array",
84
+ "items": {
85
+ "type": "string"
86
+ }
87
+ }
88
+ ]
89
+ },
90
+ "appendInstruction": {
91
+ "type": "string"
92
+ },
93
+ "model": {
94
+ "type": "string"
95
+ },
96
+ "fallbackModel": {
97
+ "type": "string"
98
+ },
99
+ "labelPrompts": {
100
+ "type": "object",
101
+ "properties": {
102
+ "debugger": {
103
+ "anyOf": [
104
+ {
105
+ "type": "array",
106
+ "items": {
107
+ "type": "string"
108
+ }
109
+ },
110
+ {
111
+ "type": "object",
112
+ "properties": {
113
+ "labels": {
114
+ "type": "array",
115
+ "items": {
116
+ "type": "string"
117
+ }
118
+ },
119
+ "allowedTools": {
120
+ "anyOf": [
121
+ {
122
+ "type": "array",
123
+ "items": {
124
+ "type": "string"
125
+ }
126
+ },
127
+ {
128
+ "type": "string",
129
+ "const": "readOnly"
130
+ },
131
+ {
132
+ "type": "string",
133
+ "const": "safe"
134
+ },
135
+ {
136
+ "type": "string",
137
+ "const": "all"
138
+ },
139
+ {
140
+ "type": "string",
141
+ "const": "coordinator"
142
+ }
143
+ ]
144
+ },
145
+ "disallowedTools": {
146
+ "type": "array",
147
+ "items": {
148
+ "type": "string"
149
+ }
150
+ }
151
+ },
152
+ "required": ["labels"],
153
+ "additionalProperties": false
154
+ }
155
+ ]
156
+ },
157
+ "builder": {
158
+ "anyOf": [
159
+ {
160
+ "type": "array",
161
+ "items": {
162
+ "type": "string"
163
+ }
164
+ },
165
+ {
166
+ "type": "object",
167
+ "properties": {
168
+ "labels": {
169
+ "type": "array",
170
+ "items": {
171
+ "type": "string"
172
+ }
173
+ },
174
+ "allowedTools": {
175
+ "anyOf": [
176
+ {
177
+ "type": "array",
178
+ "items": {
179
+ "type": "string"
180
+ }
181
+ },
182
+ {
183
+ "type": "string",
184
+ "const": "readOnly"
185
+ },
186
+ {
187
+ "type": "string",
188
+ "const": "safe"
189
+ },
190
+ {
191
+ "type": "string",
192
+ "const": "all"
193
+ },
194
+ {
195
+ "type": "string",
196
+ "const": "coordinator"
197
+ }
198
+ ]
199
+ },
200
+ "disallowedTools": {
201
+ "type": "array",
202
+ "items": {
203
+ "type": "string"
204
+ }
205
+ }
206
+ },
207
+ "required": ["labels"],
208
+ "additionalProperties": false
209
+ }
210
+ ]
211
+ },
212
+ "scoper": {
213
+ "anyOf": [
214
+ {
215
+ "type": "array",
216
+ "items": {
217
+ "type": "string"
218
+ }
219
+ },
220
+ {
221
+ "type": "object",
222
+ "properties": {
223
+ "labels": {
224
+ "type": "array",
225
+ "items": {
226
+ "type": "string"
227
+ }
228
+ },
229
+ "allowedTools": {
230
+ "anyOf": [
231
+ {
232
+ "type": "array",
233
+ "items": {
234
+ "type": "string"
235
+ }
236
+ },
237
+ {
238
+ "type": "string",
239
+ "const": "readOnly"
240
+ },
241
+ {
242
+ "type": "string",
243
+ "const": "safe"
244
+ },
245
+ {
246
+ "type": "string",
247
+ "const": "all"
248
+ },
249
+ {
250
+ "type": "string",
251
+ "const": "coordinator"
252
+ }
253
+ ]
254
+ },
255
+ "disallowedTools": {
256
+ "type": "array",
257
+ "items": {
258
+ "type": "string"
259
+ }
260
+ }
261
+ },
262
+ "required": ["labels"],
263
+ "additionalProperties": false
264
+ }
265
+ ]
266
+ },
267
+ "orchestrator": {
268
+ "anyOf": [
269
+ {
270
+ "type": "array",
271
+ "items": {
272
+ "type": "string"
273
+ }
274
+ },
275
+ {
276
+ "type": "object",
277
+ "properties": {
278
+ "labels": {
279
+ "type": "array",
280
+ "items": {
281
+ "type": "string"
282
+ }
283
+ },
284
+ "allowedTools": {
285
+ "anyOf": [
286
+ {
287
+ "type": "array",
288
+ "items": {
289
+ "type": "string"
290
+ }
291
+ },
292
+ {
293
+ "type": "string",
294
+ "const": "readOnly"
295
+ },
296
+ {
297
+ "type": "string",
298
+ "const": "safe"
299
+ },
300
+ {
301
+ "type": "string",
302
+ "const": "all"
303
+ },
304
+ {
305
+ "type": "string",
306
+ "const": "coordinator"
307
+ }
308
+ ]
309
+ },
310
+ "disallowedTools": {
311
+ "type": "array",
312
+ "items": {
313
+ "type": "string"
314
+ }
315
+ }
316
+ },
317
+ "required": ["labels"],
318
+ "additionalProperties": false
319
+ }
320
+ ]
321
+ },
322
+ "graphite-orchestrator": {
323
+ "anyOf": [
324
+ {
325
+ "type": "array",
326
+ "items": {
327
+ "type": "string"
328
+ }
329
+ },
330
+ {
331
+ "type": "object",
332
+ "properties": {
333
+ "labels": {
334
+ "type": "array",
335
+ "items": {
336
+ "type": "string"
337
+ }
338
+ },
339
+ "allowedTools": {
340
+ "anyOf": [
341
+ {
342
+ "type": "array",
343
+ "items": {
344
+ "type": "string"
345
+ }
346
+ },
347
+ {
348
+ "type": "string",
349
+ "const": "readOnly"
350
+ },
351
+ {
352
+ "type": "string",
353
+ "const": "safe"
354
+ },
355
+ {
356
+ "type": "string",
357
+ "const": "all"
358
+ },
359
+ {
360
+ "type": "string",
361
+ "const": "coordinator"
362
+ }
363
+ ]
364
+ },
365
+ "disallowedTools": {
366
+ "type": "array",
367
+ "items": {
368
+ "type": "string"
369
+ }
370
+ }
371
+ },
372
+ "required": ["labels"],
373
+ "additionalProperties": false
374
+ }
375
+ ]
376
+ },
377
+ "graphite": {
378
+ "anyOf": [
379
+ {
380
+ "type": "array",
381
+ "items": {
382
+ "type": "string"
383
+ }
384
+ },
385
+ {
386
+ "type": "object",
387
+ "properties": {
388
+ "labels": {
389
+ "type": "array",
390
+ "items": {
391
+ "type": "string"
392
+ }
393
+ }
394
+ },
395
+ "required": ["labels"],
396
+ "additionalProperties": false
397
+ }
398
+ ]
399
+ }
400
+ },
401
+ "additionalProperties": false
402
+ },
403
+ "userAccessControl": {
404
+ "type": "object",
405
+ "properties": {
406
+ "allowedUsers": {
407
+ "type": "array",
408
+ "items": {
409
+ "anyOf": [
410
+ {
411
+ "type": "string"
412
+ },
413
+ {
414
+ "type": "object",
415
+ "properties": {
416
+ "id": {
417
+ "type": "string"
418
+ }
419
+ },
420
+ "required": ["id"],
421
+ "additionalProperties": false
422
+ },
423
+ {
424
+ "type": "object",
425
+ "properties": {
426
+ "email": {
427
+ "type": "string"
428
+ }
429
+ },
430
+ "required": ["email"],
431
+ "additionalProperties": false
432
+ }
433
+ ]
434
+ }
435
+ },
436
+ "blockedUsers": {
437
+ "type": "array",
438
+ "items": {
439
+ "anyOf": [
440
+ {
441
+ "type": "string"
442
+ },
443
+ {
444
+ "type": "object",
445
+ "properties": {
446
+ "id": {
447
+ "type": "string"
448
+ }
449
+ },
450
+ "required": ["id"],
451
+ "additionalProperties": false
452
+ },
453
+ {
454
+ "type": "object",
455
+ "properties": {
456
+ "email": {
457
+ "type": "string"
458
+ }
459
+ },
460
+ "required": ["email"],
461
+ "additionalProperties": false
462
+ }
463
+ ]
464
+ }
465
+ },
466
+ "blockBehavior": {
467
+ "type": "string",
468
+ "enum": ["silent", "comment"]
469
+ },
470
+ "blockMessage": {
471
+ "type": "string"
472
+ }
473
+ },
474
+ "additionalProperties": false
475
+ }
476
+ },
477
+ "required": [
478
+ "id",
479
+ "name",
480
+ "repositoryPath",
481
+ "baseBranch",
482
+ "workspaceBaseDir"
483
+ ],
484
+ "additionalProperties": false
485
+ }
486
+ },
487
+ "linearWorkspaces": {
488
+ "type": "object",
489
+ "propertyNames": {
490
+ "type": "string"
491
+ },
492
+ "additionalProperties": {
493
+ "type": "object",
494
+ "properties": {
495
+ "linearToken": {
496
+ "type": "string"
497
+ },
498
+ "linearRefreshToken": {
499
+ "type": "string"
500
+ },
501
+ "linearWorkspaceSlug": {
502
+ "type": "string"
503
+ },
504
+ "linearWorkspaceName": {
505
+ "type": "string"
506
+ }
507
+ },
508
+ "required": ["linearToken"],
509
+ "additionalProperties": false
510
+ }
511
+ },
512
+ "linearWorkspaceSlug": {
513
+ "type": "string"
514
+ },
515
+ "ngrokAuthToken": {
516
+ "type": "string"
517
+ },
518
+ "stripeCustomerId": {
519
+ "type": "string"
520
+ },
521
+ "claudeDefaultModel": {
522
+ "type": "string"
523
+ },
524
+ "claudeDefaultFallbackModel": {
525
+ "type": "string"
526
+ },
527
+ "geminiDefaultModel": {
528
+ "type": "string"
529
+ },
530
+ "codexDefaultModel": {
531
+ "type": "string"
532
+ },
533
+ "defaultRunner": {
534
+ "type": "string",
535
+ "enum": ["claude", "gemini", "codex", "cursor"]
536
+ },
537
+ "defaultModel": {
538
+ "type": "string"
539
+ },
540
+ "defaultFallbackModel": {
541
+ "type": "string"
542
+ },
543
+ "global_setup_script": {
544
+ "type": "string"
545
+ },
546
+ "defaultAllowedTools": {
547
+ "type": "array",
548
+ "items": {
549
+ "type": "string"
550
+ }
551
+ },
552
+ "defaultDisallowedTools": {
553
+ "type": "array",
554
+ "items": {
555
+ "type": "string"
556
+ }
557
+ },
558
+ "issueUpdateTrigger": {
559
+ "type": "boolean"
560
+ },
561
+ "userAccessControl": {
562
+ "type": "object",
563
+ "properties": {
564
+ "allowedUsers": {
565
+ "type": "array",
566
+ "items": {
567
+ "anyOf": [
568
+ {
569
+ "type": "string"
570
+ },
571
+ {
572
+ "type": "object",
573
+ "properties": {
574
+ "id": {
575
+ "type": "string"
576
+ }
577
+ },
578
+ "required": ["id"],
579
+ "additionalProperties": false
580
+ },
581
+ {
582
+ "type": "object",
583
+ "properties": {
584
+ "email": {
585
+ "type": "string"
586
+ }
587
+ },
588
+ "required": ["email"],
589
+ "additionalProperties": false
590
+ }
591
+ ]
592
+ }
593
+ },
594
+ "blockedUsers": {
595
+ "type": "array",
596
+ "items": {
597
+ "anyOf": [
598
+ {
599
+ "type": "string"
600
+ },
601
+ {
602
+ "type": "object",
603
+ "properties": {
604
+ "id": {
605
+ "type": "string"
606
+ }
607
+ },
608
+ "required": ["id"],
609
+ "additionalProperties": false
610
+ },
611
+ {
612
+ "type": "object",
613
+ "properties": {
614
+ "email": {
615
+ "type": "string"
616
+ }
617
+ },
618
+ "required": ["email"],
619
+ "additionalProperties": false
620
+ }
621
+ ]
622
+ }
623
+ },
624
+ "blockBehavior": {
625
+ "type": "string",
626
+ "enum": ["silent", "comment"]
627
+ },
628
+ "blockMessage": {
629
+ "type": "string"
630
+ }
631
+ },
632
+ "additionalProperties": false
633
+ },
634
+ "promptDefaults": {
635
+ "type": "object",
636
+ "properties": {
637
+ "debugger": {
638
+ "type": "object",
639
+ "properties": {
640
+ "allowedTools": {
641
+ "anyOf": [
642
+ {
643
+ "type": "array",
644
+ "items": {
645
+ "type": "string"
646
+ }
647
+ },
648
+ {
649
+ "type": "string",
650
+ "const": "readOnly"
651
+ },
652
+ {
653
+ "type": "string",
654
+ "const": "safe"
655
+ },
656
+ {
657
+ "type": "string",
658
+ "const": "all"
659
+ },
660
+ {
661
+ "type": "string",
662
+ "const": "coordinator"
663
+ }
664
+ ]
665
+ },
666
+ "disallowedTools": {
667
+ "type": "array",
668
+ "items": {
669
+ "type": "string"
670
+ }
671
+ }
672
+ },
673
+ "additionalProperties": false
674
+ },
675
+ "builder": {
676
+ "type": "object",
677
+ "properties": {
678
+ "allowedTools": {
679
+ "anyOf": [
680
+ {
681
+ "type": "array",
682
+ "items": {
683
+ "type": "string"
684
+ }
685
+ },
686
+ {
687
+ "type": "string",
688
+ "const": "readOnly"
689
+ },
690
+ {
691
+ "type": "string",
692
+ "const": "safe"
693
+ },
694
+ {
695
+ "type": "string",
696
+ "const": "all"
697
+ },
698
+ {
699
+ "type": "string",
700
+ "const": "coordinator"
701
+ }
702
+ ]
703
+ },
704
+ "disallowedTools": {
705
+ "type": "array",
706
+ "items": {
707
+ "type": "string"
708
+ }
709
+ }
710
+ },
711
+ "additionalProperties": false
712
+ },
713
+ "scoper": {
714
+ "type": "object",
715
+ "properties": {
716
+ "allowedTools": {
717
+ "anyOf": [
718
+ {
719
+ "type": "array",
720
+ "items": {
721
+ "type": "string"
722
+ }
723
+ },
724
+ {
725
+ "type": "string",
726
+ "const": "readOnly"
727
+ },
728
+ {
729
+ "type": "string",
730
+ "const": "safe"
731
+ },
732
+ {
733
+ "type": "string",
734
+ "const": "all"
735
+ },
736
+ {
737
+ "type": "string",
738
+ "const": "coordinator"
739
+ }
740
+ ]
741
+ },
742
+ "disallowedTools": {
743
+ "type": "array",
744
+ "items": {
745
+ "type": "string"
746
+ }
747
+ }
748
+ },
749
+ "additionalProperties": false
750
+ },
751
+ "orchestrator": {
752
+ "type": "object",
753
+ "properties": {
754
+ "allowedTools": {
755
+ "anyOf": [
756
+ {
757
+ "type": "array",
758
+ "items": {
759
+ "type": "string"
760
+ }
761
+ },
762
+ {
763
+ "type": "string",
764
+ "const": "readOnly"
765
+ },
766
+ {
767
+ "type": "string",
768
+ "const": "safe"
769
+ },
770
+ {
771
+ "type": "string",
772
+ "const": "all"
773
+ },
774
+ {
775
+ "type": "string",
776
+ "const": "coordinator"
777
+ }
778
+ ]
779
+ },
780
+ "disallowedTools": {
781
+ "type": "array",
782
+ "items": {
783
+ "type": "string"
784
+ }
785
+ }
786
+ },
787
+ "additionalProperties": false
788
+ },
789
+ "graphite-orchestrator": {
790
+ "type": "object",
791
+ "properties": {
792
+ "allowedTools": {
793
+ "anyOf": [
794
+ {
795
+ "type": "array",
796
+ "items": {
797
+ "type": "string"
798
+ }
799
+ },
800
+ {
801
+ "type": "string",
802
+ "const": "readOnly"
803
+ },
804
+ {
805
+ "type": "string",
806
+ "const": "safe"
807
+ },
808
+ {
809
+ "type": "string",
810
+ "const": "all"
811
+ },
812
+ {
813
+ "type": "string",
814
+ "const": "coordinator"
815
+ }
816
+ ]
817
+ },
818
+ "disallowedTools": {
819
+ "type": "array",
820
+ "items": {
821
+ "type": "string"
822
+ }
823
+ }
824
+ },
825
+ "additionalProperties": false
826
+ }
827
+ },
828
+ "additionalProperties": false
829
+ }
830
+ },
831
+ "required": ["repositories"],
832
+ "additionalProperties": false
833
+ }