-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
62 lines (62 loc) · 1.86 KB
/
opencode.json
File metadata and controls
62 lines (62 loc) · 1.86 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
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"constellation": {
"type": "local",
"command": ["mcp-constellation"],
"enabled": true,
"environment": {
"CONSTELLATION_ACCESS_KEY": "{env:CONSTELLATION_ACCESS_KEY}",
},
}
},
"agent": {
"source-scout": {
"description": "Codebase exploration using Constellation code intelligence. Use @source-scout for: 'What does this codebase do?', 'Where is the auth logic?', 'Find usages of X'",
"mode": "subagent",
"model": "inherit",
"color": "primary",
"temperature": 0.2,
"prompt": "./prompts/source-scout.md",
"tools": {
"constellation_code_intel": true,
"read": true,
"grep": true,
"glob": true,
"write": false,
"edit": false
}
},
"impact-investigator": {
"description": "Change impact assessment using Constellation code intelligence. Use @impact-investigator before: renaming, deleting, or modifying functions/classes",
"mode": "subagent",
"model": "inherit",
"color": "secondary",
"temperature": 0.1,
"prompt": "./prompts/impact-investigator.md",
"tools": {
"constellation_code_intel": true,
"read": true,
"grep": true,
"glob": true,
"write": false,
"edit": false
}
},
"dependency-detective": {
"description": "Dependency analysis using Constellation code intelligence. Use @dependency-detective for: circular imports, module coupling, dependency health",
"mode": "subagent",
"model": "inherit",
"color": "info",
"prompt": "./prompts/dependency-detective.md",
"tools": {
"constellation_code_intel": true,
"read": true,
"grep": true,
"glob": true,
"write": false,
"edit": false
}
}
}
}