oh-my-opencode 3.7.3 → 3.8.0

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.
Files changed (146) hide show
  1. package/README.ja.md +206 -243
  2. package/README.ko.md +205 -244
  3. package/README.md +176 -174
  4. package/README.zh-cn.md +211 -255
  5. package/dist/agents/atlas/default.d.ts +1 -1
  6. package/dist/agents/atlas/gpt.d.ts +1 -1
  7. package/dist/agents/atlas/prompt-section-builder.d.ts +1 -1
  8. package/dist/agents/builtin-agents/environment-context.d.ts +5 -1
  9. package/dist/agents/builtin-agents/general-agents.d.ts +1 -0
  10. package/dist/agents/builtin-agents/hephaestus-agent.d.ts +1 -0
  11. package/dist/agents/builtin-agents/sisyphus-agent.d.ts +1 -0
  12. package/dist/agents/builtin-agents.d.ts +1 -1
  13. package/dist/agents/dynamic-agent-prompt-builder.d.ts +0 -5
  14. package/dist/agents/index.d.ts +2 -1
  15. package/dist/agents/metis.d.ts +1 -1
  16. package/dist/agents/prometheus/behavioral-summary.d.ts +1 -1
  17. package/dist/agents/prometheus/gpt.d.ts +24 -0
  18. package/dist/agents/prometheus/identity-constraints.d.ts +1 -1
  19. package/dist/agents/prometheus/index.d.ts +3 -1
  20. package/dist/agents/prometheus/interview-mode.d.ts +1 -1
  21. package/dist/agents/prometheus/plan-generation.d.ts +1 -1
  22. package/dist/agents/prometheus/plan-template.d.ts +1 -1
  23. package/dist/agents/prometheus/system-prompt.d.ts +13 -2
  24. package/dist/agents/sisyphus-junior/agent.d.ts +1 -1
  25. package/dist/agents/types.d.ts +1 -0
  26. package/dist/cli/config-manager/antigravity-provider-configuration.d.ts +2 -2
  27. package/dist/cli/fallback-chain-resolution.d.ts +1 -1
  28. package/dist/cli/index.js +527 -175
  29. package/dist/cli/model-fallback-requirements.d.ts +3 -0
  30. package/dist/cli/provider-model-id-transform.d.ts +1 -1
  31. package/dist/cli/run/event-state.d.ts +4 -0
  32. package/dist/cli/run/stdin-suppression.d.ts +12 -0
  33. package/dist/cli/run/timestamp-output.d.ts +5 -0
  34. package/dist/cli/run/types.d.ts +1 -0
  35. package/dist/config/index.d.ts +2 -2
  36. package/dist/config/schema/agent-overrides.d.ts +75 -0
  37. package/dist/config/schema/categories.d.ts +2 -0
  38. package/dist/config/schema/experimental.d.ts +2 -0
  39. package/dist/config/schema/fallback-models.d.ts +3 -0
  40. package/dist/config/schema/hooks.d.ts +4 -3
  41. package/dist/config/schema/oh-my-opencode-config.d.ts +87 -47
  42. package/dist/config/schema/ralph-loop.d.ts +4 -0
  43. package/dist/config/schema/runtime-fallback.d.ts +10 -0
  44. package/dist/config/schema.d.ts +2 -0
  45. package/dist/create-hooks.d.ts +8 -5
  46. package/dist/features/background-agent/manager.d.ts +3 -0
  47. package/dist/features/background-agent/parent-session-context-resolver.d.ts +1 -0
  48. package/dist/features/background-agent/types.d.ts +7 -0
  49. package/dist/features/builtin-commands/templates/ralph-loop.d.ts +1 -1
  50. package/dist/features/claude-code-session-state/state.d.ts +1 -0
  51. package/dist/features/task-toast-manager/manager.d.ts +5 -0
  52. package/dist/features/task-toast-manager/types.d.ts +2 -1
  53. package/dist/features/tmux-subagent/action-executor.d.ts +10 -3
  54. package/dist/features/tmux-subagent/grid-planning.d.ts +5 -3
  55. package/dist/features/tmux-subagent/manager.d.ts +12 -0
  56. package/dist/features/tmux-subagent/pane-split-availability.d.ts +0 -1
  57. package/dist/features/tmux-subagent/spawn-target-finder.d.ts +2 -2
  58. package/dist/features/tmux-subagent/tmux-grid-constants.d.ts +4 -0
  59. package/dist/features/tmux-subagent/types.d.ts +2 -0
  60. package/dist/hooks/atlas/recent-model-resolver.d.ts +6 -0
  61. package/dist/hooks/atlas/system-reminder-templates.d.ts +1 -1
  62. package/dist/hooks/hashline-edit-diff-enhancer/hook.d.ts +28 -0
  63. package/dist/hooks/hashline-edit-diff-enhancer/index.d.ts +1 -0
  64. package/dist/hooks/index.d.ts +5 -2
  65. package/dist/hooks/model-fallback/hook.d.ts +60 -0
  66. package/dist/hooks/no-hephaestus-non-gpt/hook.d.ts +16 -0
  67. package/dist/hooks/no-hephaestus-non-gpt/index.d.ts +1 -0
  68. package/dist/hooks/{sisyphus-gpt-hephaestus-reminder → no-sisyphus-gpt}/hook.d.ts +6 -1
  69. package/dist/hooks/no-sisyphus-gpt/index.d.ts +1 -0
  70. package/dist/hooks/ralph-loop/command-arguments.d.ts +8 -0
  71. package/dist/hooks/ralph-loop/continuation-prompt-injector.d.ts +1 -0
  72. package/dist/hooks/ralph-loop/iteration-continuation.d.ts +12 -0
  73. package/dist/hooks/ralph-loop/loop-state-controller.d.ts +2 -0
  74. package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +1 -0
  75. package/dist/hooks/ralph-loop/ralph-loop-hook.d.ts +1 -0
  76. package/dist/hooks/ralph-loop/session-reset-strategy.d.ts +3 -0
  77. package/dist/hooks/ralph-loop/types.d.ts +1 -0
  78. package/dist/hooks/runtime-fallback/agent-resolver.d.ts +5 -0
  79. package/dist/hooks/runtime-fallback/auto-retry.d.ts +10 -0
  80. package/dist/hooks/runtime-fallback/chat-message-handler.d.ts +20 -0
  81. package/dist/hooks/runtime-fallback/constants.d.ts +19 -0
  82. package/dist/hooks/runtime-fallback/error-classifier.d.ts +17 -0
  83. package/dist/hooks/runtime-fallback/event-handler.d.ts +8 -0
  84. package/dist/hooks/runtime-fallback/fallback-models.d.ts +2 -0
  85. package/dist/hooks/runtime-fallback/fallback-state.d.ts +6 -0
  86. package/dist/hooks/runtime-fallback/hook.d.ts +3 -0
  87. package/dist/hooks/runtime-fallback/index.d.ts +2 -0
  88. package/dist/hooks/runtime-fallback/message-update-handler.d.ts +5 -0
  89. package/dist/hooks/runtime-fallback/types.d.ts +59 -0
  90. package/dist/hooks/session-recovery/detect-error-type.d.ts +2 -1
  91. package/dist/hooks/session-recovery/recover-unavailable-tool.d.ts +5 -0
  92. package/dist/hooks/session-recovery/types.d.ts +1 -0
  93. package/dist/hooks/todo-continuation-enforcer/continuation-injection.d.ts +1 -0
  94. package/dist/hooks/todo-continuation-enforcer/countdown.d.ts +1 -0
  95. package/dist/hooks/unstable-agent-babysitter/task-message-analyzer.d.ts +1 -0
  96. package/dist/hooks/unstable-agent-babysitter/unstable-agent-babysitter-hook.d.ts +2 -0
  97. package/dist/hooks/write-existing-file-guard/hook.d.ts +1 -0
  98. package/dist/index.js +6614 -3149
  99. package/dist/oh-my-opencode.schema.json +3681 -0
  100. package/dist/plugin/chat-headers.d.ts +4 -0
  101. package/dist/plugin/chat-message.d.ts +9 -8
  102. package/dist/plugin/chat-params.d.ts +2 -3
  103. package/dist/plugin/event.d.ts +2 -6
  104. package/dist/plugin/hooks/create-core-hooks.d.ts +8 -5
  105. package/dist/plugin/hooks/create-session-hooks.d.ts +7 -5
  106. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +2 -1
  107. package/dist/plugin/hooks/create-transform-hooks.d.ts +1 -1
  108. package/dist/plugin/system-transform.d.ts +5 -0
  109. package/dist/plugin/types.d.ts +7 -1
  110. package/dist/plugin/ultrawork-db-model-override.d.ts +11 -0
  111. package/dist/plugin/ultrawork-model-override.d.ts +37 -0
  112. package/dist/shared/index.d.ts +4 -0
  113. package/dist/shared/internal-initiator-marker.d.ts +5 -0
  114. package/dist/shared/model-error-classifier.d.ts +31 -0
  115. package/dist/shared/model-resolution-pipeline.d.ts +1 -0
  116. package/dist/shared/model-resolver.d.ts +6 -0
  117. package/dist/shared/prompt-tools.d.ts +3 -0
  118. package/dist/shared/provider-model-id-transform.d.ts +1 -0
  119. package/dist/shared/session-category-registry.d.ts +32 -0
  120. package/dist/shared/session-model-state.d.ts +7 -0
  121. package/dist/shared/tmux/tmux-utils/layout.d.ts +17 -2
  122. package/dist/tools/delegate-task/background-task.d.ts +2 -1
  123. package/dist/tools/delegate-task/category-resolver.d.ts +2 -0
  124. package/dist/tools/delegate-task/constants.d.ts +1 -1
  125. package/dist/tools/delegate-task/skill-resolver.d.ts +1 -0
  126. package/dist/tools/delegate-task/subagent-resolver.d.ts +2 -0
  127. package/dist/tools/delegate-task/sync-task.d.ts +1 -1
  128. package/dist/tools/hashline-edit/constants.d.ts +5 -2
  129. package/dist/tools/hashline-edit/diff-utils.d.ts +6 -0
  130. package/dist/tools/hashline-edit/edit-operations.d.ts +4 -4
  131. package/dist/tools/hashline-edit/hash-computation.d.ts +1 -1
  132. package/dist/tools/hashline-edit/index.d.ts +1 -1
  133. package/dist/tools/hashline-edit/types.d.ts +4 -4
  134. package/dist/tools/hashline-edit/validation.d.ts +1 -0
  135. package/dist/tools/index.d.ts +2 -2
  136. package/dist/tools/skill/constants.d.ts +2 -2
  137. package/dist/tools/skill/types.d.ts +4 -0
  138. package/dist/tools/slashcommand/index.d.ts +1 -1
  139. package/dist/tools/slashcommand/types.d.ts +1 -7
  140. package/package.json +10 -10
  141. package/dist/cli/run/opencode-bin-path.d.ts +0 -3
  142. package/dist/hooks/sisyphus-gpt-hephaestus-reminder/index.d.ts +0 -1
  143. package/dist/tools/slashcommand/skill-command-converter.d.ts +0 -3
  144. package/dist/tools/slashcommand/slashcommand-description.d.ts +0 -3
  145. package/dist/tools/slashcommand/slashcommand-tool.d.ts +0 -4
  146. package/dist/tools/slashcommand/tools.d.ts +0 -2
@@ -0,0 +1,3681 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
4
+ "title": "Oh My OpenCode Configuration",
5
+ "description": "Configuration schema for oh-my-opencode plugin",
6
+ "type": "object",
7
+ "properties": {
8
+ "$schema": {
9
+ "type": "string"
10
+ },
11
+ "new_task_system_enabled": {
12
+ "type": "boolean"
13
+ },
14
+ "default_run_agent": {
15
+ "type": "string"
16
+ },
17
+ "disabled_mcps": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "string",
21
+ "minLength": 1
22
+ }
23
+ },
24
+ "disabled_agents": {
25
+ "type": "array",
26
+ "items": {
27
+ "type": "string",
28
+ "enum": [
29
+ "sisyphus",
30
+ "hephaestus",
31
+ "prometheus",
32
+ "oracle",
33
+ "librarian",
34
+ "explore",
35
+ "multimodal-looker",
36
+ "metis",
37
+ "momus",
38
+ "atlas"
39
+ ]
40
+ }
41
+ },
42
+ "disabled_skills": {
43
+ "type": "array",
44
+ "items": {
45
+ "type": "string",
46
+ "enum": [
47
+ "playwright",
48
+ "agent-browser",
49
+ "dev-browser",
50
+ "frontend-ui-ux",
51
+ "git-master"
52
+ ]
53
+ }
54
+ },
55
+ "disabled_hooks": {
56
+ "type": "array",
57
+ "items": {
58
+ "type": "string"
59
+ }
60
+ },
61
+ "disabled_commands": {
62
+ "type": "array",
63
+ "items": {
64
+ "type": "string",
65
+ "enum": [
66
+ "init-deep",
67
+ "ralph-loop",
68
+ "ulw-loop",
69
+ "cancel-ralph",
70
+ "refactor",
71
+ "start-work",
72
+ "stop-continuation"
73
+ ]
74
+ }
75
+ },
76
+ "disabled_tools": {
77
+ "type": "array",
78
+ "items": {
79
+ "type": "string"
80
+ }
81
+ },
82
+ "hashline_edit": {
83
+ "type": "boolean"
84
+ },
85
+ "agents": {
86
+ "type": "object",
87
+ "properties": {
88
+ "build": {
89
+ "type": "object",
90
+ "properties": {
91
+ "model": {
92
+ "type": "string"
93
+ },
94
+ "fallback_models": {
95
+ "anyOf": [
96
+ {
97
+ "type": "string"
98
+ },
99
+ {
100
+ "type": "array",
101
+ "items": {
102
+ "type": "string"
103
+ }
104
+ }
105
+ ]
106
+ },
107
+ "variant": {
108
+ "type": "string"
109
+ },
110
+ "category": {
111
+ "type": "string"
112
+ },
113
+ "skills": {
114
+ "type": "array",
115
+ "items": {
116
+ "type": "string"
117
+ }
118
+ },
119
+ "temperature": {
120
+ "type": "number",
121
+ "minimum": 0,
122
+ "maximum": 2
123
+ },
124
+ "top_p": {
125
+ "type": "number",
126
+ "minimum": 0,
127
+ "maximum": 1
128
+ },
129
+ "prompt": {
130
+ "type": "string"
131
+ },
132
+ "prompt_append": {
133
+ "type": "string"
134
+ },
135
+ "tools": {
136
+ "type": "object",
137
+ "propertyNames": {
138
+ "type": "string"
139
+ },
140
+ "additionalProperties": {
141
+ "type": "boolean"
142
+ }
143
+ },
144
+ "disable": {
145
+ "type": "boolean"
146
+ },
147
+ "description": {
148
+ "type": "string"
149
+ },
150
+ "mode": {
151
+ "type": "string",
152
+ "enum": [
153
+ "subagent",
154
+ "primary",
155
+ "all"
156
+ ]
157
+ },
158
+ "color": {
159
+ "type": "string",
160
+ "pattern": "^#[0-9A-Fa-f]{6}$"
161
+ },
162
+ "permission": {
163
+ "type": "object",
164
+ "properties": {
165
+ "edit": {
166
+ "type": "string",
167
+ "enum": [
168
+ "ask",
169
+ "allow",
170
+ "deny"
171
+ ]
172
+ },
173
+ "bash": {
174
+ "anyOf": [
175
+ {
176
+ "type": "string",
177
+ "enum": [
178
+ "ask",
179
+ "allow",
180
+ "deny"
181
+ ]
182
+ },
183
+ {
184
+ "type": "object",
185
+ "propertyNames": {
186
+ "type": "string"
187
+ },
188
+ "additionalProperties": {
189
+ "type": "string",
190
+ "enum": [
191
+ "ask",
192
+ "allow",
193
+ "deny"
194
+ ]
195
+ }
196
+ }
197
+ ]
198
+ },
199
+ "webfetch": {
200
+ "type": "string",
201
+ "enum": [
202
+ "ask",
203
+ "allow",
204
+ "deny"
205
+ ]
206
+ },
207
+ "task": {
208
+ "type": "string",
209
+ "enum": [
210
+ "ask",
211
+ "allow",
212
+ "deny"
213
+ ]
214
+ },
215
+ "doom_loop": {
216
+ "type": "string",
217
+ "enum": [
218
+ "ask",
219
+ "allow",
220
+ "deny"
221
+ ]
222
+ },
223
+ "external_directory": {
224
+ "type": "string",
225
+ "enum": [
226
+ "ask",
227
+ "allow",
228
+ "deny"
229
+ ]
230
+ }
231
+ },
232
+ "additionalProperties": false
233
+ },
234
+ "maxTokens": {
235
+ "type": "number"
236
+ },
237
+ "thinking": {
238
+ "type": "object",
239
+ "properties": {
240
+ "type": {
241
+ "type": "string",
242
+ "enum": [
243
+ "enabled",
244
+ "disabled"
245
+ ]
246
+ },
247
+ "budgetTokens": {
248
+ "type": "number"
249
+ }
250
+ },
251
+ "required": [
252
+ "type"
253
+ ],
254
+ "additionalProperties": false
255
+ },
256
+ "reasoningEffort": {
257
+ "type": "string",
258
+ "enum": [
259
+ "low",
260
+ "medium",
261
+ "high",
262
+ "xhigh"
263
+ ]
264
+ },
265
+ "textVerbosity": {
266
+ "type": "string",
267
+ "enum": [
268
+ "low",
269
+ "medium",
270
+ "high"
271
+ ]
272
+ },
273
+ "providerOptions": {
274
+ "type": "object",
275
+ "propertyNames": {
276
+ "type": "string"
277
+ },
278
+ "additionalProperties": {}
279
+ },
280
+ "ultrawork": {
281
+ "type": "object",
282
+ "properties": {
283
+ "model": {
284
+ "type": "string"
285
+ },
286
+ "variant": {
287
+ "type": "string"
288
+ }
289
+ },
290
+ "additionalProperties": false
291
+ }
292
+ },
293
+ "additionalProperties": false
294
+ },
295
+ "plan": {
296
+ "type": "object",
297
+ "properties": {
298
+ "model": {
299
+ "type": "string"
300
+ },
301
+ "fallback_models": {
302
+ "anyOf": [
303
+ {
304
+ "type": "string"
305
+ },
306
+ {
307
+ "type": "array",
308
+ "items": {
309
+ "type": "string"
310
+ }
311
+ }
312
+ ]
313
+ },
314
+ "variant": {
315
+ "type": "string"
316
+ },
317
+ "category": {
318
+ "type": "string"
319
+ },
320
+ "skills": {
321
+ "type": "array",
322
+ "items": {
323
+ "type": "string"
324
+ }
325
+ },
326
+ "temperature": {
327
+ "type": "number",
328
+ "minimum": 0,
329
+ "maximum": 2
330
+ },
331
+ "top_p": {
332
+ "type": "number",
333
+ "minimum": 0,
334
+ "maximum": 1
335
+ },
336
+ "prompt": {
337
+ "type": "string"
338
+ },
339
+ "prompt_append": {
340
+ "type": "string"
341
+ },
342
+ "tools": {
343
+ "type": "object",
344
+ "propertyNames": {
345
+ "type": "string"
346
+ },
347
+ "additionalProperties": {
348
+ "type": "boolean"
349
+ }
350
+ },
351
+ "disable": {
352
+ "type": "boolean"
353
+ },
354
+ "description": {
355
+ "type": "string"
356
+ },
357
+ "mode": {
358
+ "type": "string",
359
+ "enum": [
360
+ "subagent",
361
+ "primary",
362
+ "all"
363
+ ]
364
+ },
365
+ "color": {
366
+ "type": "string",
367
+ "pattern": "^#[0-9A-Fa-f]{6}$"
368
+ },
369
+ "permission": {
370
+ "type": "object",
371
+ "properties": {
372
+ "edit": {
373
+ "type": "string",
374
+ "enum": [
375
+ "ask",
376
+ "allow",
377
+ "deny"
378
+ ]
379
+ },
380
+ "bash": {
381
+ "anyOf": [
382
+ {
383
+ "type": "string",
384
+ "enum": [
385
+ "ask",
386
+ "allow",
387
+ "deny"
388
+ ]
389
+ },
390
+ {
391
+ "type": "object",
392
+ "propertyNames": {
393
+ "type": "string"
394
+ },
395
+ "additionalProperties": {
396
+ "type": "string",
397
+ "enum": [
398
+ "ask",
399
+ "allow",
400
+ "deny"
401
+ ]
402
+ }
403
+ }
404
+ ]
405
+ },
406
+ "webfetch": {
407
+ "type": "string",
408
+ "enum": [
409
+ "ask",
410
+ "allow",
411
+ "deny"
412
+ ]
413
+ },
414
+ "task": {
415
+ "type": "string",
416
+ "enum": [
417
+ "ask",
418
+ "allow",
419
+ "deny"
420
+ ]
421
+ },
422
+ "doom_loop": {
423
+ "type": "string",
424
+ "enum": [
425
+ "ask",
426
+ "allow",
427
+ "deny"
428
+ ]
429
+ },
430
+ "external_directory": {
431
+ "type": "string",
432
+ "enum": [
433
+ "ask",
434
+ "allow",
435
+ "deny"
436
+ ]
437
+ }
438
+ },
439
+ "additionalProperties": false
440
+ },
441
+ "maxTokens": {
442
+ "type": "number"
443
+ },
444
+ "thinking": {
445
+ "type": "object",
446
+ "properties": {
447
+ "type": {
448
+ "type": "string",
449
+ "enum": [
450
+ "enabled",
451
+ "disabled"
452
+ ]
453
+ },
454
+ "budgetTokens": {
455
+ "type": "number"
456
+ }
457
+ },
458
+ "required": [
459
+ "type"
460
+ ],
461
+ "additionalProperties": false
462
+ },
463
+ "reasoningEffort": {
464
+ "type": "string",
465
+ "enum": [
466
+ "low",
467
+ "medium",
468
+ "high",
469
+ "xhigh"
470
+ ]
471
+ },
472
+ "textVerbosity": {
473
+ "type": "string",
474
+ "enum": [
475
+ "low",
476
+ "medium",
477
+ "high"
478
+ ]
479
+ },
480
+ "providerOptions": {
481
+ "type": "object",
482
+ "propertyNames": {
483
+ "type": "string"
484
+ },
485
+ "additionalProperties": {}
486
+ },
487
+ "ultrawork": {
488
+ "type": "object",
489
+ "properties": {
490
+ "model": {
491
+ "type": "string"
492
+ },
493
+ "variant": {
494
+ "type": "string"
495
+ }
496
+ },
497
+ "additionalProperties": false
498
+ }
499
+ },
500
+ "additionalProperties": false
501
+ },
502
+ "sisyphus": {
503
+ "type": "object",
504
+ "properties": {
505
+ "model": {
506
+ "type": "string"
507
+ },
508
+ "fallback_models": {
509
+ "anyOf": [
510
+ {
511
+ "type": "string"
512
+ },
513
+ {
514
+ "type": "array",
515
+ "items": {
516
+ "type": "string"
517
+ }
518
+ }
519
+ ]
520
+ },
521
+ "variant": {
522
+ "type": "string"
523
+ },
524
+ "category": {
525
+ "type": "string"
526
+ },
527
+ "skills": {
528
+ "type": "array",
529
+ "items": {
530
+ "type": "string"
531
+ }
532
+ },
533
+ "temperature": {
534
+ "type": "number",
535
+ "minimum": 0,
536
+ "maximum": 2
537
+ },
538
+ "top_p": {
539
+ "type": "number",
540
+ "minimum": 0,
541
+ "maximum": 1
542
+ },
543
+ "prompt": {
544
+ "type": "string"
545
+ },
546
+ "prompt_append": {
547
+ "type": "string"
548
+ },
549
+ "tools": {
550
+ "type": "object",
551
+ "propertyNames": {
552
+ "type": "string"
553
+ },
554
+ "additionalProperties": {
555
+ "type": "boolean"
556
+ }
557
+ },
558
+ "disable": {
559
+ "type": "boolean"
560
+ },
561
+ "description": {
562
+ "type": "string"
563
+ },
564
+ "mode": {
565
+ "type": "string",
566
+ "enum": [
567
+ "subagent",
568
+ "primary",
569
+ "all"
570
+ ]
571
+ },
572
+ "color": {
573
+ "type": "string",
574
+ "pattern": "^#[0-9A-Fa-f]{6}$"
575
+ },
576
+ "permission": {
577
+ "type": "object",
578
+ "properties": {
579
+ "edit": {
580
+ "type": "string",
581
+ "enum": [
582
+ "ask",
583
+ "allow",
584
+ "deny"
585
+ ]
586
+ },
587
+ "bash": {
588
+ "anyOf": [
589
+ {
590
+ "type": "string",
591
+ "enum": [
592
+ "ask",
593
+ "allow",
594
+ "deny"
595
+ ]
596
+ },
597
+ {
598
+ "type": "object",
599
+ "propertyNames": {
600
+ "type": "string"
601
+ },
602
+ "additionalProperties": {
603
+ "type": "string",
604
+ "enum": [
605
+ "ask",
606
+ "allow",
607
+ "deny"
608
+ ]
609
+ }
610
+ }
611
+ ]
612
+ },
613
+ "webfetch": {
614
+ "type": "string",
615
+ "enum": [
616
+ "ask",
617
+ "allow",
618
+ "deny"
619
+ ]
620
+ },
621
+ "task": {
622
+ "type": "string",
623
+ "enum": [
624
+ "ask",
625
+ "allow",
626
+ "deny"
627
+ ]
628
+ },
629
+ "doom_loop": {
630
+ "type": "string",
631
+ "enum": [
632
+ "ask",
633
+ "allow",
634
+ "deny"
635
+ ]
636
+ },
637
+ "external_directory": {
638
+ "type": "string",
639
+ "enum": [
640
+ "ask",
641
+ "allow",
642
+ "deny"
643
+ ]
644
+ }
645
+ },
646
+ "additionalProperties": false
647
+ },
648
+ "maxTokens": {
649
+ "type": "number"
650
+ },
651
+ "thinking": {
652
+ "type": "object",
653
+ "properties": {
654
+ "type": {
655
+ "type": "string",
656
+ "enum": [
657
+ "enabled",
658
+ "disabled"
659
+ ]
660
+ },
661
+ "budgetTokens": {
662
+ "type": "number"
663
+ }
664
+ },
665
+ "required": [
666
+ "type"
667
+ ],
668
+ "additionalProperties": false
669
+ },
670
+ "reasoningEffort": {
671
+ "type": "string",
672
+ "enum": [
673
+ "low",
674
+ "medium",
675
+ "high",
676
+ "xhigh"
677
+ ]
678
+ },
679
+ "textVerbosity": {
680
+ "type": "string",
681
+ "enum": [
682
+ "low",
683
+ "medium",
684
+ "high"
685
+ ]
686
+ },
687
+ "providerOptions": {
688
+ "type": "object",
689
+ "propertyNames": {
690
+ "type": "string"
691
+ },
692
+ "additionalProperties": {}
693
+ },
694
+ "ultrawork": {
695
+ "type": "object",
696
+ "properties": {
697
+ "model": {
698
+ "type": "string"
699
+ },
700
+ "variant": {
701
+ "type": "string"
702
+ }
703
+ },
704
+ "additionalProperties": false
705
+ }
706
+ },
707
+ "additionalProperties": false
708
+ },
709
+ "hephaestus": {
710
+ "type": "object",
711
+ "properties": {
712
+ "model": {
713
+ "type": "string"
714
+ },
715
+ "fallback_models": {
716
+ "anyOf": [
717
+ {
718
+ "type": "string"
719
+ },
720
+ {
721
+ "type": "array",
722
+ "items": {
723
+ "type": "string"
724
+ }
725
+ }
726
+ ]
727
+ },
728
+ "variant": {
729
+ "type": "string"
730
+ },
731
+ "category": {
732
+ "type": "string"
733
+ },
734
+ "skills": {
735
+ "type": "array",
736
+ "items": {
737
+ "type": "string"
738
+ }
739
+ },
740
+ "temperature": {
741
+ "type": "number",
742
+ "minimum": 0,
743
+ "maximum": 2
744
+ },
745
+ "top_p": {
746
+ "type": "number",
747
+ "minimum": 0,
748
+ "maximum": 1
749
+ },
750
+ "prompt": {
751
+ "type": "string"
752
+ },
753
+ "prompt_append": {
754
+ "type": "string"
755
+ },
756
+ "tools": {
757
+ "type": "object",
758
+ "propertyNames": {
759
+ "type": "string"
760
+ },
761
+ "additionalProperties": {
762
+ "type": "boolean"
763
+ }
764
+ },
765
+ "disable": {
766
+ "type": "boolean"
767
+ },
768
+ "description": {
769
+ "type": "string"
770
+ },
771
+ "mode": {
772
+ "type": "string",
773
+ "enum": [
774
+ "subagent",
775
+ "primary",
776
+ "all"
777
+ ]
778
+ },
779
+ "color": {
780
+ "type": "string",
781
+ "pattern": "^#[0-9A-Fa-f]{6}$"
782
+ },
783
+ "permission": {
784
+ "type": "object",
785
+ "properties": {
786
+ "edit": {
787
+ "type": "string",
788
+ "enum": [
789
+ "ask",
790
+ "allow",
791
+ "deny"
792
+ ]
793
+ },
794
+ "bash": {
795
+ "anyOf": [
796
+ {
797
+ "type": "string",
798
+ "enum": [
799
+ "ask",
800
+ "allow",
801
+ "deny"
802
+ ]
803
+ },
804
+ {
805
+ "type": "object",
806
+ "propertyNames": {
807
+ "type": "string"
808
+ },
809
+ "additionalProperties": {
810
+ "type": "string",
811
+ "enum": [
812
+ "ask",
813
+ "allow",
814
+ "deny"
815
+ ]
816
+ }
817
+ }
818
+ ]
819
+ },
820
+ "webfetch": {
821
+ "type": "string",
822
+ "enum": [
823
+ "ask",
824
+ "allow",
825
+ "deny"
826
+ ]
827
+ },
828
+ "task": {
829
+ "type": "string",
830
+ "enum": [
831
+ "ask",
832
+ "allow",
833
+ "deny"
834
+ ]
835
+ },
836
+ "doom_loop": {
837
+ "type": "string",
838
+ "enum": [
839
+ "ask",
840
+ "allow",
841
+ "deny"
842
+ ]
843
+ },
844
+ "external_directory": {
845
+ "type": "string",
846
+ "enum": [
847
+ "ask",
848
+ "allow",
849
+ "deny"
850
+ ]
851
+ }
852
+ },
853
+ "additionalProperties": false
854
+ },
855
+ "maxTokens": {
856
+ "type": "number"
857
+ },
858
+ "thinking": {
859
+ "type": "object",
860
+ "properties": {
861
+ "type": {
862
+ "type": "string",
863
+ "enum": [
864
+ "enabled",
865
+ "disabled"
866
+ ]
867
+ },
868
+ "budgetTokens": {
869
+ "type": "number"
870
+ }
871
+ },
872
+ "required": [
873
+ "type"
874
+ ],
875
+ "additionalProperties": false
876
+ },
877
+ "reasoningEffort": {
878
+ "type": "string",
879
+ "enum": [
880
+ "low",
881
+ "medium",
882
+ "high",
883
+ "xhigh"
884
+ ]
885
+ },
886
+ "textVerbosity": {
887
+ "type": "string",
888
+ "enum": [
889
+ "low",
890
+ "medium",
891
+ "high"
892
+ ]
893
+ },
894
+ "providerOptions": {
895
+ "type": "object",
896
+ "propertyNames": {
897
+ "type": "string"
898
+ },
899
+ "additionalProperties": {}
900
+ },
901
+ "ultrawork": {
902
+ "type": "object",
903
+ "properties": {
904
+ "model": {
905
+ "type": "string"
906
+ },
907
+ "variant": {
908
+ "type": "string"
909
+ }
910
+ },
911
+ "additionalProperties": false
912
+ }
913
+ },
914
+ "additionalProperties": false
915
+ },
916
+ "sisyphus-junior": {
917
+ "type": "object",
918
+ "properties": {
919
+ "model": {
920
+ "type": "string"
921
+ },
922
+ "fallback_models": {
923
+ "anyOf": [
924
+ {
925
+ "type": "string"
926
+ },
927
+ {
928
+ "type": "array",
929
+ "items": {
930
+ "type": "string"
931
+ }
932
+ }
933
+ ]
934
+ },
935
+ "variant": {
936
+ "type": "string"
937
+ },
938
+ "category": {
939
+ "type": "string"
940
+ },
941
+ "skills": {
942
+ "type": "array",
943
+ "items": {
944
+ "type": "string"
945
+ }
946
+ },
947
+ "temperature": {
948
+ "type": "number",
949
+ "minimum": 0,
950
+ "maximum": 2
951
+ },
952
+ "top_p": {
953
+ "type": "number",
954
+ "minimum": 0,
955
+ "maximum": 1
956
+ },
957
+ "prompt": {
958
+ "type": "string"
959
+ },
960
+ "prompt_append": {
961
+ "type": "string"
962
+ },
963
+ "tools": {
964
+ "type": "object",
965
+ "propertyNames": {
966
+ "type": "string"
967
+ },
968
+ "additionalProperties": {
969
+ "type": "boolean"
970
+ }
971
+ },
972
+ "disable": {
973
+ "type": "boolean"
974
+ },
975
+ "description": {
976
+ "type": "string"
977
+ },
978
+ "mode": {
979
+ "type": "string",
980
+ "enum": [
981
+ "subagent",
982
+ "primary",
983
+ "all"
984
+ ]
985
+ },
986
+ "color": {
987
+ "type": "string",
988
+ "pattern": "^#[0-9A-Fa-f]{6}$"
989
+ },
990
+ "permission": {
991
+ "type": "object",
992
+ "properties": {
993
+ "edit": {
994
+ "type": "string",
995
+ "enum": [
996
+ "ask",
997
+ "allow",
998
+ "deny"
999
+ ]
1000
+ },
1001
+ "bash": {
1002
+ "anyOf": [
1003
+ {
1004
+ "type": "string",
1005
+ "enum": [
1006
+ "ask",
1007
+ "allow",
1008
+ "deny"
1009
+ ]
1010
+ },
1011
+ {
1012
+ "type": "object",
1013
+ "propertyNames": {
1014
+ "type": "string"
1015
+ },
1016
+ "additionalProperties": {
1017
+ "type": "string",
1018
+ "enum": [
1019
+ "ask",
1020
+ "allow",
1021
+ "deny"
1022
+ ]
1023
+ }
1024
+ }
1025
+ ]
1026
+ },
1027
+ "webfetch": {
1028
+ "type": "string",
1029
+ "enum": [
1030
+ "ask",
1031
+ "allow",
1032
+ "deny"
1033
+ ]
1034
+ },
1035
+ "task": {
1036
+ "type": "string",
1037
+ "enum": [
1038
+ "ask",
1039
+ "allow",
1040
+ "deny"
1041
+ ]
1042
+ },
1043
+ "doom_loop": {
1044
+ "type": "string",
1045
+ "enum": [
1046
+ "ask",
1047
+ "allow",
1048
+ "deny"
1049
+ ]
1050
+ },
1051
+ "external_directory": {
1052
+ "type": "string",
1053
+ "enum": [
1054
+ "ask",
1055
+ "allow",
1056
+ "deny"
1057
+ ]
1058
+ }
1059
+ },
1060
+ "additionalProperties": false
1061
+ },
1062
+ "maxTokens": {
1063
+ "type": "number"
1064
+ },
1065
+ "thinking": {
1066
+ "type": "object",
1067
+ "properties": {
1068
+ "type": {
1069
+ "type": "string",
1070
+ "enum": [
1071
+ "enabled",
1072
+ "disabled"
1073
+ ]
1074
+ },
1075
+ "budgetTokens": {
1076
+ "type": "number"
1077
+ }
1078
+ },
1079
+ "required": [
1080
+ "type"
1081
+ ],
1082
+ "additionalProperties": false
1083
+ },
1084
+ "reasoningEffort": {
1085
+ "type": "string",
1086
+ "enum": [
1087
+ "low",
1088
+ "medium",
1089
+ "high",
1090
+ "xhigh"
1091
+ ]
1092
+ },
1093
+ "textVerbosity": {
1094
+ "type": "string",
1095
+ "enum": [
1096
+ "low",
1097
+ "medium",
1098
+ "high"
1099
+ ]
1100
+ },
1101
+ "providerOptions": {
1102
+ "type": "object",
1103
+ "propertyNames": {
1104
+ "type": "string"
1105
+ },
1106
+ "additionalProperties": {}
1107
+ },
1108
+ "ultrawork": {
1109
+ "type": "object",
1110
+ "properties": {
1111
+ "model": {
1112
+ "type": "string"
1113
+ },
1114
+ "variant": {
1115
+ "type": "string"
1116
+ }
1117
+ },
1118
+ "additionalProperties": false
1119
+ }
1120
+ },
1121
+ "additionalProperties": false
1122
+ },
1123
+ "OpenCode-Builder": {
1124
+ "type": "object",
1125
+ "properties": {
1126
+ "model": {
1127
+ "type": "string"
1128
+ },
1129
+ "fallback_models": {
1130
+ "anyOf": [
1131
+ {
1132
+ "type": "string"
1133
+ },
1134
+ {
1135
+ "type": "array",
1136
+ "items": {
1137
+ "type": "string"
1138
+ }
1139
+ }
1140
+ ]
1141
+ },
1142
+ "variant": {
1143
+ "type": "string"
1144
+ },
1145
+ "category": {
1146
+ "type": "string"
1147
+ },
1148
+ "skills": {
1149
+ "type": "array",
1150
+ "items": {
1151
+ "type": "string"
1152
+ }
1153
+ },
1154
+ "temperature": {
1155
+ "type": "number",
1156
+ "minimum": 0,
1157
+ "maximum": 2
1158
+ },
1159
+ "top_p": {
1160
+ "type": "number",
1161
+ "minimum": 0,
1162
+ "maximum": 1
1163
+ },
1164
+ "prompt": {
1165
+ "type": "string"
1166
+ },
1167
+ "prompt_append": {
1168
+ "type": "string"
1169
+ },
1170
+ "tools": {
1171
+ "type": "object",
1172
+ "propertyNames": {
1173
+ "type": "string"
1174
+ },
1175
+ "additionalProperties": {
1176
+ "type": "boolean"
1177
+ }
1178
+ },
1179
+ "disable": {
1180
+ "type": "boolean"
1181
+ },
1182
+ "description": {
1183
+ "type": "string"
1184
+ },
1185
+ "mode": {
1186
+ "type": "string",
1187
+ "enum": [
1188
+ "subagent",
1189
+ "primary",
1190
+ "all"
1191
+ ]
1192
+ },
1193
+ "color": {
1194
+ "type": "string",
1195
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1196
+ },
1197
+ "permission": {
1198
+ "type": "object",
1199
+ "properties": {
1200
+ "edit": {
1201
+ "type": "string",
1202
+ "enum": [
1203
+ "ask",
1204
+ "allow",
1205
+ "deny"
1206
+ ]
1207
+ },
1208
+ "bash": {
1209
+ "anyOf": [
1210
+ {
1211
+ "type": "string",
1212
+ "enum": [
1213
+ "ask",
1214
+ "allow",
1215
+ "deny"
1216
+ ]
1217
+ },
1218
+ {
1219
+ "type": "object",
1220
+ "propertyNames": {
1221
+ "type": "string"
1222
+ },
1223
+ "additionalProperties": {
1224
+ "type": "string",
1225
+ "enum": [
1226
+ "ask",
1227
+ "allow",
1228
+ "deny"
1229
+ ]
1230
+ }
1231
+ }
1232
+ ]
1233
+ },
1234
+ "webfetch": {
1235
+ "type": "string",
1236
+ "enum": [
1237
+ "ask",
1238
+ "allow",
1239
+ "deny"
1240
+ ]
1241
+ },
1242
+ "task": {
1243
+ "type": "string",
1244
+ "enum": [
1245
+ "ask",
1246
+ "allow",
1247
+ "deny"
1248
+ ]
1249
+ },
1250
+ "doom_loop": {
1251
+ "type": "string",
1252
+ "enum": [
1253
+ "ask",
1254
+ "allow",
1255
+ "deny"
1256
+ ]
1257
+ },
1258
+ "external_directory": {
1259
+ "type": "string",
1260
+ "enum": [
1261
+ "ask",
1262
+ "allow",
1263
+ "deny"
1264
+ ]
1265
+ }
1266
+ },
1267
+ "additionalProperties": false
1268
+ },
1269
+ "maxTokens": {
1270
+ "type": "number"
1271
+ },
1272
+ "thinking": {
1273
+ "type": "object",
1274
+ "properties": {
1275
+ "type": {
1276
+ "type": "string",
1277
+ "enum": [
1278
+ "enabled",
1279
+ "disabled"
1280
+ ]
1281
+ },
1282
+ "budgetTokens": {
1283
+ "type": "number"
1284
+ }
1285
+ },
1286
+ "required": [
1287
+ "type"
1288
+ ],
1289
+ "additionalProperties": false
1290
+ },
1291
+ "reasoningEffort": {
1292
+ "type": "string",
1293
+ "enum": [
1294
+ "low",
1295
+ "medium",
1296
+ "high",
1297
+ "xhigh"
1298
+ ]
1299
+ },
1300
+ "textVerbosity": {
1301
+ "type": "string",
1302
+ "enum": [
1303
+ "low",
1304
+ "medium",
1305
+ "high"
1306
+ ]
1307
+ },
1308
+ "providerOptions": {
1309
+ "type": "object",
1310
+ "propertyNames": {
1311
+ "type": "string"
1312
+ },
1313
+ "additionalProperties": {}
1314
+ },
1315
+ "ultrawork": {
1316
+ "type": "object",
1317
+ "properties": {
1318
+ "model": {
1319
+ "type": "string"
1320
+ },
1321
+ "variant": {
1322
+ "type": "string"
1323
+ }
1324
+ },
1325
+ "additionalProperties": false
1326
+ }
1327
+ },
1328
+ "additionalProperties": false
1329
+ },
1330
+ "prometheus": {
1331
+ "type": "object",
1332
+ "properties": {
1333
+ "model": {
1334
+ "type": "string"
1335
+ },
1336
+ "fallback_models": {
1337
+ "anyOf": [
1338
+ {
1339
+ "type": "string"
1340
+ },
1341
+ {
1342
+ "type": "array",
1343
+ "items": {
1344
+ "type": "string"
1345
+ }
1346
+ }
1347
+ ]
1348
+ },
1349
+ "variant": {
1350
+ "type": "string"
1351
+ },
1352
+ "category": {
1353
+ "type": "string"
1354
+ },
1355
+ "skills": {
1356
+ "type": "array",
1357
+ "items": {
1358
+ "type": "string"
1359
+ }
1360
+ },
1361
+ "temperature": {
1362
+ "type": "number",
1363
+ "minimum": 0,
1364
+ "maximum": 2
1365
+ },
1366
+ "top_p": {
1367
+ "type": "number",
1368
+ "minimum": 0,
1369
+ "maximum": 1
1370
+ },
1371
+ "prompt": {
1372
+ "type": "string"
1373
+ },
1374
+ "prompt_append": {
1375
+ "type": "string"
1376
+ },
1377
+ "tools": {
1378
+ "type": "object",
1379
+ "propertyNames": {
1380
+ "type": "string"
1381
+ },
1382
+ "additionalProperties": {
1383
+ "type": "boolean"
1384
+ }
1385
+ },
1386
+ "disable": {
1387
+ "type": "boolean"
1388
+ },
1389
+ "description": {
1390
+ "type": "string"
1391
+ },
1392
+ "mode": {
1393
+ "type": "string",
1394
+ "enum": [
1395
+ "subagent",
1396
+ "primary",
1397
+ "all"
1398
+ ]
1399
+ },
1400
+ "color": {
1401
+ "type": "string",
1402
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1403
+ },
1404
+ "permission": {
1405
+ "type": "object",
1406
+ "properties": {
1407
+ "edit": {
1408
+ "type": "string",
1409
+ "enum": [
1410
+ "ask",
1411
+ "allow",
1412
+ "deny"
1413
+ ]
1414
+ },
1415
+ "bash": {
1416
+ "anyOf": [
1417
+ {
1418
+ "type": "string",
1419
+ "enum": [
1420
+ "ask",
1421
+ "allow",
1422
+ "deny"
1423
+ ]
1424
+ },
1425
+ {
1426
+ "type": "object",
1427
+ "propertyNames": {
1428
+ "type": "string"
1429
+ },
1430
+ "additionalProperties": {
1431
+ "type": "string",
1432
+ "enum": [
1433
+ "ask",
1434
+ "allow",
1435
+ "deny"
1436
+ ]
1437
+ }
1438
+ }
1439
+ ]
1440
+ },
1441
+ "webfetch": {
1442
+ "type": "string",
1443
+ "enum": [
1444
+ "ask",
1445
+ "allow",
1446
+ "deny"
1447
+ ]
1448
+ },
1449
+ "task": {
1450
+ "type": "string",
1451
+ "enum": [
1452
+ "ask",
1453
+ "allow",
1454
+ "deny"
1455
+ ]
1456
+ },
1457
+ "doom_loop": {
1458
+ "type": "string",
1459
+ "enum": [
1460
+ "ask",
1461
+ "allow",
1462
+ "deny"
1463
+ ]
1464
+ },
1465
+ "external_directory": {
1466
+ "type": "string",
1467
+ "enum": [
1468
+ "ask",
1469
+ "allow",
1470
+ "deny"
1471
+ ]
1472
+ }
1473
+ },
1474
+ "additionalProperties": false
1475
+ },
1476
+ "maxTokens": {
1477
+ "type": "number"
1478
+ },
1479
+ "thinking": {
1480
+ "type": "object",
1481
+ "properties": {
1482
+ "type": {
1483
+ "type": "string",
1484
+ "enum": [
1485
+ "enabled",
1486
+ "disabled"
1487
+ ]
1488
+ },
1489
+ "budgetTokens": {
1490
+ "type": "number"
1491
+ }
1492
+ },
1493
+ "required": [
1494
+ "type"
1495
+ ],
1496
+ "additionalProperties": false
1497
+ },
1498
+ "reasoningEffort": {
1499
+ "type": "string",
1500
+ "enum": [
1501
+ "low",
1502
+ "medium",
1503
+ "high",
1504
+ "xhigh"
1505
+ ]
1506
+ },
1507
+ "textVerbosity": {
1508
+ "type": "string",
1509
+ "enum": [
1510
+ "low",
1511
+ "medium",
1512
+ "high"
1513
+ ]
1514
+ },
1515
+ "providerOptions": {
1516
+ "type": "object",
1517
+ "propertyNames": {
1518
+ "type": "string"
1519
+ },
1520
+ "additionalProperties": {}
1521
+ },
1522
+ "ultrawork": {
1523
+ "type": "object",
1524
+ "properties": {
1525
+ "model": {
1526
+ "type": "string"
1527
+ },
1528
+ "variant": {
1529
+ "type": "string"
1530
+ }
1531
+ },
1532
+ "additionalProperties": false
1533
+ }
1534
+ },
1535
+ "additionalProperties": false
1536
+ },
1537
+ "metis": {
1538
+ "type": "object",
1539
+ "properties": {
1540
+ "model": {
1541
+ "type": "string"
1542
+ },
1543
+ "fallback_models": {
1544
+ "anyOf": [
1545
+ {
1546
+ "type": "string"
1547
+ },
1548
+ {
1549
+ "type": "array",
1550
+ "items": {
1551
+ "type": "string"
1552
+ }
1553
+ }
1554
+ ]
1555
+ },
1556
+ "variant": {
1557
+ "type": "string"
1558
+ },
1559
+ "category": {
1560
+ "type": "string"
1561
+ },
1562
+ "skills": {
1563
+ "type": "array",
1564
+ "items": {
1565
+ "type": "string"
1566
+ }
1567
+ },
1568
+ "temperature": {
1569
+ "type": "number",
1570
+ "minimum": 0,
1571
+ "maximum": 2
1572
+ },
1573
+ "top_p": {
1574
+ "type": "number",
1575
+ "minimum": 0,
1576
+ "maximum": 1
1577
+ },
1578
+ "prompt": {
1579
+ "type": "string"
1580
+ },
1581
+ "prompt_append": {
1582
+ "type": "string"
1583
+ },
1584
+ "tools": {
1585
+ "type": "object",
1586
+ "propertyNames": {
1587
+ "type": "string"
1588
+ },
1589
+ "additionalProperties": {
1590
+ "type": "boolean"
1591
+ }
1592
+ },
1593
+ "disable": {
1594
+ "type": "boolean"
1595
+ },
1596
+ "description": {
1597
+ "type": "string"
1598
+ },
1599
+ "mode": {
1600
+ "type": "string",
1601
+ "enum": [
1602
+ "subagent",
1603
+ "primary",
1604
+ "all"
1605
+ ]
1606
+ },
1607
+ "color": {
1608
+ "type": "string",
1609
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1610
+ },
1611
+ "permission": {
1612
+ "type": "object",
1613
+ "properties": {
1614
+ "edit": {
1615
+ "type": "string",
1616
+ "enum": [
1617
+ "ask",
1618
+ "allow",
1619
+ "deny"
1620
+ ]
1621
+ },
1622
+ "bash": {
1623
+ "anyOf": [
1624
+ {
1625
+ "type": "string",
1626
+ "enum": [
1627
+ "ask",
1628
+ "allow",
1629
+ "deny"
1630
+ ]
1631
+ },
1632
+ {
1633
+ "type": "object",
1634
+ "propertyNames": {
1635
+ "type": "string"
1636
+ },
1637
+ "additionalProperties": {
1638
+ "type": "string",
1639
+ "enum": [
1640
+ "ask",
1641
+ "allow",
1642
+ "deny"
1643
+ ]
1644
+ }
1645
+ }
1646
+ ]
1647
+ },
1648
+ "webfetch": {
1649
+ "type": "string",
1650
+ "enum": [
1651
+ "ask",
1652
+ "allow",
1653
+ "deny"
1654
+ ]
1655
+ },
1656
+ "task": {
1657
+ "type": "string",
1658
+ "enum": [
1659
+ "ask",
1660
+ "allow",
1661
+ "deny"
1662
+ ]
1663
+ },
1664
+ "doom_loop": {
1665
+ "type": "string",
1666
+ "enum": [
1667
+ "ask",
1668
+ "allow",
1669
+ "deny"
1670
+ ]
1671
+ },
1672
+ "external_directory": {
1673
+ "type": "string",
1674
+ "enum": [
1675
+ "ask",
1676
+ "allow",
1677
+ "deny"
1678
+ ]
1679
+ }
1680
+ },
1681
+ "additionalProperties": false
1682
+ },
1683
+ "maxTokens": {
1684
+ "type": "number"
1685
+ },
1686
+ "thinking": {
1687
+ "type": "object",
1688
+ "properties": {
1689
+ "type": {
1690
+ "type": "string",
1691
+ "enum": [
1692
+ "enabled",
1693
+ "disabled"
1694
+ ]
1695
+ },
1696
+ "budgetTokens": {
1697
+ "type": "number"
1698
+ }
1699
+ },
1700
+ "required": [
1701
+ "type"
1702
+ ],
1703
+ "additionalProperties": false
1704
+ },
1705
+ "reasoningEffort": {
1706
+ "type": "string",
1707
+ "enum": [
1708
+ "low",
1709
+ "medium",
1710
+ "high",
1711
+ "xhigh"
1712
+ ]
1713
+ },
1714
+ "textVerbosity": {
1715
+ "type": "string",
1716
+ "enum": [
1717
+ "low",
1718
+ "medium",
1719
+ "high"
1720
+ ]
1721
+ },
1722
+ "providerOptions": {
1723
+ "type": "object",
1724
+ "propertyNames": {
1725
+ "type": "string"
1726
+ },
1727
+ "additionalProperties": {}
1728
+ },
1729
+ "ultrawork": {
1730
+ "type": "object",
1731
+ "properties": {
1732
+ "model": {
1733
+ "type": "string"
1734
+ },
1735
+ "variant": {
1736
+ "type": "string"
1737
+ }
1738
+ },
1739
+ "additionalProperties": false
1740
+ }
1741
+ },
1742
+ "additionalProperties": false
1743
+ },
1744
+ "momus": {
1745
+ "type": "object",
1746
+ "properties": {
1747
+ "model": {
1748
+ "type": "string"
1749
+ },
1750
+ "fallback_models": {
1751
+ "anyOf": [
1752
+ {
1753
+ "type": "string"
1754
+ },
1755
+ {
1756
+ "type": "array",
1757
+ "items": {
1758
+ "type": "string"
1759
+ }
1760
+ }
1761
+ ]
1762
+ },
1763
+ "variant": {
1764
+ "type": "string"
1765
+ },
1766
+ "category": {
1767
+ "type": "string"
1768
+ },
1769
+ "skills": {
1770
+ "type": "array",
1771
+ "items": {
1772
+ "type": "string"
1773
+ }
1774
+ },
1775
+ "temperature": {
1776
+ "type": "number",
1777
+ "minimum": 0,
1778
+ "maximum": 2
1779
+ },
1780
+ "top_p": {
1781
+ "type": "number",
1782
+ "minimum": 0,
1783
+ "maximum": 1
1784
+ },
1785
+ "prompt": {
1786
+ "type": "string"
1787
+ },
1788
+ "prompt_append": {
1789
+ "type": "string"
1790
+ },
1791
+ "tools": {
1792
+ "type": "object",
1793
+ "propertyNames": {
1794
+ "type": "string"
1795
+ },
1796
+ "additionalProperties": {
1797
+ "type": "boolean"
1798
+ }
1799
+ },
1800
+ "disable": {
1801
+ "type": "boolean"
1802
+ },
1803
+ "description": {
1804
+ "type": "string"
1805
+ },
1806
+ "mode": {
1807
+ "type": "string",
1808
+ "enum": [
1809
+ "subagent",
1810
+ "primary",
1811
+ "all"
1812
+ ]
1813
+ },
1814
+ "color": {
1815
+ "type": "string",
1816
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1817
+ },
1818
+ "permission": {
1819
+ "type": "object",
1820
+ "properties": {
1821
+ "edit": {
1822
+ "type": "string",
1823
+ "enum": [
1824
+ "ask",
1825
+ "allow",
1826
+ "deny"
1827
+ ]
1828
+ },
1829
+ "bash": {
1830
+ "anyOf": [
1831
+ {
1832
+ "type": "string",
1833
+ "enum": [
1834
+ "ask",
1835
+ "allow",
1836
+ "deny"
1837
+ ]
1838
+ },
1839
+ {
1840
+ "type": "object",
1841
+ "propertyNames": {
1842
+ "type": "string"
1843
+ },
1844
+ "additionalProperties": {
1845
+ "type": "string",
1846
+ "enum": [
1847
+ "ask",
1848
+ "allow",
1849
+ "deny"
1850
+ ]
1851
+ }
1852
+ }
1853
+ ]
1854
+ },
1855
+ "webfetch": {
1856
+ "type": "string",
1857
+ "enum": [
1858
+ "ask",
1859
+ "allow",
1860
+ "deny"
1861
+ ]
1862
+ },
1863
+ "task": {
1864
+ "type": "string",
1865
+ "enum": [
1866
+ "ask",
1867
+ "allow",
1868
+ "deny"
1869
+ ]
1870
+ },
1871
+ "doom_loop": {
1872
+ "type": "string",
1873
+ "enum": [
1874
+ "ask",
1875
+ "allow",
1876
+ "deny"
1877
+ ]
1878
+ },
1879
+ "external_directory": {
1880
+ "type": "string",
1881
+ "enum": [
1882
+ "ask",
1883
+ "allow",
1884
+ "deny"
1885
+ ]
1886
+ }
1887
+ },
1888
+ "additionalProperties": false
1889
+ },
1890
+ "maxTokens": {
1891
+ "type": "number"
1892
+ },
1893
+ "thinking": {
1894
+ "type": "object",
1895
+ "properties": {
1896
+ "type": {
1897
+ "type": "string",
1898
+ "enum": [
1899
+ "enabled",
1900
+ "disabled"
1901
+ ]
1902
+ },
1903
+ "budgetTokens": {
1904
+ "type": "number"
1905
+ }
1906
+ },
1907
+ "required": [
1908
+ "type"
1909
+ ],
1910
+ "additionalProperties": false
1911
+ },
1912
+ "reasoningEffort": {
1913
+ "type": "string",
1914
+ "enum": [
1915
+ "low",
1916
+ "medium",
1917
+ "high",
1918
+ "xhigh"
1919
+ ]
1920
+ },
1921
+ "textVerbosity": {
1922
+ "type": "string",
1923
+ "enum": [
1924
+ "low",
1925
+ "medium",
1926
+ "high"
1927
+ ]
1928
+ },
1929
+ "providerOptions": {
1930
+ "type": "object",
1931
+ "propertyNames": {
1932
+ "type": "string"
1933
+ },
1934
+ "additionalProperties": {}
1935
+ },
1936
+ "ultrawork": {
1937
+ "type": "object",
1938
+ "properties": {
1939
+ "model": {
1940
+ "type": "string"
1941
+ },
1942
+ "variant": {
1943
+ "type": "string"
1944
+ }
1945
+ },
1946
+ "additionalProperties": false
1947
+ }
1948
+ },
1949
+ "additionalProperties": false
1950
+ },
1951
+ "oracle": {
1952
+ "type": "object",
1953
+ "properties": {
1954
+ "model": {
1955
+ "type": "string"
1956
+ },
1957
+ "fallback_models": {
1958
+ "anyOf": [
1959
+ {
1960
+ "type": "string"
1961
+ },
1962
+ {
1963
+ "type": "array",
1964
+ "items": {
1965
+ "type": "string"
1966
+ }
1967
+ }
1968
+ ]
1969
+ },
1970
+ "variant": {
1971
+ "type": "string"
1972
+ },
1973
+ "category": {
1974
+ "type": "string"
1975
+ },
1976
+ "skills": {
1977
+ "type": "array",
1978
+ "items": {
1979
+ "type": "string"
1980
+ }
1981
+ },
1982
+ "temperature": {
1983
+ "type": "number",
1984
+ "minimum": 0,
1985
+ "maximum": 2
1986
+ },
1987
+ "top_p": {
1988
+ "type": "number",
1989
+ "minimum": 0,
1990
+ "maximum": 1
1991
+ },
1992
+ "prompt": {
1993
+ "type": "string"
1994
+ },
1995
+ "prompt_append": {
1996
+ "type": "string"
1997
+ },
1998
+ "tools": {
1999
+ "type": "object",
2000
+ "propertyNames": {
2001
+ "type": "string"
2002
+ },
2003
+ "additionalProperties": {
2004
+ "type": "boolean"
2005
+ }
2006
+ },
2007
+ "disable": {
2008
+ "type": "boolean"
2009
+ },
2010
+ "description": {
2011
+ "type": "string"
2012
+ },
2013
+ "mode": {
2014
+ "type": "string",
2015
+ "enum": [
2016
+ "subagent",
2017
+ "primary",
2018
+ "all"
2019
+ ]
2020
+ },
2021
+ "color": {
2022
+ "type": "string",
2023
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2024
+ },
2025
+ "permission": {
2026
+ "type": "object",
2027
+ "properties": {
2028
+ "edit": {
2029
+ "type": "string",
2030
+ "enum": [
2031
+ "ask",
2032
+ "allow",
2033
+ "deny"
2034
+ ]
2035
+ },
2036
+ "bash": {
2037
+ "anyOf": [
2038
+ {
2039
+ "type": "string",
2040
+ "enum": [
2041
+ "ask",
2042
+ "allow",
2043
+ "deny"
2044
+ ]
2045
+ },
2046
+ {
2047
+ "type": "object",
2048
+ "propertyNames": {
2049
+ "type": "string"
2050
+ },
2051
+ "additionalProperties": {
2052
+ "type": "string",
2053
+ "enum": [
2054
+ "ask",
2055
+ "allow",
2056
+ "deny"
2057
+ ]
2058
+ }
2059
+ }
2060
+ ]
2061
+ },
2062
+ "webfetch": {
2063
+ "type": "string",
2064
+ "enum": [
2065
+ "ask",
2066
+ "allow",
2067
+ "deny"
2068
+ ]
2069
+ },
2070
+ "task": {
2071
+ "type": "string",
2072
+ "enum": [
2073
+ "ask",
2074
+ "allow",
2075
+ "deny"
2076
+ ]
2077
+ },
2078
+ "doom_loop": {
2079
+ "type": "string",
2080
+ "enum": [
2081
+ "ask",
2082
+ "allow",
2083
+ "deny"
2084
+ ]
2085
+ },
2086
+ "external_directory": {
2087
+ "type": "string",
2088
+ "enum": [
2089
+ "ask",
2090
+ "allow",
2091
+ "deny"
2092
+ ]
2093
+ }
2094
+ },
2095
+ "additionalProperties": false
2096
+ },
2097
+ "maxTokens": {
2098
+ "type": "number"
2099
+ },
2100
+ "thinking": {
2101
+ "type": "object",
2102
+ "properties": {
2103
+ "type": {
2104
+ "type": "string",
2105
+ "enum": [
2106
+ "enabled",
2107
+ "disabled"
2108
+ ]
2109
+ },
2110
+ "budgetTokens": {
2111
+ "type": "number"
2112
+ }
2113
+ },
2114
+ "required": [
2115
+ "type"
2116
+ ],
2117
+ "additionalProperties": false
2118
+ },
2119
+ "reasoningEffort": {
2120
+ "type": "string",
2121
+ "enum": [
2122
+ "low",
2123
+ "medium",
2124
+ "high",
2125
+ "xhigh"
2126
+ ]
2127
+ },
2128
+ "textVerbosity": {
2129
+ "type": "string",
2130
+ "enum": [
2131
+ "low",
2132
+ "medium",
2133
+ "high"
2134
+ ]
2135
+ },
2136
+ "providerOptions": {
2137
+ "type": "object",
2138
+ "propertyNames": {
2139
+ "type": "string"
2140
+ },
2141
+ "additionalProperties": {}
2142
+ },
2143
+ "ultrawork": {
2144
+ "type": "object",
2145
+ "properties": {
2146
+ "model": {
2147
+ "type": "string"
2148
+ },
2149
+ "variant": {
2150
+ "type": "string"
2151
+ }
2152
+ },
2153
+ "additionalProperties": false
2154
+ }
2155
+ },
2156
+ "additionalProperties": false
2157
+ },
2158
+ "librarian": {
2159
+ "type": "object",
2160
+ "properties": {
2161
+ "model": {
2162
+ "type": "string"
2163
+ },
2164
+ "fallback_models": {
2165
+ "anyOf": [
2166
+ {
2167
+ "type": "string"
2168
+ },
2169
+ {
2170
+ "type": "array",
2171
+ "items": {
2172
+ "type": "string"
2173
+ }
2174
+ }
2175
+ ]
2176
+ },
2177
+ "variant": {
2178
+ "type": "string"
2179
+ },
2180
+ "category": {
2181
+ "type": "string"
2182
+ },
2183
+ "skills": {
2184
+ "type": "array",
2185
+ "items": {
2186
+ "type": "string"
2187
+ }
2188
+ },
2189
+ "temperature": {
2190
+ "type": "number",
2191
+ "minimum": 0,
2192
+ "maximum": 2
2193
+ },
2194
+ "top_p": {
2195
+ "type": "number",
2196
+ "minimum": 0,
2197
+ "maximum": 1
2198
+ },
2199
+ "prompt": {
2200
+ "type": "string"
2201
+ },
2202
+ "prompt_append": {
2203
+ "type": "string"
2204
+ },
2205
+ "tools": {
2206
+ "type": "object",
2207
+ "propertyNames": {
2208
+ "type": "string"
2209
+ },
2210
+ "additionalProperties": {
2211
+ "type": "boolean"
2212
+ }
2213
+ },
2214
+ "disable": {
2215
+ "type": "boolean"
2216
+ },
2217
+ "description": {
2218
+ "type": "string"
2219
+ },
2220
+ "mode": {
2221
+ "type": "string",
2222
+ "enum": [
2223
+ "subagent",
2224
+ "primary",
2225
+ "all"
2226
+ ]
2227
+ },
2228
+ "color": {
2229
+ "type": "string",
2230
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2231
+ },
2232
+ "permission": {
2233
+ "type": "object",
2234
+ "properties": {
2235
+ "edit": {
2236
+ "type": "string",
2237
+ "enum": [
2238
+ "ask",
2239
+ "allow",
2240
+ "deny"
2241
+ ]
2242
+ },
2243
+ "bash": {
2244
+ "anyOf": [
2245
+ {
2246
+ "type": "string",
2247
+ "enum": [
2248
+ "ask",
2249
+ "allow",
2250
+ "deny"
2251
+ ]
2252
+ },
2253
+ {
2254
+ "type": "object",
2255
+ "propertyNames": {
2256
+ "type": "string"
2257
+ },
2258
+ "additionalProperties": {
2259
+ "type": "string",
2260
+ "enum": [
2261
+ "ask",
2262
+ "allow",
2263
+ "deny"
2264
+ ]
2265
+ }
2266
+ }
2267
+ ]
2268
+ },
2269
+ "webfetch": {
2270
+ "type": "string",
2271
+ "enum": [
2272
+ "ask",
2273
+ "allow",
2274
+ "deny"
2275
+ ]
2276
+ },
2277
+ "task": {
2278
+ "type": "string",
2279
+ "enum": [
2280
+ "ask",
2281
+ "allow",
2282
+ "deny"
2283
+ ]
2284
+ },
2285
+ "doom_loop": {
2286
+ "type": "string",
2287
+ "enum": [
2288
+ "ask",
2289
+ "allow",
2290
+ "deny"
2291
+ ]
2292
+ },
2293
+ "external_directory": {
2294
+ "type": "string",
2295
+ "enum": [
2296
+ "ask",
2297
+ "allow",
2298
+ "deny"
2299
+ ]
2300
+ }
2301
+ },
2302
+ "additionalProperties": false
2303
+ },
2304
+ "maxTokens": {
2305
+ "type": "number"
2306
+ },
2307
+ "thinking": {
2308
+ "type": "object",
2309
+ "properties": {
2310
+ "type": {
2311
+ "type": "string",
2312
+ "enum": [
2313
+ "enabled",
2314
+ "disabled"
2315
+ ]
2316
+ },
2317
+ "budgetTokens": {
2318
+ "type": "number"
2319
+ }
2320
+ },
2321
+ "required": [
2322
+ "type"
2323
+ ],
2324
+ "additionalProperties": false
2325
+ },
2326
+ "reasoningEffort": {
2327
+ "type": "string",
2328
+ "enum": [
2329
+ "low",
2330
+ "medium",
2331
+ "high",
2332
+ "xhigh"
2333
+ ]
2334
+ },
2335
+ "textVerbosity": {
2336
+ "type": "string",
2337
+ "enum": [
2338
+ "low",
2339
+ "medium",
2340
+ "high"
2341
+ ]
2342
+ },
2343
+ "providerOptions": {
2344
+ "type": "object",
2345
+ "propertyNames": {
2346
+ "type": "string"
2347
+ },
2348
+ "additionalProperties": {}
2349
+ },
2350
+ "ultrawork": {
2351
+ "type": "object",
2352
+ "properties": {
2353
+ "model": {
2354
+ "type": "string"
2355
+ },
2356
+ "variant": {
2357
+ "type": "string"
2358
+ }
2359
+ },
2360
+ "additionalProperties": false
2361
+ }
2362
+ },
2363
+ "additionalProperties": false
2364
+ },
2365
+ "explore": {
2366
+ "type": "object",
2367
+ "properties": {
2368
+ "model": {
2369
+ "type": "string"
2370
+ },
2371
+ "fallback_models": {
2372
+ "anyOf": [
2373
+ {
2374
+ "type": "string"
2375
+ },
2376
+ {
2377
+ "type": "array",
2378
+ "items": {
2379
+ "type": "string"
2380
+ }
2381
+ }
2382
+ ]
2383
+ },
2384
+ "variant": {
2385
+ "type": "string"
2386
+ },
2387
+ "category": {
2388
+ "type": "string"
2389
+ },
2390
+ "skills": {
2391
+ "type": "array",
2392
+ "items": {
2393
+ "type": "string"
2394
+ }
2395
+ },
2396
+ "temperature": {
2397
+ "type": "number",
2398
+ "minimum": 0,
2399
+ "maximum": 2
2400
+ },
2401
+ "top_p": {
2402
+ "type": "number",
2403
+ "minimum": 0,
2404
+ "maximum": 1
2405
+ },
2406
+ "prompt": {
2407
+ "type": "string"
2408
+ },
2409
+ "prompt_append": {
2410
+ "type": "string"
2411
+ },
2412
+ "tools": {
2413
+ "type": "object",
2414
+ "propertyNames": {
2415
+ "type": "string"
2416
+ },
2417
+ "additionalProperties": {
2418
+ "type": "boolean"
2419
+ }
2420
+ },
2421
+ "disable": {
2422
+ "type": "boolean"
2423
+ },
2424
+ "description": {
2425
+ "type": "string"
2426
+ },
2427
+ "mode": {
2428
+ "type": "string",
2429
+ "enum": [
2430
+ "subagent",
2431
+ "primary",
2432
+ "all"
2433
+ ]
2434
+ },
2435
+ "color": {
2436
+ "type": "string",
2437
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2438
+ },
2439
+ "permission": {
2440
+ "type": "object",
2441
+ "properties": {
2442
+ "edit": {
2443
+ "type": "string",
2444
+ "enum": [
2445
+ "ask",
2446
+ "allow",
2447
+ "deny"
2448
+ ]
2449
+ },
2450
+ "bash": {
2451
+ "anyOf": [
2452
+ {
2453
+ "type": "string",
2454
+ "enum": [
2455
+ "ask",
2456
+ "allow",
2457
+ "deny"
2458
+ ]
2459
+ },
2460
+ {
2461
+ "type": "object",
2462
+ "propertyNames": {
2463
+ "type": "string"
2464
+ },
2465
+ "additionalProperties": {
2466
+ "type": "string",
2467
+ "enum": [
2468
+ "ask",
2469
+ "allow",
2470
+ "deny"
2471
+ ]
2472
+ }
2473
+ }
2474
+ ]
2475
+ },
2476
+ "webfetch": {
2477
+ "type": "string",
2478
+ "enum": [
2479
+ "ask",
2480
+ "allow",
2481
+ "deny"
2482
+ ]
2483
+ },
2484
+ "task": {
2485
+ "type": "string",
2486
+ "enum": [
2487
+ "ask",
2488
+ "allow",
2489
+ "deny"
2490
+ ]
2491
+ },
2492
+ "doom_loop": {
2493
+ "type": "string",
2494
+ "enum": [
2495
+ "ask",
2496
+ "allow",
2497
+ "deny"
2498
+ ]
2499
+ },
2500
+ "external_directory": {
2501
+ "type": "string",
2502
+ "enum": [
2503
+ "ask",
2504
+ "allow",
2505
+ "deny"
2506
+ ]
2507
+ }
2508
+ },
2509
+ "additionalProperties": false
2510
+ },
2511
+ "maxTokens": {
2512
+ "type": "number"
2513
+ },
2514
+ "thinking": {
2515
+ "type": "object",
2516
+ "properties": {
2517
+ "type": {
2518
+ "type": "string",
2519
+ "enum": [
2520
+ "enabled",
2521
+ "disabled"
2522
+ ]
2523
+ },
2524
+ "budgetTokens": {
2525
+ "type": "number"
2526
+ }
2527
+ },
2528
+ "required": [
2529
+ "type"
2530
+ ],
2531
+ "additionalProperties": false
2532
+ },
2533
+ "reasoningEffort": {
2534
+ "type": "string",
2535
+ "enum": [
2536
+ "low",
2537
+ "medium",
2538
+ "high",
2539
+ "xhigh"
2540
+ ]
2541
+ },
2542
+ "textVerbosity": {
2543
+ "type": "string",
2544
+ "enum": [
2545
+ "low",
2546
+ "medium",
2547
+ "high"
2548
+ ]
2549
+ },
2550
+ "providerOptions": {
2551
+ "type": "object",
2552
+ "propertyNames": {
2553
+ "type": "string"
2554
+ },
2555
+ "additionalProperties": {}
2556
+ },
2557
+ "ultrawork": {
2558
+ "type": "object",
2559
+ "properties": {
2560
+ "model": {
2561
+ "type": "string"
2562
+ },
2563
+ "variant": {
2564
+ "type": "string"
2565
+ }
2566
+ },
2567
+ "additionalProperties": false
2568
+ }
2569
+ },
2570
+ "additionalProperties": false
2571
+ },
2572
+ "multimodal-looker": {
2573
+ "type": "object",
2574
+ "properties": {
2575
+ "model": {
2576
+ "type": "string"
2577
+ },
2578
+ "fallback_models": {
2579
+ "anyOf": [
2580
+ {
2581
+ "type": "string"
2582
+ },
2583
+ {
2584
+ "type": "array",
2585
+ "items": {
2586
+ "type": "string"
2587
+ }
2588
+ }
2589
+ ]
2590
+ },
2591
+ "variant": {
2592
+ "type": "string"
2593
+ },
2594
+ "category": {
2595
+ "type": "string"
2596
+ },
2597
+ "skills": {
2598
+ "type": "array",
2599
+ "items": {
2600
+ "type": "string"
2601
+ }
2602
+ },
2603
+ "temperature": {
2604
+ "type": "number",
2605
+ "minimum": 0,
2606
+ "maximum": 2
2607
+ },
2608
+ "top_p": {
2609
+ "type": "number",
2610
+ "minimum": 0,
2611
+ "maximum": 1
2612
+ },
2613
+ "prompt": {
2614
+ "type": "string"
2615
+ },
2616
+ "prompt_append": {
2617
+ "type": "string"
2618
+ },
2619
+ "tools": {
2620
+ "type": "object",
2621
+ "propertyNames": {
2622
+ "type": "string"
2623
+ },
2624
+ "additionalProperties": {
2625
+ "type": "boolean"
2626
+ }
2627
+ },
2628
+ "disable": {
2629
+ "type": "boolean"
2630
+ },
2631
+ "description": {
2632
+ "type": "string"
2633
+ },
2634
+ "mode": {
2635
+ "type": "string",
2636
+ "enum": [
2637
+ "subagent",
2638
+ "primary",
2639
+ "all"
2640
+ ]
2641
+ },
2642
+ "color": {
2643
+ "type": "string",
2644
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2645
+ },
2646
+ "permission": {
2647
+ "type": "object",
2648
+ "properties": {
2649
+ "edit": {
2650
+ "type": "string",
2651
+ "enum": [
2652
+ "ask",
2653
+ "allow",
2654
+ "deny"
2655
+ ]
2656
+ },
2657
+ "bash": {
2658
+ "anyOf": [
2659
+ {
2660
+ "type": "string",
2661
+ "enum": [
2662
+ "ask",
2663
+ "allow",
2664
+ "deny"
2665
+ ]
2666
+ },
2667
+ {
2668
+ "type": "object",
2669
+ "propertyNames": {
2670
+ "type": "string"
2671
+ },
2672
+ "additionalProperties": {
2673
+ "type": "string",
2674
+ "enum": [
2675
+ "ask",
2676
+ "allow",
2677
+ "deny"
2678
+ ]
2679
+ }
2680
+ }
2681
+ ]
2682
+ },
2683
+ "webfetch": {
2684
+ "type": "string",
2685
+ "enum": [
2686
+ "ask",
2687
+ "allow",
2688
+ "deny"
2689
+ ]
2690
+ },
2691
+ "task": {
2692
+ "type": "string",
2693
+ "enum": [
2694
+ "ask",
2695
+ "allow",
2696
+ "deny"
2697
+ ]
2698
+ },
2699
+ "doom_loop": {
2700
+ "type": "string",
2701
+ "enum": [
2702
+ "ask",
2703
+ "allow",
2704
+ "deny"
2705
+ ]
2706
+ },
2707
+ "external_directory": {
2708
+ "type": "string",
2709
+ "enum": [
2710
+ "ask",
2711
+ "allow",
2712
+ "deny"
2713
+ ]
2714
+ }
2715
+ },
2716
+ "additionalProperties": false
2717
+ },
2718
+ "maxTokens": {
2719
+ "type": "number"
2720
+ },
2721
+ "thinking": {
2722
+ "type": "object",
2723
+ "properties": {
2724
+ "type": {
2725
+ "type": "string",
2726
+ "enum": [
2727
+ "enabled",
2728
+ "disabled"
2729
+ ]
2730
+ },
2731
+ "budgetTokens": {
2732
+ "type": "number"
2733
+ }
2734
+ },
2735
+ "required": [
2736
+ "type"
2737
+ ],
2738
+ "additionalProperties": false
2739
+ },
2740
+ "reasoningEffort": {
2741
+ "type": "string",
2742
+ "enum": [
2743
+ "low",
2744
+ "medium",
2745
+ "high",
2746
+ "xhigh"
2747
+ ]
2748
+ },
2749
+ "textVerbosity": {
2750
+ "type": "string",
2751
+ "enum": [
2752
+ "low",
2753
+ "medium",
2754
+ "high"
2755
+ ]
2756
+ },
2757
+ "providerOptions": {
2758
+ "type": "object",
2759
+ "propertyNames": {
2760
+ "type": "string"
2761
+ },
2762
+ "additionalProperties": {}
2763
+ },
2764
+ "ultrawork": {
2765
+ "type": "object",
2766
+ "properties": {
2767
+ "model": {
2768
+ "type": "string"
2769
+ },
2770
+ "variant": {
2771
+ "type": "string"
2772
+ }
2773
+ },
2774
+ "additionalProperties": false
2775
+ }
2776
+ },
2777
+ "additionalProperties": false
2778
+ },
2779
+ "atlas": {
2780
+ "type": "object",
2781
+ "properties": {
2782
+ "model": {
2783
+ "type": "string"
2784
+ },
2785
+ "fallback_models": {
2786
+ "anyOf": [
2787
+ {
2788
+ "type": "string"
2789
+ },
2790
+ {
2791
+ "type": "array",
2792
+ "items": {
2793
+ "type": "string"
2794
+ }
2795
+ }
2796
+ ]
2797
+ },
2798
+ "variant": {
2799
+ "type": "string"
2800
+ },
2801
+ "category": {
2802
+ "type": "string"
2803
+ },
2804
+ "skills": {
2805
+ "type": "array",
2806
+ "items": {
2807
+ "type": "string"
2808
+ }
2809
+ },
2810
+ "temperature": {
2811
+ "type": "number",
2812
+ "minimum": 0,
2813
+ "maximum": 2
2814
+ },
2815
+ "top_p": {
2816
+ "type": "number",
2817
+ "minimum": 0,
2818
+ "maximum": 1
2819
+ },
2820
+ "prompt": {
2821
+ "type": "string"
2822
+ },
2823
+ "prompt_append": {
2824
+ "type": "string"
2825
+ },
2826
+ "tools": {
2827
+ "type": "object",
2828
+ "propertyNames": {
2829
+ "type": "string"
2830
+ },
2831
+ "additionalProperties": {
2832
+ "type": "boolean"
2833
+ }
2834
+ },
2835
+ "disable": {
2836
+ "type": "boolean"
2837
+ },
2838
+ "description": {
2839
+ "type": "string"
2840
+ },
2841
+ "mode": {
2842
+ "type": "string",
2843
+ "enum": [
2844
+ "subagent",
2845
+ "primary",
2846
+ "all"
2847
+ ]
2848
+ },
2849
+ "color": {
2850
+ "type": "string",
2851
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2852
+ },
2853
+ "permission": {
2854
+ "type": "object",
2855
+ "properties": {
2856
+ "edit": {
2857
+ "type": "string",
2858
+ "enum": [
2859
+ "ask",
2860
+ "allow",
2861
+ "deny"
2862
+ ]
2863
+ },
2864
+ "bash": {
2865
+ "anyOf": [
2866
+ {
2867
+ "type": "string",
2868
+ "enum": [
2869
+ "ask",
2870
+ "allow",
2871
+ "deny"
2872
+ ]
2873
+ },
2874
+ {
2875
+ "type": "object",
2876
+ "propertyNames": {
2877
+ "type": "string"
2878
+ },
2879
+ "additionalProperties": {
2880
+ "type": "string",
2881
+ "enum": [
2882
+ "ask",
2883
+ "allow",
2884
+ "deny"
2885
+ ]
2886
+ }
2887
+ }
2888
+ ]
2889
+ },
2890
+ "webfetch": {
2891
+ "type": "string",
2892
+ "enum": [
2893
+ "ask",
2894
+ "allow",
2895
+ "deny"
2896
+ ]
2897
+ },
2898
+ "task": {
2899
+ "type": "string",
2900
+ "enum": [
2901
+ "ask",
2902
+ "allow",
2903
+ "deny"
2904
+ ]
2905
+ },
2906
+ "doom_loop": {
2907
+ "type": "string",
2908
+ "enum": [
2909
+ "ask",
2910
+ "allow",
2911
+ "deny"
2912
+ ]
2913
+ },
2914
+ "external_directory": {
2915
+ "type": "string",
2916
+ "enum": [
2917
+ "ask",
2918
+ "allow",
2919
+ "deny"
2920
+ ]
2921
+ }
2922
+ },
2923
+ "additionalProperties": false
2924
+ },
2925
+ "maxTokens": {
2926
+ "type": "number"
2927
+ },
2928
+ "thinking": {
2929
+ "type": "object",
2930
+ "properties": {
2931
+ "type": {
2932
+ "type": "string",
2933
+ "enum": [
2934
+ "enabled",
2935
+ "disabled"
2936
+ ]
2937
+ },
2938
+ "budgetTokens": {
2939
+ "type": "number"
2940
+ }
2941
+ },
2942
+ "required": [
2943
+ "type"
2944
+ ],
2945
+ "additionalProperties": false
2946
+ },
2947
+ "reasoningEffort": {
2948
+ "type": "string",
2949
+ "enum": [
2950
+ "low",
2951
+ "medium",
2952
+ "high",
2953
+ "xhigh"
2954
+ ]
2955
+ },
2956
+ "textVerbosity": {
2957
+ "type": "string",
2958
+ "enum": [
2959
+ "low",
2960
+ "medium",
2961
+ "high"
2962
+ ]
2963
+ },
2964
+ "providerOptions": {
2965
+ "type": "object",
2966
+ "propertyNames": {
2967
+ "type": "string"
2968
+ },
2969
+ "additionalProperties": {}
2970
+ },
2971
+ "ultrawork": {
2972
+ "type": "object",
2973
+ "properties": {
2974
+ "model": {
2975
+ "type": "string"
2976
+ },
2977
+ "variant": {
2978
+ "type": "string"
2979
+ }
2980
+ },
2981
+ "additionalProperties": false
2982
+ }
2983
+ },
2984
+ "additionalProperties": false
2985
+ }
2986
+ },
2987
+ "additionalProperties": false
2988
+ },
2989
+ "categories": {
2990
+ "type": "object",
2991
+ "propertyNames": {
2992
+ "type": "string"
2993
+ },
2994
+ "additionalProperties": {
2995
+ "type": "object",
2996
+ "properties": {
2997
+ "description": {
2998
+ "type": "string"
2999
+ },
3000
+ "model": {
3001
+ "type": "string"
3002
+ },
3003
+ "fallback_models": {
3004
+ "anyOf": [
3005
+ {
3006
+ "type": "string"
3007
+ },
3008
+ {
3009
+ "type": "array",
3010
+ "items": {
3011
+ "type": "string"
3012
+ }
3013
+ }
3014
+ ]
3015
+ },
3016
+ "variant": {
3017
+ "type": "string"
3018
+ },
3019
+ "temperature": {
3020
+ "type": "number",
3021
+ "minimum": 0,
3022
+ "maximum": 2
3023
+ },
3024
+ "top_p": {
3025
+ "type": "number",
3026
+ "minimum": 0,
3027
+ "maximum": 1
3028
+ },
3029
+ "maxTokens": {
3030
+ "type": "number"
3031
+ },
3032
+ "thinking": {
3033
+ "type": "object",
3034
+ "properties": {
3035
+ "type": {
3036
+ "type": "string",
3037
+ "enum": [
3038
+ "enabled",
3039
+ "disabled"
3040
+ ]
3041
+ },
3042
+ "budgetTokens": {
3043
+ "type": "number"
3044
+ }
3045
+ },
3046
+ "required": [
3047
+ "type"
3048
+ ],
3049
+ "additionalProperties": false
3050
+ },
3051
+ "reasoningEffort": {
3052
+ "type": "string",
3053
+ "enum": [
3054
+ "low",
3055
+ "medium",
3056
+ "high",
3057
+ "xhigh"
3058
+ ]
3059
+ },
3060
+ "textVerbosity": {
3061
+ "type": "string",
3062
+ "enum": [
3063
+ "low",
3064
+ "medium",
3065
+ "high"
3066
+ ]
3067
+ },
3068
+ "tools": {
3069
+ "type": "object",
3070
+ "propertyNames": {
3071
+ "type": "string"
3072
+ },
3073
+ "additionalProperties": {
3074
+ "type": "boolean"
3075
+ }
3076
+ },
3077
+ "prompt_append": {
3078
+ "type": "string"
3079
+ },
3080
+ "is_unstable_agent": {
3081
+ "type": "boolean"
3082
+ },
3083
+ "disable": {
3084
+ "type": "boolean"
3085
+ }
3086
+ },
3087
+ "additionalProperties": false
3088
+ }
3089
+ },
3090
+ "claude_code": {
3091
+ "type": "object",
3092
+ "properties": {
3093
+ "mcp": {
3094
+ "type": "boolean"
3095
+ },
3096
+ "commands": {
3097
+ "type": "boolean"
3098
+ },
3099
+ "skills": {
3100
+ "type": "boolean"
3101
+ },
3102
+ "agents": {
3103
+ "type": "boolean"
3104
+ },
3105
+ "hooks": {
3106
+ "type": "boolean"
3107
+ },
3108
+ "plugins": {
3109
+ "type": "boolean"
3110
+ },
3111
+ "plugins_override": {
3112
+ "type": "object",
3113
+ "propertyNames": {
3114
+ "type": "string"
3115
+ },
3116
+ "additionalProperties": {
3117
+ "type": "boolean"
3118
+ }
3119
+ }
3120
+ },
3121
+ "additionalProperties": false
3122
+ },
3123
+ "sisyphus_agent": {
3124
+ "type": "object",
3125
+ "properties": {
3126
+ "disabled": {
3127
+ "type": "boolean"
3128
+ },
3129
+ "default_builder_enabled": {
3130
+ "type": "boolean"
3131
+ },
3132
+ "planner_enabled": {
3133
+ "type": "boolean"
3134
+ },
3135
+ "replace_plan": {
3136
+ "type": "boolean"
3137
+ }
3138
+ },
3139
+ "additionalProperties": false
3140
+ },
3141
+ "comment_checker": {
3142
+ "type": "object",
3143
+ "properties": {
3144
+ "custom_prompt": {
3145
+ "type": "string"
3146
+ }
3147
+ },
3148
+ "additionalProperties": false
3149
+ },
3150
+ "experimental": {
3151
+ "type": "object",
3152
+ "properties": {
3153
+ "aggressive_truncation": {
3154
+ "type": "boolean"
3155
+ },
3156
+ "auto_resume": {
3157
+ "type": "boolean"
3158
+ },
3159
+ "preemptive_compaction": {
3160
+ "type": "boolean"
3161
+ },
3162
+ "truncate_all_tool_outputs": {
3163
+ "type": "boolean"
3164
+ },
3165
+ "dynamic_context_pruning": {
3166
+ "type": "object",
3167
+ "properties": {
3168
+ "enabled": {
3169
+ "default": false,
3170
+ "type": "boolean"
3171
+ },
3172
+ "notification": {
3173
+ "default": "detailed",
3174
+ "type": "string",
3175
+ "enum": [
3176
+ "off",
3177
+ "minimal",
3178
+ "detailed"
3179
+ ]
3180
+ },
3181
+ "turn_protection": {
3182
+ "type": "object",
3183
+ "properties": {
3184
+ "enabled": {
3185
+ "default": true,
3186
+ "type": "boolean"
3187
+ },
3188
+ "turns": {
3189
+ "default": 3,
3190
+ "type": "number",
3191
+ "minimum": 1,
3192
+ "maximum": 10
3193
+ }
3194
+ },
3195
+ "required": [
3196
+ "enabled",
3197
+ "turns"
3198
+ ],
3199
+ "additionalProperties": false
3200
+ },
3201
+ "protected_tools": {
3202
+ "default": [
3203
+ "task",
3204
+ "todowrite",
3205
+ "todoread",
3206
+ "lsp_rename",
3207
+ "session_read",
3208
+ "session_write",
3209
+ "session_search"
3210
+ ],
3211
+ "type": "array",
3212
+ "items": {
3213
+ "type": "string"
3214
+ }
3215
+ },
3216
+ "strategies": {
3217
+ "type": "object",
3218
+ "properties": {
3219
+ "deduplication": {
3220
+ "type": "object",
3221
+ "properties": {
3222
+ "enabled": {
3223
+ "default": true,
3224
+ "type": "boolean"
3225
+ }
3226
+ },
3227
+ "required": [
3228
+ "enabled"
3229
+ ],
3230
+ "additionalProperties": false
3231
+ },
3232
+ "supersede_writes": {
3233
+ "type": "object",
3234
+ "properties": {
3235
+ "enabled": {
3236
+ "default": true,
3237
+ "type": "boolean"
3238
+ },
3239
+ "aggressive": {
3240
+ "default": false,
3241
+ "type": "boolean"
3242
+ }
3243
+ },
3244
+ "required": [
3245
+ "enabled",
3246
+ "aggressive"
3247
+ ],
3248
+ "additionalProperties": false
3249
+ },
3250
+ "purge_errors": {
3251
+ "type": "object",
3252
+ "properties": {
3253
+ "enabled": {
3254
+ "default": true,
3255
+ "type": "boolean"
3256
+ },
3257
+ "turns": {
3258
+ "default": 5,
3259
+ "type": "number",
3260
+ "minimum": 1,
3261
+ "maximum": 20
3262
+ }
3263
+ },
3264
+ "required": [
3265
+ "enabled",
3266
+ "turns"
3267
+ ],
3268
+ "additionalProperties": false
3269
+ }
3270
+ },
3271
+ "additionalProperties": false
3272
+ }
3273
+ },
3274
+ "required": [
3275
+ "enabled",
3276
+ "notification",
3277
+ "protected_tools"
3278
+ ],
3279
+ "additionalProperties": false
3280
+ },
3281
+ "task_system": {
3282
+ "type": "boolean"
3283
+ },
3284
+ "plugin_load_timeout_ms": {
3285
+ "type": "number",
3286
+ "minimum": 1000
3287
+ },
3288
+ "safe_hook_creation": {
3289
+ "type": "boolean"
3290
+ },
3291
+ "disable_omo_env": {
3292
+ "type": "boolean"
3293
+ },
3294
+ "hashline_edit": {
3295
+ "type": "boolean"
3296
+ },
3297
+ "model_fallback_title": {
3298
+ "type": "boolean"
3299
+ }
3300
+ },
3301
+ "additionalProperties": false
3302
+ },
3303
+ "auto_update": {
3304
+ "type": "boolean"
3305
+ },
3306
+ "skills": {
3307
+ "anyOf": [
3308
+ {
3309
+ "type": "array",
3310
+ "items": {
3311
+ "type": "string"
3312
+ }
3313
+ },
3314
+ {
3315
+ "type": "object",
3316
+ "properties": {
3317
+ "sources": {
3318
+ "type": "array",
3319
+ "items": {
3320
+ "anyOf": [
3321
+ {
3322
+ "type": "string"
3323
+ },
3324
+ {
3325
+ "type": "object",
3326
+ "properties": {
3327
+ "path": {
3328
+ "type": "string"
3329
+ },
3330
+ "recursive": {
3331
+ "type": "boolean"
3332
+ },
3333
+ "glob": {
3334
+ "type": "string"
3335
+ }
3336
+ },
3337
+ "required": [
3338
+ "path"
3339
+ ],
3340
+ "additionalProperties": false
3341
+ }
3342
+ ]
3343
+ }
3344
+ },
3345
+ "enable": {
3346
+ "type": "array",
3347
+ "items": {
3348
+ "type": "string"
3349
+ }
3350
+ },
3351
+ "disable": {
3352
+ "type": "array",
3353
+ "items": {
3354
+ "type": "string"
3355
+ }
3356
+ }
3357
+ },
3358
+ "additionalProperties": {
3359
+ "anyOf": [
3360
+ {
3361
+ "type": "boolean"
3362
+ },
3363
+ {
3364
+ "type": "object",
3365
+ "properties": {
3366
+ "description": {
3367
+ "type": "string"
3368
+ },
3369
+ "template": {
3370
+ "type": "string"
3371
+ },
3372
+ "from": {
3373
+ "type": "string"
3374
+ },
3375
+ "model": {
3376
+ "type": "string"
3377
+ },
3378
+ "agent": {
3379
+ "type": "string"
3380
+ },
3381
+ "subtask": {
3382
+ "type": "boolean"
3383
+ },
3384
+ "argument-hint": {
3385
+ "type": "string"
3386
+ },
3387
+ "license": {
3388
+ "type": "string"
3389
+ },
3390
+ "compatibility": {
3391
+ "type": "string"
3392
+ },
3393
+ "metadata": {
3394
+ "type": "object",
3395
+ "propertyNames": {
3396
+ "type": "string"
3397
+ },
3398
+ "additionalProperties": {}
3399
+ },
3400
+ "allowed-tools": {
3401
+ "type": "array",
3402
+ "items": {
3403
+ "type": "string"
3404
+ }
3405
+ },
3406
+ "disable": {
3407
+ "type": "boolean"
3408
+ }
3409
+ },
3410
+ "additionalProperties": false
3411
+ }
3412
+ ]
3413
+ }
3414
+ }
3415
+ ]
3416
+ },
3417
+ "ralph_loop": {
3418
+ "type": "object",
3419
+ "properties": {
3420
+ "enabled": {
3421
+ "default": false,
3422
+ "type": "boolean"
3423
+ },
3424
+ "default_max_iterations": {
3425
+ "default": 100,
3426
+ "type": "number",
3427
+ "minimum": 1,
3428
+ "maximum": 1000
3429
+ },
3430
+ "state_dir": {
3431
+ "type": "string"
3432
+ },
3433
+ "default_strategy": {
3434
+ "default": "continue",
3435
+ "type": "string",
3436
+ "enum": [
3437
+ "reset",
3438
+ "continue"
3439
+ ]
3440
+ }
3441
+ },
3442
+ "required": [
3443
+ "enabled",
3444
+ "default_max_iterations",
3445
+ "default_strategy"
3446
+ ],
3447
+ "additionalProperties": false
3448
+ },
3449
+ "runtime_fallback": {
3450
+ "anyOf": [
3451
+ {
3452
+ "type": "boolean"
3453
+ },
3454
+ {
3455
+ "type": "object",
3456
+ "properties": {
3457
+ "enabled": {
3458
+ "type": "boolean"
3459
+ },
3460
+ "retry_on_errors": {
3461
+ "type": "array",
3462
+ "items": {
3463
+ "type": "number"
3464
+ }
3465
+ },
3466
+ "max_fallback_attempts": {
3467
+ "type": "number",
3468
+ "minimum": 1,
3469
+ "maximum": 20
3470
+ },
3471
+ "cooldown_seconds": {
3472
+ "type": "number",
3473
+ "minimum": 0
3474
+ },
3475
+ "timeout_seconds": {
3476
+ "type": "number",
3477
+ "minimum": 0
3478
+ },
3479
+ "notify_on_fallback": {
3480
+ "type": "boolean"
3481
+ }
3482
+ },
3483
+ "additionalProperties": false
3484
+ }
3485
+ ]
3486
+ },
3487
+ "background_task": {
3488
+ "type": "object",
3489
+ "properties": {
3490
+ "defaultConcurrency": {
3491
+ "type": "number",
3492
+ "minimum": 1
3493
+ },
3494
+ "providerConcurrency": {
3495
+ "type": "object",
3496
+ "propertyNames": {
3497
+ "type": "string"
3498
+ },
3499
+ "additionalProperties": {
3500
+ "type": "number",
3501
+ "minimum": 0
3502
+ }
3503
+ },
3504
+ "modelConcurrency": {
3505
+ "type": "object",
3506
+ "propertyNames": {
3507
+ "type": "string"
3508
+ },
3509
+ "additionalProperties": {
3510
+ "type": "number",
3511
+ "minimum": 0
3512
+ }
3513
+ },
3514
+ "staleTimeoutMs": {
3515
+ "type": "number",
3516
+ "minimum": 60000
3517
+ },
3518
+ "messageStalenessTimeoutMs": {
3519
+ "type": "number",
3520
+ "minimum": 60000
3521
+ }
3522
+ },
3523
+ "additionalProperties": false
3524
+ },
3525
+ "notification": {
3526
+ "type": "object",
3527
+ "properties": {
3528
+ "force_enable": {
3529
+ "type": "boolean"
3530
+ }
3531
+ },
3532
+ "additionalProperties": false
3533
+ },
3534
+ "babysitting": {
3535
+ "type": "object",
3536
+ "properties": {
3537
+ "timeout_ms": {
3538
+ "default": 120000,
3539
+ "type": "number"
3540
+ }
3541
+ },
3542
+ "required": [
3543
+ "timeout_ms"
3544
+ ],
3545
+ "additionalProperties": false
3546
+ },
3547
+ "git_master": {
3548
+ "type": "object",
3549
+ "properties": {
3550
+ "commit_footer": {
3551
+ "default": true,
3552
+ "anyOf": [
3553
+ {
3554
+ "type": "boolean"
3555
+ },
3556
+ {
3557
+ "type": "string"
3558
+ }
3559
+ ]
3560
+ },
3561
+ "include_co_authored_by": {
3562
+ "default": true,
3563
+ "type": "boolean"
3564
+ }
3565
+ },
3566
+ "required": [
3567
+ "commit_footer",
3568
+ "include_co_authored_by"
3569
+ ],
3570
+ "additionalProperties": false
3571
+ },
3572
+ "browser_automation_engine": {
3573
+ "type": "object",
3574
+ "properties": {
3575
+ "provider": {
3576
+ "default": "playwright",
3577
+ "type": "string",
3578
+ "enum": [
3579
+ "playwright",
3580
+ "agent-browser",
3581
+ "dev-browser",
3582
+ "playwright-cli"
3583
+ ]
3584
+ }
3585
+ },
3586
+ "required": [
3587
+ "provider"
3588
+ ],
3589
+ "additionalProperties": false
3590
+ },
3591
+ "websearch": {
3592
+ "type": "object",
3593
+ "properties": {
3594
+ "provider": {
3595
+ "type": "string",
3596
+ "enum": [
3597
+ "exa",
3598
+ "tavily"
3599
+ ]
3600
+ }
3601
+ },
3602
+ "additionalProperties": false
3603
+ },
3604
+ "tmux": {
3605
+ "type": "object",
3606
+ "properties": {
3607
+ "enabled": {
3608
+ "default": false,
3609
+ "type": "boolean"
3610
+ },
3611
+ "layout": {
3612
+ "default": "main-vertical",
3613
+ "type": "string",
3614
+ "enum": [
3615
+ "main-horizontal",
3616
+ "main-vertical",
3617
+ "tiled",
3618
+ "even-horizontal",
3619
+ "even-vertical"
3620
+ ]
3621
+ },
3622
+ "main_pane_size": {
3623
+ "default": 60,
3624
+ "type": "number",
3625
+ "minimum": 20,
3626
+ "maximum": 80
3627
+ },
3628
+ "main_pane_min_width": {
3629
+ "default": 120,
3630
+ "type": "number",
3631
+ "minimum": 40
3632
+ },
3633
+ "agent_pane_min_width": {
3634
+ "default": 40,
3635
+ "type": "number",
3636
+ "minimum": 20
3637
+ }
3638
+ },
3639
+ "required": [
3640
+ "enabled",
3641
+ "layout",
3642
+ "main_pane_size",
3643
+ "main_pane_min_width",
3644
+ "agent_pane_min_width"
3645
+ ],
3646
+ "additionalProperties": false
3647
+ },
3648
+ "sisyphus": {
3649
+ "type": "object",
3650
+ "properties": {
3651
+ "tasks": {
3652
+ "type": "object",
3653
+ "properties": {
3654
+ "storage_path": {
3655
+ "type": "string"
3656
+ },
3657
+ "task_list_id": {
3658
+ "type": "string"
3659
+ },
3660
+ "claude_code_compat": {
3661
+ "default": false,
3662
+ "type": "boolean"
3663
+ }
3664
+ },
3665
+ "required": [
3666
+ "claude_code_compat"
3667
+ ],
3668
+ "additionalProperties": false
3669
+ }
3670
+ },
3671
+ "additionalProperties": false
3672
+ },
3673
+ "_migrations": {
3674
+ "type": "array",
3675
+ "items": {
3676
+ "type": "string"
3677
+ }
3678
+ }
3679
+ },
3680
+ "additionalProperties": false
3681
+ }