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,827 @@
1
+ {
2
+ "$id": "https://atcyrus.com/schemas/EdgeConfigPayload.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": ["id", "name", "repositoryPath", "baseBranch"],
478
+ "additionalProperties": false
479
+ }
480
+ },
481
+ "linearWorkspaces": {
482
+ "type": "object",
483
+ "propertyNames": {
484
+ "type": "string"
485
+ },
486
+ "additionalProperties": {
487
+ "type": "object",
488
+ "properties": {
489
+ "linearToken": {
490
+ "type": "string"
491
+ },
492
+ "linearRefreshToken": {
493
+ "type": "string"
494
+ },
495
+ "linearWorkspaceSlug": {
496
+ "type": "string"
497
+ },
498
+ "linearWorkspaceName": {
499
+ "type": "string"
500
+ }
501
+ },
502
+ "required": ["linearToken"],
503
+ "additionalProperties": false
504
+ }
505
+ },
506
+ "linearWorkspaceSlug": {
507
+ "type": "string"
508
+ },
509
+ "ngrokAuthToken": {
510
+ "type": "string"
511
+ },
512
+ "stripeCustomerId": {
513
+ "type": "string"
514
+ },
515
+ "claudeDefaultModel": {
516
+ "type": "string"
517
+ },
518
+ "claudeDefaultFallbackModel": {
519
+ "type": "string"
520
+ },
521
+ "geminiDefaultModel": {
522
+ "type": "string"
523
+ },
524
+ "codexDefaultModel": {
525
+ "type": "string"
526
+ },
527
+ "defaultRunner": {
528
+ "type": "string",
529
+ "enum": ["claude", "gemini", "codex", "cursor"]
530
+ },
531
+ "defaultModel": {
532
+ "type": "string"
533
+ },
534
+ "defaultFallbackModel": {
535
+ "type": "string"
536
+ },
537
+ "global_setup_script": {
538
+ "type": "string"
539
+ },
540
+ "defaultAllowedTools": {
541
+ "type": "array",
542
+ "items": {
543
+ "type": "string"
544
+ }
545
+ },
546
+ "defaultDisallowedTools": {
547
+ "type": "array",
548
+ "items": {
549
+ "type": "string"
550
+ }
551
+ },
552
+ "issueUpdateTrigger": {
553
+ "type": "boolean"
554
+ },
555
+ "userAccessControl": {
556
+ "type": "object",
557
+ "properties": {
558
+ "allowedUsers": {
559
+ "type": "array",
560
+ "items": {
561
+ "anyOf": [
562
+ {
563
+ "type": "string"
564
+ },
565
+ {
566
+ "type": "object",
567
+ "properties": {
568
+ "id": {
569
+ "type": "string"
570
+ }
571
+ },
572
+ "required": ["id"],
573
+ "additionalProperties": false
574
+ },
575
+ {
576
+ "type": "object",
577
+ "properties": {
578
+ "email": {
579
+ "type": "string"
580
+ }
581
+ },
582
+ "required": ["email"],
583
+ "additionalProperties": false
584
+ }
585
+ ]
586
+ }
587
+ },
588
+ "blockedUsers": {
589
+ "type": "array",
590
+ "items": {
591
+ "anyOf": [
592
+ {
593
+ "type": "string"
594
+ },
595
+ {
596
+ "type": "object",
597
+ "properties": {
598
+ "id": {
599
+ "type": "string"
600
+ }
601
+ },
602
+ "required": ["id"],
603
+ "additionalProperties": false
604
+ },
605
+ {
606
+ "type": "object",
607
+ "properties": {
608
+ "email": {
609
+ "type": "string"
610
+ }
611
+ },
612
+ "required": ["email"],
613
+ "additionalProperties": false
614
+ }
615
+ ]
616
+ }
617
+ },
618
+ "blockBehavior": {
619
+ "type": "string",
620
+ "enum": ["silent", "comment"]
621
+ },
622
+ "blockMessage": {
623
+ "type": "string"
624
+ }
625
+ },
626
+ "additionalProperties": false
627
+ },
628
+ "promptDefaults": {
629
+ "type": "object",
630
+ "properties": {
631
+ "debugger": {
632
+ "type": "object",
633
+ "properties": {
634
+ "allowedTools": {
635
+ "anyOf": [
636
+ {
637
+ "type": "array",
638
+ "items": {
639
+ "type": "string"
640
+ }
641
+ },
642
+ {
643
+ "type": "string",
644
+ "const": "readOnly"
645
+ },
646
+ {
647
+ "type": "string",
648
+ "const": "safe"
649
+ },
650
+ {
651
+ "type": "string",
652
+ "const": "all"
653
+ },
654
+ {
655
+ "type": "string",
656
+ "const": "coordinator"
657
+ }
658
+ ]
659
+ },
660
+ "disallowedTools": {
661
+ "type": "array",
662
+ "items": {
663
+ "type": "string"
664
+ }
665
+ }
666
+ },
667
+ "additionalProperties": false
668
+ },
669
+ "builder": {
670
+ "type": "object",
671
+ "properties": {
672
+ "allowedTools": {
673
+ "anyOf": [
674
+ {
675
+ "type": "array",
676
+ "items": {
677
+ "type": "string"
678
+ }
679
+ },
680
+ {
681
+ "type": "string",
682
+ "const": "readOnly"
683
+ },
684
+ {
685
+ "type": "string",
686
+ "const": "safe"
687
+ },
688
+ {
689
+ "type": "string",
690
+ "const": "all"
691
+ },
692
+ {
693
+ "type": "string",
694
+ "const": "coordinator"
695
+ }
696
+ ]
697
+ },
698
+ "disallowedTools": {
699
+ "type": "array",
700
+ "items": {
701
+ "type": "string"
702
+ }
703
+ }
704
+ },
705
+ "additionalProperties": false
706
+ },
707
+ "scoper": {
708
+ "type": "object",
709
+ "properties": {
710
+ "allowedTools": {
711
+ "anyOf": [
712
+ {
713
+ "type": "array",
714
+ "items": {
715
+ "type": "string"
716
+ }
717
+ },
718
+ {
719
+ "type": "string",
720
+ "const": "readOnly"
721
+ },
722
+ {
723
+ "type": "string",
724
+ "const": "safe"
725
+ },
726
+ {
727
+ "type": "string",
728
+ "const": "all"
729
+ },
730
+ {
731
+ "type": "string",
732
+ "const": "coordinator"
733
+ }
734
+ ]
735
+ },
736
+ "disallowedTools": {
737
+ "type": "array",
738
+ "items": {
739
+ "type": "string"
740
+ }
741
+ }
742
+ },
743
+ "additionalProperties": false
744
+ },
745
+ "orchestrator": {
746
+ "type": "object",
747
+ "properties": {
748
+ "allowedTools": {
749
+ "anyOf": [
750
+ {
751
+ "type": "array",
752
+ "items": {
753
+ "type": "string"
754
+ }
755
+ },
756
+ {
757
+ "type": "string",
758
+ "const": "readOnly"
759
+ },
760
+ {
761
+ "type": "string",
762
+ "const": "safe"
763
+ },
764
+ {
765
+ "type": "string",
766
+ "const": "all"
767
+ },
768
+ {
769
+ "type": "string",
770
+ "const": "coordinator"
771
+ }
772
+ ]
773
+ },
774
+ "disallowedTools": {
775
+ "type": "array",
776
+ "items": {
777
+ "type": "string"
778
+ }
779
+ }
780
+ },
781
+ "additionalProperties": false
782
+ },
783
+ "graphite-orchestrator": {
784
+ "type": "object",
785
+ "properties": {
786
+ "allowedTools": {
787
+ "anyOf": [
788
+ {
789
+ "type": "array",
790
+ "items": {
791
+ "type": "string"
792
+ }
793
+ },
794
+ {
795
+ "type": "string",
796
+ "const": "readOnly"
797
+ },
798
+ {
799
+ "type": "string",
800
+ "const": "safe"
801
+ },
802
+ {
803
+ "type": "string",
804
+ "const": "all"
805
+ },
806
+ {
807
+ "type": "string",
808
+ "const": "coordinator"
809
+ }
810
+ ]
811
+ },
812
+ "disallowedTools": {
813
+ "type": "array",
814
+ "items": {
815
+ "type": "string"
816
+ }
817
+ }
818
+ },
819
+ "additionalProperties": false
820
+ }
821
+ },
822
+ "additionalProperties": false
823
+ }
824
+ },
825
+ "required": ["repositories"],
826
+ "additionalProperties": false
827
+ }