Files
opencode-config/oh-my-opencode.jsonc
imbytecat 8eb9e5e032 docs: 添加代理模型和类别技能指南的官方文档链接
- 添加注释以指向代理模型和类别技能指南的官方文档链接。
2026-01-27 11:09:00 +08:00

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-thinking"
},
"prometheus": {
"description": "Strategic planning",
"model": "cpa-anthropic/claude-opus-4-5-thinking"
},
"atlas": {
"description": "Master orchestrator",
"model": "cpa-anthropic/claude-opus-4-5-thinking"
},
"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-high"
},
"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-high"
},
"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-thinking"
},
"writing": {
"description": "Documentation, prose, technical writing",
"model": "cpa-google/gemini-3-flash"
}
}
}