feat: 更新代理和分类配置,统一模型变体参数并修正注释链接

- 更新代理和分类配置,统一使用模型变体参数并修正注释链接指向。
This commit is contained in:
2026-01-30 22:12:36 +08:00
parent 902c7870e1
commit 2fe3a26a4d

View File

@@ -1,64 +1,65 @@
// bunx oh-my-opencode doctor --verbose
{ {
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json", "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
"agents": { "agents": {
// https://github.com/code-yeongyu/oh-my-opencode/blob/dev/AGENTS.md#agent-models // ref: https://github.com/code-yeongyu/oh-my-opencode/blob/dev/AGENTS.md#agent-models
"sisyphus": { "sisyphus": {
"description": "Primary orchestrator", "model": "cpa-anthropic/claude-opus-4-5",
"model": "cpa-anthropic/claude-opus-4-5" "variant": "max"
},
"prometheus": {
"description": "Strategic planning",
"model": "cpa-anthropic/claude-opus-4-5"
},
"atlas": {
"description": "Master orchestrator",
"model": "cpa-anthropic/claude-opus-4-5"
}, },
"oracle": { "oracle": {
"description": "Consultation, debugging", "model": "cpa-openai/gpt-5.2",
"model": "cpa-openai/gpt-5.2" "variant": "high"
}, },
"librarian": { "librarian": {
"description": "Docs, GitHub search",
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
}, },
"explore": { "explore": {
"description": "Fast codebase grep",
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
}, },
"multimodal-looker": { "multimodal-looker": {
"description": "PDF/image analysis",
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
},
"prometheus": {
"model": "cpa-anthropic/claude-opus-4-5",
"variant": "max"
},
"metis": {
"model": "cpa-anthropic/claude-opus-4-5",
"variant": "max"
},
"momus": {
"model": "cpa-openai/gpt-5.2",
"variant": "medium"
},
"atlas": {
"model": "cpa-anthropic/claude-sonnet-4-5"
} }
}, },
"categories": { "categories": {
// https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/category-skill-guide.md#available-built-in-categories // ref: https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/category-skill-guide.md#available-built-in-categories
"visual-engineering": { "visual-engineering": {
"description": "Frontend, UI/UX, design, styling, animation",
"model": "cpa-google/gemini-3-pro" "model": "cpa-google/gemini-3-pro"
}, },
"ultrabrain": { "ultrabrain": {
"description": "Deep logical reasoning, complex architecture decisions requiring extensive analysis", "model": "cpa-openai/gpt-5.2-codex",
"model": "cpa-openai/gpt-5.2-codex" "variant": "xhigh"
}, },
"artistry": { "artistry": {
"description": "Highly creative/artistic tasks, novel ideas", "model": "cpa-google/gemini-3-pro",
"model": "cpa-google/gemini-3-pro" "variant": "max"
}, },
"quick": { "quick": {
"description": "Trivial tasks - single file changes, typo fixes, simple modifications",
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
}, },
"unspecified-low": { "unspecified-low": {
"description": "Tasks that don't fit other categories, low effort required",
"model": "cpa-anthropic/claude-sonnet-4-5" "model": "cpa-anthropic/claude-sonnet-4-5"
}, },
"unspecified-high": { "unspecified-high": {
"description": "Tasks that don't fit other categories, high effort required", "model": "cpa-anthropic/claude-opus-4-5",
"model": "cpa-anthropic/claude-opus-4-5" "variant": "max"
}, },
"writing": { "writing": {
"description": "Documentation, prose, technical writing",
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
} }
} }