forked from imbytecat/opencode-config
- 将多个代理的模型配置从 claude-sonnet-4-5 更新为指定的最新版本模型。 - 添加 PackyCode 服务配置,支持 Claude Opus 4.5 和 Claude Sonnet 4.5 模型。
61 lines
1.6 KiB
JSON
61 lines
1.6 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"
|
|
"model": "packycode/claude-opus-4-5-20251101"
|
|
},
|
|
"prometheus": {
|
|
// Strategic planning
|
|
// "model": "anthropic-gateway/claude-sonnet-4-5"
|
|
"model": "packycode/claude-opus-4-5-20251101"
|
|
},
|
|
"atlas": {
|
|
// Master orchestrator
|
|
// "model": "anthropic-gateway/claude-sonnet-4-5"
|
|
"model": "packycode/claude-sonnet-4-5-20250929"
|
|
},
|
|
"oracle": {
|
|
// Consultation, debugging
|
|
"model": "openai-gateway/gpt-5.2"
|
|
},
|
|
"librarian": {
|
|
// Docs, GitHub search
|
|
// "model": "glm-coding-plan/glm-4.7"
|
|
"model": "google-gateway/gemini-3-flash"
|
|
},
|
|
"explore": {
|
|
// Fast codebase grep
|
|
// "model": "opencode/gpt-5-nano"
|
|
"model": "google-gateway/gemini-3-flash"
|
|
},
|
|
"multimodal-looker": {
|
|
// PDF/image analysis
|
|
"model": "google-gateway/gemini-3-flash"
|
|
}
|
|
},
|
|
"categories": {
|
|
"visual-engineering": {
|
|
// 前端 UI/UX 设计任务
|
|
"model": "google-gateway/gemini-3-pro-high"
|
|
},
|
|
"ultrabrain": {
|
|
// 深度逻辑推理、复杂架构决策
|
|
"model": "openai-gateway/gpt-5.2-codex"
|
|
},
|
|
"artistry": {
|
|
// 艺术创作任务
|
|
"model": "google-gateway/gemini-3-pro-high"
|
|
},
|
|
"quick": {
|
|
// 简单快速任务
|
|
"model": "google-gateway/gemini-3-flash"
|
|
},
|
|
"writing": {
|
|
// 文档写作任务
|
|
"model": "google-gateway/gemini-3-flash"
|
|
}
|
|
}
|
|
}
|