You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"prompt": "너는 한국어 힙합 가사처럼 말해야 해. 모든 문장의 끝 라임을 맞춰."
153
-
}
154
-
}
155
-
}
156
-
```
157
-
158
-
#### 예시: 개별 에이전트 비활성화
159
-
160
-
```json
161
-
{
162
-
"agents": {
163
-
"frontend-ui-ux-engineer": {
164
-
"disable": true
165
-
}
166
-
}
167
-
}
168
-
```
101
+
전체 설정 옵션과 예시는 [OpenCode Agents 문서](https://opencode.ai/docs/agents)를 참고하세요.
169
102
170
103
## LLM Agent를 위한 안내
171
104
@@ -255,19 +188,21 @@ OpenCode 는 아주 확장가능하고 아주 커스터마이저블합니다.
255
188
-**frontend-ui-ux-engineer** (`google/gemini-3-pro-preview`): 개발자로 전향한 디자이너라는 설정을 갖고 있습니다. 멋진 UI를 만듭니다. 아름답고 창의적인 UI 코드를 생성하는 데 탁월한 Gemini를 사용합니다.
256
189
-**document-writer** (`google/gemini-3-pro-preview`): 기술 문서 전문가라는 설정을 갖고 있습니다. Gemini 는 문학가입니다. 글을 기가막히게 씁니다.
257
190
258
-
#### 모델 설정 오버라이드
191
+
#### 설정
192
+
193
+
에이전트들은 OpenCode와 동일한 설정 스펙을 따릅니다:
259
194
260
-
에이전트들은 [OpenCode의 모델 설정](https://opencode.ai/docs/models/#configure-models)과 완전히 동일한 스펙으로 오버라이드를 지원합니다. 권장하진 않지만, 예를 들어 Anthropic 모델만 사용하기로 결정했다면 이렇게 구성할 수 있습니다:
195
+
-**모델 변경**: `agents.{name}.model`로 에이전트 모델 오버라이드. [OpenCode Models](https://opencode.ai/docs/models/#configure-models) 참고.
196
+
-**MCP 비활성화**: `disabled_mcps`로 내장 MCP 끄기. [OpenCode MCP Servers](https://opencode.ai/docs/mcp-servers) 참고.
197
+
-**에이전트 비활성화**: `disabled_agents` 또는 `agents.{name}.disable` 사용. [OpenCode Agents](https://opencode.ai/docs/agents) 참고.
198
+
199
+
권장하진 않지만(이 플러그인은 멀티 모델 오케스트레이션용), Anthropic만 사용하는 경우 예시:
You can override the configuration of any built-in agentusing the `agents` option. This allows you to change models, adjust creativity, modify permissions, or disable agents individually.
149
+
You can override any built-in agent's model, prompt, permissions, and more using the `agents` option. Configuration uses autocomplete via schema.
150
150
151
-
#### Configuration Options
152
-
153
-
| Option | Type | Description |
154
-
|--------|------|-------------|
155
-
|`model`| string | Override the default model (e.g., "anthropic/claude-sonnet-4") |
This configuration forces all agents to use Anthropic models, suitable for users with only Anthropic API access.
181
-
182
-
```json
183
-
{
184
-
"agents": {
185
-
"oracle": {
186
-
"model": "anthropic/claude-sonnet-4"
187
-
},
188
-
"librarian": {
189
-
"model": "anthropic/claude-haiku-4-5"
190
-
},
191
-
"explore": {
192
-
"model": "anthropic/claude-haiku-4-5"
193
-
},
194
-
"frontend-ui-ux-engineer": {
195
-
"model": "anthropic/claude-sonnet-4"
196
-
},
197
-
"document-writer": {
198
-
"model": "anthropic/claude-sonnet-4"
199
-
}
200
-
}
201
-
}
202
-
```
203
-
204
-
**Custom Agent with Additional Prompt**
205
-
206
-
Inject custom instructions into an agent's system prompt.
207
-
208
-
```json
209
-
{
210
-
"agents": {
211
-
"frontend-ui-ux-engineer": {
212
-
"prompt": "ALWAYS use Tailwind CSS. NEVER use inline styles. Prefer dark mode defaults.",
213
-
"temperature": 0.8
214
-
}
215
-
}
216
-
}
217
-
```
218
-
219
-
**Disable Agents Individually**
220
-
221
-
You can also disable agents using the `disable` property within the agent config.
222
-
223
-
```json
224
-
{
225
-
"agents": {
226
-
"explore": {
227
-
"disable": true
228
-
}
229
-
}
230
-
}
231
-
```
151
+
For full configuration options and examples, see the [OpenCode Agents documentation](https://opencode.ai/docs/agents).
232
152
233
153
## Why OpenCode & Why Oh My OpenCode
234
154
@@ -265,19 +185,21 @@ I believe in the right tool for the job. For your wallet's sake, use CLIProxyAPI
265
185
-**frontend-ui-ux-engineer** (`google/gemini-3-pro-preview`): A designer turned developer. Creates stunning UIs. Uses Gemini because its creativity and UI code generation are superior.
266
186
-**document-writer** (`google/gemini-3-pro-preview`): A technical writing expert. Gemini is a wordsmith; it writes prose that flows naturally.
267
187
268
-
#### Model Configuration Override
188
+
#### Configuration
189
+
190
+
Agents follow the same configuration spec as OpenCode:
191
+
192
+
-**Change models**: Override any agent's model via `agents.{name}.model`. See [OpenCode Models](https://opencode.ai/docs/models/#configure-models).
193
+
-**Disable MCPs**: Use `disabled_mcps` to turn off built-in MCPs. See [OpenCode MCP Servers](https://opencode.ai/docs/mcp-servers).
194
+
-**Disable agents**: Use `disabled_agents` or `agents.{name}.disable`. See [OpenCode Agents](https://opencode.ai/docs/agents).
269
195
270
-
Agents follow the exact same model configuration spec as [OpenCode's model configuration](https://opencode.ai/docs/models/#configure-models). While not generally recommended, if you decide to use only Anthropic models, you could configure like this:
196
+
While not generally recommended (this plugin is designed for multi-model orchestration), here's an example for Anthropic-only users:
0 commit comments