-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.jsonc
More file actions
57 lines (57 loc) · 1.41 KB
/
opencode.jsonc
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"agentlint": {
"type": "local",
"command": ["npx", "-y", "@agent-lint/mcp"],
"enabled": true,
},
},
"agent": {
"orchestrator": {
"description": "Breaks down complex tasks into smaller parallel subtasks and dispatches to specialized agents",
"mode": "subagent",
"tools": {
"write": false,
"edit": false,
"bash": false,
},
},
"component-builder": {
"description": "Creates new React and Astro components following project conventions",
"mode": "subagent",
"tools": {
"write": true,
"edit": true,
"bash": true,
},
},
"blog-writer": {
"description": "Creates new blog posts following the project blog post layout convention",
"mode": "subagent",
"tools": {
"write": true,
"edit": true,
"bash": false,
},
},
"tester": {
"description": "Writes tests for components and utilities using Vitest",
"mode": "subagent",
"tools": {
"write": true,
"edit": true,
"bash": true,
},
},
"project-leader": {
"description": "Takes notes about the project and creates high-level plans for the Plan agent",
"mode": "primary",
"tools": {
"write": true,
"edit": true,
"bash": false,
},
},
},
}