-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathopencode.jsonc
More file actions
41 lines (37 loc) · 1.16 KB
/
Copy pathopencode.jsonc
File metadata and controls
41 lines (37 loc) · 1.16 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
{
"$schema": "https://opencode.ai/config.json",
// Primary model - uses OpenCode's built-in free model
// Can be replaced with your own model after getting started
"model": "opencode/big-pickle",
// Lightweight model for simple tasks (title generation, etc.)
"small_model": "opencode/deepseek-v4-flash-free",
// Agent configurations
"agent": {
// Sub-agent for executing tasks.
// When using SDD (Specification-Driven Development), after the primary model
// defines the goals, a mid-tier model can carry out the work.
// Typically uses opencode/big-pickle
"general": {
"mode": "subagent",
"model": "opencode/big-pickle"
},
// Exploration tasks: token-heavy with large context windows; use a cheap model.
"explore": {
"mode": "subagent",
"model": "opencode/deepseek-v4-flash-free"
}
},
// MCP servers - defined here or embedded in skills
"mcp": {
// context7: query up-to-date library docs and code examples
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp"
},
// searchcode: search and analyze public git repositories
"searchcode": {
"type": "remote",
"url": "https://api.searchcode.com/v1/mcp"
}
}
}