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,480 @@
1
+ {
2
+ "$id": "https://atcyrus.com/schemas/RepositoryConfig.json",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "type": "object",
5
+ "properties": {
6
+ "id": {
7
+ "type": "string"
8
+ },
9
+ "name": {
10
+ "type": "string"
11
+ },
12
+ "repositoryPath": {
13
+ "type": "string"
14
+ },
15
+ "baseBranch": {
16
+ "type": "string"
17
+ },
18
+ "githubUrl": {
19
+ "type": "string"
20
+ },
21
+ "linearWorkspaceId": {
22
+ "type": "string"
23
+ },
24
+ "teamKeys": {
25
+ "type": "array",
26
+ "items": {
27
+ "type": "string"
28
+ }
29
+ },
30
+ "routingLabels": {
31
+ "type": "array",
32
+ "items": {
33
+ "type": "string"
34
+ }
35
+ },
36
+ "projectKeys": {
37
+ "type": "array",
38
+ "items": {
39
+ "type": "string"
40
+ }
41
+ },
42
+ "linearToken": {
43
+ "type": "string"
44
+ },
45
+ "linearRefreshToken": {
46
+ "type": "string"
47
+ },
48
+ "linearWorkspaceName": {
49
+ "type": "string"
50
+ },
51
+ "workspaceBaseDir": {
52
+ "type": "string"
53
+ },
54
+ "isActive": {
55
+ "type": "boolean"
56
+ },
57
+ "promptTemplatePath": {
58
+ "type": "string"
59
+ },
60
+ "allowedTools": {
61
+ "type": "array",
62
+ "items": {
63
+ "type": "string"
64
+ }
65
+ },
66
+ "disallowedTools": {
67
+ "type": "array",
68
+ "items": {
69
+ "type": "string"
70
+ }
71
+ },
72
+ "mcpConfigPath": {
73
+ "anyOf": [
74
+ {
75
+ "type": "string"
76
+ },
77
+ {
78
+ "type": "array",
79
+ "items": {
80
+ "type": "string"
81
+ }
82
+ }
83
+ ]
84
+ },
85
+ "appendInstruction": {
86
+ "type": "string"
87
+ },
88
+ "model": {
89
+ "type": "string"
90
+ },
91
+ "fallbackModel": {
92
+ "type": "string"
93
+ },
94
+ "labelPrompts": {
95
+ "type": "object",
96
+ "properties": {
97
+ "debugger": {
98
+ "anyOf": [
99
+ {
100
+ "type": "array",
101
+ "items": {
102
+ "type": "string"
103
+ }
104
+ },
105
+ {
106
+ "type": "object",
107
+ "properties": {
108
+ "labels": {
109
+ "type": "array",
110
+ "items": {
111
+ "type": "string"
112
+ }
113
+ },
114
+ "allowedTools": {
115
+ "anyOf": [
116
+ {
117
+ "type": "array",
118
+ "items": {
119
+ "type": "string"
120
+ }
121
+ },
122
+ {
123
+ "type": "string",
124
+ "const": "readOnly"
125
+ },
126
+ {
127
+ "type": "string",
128
+ "const": "safe"
129
+ },
130
+ {
131
+ "type": "string",
132
+ "const": "all"
133
+ },
134
+ {
135
+ "type": "string",
136
+ "const": "coordinator"
137
+ }
138
+ ]
139
+ },
140
+ "disallowedTools": {
141
+ "type": "array",
142
+ "items": {
143
+ "type": "string"
144
+ }
145
+ }
146
+ },
147
+ "required": ["labels"],
148
+ "additionalProperties": false
149
+ }
150
+ ]
151
+ },
152
+ "builder": {
153
+ "anyOf": [
154
+ {
155
+ "type": "array",
156
+ "items": {
157
+ "type": "string"
158
+ }
159
+ },
160
+ {
161
+ "type": "object",
162
+ "properties": {
163
+ "labels": {
164
+ "type": "array",
165
+ "items": {
166
+ "type": "string"
167
+ }
168
+ },
169
+ "allowedTools": {
170
+ "anyOf": [
171
+ {
172
+ "type": "array",
173
+ "items": {
174
+ "type": "string"
175
+ }
176
+ },
177
+ {
178
+ "type": "string",
179
+ "const": "readOnly"
180
+ },
181
+ {
182
+ "type": "string",
183
+ "const": "safe"
184
+ },
185
+ {
186
+ "type": "string",
187
+ "const": "all"
188
+ },
189
+ {
190
+ "type": "string",
191
+ "const": "coordinator"
192
+ }
193
+ ]
194
+ },
195
+ "disallowedTools": {
196
+ "type": "array",
197
+ "items": {
198
+ "type": "string"
199
+ }
200
+ }
201
+ },
202
+ "required": ["labels"],
203
+ "additionalProperties": false
204
+ }
205
+ ]
206
+ },
207
+ "scoper": {
208
+ "anyOf": [
209
+ {
210
+ "type": "array",
211
+ "items": {
212
+ "type": "string"
213
+ }
214
+ },
215
+ {
216
+ "type": "object",
217
+ "properties": {
218
+ "labels": {
219
+ "type": "array",
220
+ "items": {
221
+ "type": "string"
222
+ }
223
+ },
224
+ "allowedTools": {
225
+ "anyOf": [
226
+ {
227
+ "type": "array",
228
+ "items": {
229
+ "type": "string"
230
+ }
231
+ },
232
+ {
233
+ "type": "string",
234
+ "const": "readOnly"
235
+ },
236
+ {
237
+ "type": "string",
238
+ "const": "safe"
239
+ },
240
+ {
241
+ "type": "string",
242
+ "const": "all"
243
+ },
244
+ {
245
+ "type": "string",
246
+ "const": "coordinator"
247
+ }
248
+ ]
249
+ },
250
+ "disallowedTools": {
251
+ "type": "array",
252
+ "items": {
253
+ "type": "string"
254
+ }
255
+ }
256
+ },
257
+ "required": ["labels"],
258
+ "additionalProperties": false
259
+ }
260
+ ]
261
+ },
262
+ "orchestrator": {
263
+ "anyOf": [
264
+ {
265
+ "type": "array",
266
+ "items": {
267
+ "type": "string"
268
+ }
269
+ },
270
+ {
271
+ "type": "object",
272
+ "properties": {
273
+ "labels": {
274
+ "type": "array",
275
+ "items": {
276
+ "type": "string"
277
+ }
278
+ },
279
+ "allowedTools": {
280
+ "anyOf": [
281
+ {
282
+ "type": "array",
283
+ "items": {
284
+ "type": "string"
285
+ }
286
+ },
287
+ {
288
+ "type": "string",
289
+ "const": "readOnly"
290
+ },
291
+ {
292
+ "type": "string",
293
+ "const": "safe"
294
+ },
295
+ {
296
+ "type": "string",
297
+ "const": "all"
298
+ },
299
+ {
300
+ "type": "string",
301
+ "const": "coordinator"
302
+ }
303
+ ]
304
+ },
305
+ "disallowedTools": {
306
+ "type": "array",
307
+ "items": {
308
+ "type": "string"
309
+ }
310
+ }
311
+ },
312
+ "required": ["labels"],
313
+ "additionalProperties": false
314
+ }
315
+ ]
316
+ },
317
+ "graphite-orchestrator": {
318
+ "anyOf": [
319
+ {
320
+ "type": "array",
321
+ "items": {
322
+ "type": "string"
323
+ }
324
+ },
325
+ {
326
+ "type": "object",
327
+ "properties": {
328
+ "labels": {
329
+ "type": "array",
330
+ "items": {
331
+ "type": "string"
332
+ }
333
+ },
334
+ "allowedTools": {
335
+ "anyOf": [
336
+ {
337
+ "type": "array",
338
+ "items": {
339
+ "type": "string"
340
+ }
341
+ },
342
+ {
343
+ "type": "string",
344
+ "const": "readOnly"
345
+ },
346
+ {
347
+ "type": "string",
348
+ "const": "safe"
349
+ },
350
+ {
351
+ "type": "string",
352
+ "const": "all"
353
+ },
354
+ {
355
+ "type": "string",
356
+ "const": "coordinator"
357
+ }
358
+ ]
359
+ },
360
+ "disallowedTools": {
361
+ "type": "array",
362
+ "items": {
363
+ "type": "string"
364
+ }
365
+ }
366
+ },
367
+ "required": ["labels"],
368
+ "additionalProperties": false
369
+ }
370
+ ]
371
+ },
372
+ "graphite": {
373
+ "anyOf": [
374
+ {
375
+ "type": "array",
376
+ "items": {
377
+ "type": "string"
378
+ }
379
+ },
380
+ {
381
+ "type": "object",
382
+ "properties": {
383
+ "labels": {
384
+ "type": "array",
385
+ "items": {
386
+ "type": "string"
387
+ }
388
+ }
389
+ },
390
+ "required": ["labels"],
391
+ "additionalProperties": false
392
+ }
393
+ ]
394
+ }
395
+ },
396
+ "additionalProperties": false
397
+ },
398
+ "userAccessControl": {
399
+ "type": "object",
400
+ "properties": {
401
+ "allowedUsers": {
402
+ "type": "array",
403
+ "items": {
404
+ "anyOf": [
405
+ {
406
+ "type": "string"
407
+ },
408
+ {
409
+ "type": "object",
410
+ "properties": {
411
+ "id": {
412
+ "type": "string"
413
+ }
414
+ },
415
+ "required": ["id"],
416
+ "additionalProperties": false
417
+ },
418
+ {
419
+ "type": "object",
420
+ "properties": {
421
+ "email": {
422
+ "type": "string"
423
+ }
424
+ },
425
+ "required": ["email"],
426
+ "additionalProperties": false
427
+ }
428
+ ]
429
+ }
430
+ },
431
+ "blockedUsers": {
432
+ "type": "array",
433
+ "items": {
434
+ "anyOf": [
435
+ {
436
+ "type": "string"
437
+ },
438
+ {
439
+ "type": "object",
440
+ "properties": {
441
+ "id": {
442
+ "type": "string"
443
+ }
444
+ },
445
+ "required": ["id"],
446
+ "additionalProperties": false
447
+ },
448
+ {
449
+ "type": "object",
450
+ "properties": {
451
+ "email": {
452
+ "type": "string"
453
+ }
454
+ },
455
+ "required": ["email"],
456
+ "additionalProperties": false
457
+ }
458
+ ]
459
+ }
460
+ },
461
+ "blockBehavior": {
462
+ "type": "string",
463
+ "enum": ["silent", "comment"]
464
+ },
465
+ "blockMessage": {
466
+ "type": "string"
467
+ }
468
+ },
469
+ "additionalProperties": false
470
+ }
471
+ },
472
+ "required": [
473
+ "id",
474
+ "name",
475
+ "repositoryPath",
476
+ "baseBranch",
477
+ "workspaceBaseDir"
478
+ ],
479
+ "additionalProperties": false
480
+ }