From 99ee4a0251dded80a04456cb356269d691208657 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 2 Feb 2026 21:19:21 +0900 Subject: [PATCH] docs: update AGENTS.md with explore agent model change (grok-code-fast-1) --- AGENTS.md | 16 ++++++++-------- src/agents/AGENTS.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 3e3f69c87..d30f00daa 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,8 +1,8 @@ # PROJECT KNOWLEDGE BASE -**Generated:** 2026-02-01T17:25:00+09:00 -**Commit:** ab54e6cc -**Branch:** feat/hephaestus-agent +**Generated:** 2026-02-02T21:16:00+09:00 +**Commit:** d80adac3 +**Branch:** dev --- @@ -18,7 +18,7 @@ ## OVERVIEW -OpenCode plugin: multi-model agent orchestration (Claude Opus 4.5, GPT-5.2, Gemini 3 Flash). 34 lifecycle hooks, 20+ tools (LSP, AST-Grep, delegation), 11 specialized agents, full Claude Code compatibility. "oh-my-zsh" for OpenCode. +O P E N C O D E plugin: multi-model agent orchestration (Claude Opus 4.5, GPT-5.2, Gemini 3 Flash). 34 lifecycle hooks, 20+ tools (LSP, AST-Grep, delegation), 11 specialized agents, full Claude Code compatibility. "oh-my-zsh" for O P E N C O D E. ## STRUCTURE @@ -33,7 +33,7 @@ oh-my-opencode/ │ ├── cli/ # CLI installer, doctor - see src/cli/AGENTS.md │ ├── mcp/ # Built-in MCPs - see src/mcp/AGENTS.md │ ├── config/ # Zod schema, TypeScript types -│ └── index.ts # Main plugin entry (740 lines) +│ └── index.ts # Main plugin entry (788 lines) ├── script/ # build-schema.ts, build-binaries.ts ├── packages/ # 11 platform-specific binaries └── dist/ # Build output (ESM + .d.ts) @@ -103,7 +103,7 @@ oh-my-opencode/ | Atlas | anthropic/claude-sonnet-4-5 | Master orchestrator (fallback: kimi-k2.5 → gpt-5.2) | | oracle | openai/gpt-5.2 | Consultation, debugging | | librarian | zai-coding-plan/glm-4.7 | Docs, GitHub search (fallback: glm-4.7-free) | -| explore | anthropic/claude-haiku-4-5 | Fast codebase grep (fallback: gpt-5-mini → gpt-5-nano) | +| explore | xai/grok-code-fast-1 | Fast codebase grep (fallback: claude-haiku-4-5 → gpt-5-mini → gpt-5-nano) | | multimodal-looker | google/gemini-3-flash | PDF/image analysis | | Prometheus | anthropic/claude-opus-4-5 | Strategic planning (fallback: kimi-k2.5 → gpt-5.2) | @@ -128,7 +128,7 @@ bun test # 100 test files | File | Lines | Description | |------|-------|-------------| | `src/features/builtin-skills/skills.ts` | 1729 | Skill definitions | -| `src/features/background-agent/manager.ts` | 1440 | Task lifecycle, concurrency | +| `src/features/background-agent/manager.ts` | 1457 | Task lifecycle, concurrency | | `src/agents/prometheus-prompt.ts` | 1283 | Planning agent prompt | | `src/tools/delegate-task/tools.ts` | 1135 | Category-based delegation | | `src/hooks/atlas/index.ts` | 757 | Orchestrator hook | @@ -151,6 +151,6 @@ Three-tier system: ## NOTES -- **OpenCode**: Requires >= 1.0.150 +- **O P E N C O D E**: Requires >= 1.0.150 - **Flaky tests**: ralph-loop (CI timeout), session-state (parallel pollution) - **Trusted deps**: @ast-grep/cli, @ast-grep/napi, @code-yeongyu/comment-checker diff --git a/src/agents/AGENTS.md b/src/agents/AGENTS.md index cfbeecbcc..b1c05c4cc 100644 --- a/src/agents/AGENTS.md +++ b/src/agents/AGENTS.md @@ -19,7 +19,7 @@ agents/ ├── sisyphus-junior.ts # Delegated task executor (category-spawned) ├── oracle.ts # Strategic advisor (GPT-5.2) ├── librarian.ts # Multi-repo research (GitHub CLI, Context7) -├── explore.ts # Fast contextual grep (Claude Haiku) +├── explore.ts # Fast contextual grep (Grok Code Fast) ├── multimodal-looker.ts # Media analyzer (Gemini 3 Flash) ├── prometheus-prompt.ts # Planning (Interview/Consultant mode, 1283 lines) ├── metis.ts # Pre-planning analysis (Gap detection) @@ -38,7 +38,7 @@ agents/ | Atlas | anthropic/claude-sonnet-4-5 | 0.1 | Master orchestrator (fallback: kimi-k2.5 → gpt-5.2) | | oracle | openai/gpt-5.2 | 0.1 | Consultation, debugging | | librarian | zai-coding-plan/glm-4.7 | 0.1 | Docs, GitHub search (fallback: glm-4.7-free) | -| explore | anthropic/claude-haiku-4-5 | 0.1 | Fast contextual grep (fallback: gpt-5-mini → gpt-5-nano) | +| explore | xai/grok-code-fast-1 | 0.1 | Fast contextual grep (fallback: claude-haiku-4-5 → gpt-5-mini → gpt-5-nano) | | multimodal-looker | google/gemini-3-flash | 0.1 | PDF/image analysis | | Prometheus | anthropic/claude-opus-4-5 | 0.1 | Strategic planning (fallback: kimi-k2.5 → gpt-5.2) | | Metis | anthropic/claude-opus-4-5 | 0.3 | Pre-planning analysis (fallback: kimi-k2.5 → gpt-5.2) |