From 110dbd665a04db1bfcf080eb424b595c98cf5aab Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 6 Jan 2026 13:30:02 +0900 Subject: [PATCH] docs(refactor,root): update oracle consultation model in feature templates and root docs - Updated refactor command template to emphasize oracle's read-only role - Updated root AGENTS.md with oracle agent description emphasizing high-IQ debugging and architecture consultation - Clarified oracle as non-write agent for design and debugging support --- AGENTS.md | 2 +- src/features/builtin-commands/templates/refactor.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 1e27efd9..3cbc4561 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -116,7 +116,7 @@ oh-my-opencode/ | Agent | Default Model | Purpose | |-------|-------|---------| | Sisyphus | anthropic/claude-opus-4-5 | Primary orchestrator | -| oracle | openai/gpt-5.2 | Strategic advisor, code review | +| oracle | openai/gpt-5.2 | Read-only consultation. High-IQ debugging, architecture | | librarian | anthropic/claude-sonnet-4-5 | Multi-repo analysis, docs | | explore | opencode/grok-code | Fast codebase exploration | | frontend-ui-ux-engineer | google/gemini-3-pro-preview | UI generation | diff --git a/src/features/builtin-commands/templates/refactor.ts b/src/features/builtin-commands/templates/refactor.ts index 7c882b3d..c1174982 100644 --- a/src/features/builtin-commands/templates/refactor.ts +++ b/src/features/builtin-commands/templates/refactor.ts @@ -605,7 +605,7 @@ Use \`ast_grep_search\` and \`ast_grep_replace\` for structural transformations. ## Agents - \`explore\`: Parallel codebase pattern discovery - \`plan\`: Detailed refactoring plan generation -- \`oracle\`: Consult for complex architectural decisions +- \`oracle\`: Read-only consultation for complex architectural decisions and debugging - \`librarian\`: **Use proactively** when encountering deprecated methods or library migration tasks. Query official docs and OSS examples for modern replacements. ## Deprecated Code & Library Migration