From 6b3a084290c74118cecf5e50dc5787c6b3694592 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Mon, 26 Jan 2026 09:45:53 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E9=87=8D=E5=91=BD=E5=90=8D?= =?UTF-8?q?=E4=BB=A3=E7=90=86=E5=B9=B6=E4=BC=98=E5=8C=96=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=88=86=E5=B7=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 重命名代理并更新注释以明确各代理的职责,优化模型配置和分工结构。 --- oh-my-opencode.jsonc | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/oh-my-opencode.jsonc b/oh-my-opencode.jsonc index 2d61643..f8bfbea 100644 --- a/oh-my-opencode.jsonc +++ b/oh-my-opencode.jsonc @@ -1,29 +1,39 @@ { "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json", "agents": { - "Sisyphus": { + "sisyphus": { + // Primary orchestrator "model": "anthropic-gateway/claude-sonnet-4-5" }, - "Planner-Sisyphus": { + "prometheus": { + // Strategic planning "model": "anthropic-gateway/claude-opus-4-5-thinking" }, + "atlas": { + // Master orchestrator + "model": "anthropic-gateway/claude-sonnet-4-5" + }, "oracle": { + // Consultation, debugging "model": "openai-gateway/gpt-5.2" }, + "librarian": { + // Docs, GitHub search + "model": "glm-coding-plan/glm-4.7" + }, + "explore": { + // Fast codebase grep + "model": "opencode/grok-code" + }, + "multimodal-looker": { + // PDF/image analysis + "model": "google-gateway/gemini-3-flash" + }, "frontend-ui-ux-engineer": { "model": "google-gateway/gemini-3-pro-high" }, - "librarian": { - "model": "glm-coding-plan/glm-4.7" - }, - "explore": { - "model": "opencode/grok-code" - }, "document-writer": { "model": "google-gateway/gemini-3-flash" - }, - "multimodal-looker": { - "model": "google-gateway/gemini-3-flash" } } }