diff --git a/src/agents/AGENTS.md b/src/agents/AGENTS.md index 4bfe0b69..eeea4c34 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 (GPT-5.2) +├── oracle.ts # Strategic advisor (Claude Opus 4.5) ├── 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 | openai/gpt-5.2 | - | Read-only consultation. High-IQ debugging, architecture | +| oracle | anthropic/claude-opus-4-5 | - | 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 | diff --git a/src/agents/oracle.ts b/src/agents/oracle.ts index db3814cb..390aa4c3 100644 --- a/src/agents/oracle.ts +++ b/src/agents/oracle.ts @@ -3,7 +3,7 @@ import type { AgentPromptMetadata } from "./types" import { isGptModel } from "./types" import { createAgentToolRestrictions } from "../shared/permission-compat" -const DEFAULT_MODEL = "openai/gpt-5.2" +const DEFAULT_MODEL = "anthropic/claude-opus-4-5" export const ORACLE_PROMPT_METADATA: AgentPromptMetadata = { category: "advisor",