-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
96 lines (96 loc) · 2.41 KB
/
Copy pathopencode.json
File metadata and controls
96 lines (96 loc) · 2.41 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
90
91
92
93
94
95
96
{
"$schema": "https://opencode.ai/config.json",
"instructions": [],
"model": "openai/gpt-5.5",
"provider": {
"ollama": {
"npm": "@ai-sdk/openai-compatible",
"name": "Ollama",
"options": {
"baseURL": "http://localhost:11434/v1",
"apiKey": "ollama"
},
"models": {
"qwen": {
"name": "Worker Qwen",
"limit": {
"context": 131072,
"output": 4096
},
"options": {
"temperature": 0.3,
"top_p": 0.9,
"top_k": 20,
"min_p": 0,
"repeat_penalty": 1.05,
"repeat_last_n": 512
}
},
"laguna": {
"name": "Worker Laguna",
"limit": {
"context": 131072,
"output": 4096
},
"options": {
"temperature": 0.2,
"top_p": 0.9,
"top_k": 20,
"min_p": 0,
"repeat_penalty": 1.05,
"repeat_last_n": 512
}
},
"granite": {
"name": "Worker Granite",
"limit": {
"context": 16384,
"output": 4096
},
"options": {
"temperature": 0.2,
"top_p": 0.9,
"top_k": 20,
"min_p": 0,
"repeat_penalty": 1.05,
"repeat_last_n": 512
}
}
}
}
},
"agent": {
"delegator": {
"description": "Clarifies requests, decomposes them into atomic tasks, and delegates each task to workers in serial. Does not perform implementation work directly.",
"mode": "primary",
"prompt": "{file:./agents/delegator.md}",
"permission": {
"*": "deny",
"todowrite": "allow",
"question": "allow",
"task": {
"*": "deny",
"worker": "allow"
},
"skill": {
"*": "deny",
"ask-question": "allow",
"task-delegation": "allow",
"display-tasks": "allow"
}
}
},
"worker": {
"description": "Single text worker for all delegated text tasks. Handles any complexity level within the scope of a delegation packet.",
"mode": "subagent",
"prompt": "{file:./agents/worker.md}",
"permission": {
"*": "allow",
"task": "deny",
"todowrite": "deny",
"question": "deny"
}
}
},
"plugin": []
}