From 2fe3a26a4d579a4fd4236177f1cc7e408e2ac589 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Fri, 30 Jan 2026 22:12:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E5=92=8C=E5=88=86=E7=B1=BB=E9=85=8D=E7=BD=AE=EF=BC=8C=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E6=A8=A1=E5=9E=8B=E5=8F=98=E4=BD=93=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E5=B9=B6=E4=BF=AE=E6=AD=A3=E6=B3=A8=E9=87=8A=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新代理和分类配置,统一使用模型变体参数并修正注释链接指向。 --- oh-my-opencode.jsonc | 55 ++++++++++++++++++++++---------------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/oh-my-opencode.jsonc b/oh-my-opencode.jsonc index 4b0697a..02614f4 100644 --- a/oh-my-opencode.jsonc +++ b/oh-my-opencode.jsonc @@ -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", "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": { - "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" + "model": "cpa-anthropic/claude-opus-4-5", + "variant": "max" }, "oracle": { - "description": "Consultation, debugging", - "model": "cpa-openai/gpt-5.2" + "model": "cpa-openai/gpt-5.2", + "variant": "high" }, "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" + }, + "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": { - // 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": { - "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" + "model": "cpa-openai/gpt-5.2-codex", + "variant": "xhigh" }, "artistry": { - "description": "Highly creative/artistic tasks, novel ideas", - "model": "cpa-google/gemini-3-pro" + "model": "cpa-google/gemini-3-pro", + "variant": "max" }, "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" + "model": "cpa-anthropic/claude-opus-4-5", + "variant": "max" }, "writing": { - "description": "Documentation, prose, technical writing", "model": "cpa-google/gemini-3-flash" } }