docs(agents): regenerate AGENTS.md hierarchy with updated metrics and model configs
- 1208→1243 TS files (+35), 143k→155k LOC (+12k) - Update all agent models: Sisyphus, Hephaestus, Oracle, Librarian, Atlas, Metis, Momus - Add 6 new hook directories (39→45 dirs): beast-mode-system, hashline-edit-diff-enhancer, anthropic-image-context, task-reminder, compaction-todo-preserver, runtime-fallback - Update category models: visual-engineering/artistry gemini-3-pro→gemini-3.1-pro - Add 2 config schema files: fallback-models.ts, runtime-fallback.ts - Timestamp: 2026-03-02 | Commit: 1c2caa09 🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
parent
3d4269dcf9
commit
33d39597ae
14
AGENTS.md
14
AGENTS.md
@ -1,10 +1,10 @@
|
|||||||
# oh-my-opencode — OpenCode Plugin
|
# oh-my-opencode — OpenCode Plugin
|
||||||
|
|
||||||
**Generated:** 2026-02-24 | **Commit:** fcb90d92 | **Branch:** dev
|
**Generated:** 2026-03-02 | **Commit:** 1c2caa09 | **Branch:** dev
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
OpenCode plugin (npm: `oh-my-opencode`) that extends Claude Code (OpenCode fork) with multi-agent orchestration, 46 lifecycle hooks, 26 tools, skill/command/MCP systems, and Claude Code compatibility. 1208 TypeScript files, 143k LOC.
|
OpenCode plugin (npm: `oh-my-opencode`) that extends Claude Code (OpenCode fork) with multi-agent orchestration, 46 lifecycle hooks, 26 tools, skill/command/MCP systems, and Claude Code compatibility. 1243 TypeScript files, 155k LOC.
|
||||||
|
|
||||||
## STRUCTURE
|
## STRUCTURE
|
||||||
|
|
||||||
@ -14,16 +14,16 @@ oh-my-opencode/
|
|||||||
│ ├── index.ts # Plugin entry: loadConfig → createManagers → createTools → createHooks → createPluginInterface
|
│ ├── index.ts # Plugin entry: loadConfig → createManagers → createTools → createHooks → createPluginInterface
|
||||||
│ ├── plugin-config.ts # JSONC multi-level config: user → project → defaults (Zod v4)
|
│ ├── plugin-config.ts # JSONC multi-level config: user → project → defaults (Zod v4)
|
||||||
│ ├── agents/ # 11 agents (Sisyphus, Hephaestus, Oracle, Librarian, Explore, Atlas, Prometheus, Metis, Momus, Multimodal-Looker, Sisyphus-Junior)
|
│ ├── agents/ # 11 agents (Sisyphus, Hephaestus, Oracle, Librarian, Explore, Atlas, Prometheus, Metis, Momus, Multimodal-Looker, Sisyphus-Junior)
|
||||||
| `hooks/` # 46 hooks across 39 directories + 6 standalone files
|
│ ├── hooks/ # 46 hooks across 45 directories + 11 standalone files
|
||||||
│ ├── tools/ # 26 tools across 15 directories
|
│ ├── tools/ # 26 tools across 15 directories
|
||||||
│ ├── features/ # 19 feature modules (background-agent, skill-loader, tmux, MCP-OAuth, etc.)
|
│ ├── features/ # 19 feature modules (background-agent, skill-loader, tmux, MCP-OAuth, etc.)
|
||||||
│ ├── shared/ # 100+ utility files in 13 categories
|
│ ├── shared/ # 95+ utility files in 13 categories
|
||||||
│ ├── config/ # Zod v4 schema system (22+ files)
|
│ ├── config/ # Zod v4 schema system (24 files)
|
||||||
│ ├── cli/ # CLI: install, run, doctor, mcp-oauth (Commander.js)
|
│ ├── cli/ # CLI: install, run, doctor, mcp-oauth (Commander.js)
|
||||||
│ ├── mcp/ # 3 built-in remote MCPs (websearch, context7, grep_app)
|
│ ├── mcp/ # 3 built-in remote MCPs (websearch, context7, grep_app)
|
||||||
│ ├── plugin/ # 8 OpenCode hook handlers + 46 hook composition
|
│ ├── plugin/ # 8 OpenCode hook handlers + 46 hook composition
|
||||||
│ └── plugin-handlers/ # 6-phase config loading pipeline
|
│ └── plugin-handlers/ # 6-phase config loading pipeline
|
||||||
├── packages/ # Monorepo: comment-checker, opencode-sdk, 10 platform binaries
|
├── packages/ # Monorepo: cli-runner, 12 platform binaries
|
||||||
└── local-ignore/ # Dev-only test fixtures
|
└── local-ignore/ # Dev-only test fixtures
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -123,7 +123,7 @@ bunx oh-my-opencode run # Non-interactive session
|
|||||||
|----------|---------|---------|
|
|----------|---------|---------|
|
||||||
| ci.yml | push/PR | Tests (split: mock-heavy isolated + batch), typecheck, build, schema auto-commit |
|
| ci.yml | push/PR | Tests (split: mock-heavy isolated + batch), typecheck, build, schema auto-commit |
|
||||||
| publish.yml | manual | Version bump, npm publish, platform binaries, GitHub release, merge to dev |
|
| publish.yml | manual | Version bump, npm publish, platform binaries, GitHub release, merge to dev |
|
||||||
| publish-platform.yml | called | 11 platform binaries via bun compile (darwin/linux/windows) |
|
| publish-platform.yml | called | 12 platform binaries via bun compile (darwin/linux/windows) |
|
||||||
| sisyphus-agent.yml | @mention | AI agent handles issues/PRs |
|
| sisyphus-agent.yml | @mention | AI agent handles issues/PRs |
|
||||||
|
|
||||||
## NOTES
|
## NOTES
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/ — Plugin Source
|
# src/ — Plugin Source
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/agents/ — 11 Agent Definitions
|
# src/agents/ — 11 Agent Definitions
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
@ -10,16 +10,16 @@ Agent factories following `createXXXAgent(model) → AgentConfig` pattern. Each
|
|||||||
|
|
||||||
| Agent | Model | Temp | Mode | Fallback Chain | Purpose |
|
| Agent | Model | Temp | Mode | Fallback Chain | Purpose |
|
||||||
|-------|-------|------|------|----------------|---------|
|
|-------|-------|------|------|----------------|---------|
|
||||||
| **Sisyphus** | claude-opus-4-6 | 0.1 | primary | kimi-k2.5 → glm-4.7 → gemini-3-pro | Main orchestrator, plans + delegates |
|
| **Sisyphus** | claude-opus-4-6 | 0.1 | all | kimi-k2.5 → glm-5 → big-pickle | Main orchestrator, plans + delegates |
|
||||||
| **Hephaestus** | gpt-5.3-codex | 0.1 | primary | NONE (required) | Autonomous deep worker |
|
| **Hephaestus** | gpt-5.3-codex | 0.1 | all | gpt-5.2 (copilot) | Autonomous deep worker |
|
||||||
| **Oracle** | gpt-5.2 | 0.1 | subagent | claude-opus-4-6 → gemini-3-pro | Read-only consultation |
|
| **Oracle** | gpt-5.2 | 0.1 | subagent | gemini-3.1-pro → claude-opus-4-6 | Read-only consultation |
|
||||||
| **Librarian** | glm-4.7 | 0.1 | subagent | big-pickle → claude-sonnet-4-6 | External docs/code search |
|
| **Librarian** | kimi-k2.5 | 0.1 | subagent | gemini-3-flash → gpt-5.2 → glm-4.6v | External docs/code search |
|
||||||
| **Explore** | grok-code-fast-1 | 0.1 | subagent | claude-haiku-4-5 → gpt-5-nano | Contextual grep |
|
| **Explore** | grok-code-fast-1 | 0.1 | subagent | minimax-m2.5 → claude-haiku-4-5 → gpt-5-nano | Contextual grep |
|
||||||
| **Multimodal-Looker** | gemini-3-flash | 0.1 | subagent | gpt-5.2 → glm-4.6v → ... (6 deep) | PDF/image analysis |
|
| **Multimodal-Looker** | gemini-3-flash | 0.1 | subagent | minimax-m2.5 → big-pickle | PDF/image analysis |
|
||||||
| **Metis** | claude-opus-4-6 | **0.3** | subagent | kimi-k2.5 → gpt-5.2 → gemini-3-pro | Pre-planning consultant |
|
| **Metis** | claude-opus-4-6 | **0.3** | subagent | gpt-5.2 → kimi-k2.5 → gemini-3.1-pro | Pre-planning consultant |
|
||||||
| **Momus** | gpt-5.2 | 0.1 | subagent | claude-opus-4-6 → gemini-3-pro | Plan reviewer |
|
| **Momus** | gpt-5.2 | 0.1 | subagent | claude-opus-4-6 → gemini-3.1-pro | Plan reviewer |
|
||||||
| **Atlas** | claude-sonnet-4-6 | 0.1 | primary | kimi-k2.5 → gpt-5.2 → gemini-3-pro | Todo-list orchestrator |
|
| **Atlas** | kimi-k2.5 | 0.1 | primary | claude-sonnet-4-6 → gpt-5.2 | Todo-list orchestrator |
|
||||||
| **Prometheus** | claude-opus-4-6 | 0.1 | — | kimi-k2.5 → gpt-5.2 → gemini-3-pro | Strategic planner (internal) |
|
| **Prometheus** | claude-opus-4-6 | 0.1 | — | kimi-k2.5 → gpt-5.2 → gemini-3.1-pro | Strategic planner (internal) |
|
||||||
| **Sisyphus-Junior** | claude-sonnet-4-6 | 0.1 | all | user-configurable | Category-spawned executor |
|
| **Sisyphus-Junior** | claude-sonnet-4-6 | 0.1 | all | user-configurable | Category-spawned executor |
|
||||||
|
|
||||||
## TOOL RESTRICTIONS
|
## TOOL RESTRICTIONS
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/cli/ — CLI: install, run, doctor, mcp-oauth
|
# src/cli/ — CLI: install, run, doctor, mcp-oauth
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/cli/config-manager/ — CLI Installation Utilities
|
# src/cli/config-manager/ — CLI Installation Utilities
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/cli/run/ — Non-Interactive Session Launcher
|
# src/cli/run/ — Non-Interactive Session Launcher
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
# src/config/ — Zod v4 Schema System
|
# src/config/ — Zod v4 Schema System
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
22 schema files composing `OhMyOpenCodeConfigSchema`. Zod v4 validation with `safeParse()`. All fields optional — omitted fields use plugin defaults.
|
24 schema files composing `OhMyOpenCodeConfigSchema`. Zod v4 validation with `safeParse()`. All fields optional — omitted fields use plugin defaults.
|
||||||
|
|
||||||
## SCHEMA TREE
|
## SCHEMA TREE
|
||||||
|
|
||||||
@ -29,6 +29,8 @@ config/schema/
|
|||||||
├── git-master.ts # commit_footer: boolean | string
|
├── git-master.ts # commit_footer: boolean | string
|
||||||
├── browser-automation.ts # provider: playwright | agent-browser | playwright-cli
|
├── browser-automation.ts # provider: playwright | agent-browser | playwright-cli
|
||||||
├── background-task.ts # Concurrency limits per model/provider
|
├── background-task.ts # Concurrency limits per model/provider
|
||||||
|
├── fallback-models.ts # FallbackModelsConfigSchema
|
||||||
|
├── runtime-fallback.ts # RuntimeFallbackConfigSchema
|
||||||
├── babysitting.ts # Unstable agent monitoring
|
├── babysitting.ts # Unstable agent monitoring
|
||||||
├── dynamic-context-pruning.ts # Context pruning settings
|
├── dynamic-context-pruning.ts # Context pruning settings
|
||||||
├── start-work.ts # StartWorkConfigSchema (auto_commit)
|
├── start-work.ts # StartWorkConfigSchema (auto_commit)
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/features/ — 19 Feature Modules
|
# src/features/ — 19 Feature Modules
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
# src/features/background-agent/ — Core Orchestration Engine
|
# src/features/background-agent/ — Core Orchestration Engine
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
39 files (~10k LOC). Manages async task lifecycle: launch → queue → run → poll → complete/error. Concurrency limited per model/provider (default 5). Central to multi-agent orchestration.
|
30 files (~10k LOC). Manages async task lifecycle: launch → queue → run → poll → complete/error. Concurrency limited per model/provider (default 5). Central to multi-agent orchestration.
|
||||||
|
|
||||||
## TASK LIFECYCLE
|
## TASK LIFECYCLE
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/features/claude-tasks/ — Task Schema + Storage
|
# src/features/claude-tasks/ — Task Schema + Storage
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/features/mcp-oauth/ — OAuth 2.0 + PKCE + DCR for MCP Servers
|
# src/features/mcp-oauth/ — OAuth 2.0 + PKCE + DCR for MCP Servers
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/features/opencode-skill-loader/ — 4-Scope Skill Discovery
|
# src/features/opencode-skill-loader/ — 4-Scope Skill Discovery
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/features/tmux-subagent/ — Tmux Pane Management
|
# src/features/tmux-subagent/ — Tmux Pane Management
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
# src/hooks/ — 46 Lifecycle Hooks
|
# src/hooks/ — 46 Lifecycle Hooks
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
46 hooks across 39 directories + 6 standalone files. Three-tier composition: Core(37) + Continuation(7) + Skill(2). All hooks follow `createXXXHook(deps) → HookFunction` factory pattern.
|
46 hooks across 45 directories + 11 standalone files. Three-tier composition: Core(37) + Continuation(7) + Skill(2). All hooks follow `createXXXHook(deps) → HookFunction` factory pattern.
|
||||||
|
|
||||||
## HOOK TIERS
|
## HOOK TIERS
|
||||||
|
|
||||||
@ -14,38 +14,48 @@
|
|||||||
hooks/
|
hooks/
|
||||||
├── atlas/ # Main orchestration (757 lines)
|
├── atlas/ # Main orchestration (757 lines)
|
||||||
├── anthropic-context-window-limit-recovery/ # Auto-summarize
|
├── anthropic-context-window-limit-recovery/ # Auto-summarize
|
||||||
├── todo-continuation-enforcer.ts # Force TODO completion
|
├── anthropic-effort/ # Reasoning effort level adjustment
|
||||||
├── ralph-loop/ # Self-referential dev loop
|
├── anthropic-image-context/ # Image context handling for Anthropic
|
||||||
├── claude-code-hooks/ # settings.json compat layer - see AGENTS.md
|
|
||||||
├── comment-checker/ # Prevents AI slop
|
|
||||||
├── auto-slash-command/ # Detects /command patterns
|
├── auto-slash-command/ # Detects /command patterns
|
||||||
├── rules-injector/ # Conditional rules
|
├── auto-update-checker/ # Plugin update check
|
||||||
|
├── background-notification/ # OS notification
|
||||||
|
├── beast-mode-system/ # Beast mode system prompt injection
|
||||||
|
├── category-skill-reminder/ # Reminds of category skills
|
||||||
|
├── claude-code-hooks/ # settings.json compat layer
|
||||||
|
├── comment-checker/ # Prevents AI slop
|
||||||
|
├── compaction-context-injector/ # Injects context on compaction
|
||||||
|
├── compaction-todo-preserver/ # Preserves todos through compaction
|
||||||
|
├── delegate-task-retry/ # Retries failed delegations
|
||||||
├── directory-agents-injector/ # Auto-injects AGENTS.md
|
├── directory-agents-injector/ # Auto-injects AGENTS.md
|
||||||
├── directory-readme-injector/ # Auto-injects README.md
|
├── directory-readme-injector/ # Auto-injects README.md
|
||||||
├── edit-error-recovery/ # Recovers from failures
|
├── edit-error-recovery/ # Recovers from failures
|
||||||
├── thinking-block-validator/ # Ensures valid <thinking>
|
├── hashline-edit-diff-enhancer/ # Enhanced diff output for hashline edits
|
||||||
├── context-window-monitor.ts # Reminds of headroom
|
├── hashline-read-enhancer/ # Adds LINE#ID hashes to Read output
|
||||||
├── session-recovery/ # Auto-recovers from crashes
|
|
||||||
├── think-mode/ # Dynamic thinking budget
|
|
||||||
├── keyword-detector/ # ultrawork/search/analyze modes
|
|
||||||
├── background-notification/ # OS notification
|
|
||||||
├── prometheus-md-only/ # Planner read-only mode
|
|
||||||
├── agent-usage-reminder/ # Specialized agent hints
|
|
||||||
├── auto-update-checker/ # Plugin update check
|
|
||||||
├── tool-output-truncator.ts # Prevents context bloat
|
|
||||||
├── compaction-context-injector/ # Injects context on compaction
|
|
||||||
├── delegate-task-retry/ # Retries failed delegations
|
|
||||||
├── interactive-bash-session/ # Tmux session management
|
├── interactive-bash-session/ # Tmux session management
|
||||||
|
├── json-error-recovery/ # JSON parse error correction
|
||||||
|
├── keyword-detector/ # ultrawork/search/analyze modes
|
||||||
|
├── model-fallback/ # Provider-level model fallback
|
||||||
|
├── no-hephaestus-non-gpt/ # Block Hephaestus from non-GPT
|
||||||
|
├── no-sisyphus-gpt/ # Block Sisyphus from GPT
|
||||||
├── non-interactive-env/ # Non-TTY environment handling
|
├── non-interactive-env/ # Non-TTY environment handling
|
||||||
├── start-work/ # Sisyphus work session starter
|
├── prometheus-md-only/ # Planner read-only mode
|
||||||
├── task-resume-info/ # Resume info for cancelled tasks
|
|
||||||
├── question-label-truncator/ # Auto-truncates question labels
|
├── question-label-truncator/ # Auto-truncates question labels
|
||||||
├── category-skill-reminder/ # Reminds of category skills
|
├── ralph-loop/ # Self-referential dev loop
|
||||||
├── empty-task-response-detector.ts # Detects empty responses
|
├── read-image-resizer/ # Resize images for context efficiency
|
||||||
├── sisyphus-junior-notepad/ # Sisyphus Junior notepad
|
├── rules-injector/ # Conditional rules
|
||||||
├── stop-continuation-guard/ # Guards stop continuation
|
|
||||||
├── subagent-question-blocker/ # Blocks subagent questions
|
|
||||||
├── runtime-fallback/ # Auto-switch models on API errors
|
├── runtime-fallback/ # Auto-switch models on API errors
|
||||||
|
├── session-recovery/ # Auto-recovers from crashes
|
||||||
|
├── sisyphus-junior-notepad/ # Sisyphus Junior notepad
|
||||||
|
├── start-work/ # Sisyphus work session starter
|
||||||
|
├── stop-continuation-guard/ # Guards stop continuation
|
||||||
|
├── task-reminder/ # Task system usage reminders
|
||||||
|
├── task-resume-info/ # Resume info for cancelled tasks
|
||||||
|
├── tasks-todowrite-disabler/ # Disable TodoWrite when task system active
|
||||||
|
├── think-mode/ # Dynamic thinking budget
|
||||||
|
├── thinking-block-validator/ # Ensures valid <thinking>
|
||||||
|
├── todo-continuation-enforcer/ # Force TODO completion
|
||||||
|
├── unstable-agent-babysitter/ # Monitor unstable agent behavior
|
||||||
|
├── write-existing-file-guard/ # Require Read before Write
|
||||||
└── index.ts # Hook aggregation + registration
|
└── index.ts # Hook aggregation + registration
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/hooks/anthropic-context-window-limit-recovery/ — Multi-Strategy Context Recovery
|
# src/hooks/anthropic-context-window-limit-recovery/ — Multi-Strategy Context Recovery
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/hooks/atlas/ — Master Boulder Orchestrator
|
# src/hooks/atlas/ — Master Boulder Orchestrator
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/hooks/claude-code-hooks/ — Claude Code Compatibility
|
# src/hooks/claude-code-hooks/ — Claude Code Compatibility
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/hooks/keyword-detector/ — Mode Keyword Injection
|
# src/hooks/keyword-detector/ — Mode Keyword Injection
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/hooks/ralph-loop/ — Self-Referential Dev Loop
|
# src/hooks/ralph-loop/ — Self-Referential Dev Loop
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/hooks/rules-injector/ — Conditional Rules Injection
|
# src/hooks/rules-injector/ — Conditional Rules Injection
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/hooks/session-recovery/ — Auto Session Error Recovery
|
# src/hooks/session-recovery/ — Auto Session Error Recovery
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/hooks/todo-continuation-enforcer/ — Boulder Continuation Mechanism
|
# src/hooks/todo-continuation-enforcer/ — Boulder Continuation Mechanism
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/mcp/ — 3 Built-in Remote MCPs
|
# src/mcp/ — 3 Built-in Remote MCPs
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/plugin-handlers/ — 6-Phase Config Loading Pipeline
|
# src/plugin-handlers/ — 6-Phase Config Loading Pipeline
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/plugin/ — 8 OpenCode Hook Handlers + Hook Composition
|
# src/plugin/ — 8 OpenCode Hook Handlers + Hook Composition
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/shared/ — 101 Utility Files in 13 Categories
|
# src/shared/ — 95+ Utility Files in 13 Categories
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/tools/ — 26 Tools Across 15 Directories
|
# src/tools/ — 26 Tools Across 15 Directories
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
@ -91,10 +91,10 @@
|
|||||||
|
|
||||||
| Category | Model | Domain |
|
| Category | Model | Domain |
|
||||||
|----------|-------|--------|
|
|----------|-------|--------|
|
||||||
| visual-engineering | gemini-3-pro | Frontend, UI/UX |
|
| visual-engineering | gemini-3.1-pro high | Frontend, UI/UX |
|
||||||
| ultrabrain | gpt-5.3-codex xhigh | Hard logic |
|
| ultrabrain | gpt-5.3-codex xhigh | Hard logic |
|
||||||
| deep | gpt-5.3-codex medium | Autonomous problem-solving |
|
| deep | gpt-5.3-codex medium | Autonomous problem-solving |
|
||||||
| artistry | gemini-3-pro high | Creative approaches |
|
| artistry | gemini-3.1-pro high | Creative approaches |
|
||||||
| quick | claude-haiku-4-5 | Trivial tasks |
|
| quick | claude-haiku-4-5 | Trivial tasks |
|
||||||
| unspecified-low | claude-sonnet-4-6 | Moderate effort |
|
| unspecified-low | claude-sonnet-4-6 | Moderate effort |
|
||||||
| unspecified-high | claude-opus-4-6 max | High effort |
|
| unspecified-high | claude-opus-4-6 max | High effort |
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/tools/background-task/ — Background Task Tool Wrappers
|
# src/tools/background-task/ — Background Task Tool Wrappers
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/tools/call-omo-agent/ — Direct Agent Invocation Tool
|
# src/tools/call-omo-agent/ — Direct Agent Invocation Tool
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/tools/delegate-task/ — Task Delegation Engine
|
# src/tools/delegate-task/ — Task Delegation Engine
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/tools/hashline-edit/ — Hash-Anchored File Edit Tool
|
# src/tools/hashline-edit/ — Hash-Anchored File Edit Tool
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# src/tools/lsp/ — LSP Tool Implementations
|
# src/tools/lsp/ — LSP Tool Implementations
|
||||||
|
|
||||||
**Generated:** 2026-02-24
|
**Generated:** 2026-03-02
|
||||||
|
|
||||||
## OVERVIEW
|
## OVERVIEW
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user