forked from imbytecat/opencode-config
- 移除所有模型配置中的-thinking后缀,统一使用非思考模式的Claude Opus 4-5模型。 - 将模型名称从 claude-opus-4-5-thinking 修改为 claude-opus-4-5 并保留推理功能配置
66 lines
2.2 KiB
JSON
66 lines
2.2 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
|
|
"agents": {
|
|
// https://github.com/code-yeongyu/oh-my-opencode/blob/dev/AGENTS.md#agent-models
|
|
"sisyphus": {
|
|
"description": "Primary orchestrator",
|
|
"model": "cpa-anthropic/claude-opus-4-5"
|
|
},
|
|
"prometheus": {
|
|
"description": "Strategic planning",
|
|
"model": "cpa-anthropic/claude-opus-4-5"
|
|
},
|
|
"atlas": {
|
|
"description": "Master orchestrator",
|
|
"model": "cpa-anthropic/claude-opus-4-5"
|
|
},
|
|
"oracle": {
|
|
"description": "Consultation, debugging",
|
|
"model": "cpa-openai/gpt-5.2"
|
|
},
|
|
"librarian": {
|
|
"description": "Docs, GitHub search",
|
|
"model": "cpa-google/gemini-3-flash"
|
|
},
|
|
"explore": {
|
|
"description": "Fast codebase grep",
|
|
"model": "cpa-google/gemini-3-flash"
|
|
},
|
|
"multimodal-looker": {
|
|
"description": "PDF/image analysis",
|
|
"model": "cpa-google/gemini-3-flash"
|
|
}
|
|
},
|
|
"categories": {
|
|
// https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/category-skill-guide.md#available-built-in-categories
|
|
"visual-engineering": {
|
|
"description": "Frontend, UI/UX, design, styling, animation",
|
|
"model": "cpa-google/gemini-3-pro"
|
|
},
|
|
"ultrabrain": {
|
|
"description": "Deep logical reasoning, complex architecture decisions requiring extensive analysis",
|
|
"model": "cpa-openai/gpt-5.2-codex"
|
|
},
|
|
"artistry": {
|
|
"description": "Highly creative/artistic tasks, novel ideas",
|
|
"model": "cpa-google/gemini-3-pro"
|
|
},
|
|
"quick": {
|
|
"description": "Trivial tasks - single file changes, typo fixes, simple modifications",
|
|
"model": "cpa-google/gemini-3-flash"
|
|
},
|
|
"unspecified-low": {
|
|
"description": "Tasks that don't fit other categories, low effort required",
|
|
"model": "cpa-anthropic/claude-sonnet-4-5"
|
|
},
|
|
"unspecified-high": {
|
|
"description": "Tasks that don't fit other categories, high effort required",
|
|
"model": "cpa-anthropic/claude-opus-4-5"
|
|
},
|
|
"writing": {
|
|
"description": "Documentation, prose, technical writing",
|
|
"model": "cpa-google/gemini-3-flash"
|
|
}
|
|
}
|
|
}
|