refactor: 统一注释为描述字段提升配置可读性

- 将注释统一替换为描述字段,提升配置文件的可读性和结构清晰度。
This commit is contained in:
2026-01-26 23:12:59 +08:00
parent 7fdc400e60
commit 5eb6c9fa04

View File

@@ -2,31 +2,31 @@
"$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": {
"sisyphus": { "sisyphus": {
// Primary orchestrator "description": "Primary orchestrator",
"model": "cpa-anthropic/claude-opus-4-5-thinking" "model": "cpa-anthropic/claude-opus-4-5-thinking"
}, },
"prometheus": { "prometheus": {
// Strategic planning "description": "Strategic planning",
"model": "cpa-anthropic/claude-opus-4-5-thinking" "model": "cpa-anthropic/claude-opus-4-5-thinking"
}, },
"atlas": { "atlas": {
// Master orchestrator "description": "Master orchestrator",
"model": "cpa-anthropic/claude-opus-4-5-thinking" "model": "cpa-anthropic/claude-opus-4-5-thinking"
}, },
"oracle": { "oracle": {
// Consultation, debugging "description": "Consultation, debugging",
"model": "cpa-openai/gpt-5.2" "model": "cpa-openai/gpt-5.2"
}, },
"librarian": { "librarian": {
// Docs, GitHub search "description": "Docs, GitHub search",
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
}, },
"explore": { "explore": {
// Fast codebase grep "description": "Fast codebase grep",
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
}, },
"multimodal-looker": { "multimodal-looker": {
// PDF/image analysis "description": "PDF/image analysis",
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
} }
}, },