forked from opencode-ai/opencode
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopencode-schema.json
More file actions
680 lines (680 loc) · 20.4 KB
/
opencode-schema.json
File metadata and controls
680 lines (680 loc) · 20.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"agent": {
"description": "Agent configuration",
"properties": {
"color": {
"description": "Badge color for subagent display (e.g., 'blue', 'orange', 'primary', 'warning')",
"type": "string"
},
"description": {
"description": "Description of the agent's purpose",
"type": "string"
},
"disabled": {
"default": false,
"description": "Whether the agent is disabled and excluded from the registry entirely",
"type": "boolean"
},
"hidden": {
"default": false,
"description": "Whether the agent is hidden from TUI agent switching",
"type": "boolean"
},
"maxTokens": {
"description": "Maximum tokens for the agent",
"minimum": 1,
"type": "integer"
},
"maxTurns": {
"description": "Maximum number of tool-use turns per request for this agent. Default is 100.",
"minimum": 1,
"type": "integer"
},
"mode": {
"description": "Agent mode: 'agent' for primary agents, 'subagent' for agents invoked by task tool",
"enum": [
"agent",
"subagent"
],
"type": "string"
},
"model": {
"description": "Model ID for the agent",
"enum": [
"claude-4.5-opus",
"claude-4-5-sonnet[1m]",
"claude-4.6-opus",
"claude-4.6-sonnet",
"bedrock.claude-4.5-sonnet",
"gemini-3.0-flash",
"gemini-3.0-pro",
"gpt-5",
"o3",
"o4-mini",
"vertexai.claude-opus-4-5",
"vertexai.claude-opus-4-6",
"vertexai.claude-sonnet-4-5-m",
"vertexai.claude-sonnet-4-6",
"vertexai.gemini-3.0-flash",
"vertexai.gemini-3.0-pro"
],
"type": "string"
},
"name": {
"description": "Display name for the agent",
"type": "string"
},
"parallelToolUse": {
"default": true,
"description": "Whether to enable parallel tool execution for this agent. When true (default), independent tool calls run concurrently. Set to false to force sequential execution.",
"type": "boolean"
},
"permission": {
"additionalProperties": {
"anyOf": [
{
"description": "Simple permission action",
"enum": [
"allow",
"deny",
"ask"
],
"type": "string"
},
{
"additionalProperties": {
"enum": [
"allow",
"deny",
"ask"
],
"type": "string"
},
"description": "Granular permission patterns (glob-pattern keys to action values)",
"type": "object"
}
]
},
"description": "Agent-specific permission overrides. Keys are tool names (e.g., 'bash', 'edit', 'skill'), values are either a simple action string or an object with glob-pattern keys",
"type": "object"
},
"prompt": {
"description": "Custom system prompt for the agent",
"type": "string"
},
"reasoningEffort": {
"description": "Reasoning effort for models that support it (OpenAI, Anthropic). 'max' is only available for models with maximum thinking support.",
"enum": [
"low",
"medium",
"high",
"max"
],
"type": "string"
},
"tools": {
"additionalProperties": {
"description": "Whether the tool is enabled for this agent",
"type": "boolean"
},
"description": "Tool enable/disable configuration",
"type": "object"
}
},
"required": [
"model"
],
"type": "object"
}
},
"description": "Configuration schema for the OpenCode application",
"properties": {
"agents": {
"additionalProperties": {
"description": "Agent configuration",
"properties": {
"color": {
"description": "Badge color for subagent display (e.g., 'blue', 'orange', 'primary', 'warning')",
"type": "string"
},
"description": {
"description": "Description of the agent's purpose",
"type": "string"
},
"disabled": {
"default": false,
"description": "Whether the agent is disabled and excluded from the registry entirely",
"type": "boolean"
},
"hidden": {
"default": false,
"description": "Whether the agent is hidden from TUI agent switching",
"type": "boolean"
},
"maxTokens": {
"description": "Maximum tokens for the agent",
"minimum": 1,
"type": "integer"
},
"maxTurns": {
"description": "Maximum number of tool-use turns per request for this agent. Default is 100.",
"minimum": 1,
"type": "integer"
},
"mode": {
"description": "Agent mode: 'agent' for primary agents, 'subagent' for agents invoked by task tool",
"enum": [
"agent",
"subagent"
],
"type": "string"
},
"model": {
"description": "Model ID for the agent",
"enum": [
"claude-4.5-opus",
"claude-4-5-sonnet[1m]",
"claude-4.6-opus",
"claude-4.6-sonnet",
"bedrock.claude-4.5-sonnet",
"gemini-3.0-flash",
"gemini-3.0-pro",
"gpt-5",
"o3",
"o4-mini",
"vertexai.claude-opus-4-5",
"vertexai.claude-opus-4-6",
"vertexai.claude-sonnet-4-5-m",
"vertexai.claude-sonnet-4-6",
"vertexai.gemini-3.0-flash",
"vertexai.gemini-3.0-pro"
],
"type": "string"
},
"name": {
"description": "Display name for the agent",
"type": "string"
},
"parallelToolUse": {
"default": true,
"description": "Whether to enable parallel tool execution for this agent. When true (default), independent tool calls run concurrently. Set to false to force sequential execution.",
"type": "boolean"
},
"permission": {
"additionalProperties": {
"anyOf": [
{
"description": "Simple permission action",
"enum": [
"allow",
"deny",
"ask"
],
"type": "string"
},
{
"additionalProperties": {
"enum": [
"allow",
"deny",
"ask"
],
"type": "string"
},
"description": "Granular permission patterns (glob-pattern keys to action values)",
"type": "object"
}
]
},
"description": "Agent-specific permission overrides. Keys are tool names (e.g., 'bash', 'edit', 'skill'), values are either a simple action string or an object with glob-pattern keys",
"type": "object"
},
"prompt": {
"description": "Custom system prompt for the agent",
"type": "string"
},
"reasoningEffort": {
"description": "Reasoning effort for models that support it (OpenAI, Anthropic). 'max' is only available for models with maximum thinking support.",
"enum": [
"low",
"medium",
"high",
"max"
],
"type": "string"
},
"tools": {
"additionalProperties": {
"description": "Whether the tool is enabled for this agent",
"type": "boolean"
},
"description": "Tool enable/disable configuration",
"type": "object"
}
},
"required": [
"model"
],
"type": "object"
},
"description": "Agent configurations",
"properties": {
"coder": {
"$ref": "#/definitions/agent"
},
"descriptor": {
"$ref": "#/definitions/agent"
},
"explorer": {
"$ref": "#/definitions/agent"
},
"hivemind": {
"$ref": "#/definitions/agent"
},
"summarizer": {
"$ref": "#/definitions/agent"
},
"workhorse": {
"$ref": "#/definitions/agent"
}
},
"type": "object"
},
"autoCompact": {
"default": true,
"description": "Enable automatic compaction of session history",
"type": "boolean"
},
"contextPaths": {
"default": [
".github/copilot-instructions.md",
".cursorrules",
".cursor/rules/",
"CLAUDE.md",
"CLAUDE.local.md",
"opencode.md",
"opencode.local.md",
"OpenCode.md",
"OpenCode.local.md",
"OPENCODE.md",
"OPENCODE.local.md",
"AGENTS.md",
"AGENTS.local.md"
],
"description": "Context paths for the application",
"items": {
"type": "string"
},
"type": "array"
},
"data": {
"description": "Storage configuration",
"properties": {
"directory": {
"default": ".opencode",
"description": "Directory where application data is stored",
"type": "string"
}
},
"required": [
"directory"
],
"type": "object"
},
"debug": {
"default": false,
"description": "Enable debug mode",
"type": "boolean"
},
"debugLSP": {
"default": false,
"description": "Enable LSP debug mode",
"type": "boolean"
},
"disableLSPDownload": {
"default": false,
"description": "Disable automatic downloading and installation of LSP servers. Can also be set via OPENCODE_DISABLE_LSP_DOWNLOAD environment variable.",
"type": "boolean"
},
"lsp": {
"additionalProperties": {
"description": "LSP configuration for a language server",
"properties": {
"args": {
"description": "Command arguments for the LSP server",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Command to execute for the LSP server",
"type": "string"
},
"disabled": {
"default": false,
"description": "Whether the LSP server is disabled",
"type": "boolean"
},
"env": {
"additionalProperties": {
"type": "string"
},
"description": "Environment variables to set when starting the LSP server",
"type": "object"
},
"extensions": {
"description": "File extensions this LSP server should handle (e.g., [\".go\", \".mod\"])",
"items": {
"type": "string"
},
"type": "array"
},
"initialization": {
"description": "Initialization options sent to the LSP server during the initialize request. Options vary by server.",
"type": "object"
}
},
"type": "object"
},
"description": "Language Server Protocol configurations. Built-in servers are auto-detected; use this to override, disable, or add custom servers.",
"type": "object"
},
"maxTurns": {
"description": "Global maximum number of agent tool-use turns per request. When set, overrides per-agent maxTurns. Also settable via --max-turns CLI flag.",
"minimum": 1,
"type": "integer"
},
"mcpServers": {
"additionalProperties": {
"description": "MCP server configuration",
"properties": {
"args": {
"description": "Command arguments for the MCP server",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Command to execute for the MCP server",
"type": "string"
},
"env": {
"description": "Environment variables for the MCP server",
"items": {
"type": "string"
},
"type": "array"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "HTTP headers for SSE type MCP servers",
"type": "object"
},
"type": {
"default": "stdio",
"description": "Type of MCP server",
"enum": [
"stdio",
"sse"
],
"type": "string"
},
"url": {
"description": "URL for SSE type MCP servers",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
},
"description": "Model Control Protocol server configurations",
"type": "object"
},
"permission": {
"additionalProperties": {
"anyOf": [
{
"description": "Simple permission action for all uses of this tool",
"enum": [
"allow",
"deny",
"ask"
],
"type": "string"
},
{
"additionalProperties": {
"enum": [
"allow",
"deny",
"ask"
],
"type": "string"
},
"description": "Granular permission patterns (glob-pattern keys to action values)",
"type": "object"
}
]
},
"description": "Global permission configuration. Keys are tool names (e.g., 'bash', 'edit', 'skill'). Values are either a simple action string or an object with glob-pattern keys.",
"properties": {
"skill": {
"additionalProperties": {
"description": "Permission action",
"enum": [
"allow",
"deny",
"ask"
],
"type": "string"
},
"description": "Skill permission patterns (supports wildcards like 'internal-*')",
"type": "object"
}
},
"type": "object"
},
"providers": {
"additionalProperties": {
"description": "Provider configuration",
"properties": {
"apiKey": {
"description": "API key for the provider",
"type": "string"
},
"baseURL": {
"description": "Base URL for the provider instead of default one",
"type": "string"
},
"disabled": {
"default": false,
"description": "Whether the provider is disabled",
"type": "boolean"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "Extra headers to attach to request",
"type": "object"
},
"provider": {
"description": "Provider type",
"enum": [
"anthropic",
"openai",
"gemini",
"bedrock",
"vertexai"
],
"type": "string"
}
},
"type": "object"
},
"description": "LLM provider configurations",
"type": "object"
},
"sessionProvider": {
"description": "Session storage provider configuration",
"properties": {
"mysql": {
"description": "MySQL-specific configuration",
"properties": {
"connectionTimeout": {
"default": 30,
"description": "Connection timeout in seconds",
"type": "integer"
},
"database": {
"description": "MySQL database name",
"type": "string"
},
"dsn": {
"description": "MySQL Data Source Name (DSN) connection string",
"type": "string"
},
"host": {
"description": "MySQL server host",
"type": "string"
},
"maxConnections": {
"default": 10,
"description": "Maximum number of open connections",
"type": "integer"
},
"maxIdleConnections": {
"default": 5,
"description": "Maximum number of idle connections",
"type": "integer"
},
"password": {
"description": "MySQL password",
"type": "string"
},
"port": {
"default": 3306,
"description": "MySQL server port",
"type": "integer"
},
"username": {
"description": "MySQL username",
"type": "string"
}
},
"type": "object"
},
"type": {
"default": "sqlite",
"description": "Type of session storage provider",
"enum": [
"sqlite",
"mysql"
],
"type": "string"
}
},
"type": "object"
},
"shell": {
"description": "Shell configuration for the bash tool",
"properties": {
"args": {
"default": [
"-l"
],
"description": "Arguments to pass to the shell",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Path to the shell executable",
"type": "string"
}
},
"type": "object"
},
"skills": {
"description": "Skills configuration",
"properties": {
"paths": {
"description": "Custom paths to search for skills (supports ~ for home directory and relative paths)",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"tui": {
"description": "Terminal User Interface configuration",
"properties": {
"theme": {
"default": "opencode",
"description": "TUI theme name",
"enum": [
"opencode",
"catppuccin",
"dracula",
"flexoki",
"gruvbox",
"monokai",
"onedark",
"tokyonight",
"tron"
],
"type": "string"
}
},
"type": "object"
},
"wd": {
"description": "Working directory for the application",
"type": "string"
},
"webSearch": {
"description": "Web search provider configuration",
"properties": {
"providers": {
"additionalProperties": {
"description": "Search provider configuration",
"properties": {
"apiKey": {
"description": "API key for the provider. Supports 'env:VAR_NAME' syntax. Falls back to LOCAL_ENDPOINT_API_KEY env var.",
"type": "string"
},
"baseUrl": {
"description": "Full URL to POST search queries to",
"type": "string"
},
"description": {
"description": "Human-readable description shown to the LLM to help select the right provider",
"type": "string"
}
},
"required": [
"baseUrl"
],
"type": "object"
},
"description": "Search provider configurations keyed by provider name",
"type": "object"
}
},
"type": "object"
}
},
"title": "OpenCode Configuration",
"type": "object"
}