-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
75 lines (75 loc) · 2.17 KB
/
opencode.json
File metadata and controls
75 lines (75 loc) · 2.17 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
{
"$schema": "https://opencode.ai/config.json",
"agent": {
"vibe": {
"description": "Interactive Copilot for fast, iterative pair-programming, coding, and debugging directly with the user.",
"mode": "primary",
"temperature": 0.3,
"prompt": "{file:./agents/prompts/vibe.md}",
"permission": {
"*": "allow",
"external_directory": "deny"
}
},
"pm": {
"description": "Project Manager orchestrating the development process and communicating with the user",
"mode": "subagent",
"temperature": 0.0,
"prompt": "{file:./agents/prompts/pm.md}",
"permission": {
"*": "deny",
"read": "allow",
"task": "allow"
}
},
"brainstorm": {
"description": "Creative partner for bouncing ideas, discussing architecture, and solving open-ended problems",
"mode": "primary",
"temperature": 0.8,
"prompt": "{file:./agents/prompts/brainstorm.md}",
"permission": {
"*": "deny",
"read": "allow",
"task": "allow",
"question": "allow"
}
},
"architect": {
"description": "System Architect responsible for planning, API research, and blueprinting",
"mode": "subagent",
"temperature": 0.4,
"prompt": "{file:./agents/prompts/architect.md}",
"permission": {
"*": "allow",
"question": "deny",
"external_directory": "deny"
}
},
"builder": {
"description": "Core Software Engineer implementing features and writing code",
"mode": "subagent",
"temperature": 0.2,
"prompt": "{file:./agents/prompts/builder.md}",
"permission": {
"*": "allow",
"external_directory": "deny"
}
},
"qa": {
"description": "Quality Assurance Engineer validating code, running tests, and checking hygiene",
"mode": "subagent",
"temperature": 0.0,
"prompt": "{file:./agents/prompts/qa.md}",
"permission": {
"*": "deny",
"read": "allow",
"list": "allow",
"glob": "allow",
"grep": "allow",
"bash": "allow",
"edit": "allow",
"lsp": "allow"
}
}
}
}