From 4a6663a6cf6d8597aaaf9b983e8b392a1d34f297 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 6 Jan 2026 15:19:52 +0900 Subject: [PATCH] feat(agents): change orchestrator-sisyphus default model to claude-sonnet-4-5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update orchestrator-sisyphus model from opus-4-5 to sonnet-4-5 for better cost efficiency - Keep Prometheus using opus-4-5 for planning tasks 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- src/agents/orchestrator-sisyphus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/orchestrator-sisyphus.ts b/src/agents/orchestrator-sisyphus.ts index 12b389f4..86105599 100644 --- a/src/agents/orchestrator-sisyphus.ts +++ b/src/agents/orchestrator-sisyphus.ts @@ -1442,7 +1442,7 @@ export function createOrchestratorSisyphusAgent(ctx?: OrchestratorContext): Agen description: "Orchestrates work via sisyphus_task() to complete ALL tasks in a todo list until fully done", mode: "primary" as const, - model: "anthropic/claude-opus-4-5", + model: "anthropic/claude-sonnet-4-5", temperature: 0.1, prompt: buildDynamicOrchestratorPrompt(ctx), thinking: { type: "enabled", budgetTokens: 32000 },