Files
opencode-config/oh-my-opencode.jsonc
imbytecat 6b3a084290 refactor: 重命名代理并优化模型配置分工
- 重命名代理并更新注释以明确各代理的职责,优化模型配置和分工结构。
2026-01-26 09:45:53 +08:00

40 lines
1.0 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
"agents": {
"sisyphus": {
// Primary orchestrator
"model": "anthropic-gateway/claude-sonnet-4-5"
},
"prometheus": {
// Strategic planning
"model": "anthropic-gateway/claude-opus-4-5-thinking"
},
"atlas": {
// Master orchestrator
"model": "anthropic-gateway/claude-sonnet-4-5"
},
"oracle": {
// Consultation, debugging
"model": "openai-gateway/gpt-5.2"
},
"librarian": {
// Docs, GitHub search
"model": "glm-coding-plan/glm-4.7"
},
"explore": {
// Fast codebase grep
"model": "opencode/grok-code"
},
"multimodal-looker": {
// PDF/image analysis
"model": "google-gateway/gemini-3-flash"
},
"frontend-ui-ux-engineer": {
"model": "google-gateway/gemini-3-pro-high"
},
"document-writer": {
"model": "google-gateway/gemini-3-flash"
}
}
}