From 69a12663c419c85cbb586f2cb3b47ae58301ac66 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Thu, 8 Jan 2026 00:36:23 +0900 Subject: [PATCH] feat(oracle): change default model to claude-opus-4-5 --- src/agents/AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agents/AGENTS.md b/src/agents/AGENTS.md index eeea4c345..4bfe0b69b 100644 --- a/src/agents/AGENTS.md +++ b/src/agents/AGENTS.md @@ -9,7 +9,7 @@ AI agent definitions for multi-model orchestration. 7 specialized agents: Sisyph ``` agents/ ├── sisyphus.ts # Primary orchestrator (Claude Opus 4.5) -├── oracle.ts # Strategic advisor (Claude Opus 4.5) +├── oracle.ts # Strategic advisor (GPT-5.2) ├── librarian.ts # Multi-repo research (Claude Sonnet 4.5) ├── explore.ts # Fast codebase grep (Grok Code) ├── frontend-ui-ux-engineer.ts # UI generation (Gemini 3 Pro) @@ -27,7 +27,7 @@ agents/ | Agent | Default Model | Fallback | Purpose | |-------|---------------|----------|---------| | Sisyphus | anthropic/claude-opus-4-5 | - | Primary orchestrator with extended thinking | -| oracle | anthropic/claude-opus-4-5 | - | Read-only consultation. High-IQ debugging, architecture | +| oracle | openai/gpt-5.2 | - | Read-only consultation. High-IQ debugging, architecture | | librarian | anthropic/claude-sonnet-4-5 | google/gemini-3-flash | Docs, OSS research, GitHub examples | | explore | opencode/grok-code | google/gemini-3-flash, anthropic/claude-haiku-4-5 | Fast contextual grep | | frontend-ui-ux-engineer | google/gemini-3-pro-preview | - | UI/UX code generation |