Skip to content

Commit 5f5218c

Browse files
committed
docs: fix Agents config section - remove incorrect OpenCode link, add correct options
1 parent 41d3817 commit 5f5218c

File tree

2 files changed

+24
-10
lines changed

2 files changed

+24
-10
lines changed

README.ko.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -208,26 +208,33 @@ Schema 자동 완성이 지원됩니다:
208208

209209
### Agents
210210

211-
`agents.{name}`을 통해 에이전트의 모델, 프롬프트, 권한을 오버라이드할 수 있습니다. [OpenCode Agents](https://opencode.ai/docs/agents)를 참조하세요.
211+
내장 에이전트 설정을 오버라이드할 수 있습니다:
212212

213213
```json
214214
{
215215
"agents": {
216-
"explore": { "model": "anthropic/claude-haiku-4-5" },
217-
"frontend-ui-ux-engineer": { "model": "anthropic/claude-opus-4" }
216+
"explore": {
217+
"model": "anthropic/claude-haiku-4-5",
218+
"temperature": 0.5
219+
},
220+
"frontend-ui-ux-engineer": {
221+
"disable": true
222+
}
218223
}
219224
}
220225
```
221226

222-
에이전트를 완전히 비활성화할 수도 있습니다:
227+
각 에이전트에서 지원하는 옵션: `model`, `temperature`, `top_p`, `prompt`, `tools`, `disable`, `description`, `mode`, `color`, `permission`.
228+
229+
또는 `disabled_agents`로 비활성화할 수 있습니다:
223230

224231
```json
225232
{
226233
"disabled_agents": ["oracle", "frontend-ui-ux-engineer"]
227234
}
228235
```
229236

230-
사용 가능: `oracle`, `librarian`, `explore`, `frontend-ui-ux-engineer`, `document-writer`
237+
사용 가능한 에이전트: `oracle`, `librarian`, `explore`, `frontend-ui-ux-engineer`, `document-writer`
231238

232239
### MCPs
233240

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -207,26 +207,33 @@ Schema autocomplete is supported:
207207

208208
### Agents
209209

210-
Override any agent's model, prompt, or permissions via `agents.{name}`. See [OpenCode Agents](https://opencode.ai/docs/agents).
210+
Override built-in agent settings:
211211

212212
```json
213213
{
214214
"agents": {
215-
"explore": { "model": "anthropic/claude-haiku-4-5" },
216-
"frontend-ui-ux-engineer": { "model": "anthropic/claude-opus-4" }
215+
"explore": {
216+
"model": "anthropic/claude-haiku-4-5",
217+
"temperature": 0.5
218+
},
219+
"frontend-ui-ux-engineer": {
220+
"disable": true
221+
}
217222
}
218223
}
219224
```
220225

221-
Disable agents entirely:
226+
Each agent supports: `model`, `temperature`, `top_p`, `prompt`, `tools`, `disable`, `description`, `mode`, `color`, `permission`.
227+
228+
Or disable agents via `disabled_agents`:
222229

223230
```json
224231
{
225232
"disabled_agents": ["oracle", "frontend-ui-ux-engineer"]
226233
}
227234
```
228235

229-
Available: `oracle`, `librarian`, `explore`, `frontend-ui-ux-engineer`, `document-writer`
236+
Available agents: `oracle`, `librarian`, `explore`, `frontend-ui-ux-engineer`, `document-writer`
230237

231238
### MCPs
232239

0 commit comments

Comments
 (0)