forked from renergr1nch/splitter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopencode.json.backup
More file actions
89 lines (89 loc) · 2.44 KB
/
Copy pathopencode.json.backup
File metadata and controls
89 lines (89 loc) · 2.44 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
{
"$schema": "https://opencode.ai/config.json",
"model": "deepseek-chat",
"small_model": "openai/gpt-5-mini",
"instructions": ["AGENTS.md", "ROADMAP.md"],
"compaction": {
"auto": true,
"prune": true,
"reserved": 80000
},
"agent": {
"build": {
"description": "Go development agent - writes code, runs tests, builds the project",
"model": "openai/gpt-5-mini",
"temperature": 0.2,
"prompt": "{file:./prompts/build.txt}",
"color": "#4CAF50"
},
"plan": {
"description": "Architecture and planning agent - analyzes codebase, designs solutions, reviews ROADMAP",
"model": "deepseek-chat",
"temperature": 0.1,
"prompt": "{file:./prompts/plan.txt}",
"color": "#2196F3"
},
"ralph": {
"description": "Autonomous Ralph Loop coordinator - picks ROADMAP tasks, delegates to subagents, commits, loops",
"model": "deepseek-chat",
"temperature": 0.2,
"prompt": "{file:./prompts/ralph.txt}",
"color": "#FF5733",
"permission": {
"edit": "allow",
"bash": {
"*": "allow"
},
"task": {
"general": "allow",
"reviewer": "allow",
"explorer": "allow",
"security": "allow"
}
}
},
"reviewer": {
"description": "Code reviewer - checks Go code quality, correctness, and Tor best practices",
"mode": "subagent",
"model": "openai/gpt-5-mini",
"temperature": 0.1,
"prompt": "{file:./prompts/reviewer.txt}",
"color": "#9C27B0",
"permission": {
"edit": "deny",
"bash": {
"*": "deny"
}
}
},
"explorer": {
"description": "Codebase explorer - finds patterns, searches code, answers architecture questions",
"mode": "subagent",
"model": "openai/gpt-5-mini",
"temperature": 0.1,
"color": "#FF9800",
"permission": {
"edit": "deny",
"bash": {
"git *": "allow",
"grep *": "allow",
"go *": "allow"
}
}
},
"security": {
"description": "Security auditor - reviews Tor config, network security, and privacy leak vectors",
"mode": "subagent",
"model": "deepseek-chat",
"temperature": 0.0,
"prompt": "{file:./prompts/security.txt}",
"color": "#F44336",
"permission": {
"edit": "deny",
"bash": {
"*": "deny"
}
}
}
}
}