-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.desktop.example.jsonc
More file actions
81 lines (77 loc) · 2.62 KB
/
opencode.desktop.example.jsonc
File metadata and controls
81 lines (77 loc) · 2.62 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
{
"$schema": "https://opencode.ai/config.json",
// Desktop-first config for opencode-team-runtime.
// Place this in your project opencode.jsonc or merge the sections below.
// OpenCode Desktop loads the same project config, local plugins, agents, commands, and MCP servers.
"plugin": ["./.opencode/plugins/team-runtime.js"],
"mcp": {
"cloakbrowser": {
"type": "local",
"command": ["node", "./.opencode/mcp/cloakbrowser-mcp.mjs"],
"enabled": true,
"environment": {
"TEAM_PROJECT_ROOT": ".",
"CLOAKBROWSER_HEADLESS": "false",
"CLOAKBROWSER_HUMANIZE": "true",
"CLOAKBROWSER_PROFILE_DIR": ".opencode/team/browser/profile",
"CLOAKBROWSER_MANUAL_TIMEOUT_MS": "600000"
}
},
"browser-bridge": {
"type": "local",
"command": ["node", "./.opencode/mcp/browser-bridge-mcp.mjs"],
"enabled": true,
"environment": {
"TEAM_PROJECT_ROOT": ".",
"OPENCODE_BROWSER_BRIDGE_PORT": "37987",
"OPENCODE_BROWSER_BRIDGE_TOKEN": "dev-local"
}
},
"research": {
"type": "local",
"command": ["node", "./.opencode/mcp/research-mcp.mjs"],
"enabled": true,
"environment": { "TEAM_PROJECT_ROOT": "." }
},
"context": {
"type": "local",
"command": ["node", "./.opencode/mcp/context-mcp.mjs"],
"enabled": true,
"environment": { "TEAM_PROJECT_ROOT": "." }
},
"router": {
"type": "local",
"command": ["node", "./.opencode/mcp/router-mcp.mjs"],
"enabled": true,
"environment": { "TEAM_PROJECT_ROOT": "." }
},
"memory": {
"type": "local",
"command": ["node", "./.opencode/mcp/memory-mcp.mjs"],
"enabled": true,
"environment": { "TEAM_PROJECT_ROOT": "." }
},
"patch": {
"type": "local",
"command": ["node", "./.opencode/mcp/patch-mcp.mjs"],
"enabled": true,
"environment": { "TEAM_PROJECT_ROOT": "." }
},
"overnight": {
"type": "local",
"command": ["node", "./.opencode/mcp/overnight-mcp.mjs"],
"enabled": true,
"environment": { "TEAM_PROJECT_ROOT": "." }
}
},
// Optional: override model per agent here. Replace with your actual provider/model IDs.
"agent": {
"chief-engineer": { "model": "deepseek-custom/deepseek-v4-pro" },
"minimax-coder": { "model": "minimax/minimax-m2.7" },
"tester": { "model": "minimax/minimax-m2.7" },
"reviewer": { "model": "openai/gpt-5.5" },
"auditor": { "model": "openai/gpt-5.5" },
"handoff-writer": { "model": "qwen-custom/qwen3.7-max" },
"overnight-supervisor": { "model": "deepseek-custom/deepseek-v4-pro" }
}
}