-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
53 lines (53 loc) · 1.33 KB
/
Copy pathopencode.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["context-mode", "@tarquinen/opencode-dcp@latest"],
"instructions": [
".opencode/rules",
".agents/rules/worktrees.md"
],
"skills": {
"paths": [
".opencode/skills/homeassistant",
".opencode/skills/python-refactoring"
]
},
"mcp": {
"symdex": {
"type": "local",
"command": ["symdex", "serve"],
"enabled": true
},
"homeassistant": {
"type": "local",
"command": ["uvx", "ha-mcp"],
"environment": {
"HOMEASSISTANT_URL": "https://homeassistant.nectaron.jackmcintyre.net",
"HOMEASSISTANT_TOKEN": "{env:HA_LONG_LIVED_TOKEN}"
},
"enabled": false
}
},
"agent": {
"homeassistant": {
"description": "HA gateway - uses CLI for reads, MCP for writes",
"mode": "subagent",
"model": "opencode/big-pickle",
"skills": ["homeassistant"],
"tools": {
"bash": true,
"homeassistant_*": true
},
"mcp": {
"homeassistant": {
"type": "local",
"command": ["uvx", "ha-mcp"],
"environment": {
"HOMEASSISTANT_URL": "https://homeassistant.nectaron.jackmcintyre.net",
"HOMEASSISTANT_TOKEN": "{env:HA_LONG_LIVED_TOKEN}"
},
"enabled": true
}
}
}
}
}