From 29e7595fc9bafe8aeaf5e149e4ef8384f750ed73 Mon Sep 17 00:00:00 2001 From: justsisyphus Date: Tue, 20 Jan 2026 18:55:18 +0900 Subject: [PATCH] docs: update AGENTS.md with latest stats and commit hash Auto-generated documentation update reflecting recent changes. --- AGENTS.md | 18 +++++++++--------- src/agents/AGENTS.md | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 37eefa008..af28f760d 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,12 +1,12 @@ # PROJECT KNOWLEDGE BASE -**Generated:** 2026-01-19T18:10:00+09:00 -**Commit:** 45660940 +**Generated:** 2026-01-20T17:18:00+09:00 +**Commit:** 3d3d3e49 **Branch:** dev ## OVERVIEW -OpenCode plugin implementing multi-model agent orchestration (Claude Opus 4.5, GPT-5.2, Gemini 3, Grok, GLM-4.7). 31 lifecycle hooks, 20+ tools (LSP, AST-Grep, delegation), 10 specialized agents, Claude Code compatibility layer. "oh-my-zsh" for OpenCode. +ClaudeCode plugin implementing multi-model agent orchestration (Claude Opus 4.5, GPT-5.2, Gemini 3, Grok, GLM-4.7). 31 lifecycle hooks, 20+ tools (LSP, AST-Grep, delegation), 10 specialized agents, Claude Code compatibility layer. "oh-my-zsh" for ClaudeCode. ## STRUCTURE @@ -21,7 +21,7 @@ oh-my-opencode/ │ ├── cli/ # CLI installer, doctor, run - see src/cli/AGENTS.md │ ├── mcp/ # Built-in MCPs: websearch, context7, grep_app │ ├── config/ # Zod schema, TypeScript types -│ └── index.ts # Main plugin entry (568 lines) +│ └── index.ts # Main plugin entry (589 lines) ├── script/ # build-schema.ts, publish.ts, build-binaries.ts ├── packages/ # 7 platform-specific binaries └── dist/ # Build output (ESM + .d.ts) @@ -143,14 +143,14 @@ bun test # Run tests (83 test files) | File | Lines | Description | |------|-------|-------------| -| `src/agents/atlas.ts` | 1531 | Orchestrator agent, 7-section delegation, wisdom accumulation | +| `src/agents/atlas.ts` | 1383 | Orchestrator agent, 7-section delegation, wisdom accumulation | | `src/features/builtin-skills/skills.ts` | 1203 | Skill definitions (playwright, git-master, frontend-ui-ux) | | `src/agents/prometheus-prompt.ts` | 1196 | Planning agent, interview mode, Momus loop | | `src/features/background-agent/manager.ts` | 1165 | Task lifecycle, concurrency, notification batching | | `src/hooks/atlas/index.ts` | 771 | Orchestrator hook implementation | -| `src/tools/delegate-task/tools.ts` | 761 | Category-based task delegation | -| `src/cli/config-manager.ts` | 730 | JSONC parsing, multi-level config | -| `src/agents/sisyphus.ts` | 640 | Main Sisyphus prompt | +| `src/tools/delegate-task/tools.ts` | 770 | Category-based task delegation | +| `src/cli/config-manager.ts` | 616 | JSONC parsing, multi-level config | +| `src/agents/sisyphus.ts` | 615 | Main Sisyphus prompt | | `src/features/builtin-commands/templates/refactor.ts` | 619 | Refactoring command template | | `src/tools/lsp/client.ts` | 596 | LSP protocol, JSON-RPC | @@ -171,7 +171,7 @@ Three-tier MCP system: ## NOTES - **Testing**: Bun native test (`bun test`), BDD-style, 83 test files -- **OpenCode**: Requires >= 1.0.150 +- **ClaudeCode**: Requires >= 1.0.150 - **Multi-lang docs**: README.md (EN), README.ko.md (KO), README.ja.md (JA), README.zh-cn.md (ZH-CN) - **Config**: `~/.config/opencode/oh-my-opencode.json` (user) or `.opencode/oh-my-opencode.json` (project) - **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 330d9ee92..7a2e1a27b 100644 --- a/src/agents/AGENTS.md +++ b/src/agents/AGENTS.md @@ -8,8 +8,8 @@ ``` agents/ -├── atlas.ts # Orchestrator (1531 lines) - 7-phase delegation -├── sisyphus.ts # Main prompt (640 lines) +├── atlas.ts # Orchestrator (1383 lines) - 7-phase delegation +├── sisyphus.ts # Main prompt (615 lines) ├── sisyphus-junior.ts # Delegated task executor ├── dynamic-agent-prompt-builder.ts # Dynamic prompt generation ├── oracle.ts # Strategic advisor (GPT-5.2)