Skip to content

Commit c6c149e

Browse files
authored
Merge pull request #1547 from code-yeongyu/fix/agents-md-docs
docs: fix stale references in AGENTS.md files
2 parents 728eaae + ca8ec49 commit c6c149e

File tree

4 files changed

+26
-9
lines changed

4 files changed

+26
-9
lines changed

AGENTS.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,15 @@ This is an **international open-source project**. To ensure accessibility and ma
120120

121121
## OVERVIEW
122122

123-
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.
123+
OpenCode plugin: multi-model agent orchestration (Claude Opus 4.5, GPT-5.2, Gemini 3 Flash). 41 lifecycle hooks, 20+ tools (LSP, AST-Grep, delegation), 11 specialized agents, full Claude Code compatibility. "oh-my-zsh" for OpenCode.
124124

125125
## STRUCTURE
126126

127127
```
128128
oh-my-opencode/
129129
├── src/
130130
│ ├── agents/ # 11 AI agents - see src/agents/AGENTS.md
131-
│ ├── hooks/ # 34 lifecycle hooks - see src/hooks/AGENTS.md
131+
│ ├── hooks/ # 41 lifecycle hooks - see src/hooks/AGENTS.md
132132
│ ├── tools/ # 20+ tools - see src/tools/AGENTS.md
133133
│ ├── features/ # Background agents, Claude Code compat - see src/features/AGENTS.md
134134
│ ├── shared/ # 66 cross-cutting utilities - see src/shared/AGENTS.md
@@ -212,6 +212,9 @@ oh-my-opencode/
212212
| explore | xai/grok-code-fast-1 | Fast codebase grep (fallback: claude-haiku-4-5 → gpt-5-mini → gpt-5-nano) |
213213
| multimodal-looker | google/gemini-3-flash | PDF/image analysis |
214214
| Prometheus | anthropic/claude-opus-4-6 | Strategic planning (fallback: kimi-k2.5 → gpt-5.2) |
215+
| Metis | anthropic/claude-opus-4-6 | Pre-planning analysis (temp 0.3, fallback: kimi-k2.5 → gpt-5.2) |
216+
| Momus | openai/gpt-5.2 | Plan validation (temp 0.1, fallback: claude-opus-4-6) |
217+
| Sisyphus-Junior | anthropic/claude-sonnet-4-5 | Category-spawned executor (temp 0.1) |
215218

216219
## COMMANDS
217220

@@ -233,9 +236,9 @@ bun test # 100 test files
233236

234237
| File | Lines | Description |
235238
|------|-------|-------------|
236-
| `src/features/builtin-skills/skills.ts` | 1729 | Skill definitions |
239+
| `src/features/builtin-skills/skills.ts` | 29 | Skill definitions |
237240
| `src/features/background-agent/manager.ts` | 1418 | Task lifecycle, concurrency |
238-
| `src/agents/prometheus-prompt.ts` | 1283 | Planning agent prompt |
241+
| `src/agents/prometheus/` | 1492 | Planning agent prompt |
239242
| `src/tools/delegate-task/tools.ts` | 1135 | Category-based delegation |
240243
| `src/hooks/atlas/index.ts` | 757 | Orchestrator hook |
241244
| `src/index.ts` | 788 | Main plugin entry |

src/agents/AGENTS.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,29 @@
1313
## STRUCTURE
1414
```
1515
agents/
16-
├── atlas.ts # Master Orchestrator (holds todo list)
16+
├── atlas/ # Master Orchestrator (holds todo list)
17+
│ ├── index.ts
18+
│ ├── default.ts
19+
│ ├── gpt.ts
20+
│ └── utils.ts
1721
├── sisyphus.ts # Main prompt (SF Bay Area engineer identity)
1822
├── hephaestus.ts # Autonomous Deep Worker (GPT 5.2 Codex, "The Legitimate Craftsman")
19-
├── sisyphus-junior.ts # Delegated task executor (category-spawned)
23+
├── sisyphus-junior/ # Delegated task executor (category-spawned)
24+
│ ├── index.ts
25+
│ ├── default.ts
26+
│ └── gpt.ts
2027
├── oracle.ts # Strategic advisor (GPT-5.2)
2128
├── librarian.ts # Multi-repo research (GitHub CLI, Context7)
2229
├── explore.ts # Fast contextual grep (Grok Code Fast)
2330
├── multimodal-looker.ts # Media analyzer (Gemini 3 Flash)
24-
├── prometheus-prompt.ts # Planning (Interview/Consultant mode, 1283 lines)
31+
├── prometheus/ # Planning (Interview/Consultant mode)
32+
│ ├── index.ts
33+
│ ├── plan-template.ts
34+
│ ├── interview-mode.ts
35+
│ ├── plan-generation.ts
36+
│ ├── high-accuracy-mode.ts
37+
│ ├── identity-constraints.ts
38+
│ └── behavioral-summary.ts
2539
├── metis.ts # Pre-planning analysis (Gap detection)
2640
├── momus.ts # Plan reviewer (Ruthless fault-finding)
2741
├── dynamic-agent-prompt-builder.ts # Dynamic prompt generation

src/features/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ features/
1414
│ ├── manager.ts # Launch → poll → complete
1515
│ └── concurrency.ts # Per-provider limits
1616
├── builtin-skills/ # Core skills (1729 lines)
17-
│ └── skills.ts # playwright, dev-browser, frontend-ui-ux, git-master, typescript-programmer
17+
│ └── skills.ts # playwright, agent-browser, frontend-ui-ux, git-master, dev-browser
1818
├── builtin-commands/ # ralph-loop, refactor, ulw-loop, init-deep, start-work, cancel-ralph, stop-continuation
1919
├── claude-code-agent-loader/ # ~/.claude/agents/*.md
2020
├── claude-code-command-loader/ # ~/.claude/commands/*.md

src/hooks/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## OVERVIEW
44

5-
34 lifecycle hooks intercepting/modifying agent behavior across 5 events.
5+
41 lifecycle hooks intercepting/modifying agent behavior across 5 events.
66

77
**Event Types**:
88
- `UserPromptSubmit` (`chat.message`) - Can block

0 commit comments

Comments
 (0)