oh-my-opencode — OpenCode Plugin
Generated: 2026-04-18 | Commit: 2892ca4a | Branch: dev
OpenCode plugin (npm: oh-my-opencode, dual-published as oh-my-openagent during transition) extending Claude Code with 11 agents, 52 lifecycle hooks, 26 tools, 3-tier MCP system (built-in + .mcp.json + skill-embedded), Hashline LINE#ID edit tool, IntentGate classifier, and Claude Code compatibility. 1766 TypeScript source files, 377k LOC, 104 barrel index.ts files. Entry: src/index.ts → 5-step init (loadConfig → createManagers → createTools → createHooks → createPluginInterface).
oh-my-opencode/
├── src/
│ ├── index.ts # Plugin entry: default export `pluginModule`, shape `{ id, server }`
│ ├── 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)
│ ├── hooks/ # 52 lifecycle hooks across dedicated modules and standalone files
│ ├── tools/ # 26 tools across 16 directories (includes Hashline edit with LINE#ID content hashing)
│ ├── features/ # 19 feature modules (background-agent, skill-loader, tmux, MCP-OAuth, skill-mcp-manager, etc.)
│ ├── shared/ # 170+ utility files (barrel-exported, logger → /tmp/oh-my-opencode.log)
│ ├── config/ # Zod v4 schema system (32 files)
│ ├── cli/ # CLI: install, run, doctor, mcp-oauth (Commander.js)
│ ├── mcp/ # 3 built-in remote MCPs (websearch, context7, grep_app)
│ ├── plugin/ # 10 OpenCode hook handlers + 52 hook composition
│ ├── plugin-handlers/ # 6-phase config loading pipeline
│ └── openclaw/ # Bidirectional external integration (Discord/Telegram/webhook/command)
├── packages/ # 11 platform-specific compiled binaries (darwin/linux/windows, AVX2 + baseline variants)
├── script/ # Build/publish automation (singular, not scripts/)
├── .sisyphus/ # AI agent workspace (rules, plans, tasks, notepads)
└── .local-ignore/ # Dev-only test fixtures + PR worktrees
pluginModule.server(input, options)
├─→ loadPluginConfig() # JSONC parse → project/user merge → Zod validate → migrate
├─→ createManagers() # TmuxSessionManager, BackgroundManager, SkillMcpManager, ConfigHandler
├─→ createTools() # SkillContext + AvailableCategories + ToolRegistry (26 tools)
├─→ createHooks() # 3-tier: Core(43) + Continuation(7) + Skill(2) = 52 hooks
└─→ createPluginInterface() # 10 OpenCode hook handlers → PluginInterface
10 OPENCODE HOOK HANDLERS
Handler
Purpose
config
6-phase: provider → plugin-components → agents → tools → MCPs → commands
tool
26 registered tools
chat.message
First-message variant, session setup, keyword detection (ultrawork/search/analyze)
chat.params
Anthropic effort level, think mode, runtime fallback override
chat.headers
Copilot x-initiator header injection
event
Session lifecycle (created, deleted, idle, error), openclaw dispatch, runtime fallback
tool.execute.before
Pre-tool hooks (file guard, label truncator, rules injector, prometheus md-only)
tool.execute.after
Post-tool hooks (output truncation, comment checker, hashline read enhancer)
experimental.chat.messages.transform
Context injection, thinking block validation, tool pair validation
experimental.session.compacting
Context + todo preservation during compaction
Task
Location
Notes
Add new agent
src/agents/ + src/agents/builtin-agents/
Follow createXXXAgent factory pattern
Add new hook
src/hooks/{name}/ + register in src/plugin/hooks/create-*-hooks.ts
Match event type to tier
Add new tool
src/tools/{name}/ + register in src/plugin/tool-registry.ts
Follow createXXXTool factory
Add new feature module
src/features/{name}/
Standalone module, wire in plugin/
Add new MCP
src/mcp/ + register in createBuiltinMcps()
Remote HTTP only (tier 1 of 3)
Add new skill
src/features/builtin-skills/skills/
Implement BuiltinSkill interface
Add new command
src/features/builtin-commands/
Template in templates/
Add new CLI command
src/cli/cli-program.ts
Commander.js subcommand
Add new doctor check
src/cli/doctor/checks/
Register in checks/index.ts
Modify config schema
src/config/schema/ + update root schema
Zod v4, add to OhMyOpenCodeConfigSchema
Add new category
src/tools/delegate-task/constants.ts
DEFAULT_CATEGORIES + CATEGORY_MODEL_REQUIREMENTS
Debug provider errors
src/hooks/runtime-fallback/
Reactive error recovery (distinct from model-fallback)
External notifications
src/openclaw/
Bidirectional Discord/Telegram/webhook integration
Skill-embedded MCP
src/features/skill-mcp-manager/
Tier 3 MCPs (stdio + HTTP, per-session)
Project (.opencode/oh-my-opencode.jsonc) → User (~/.config/opencode/oh-my-opencode.jsonc) → Defaults
agents, categories, claude_code: deep merged recursively (prototype-pollution-safe)
disabled_* arrays: Set union (concatenated + deduplicated)
All other fields: override replaces base value
Zod safeParse() fills defaults for omitted fields; partial parsing as fallback
migrateConfigFile() transforms legacy keys automatically (idempotent via _migrations tracking)
Fields: agents (14 overridable, 21 fields each), categories (8 built-in + custom), disabled_* arrays (agents, hooks, mcps, skills, commands, tools), 19 feature-specific configs.
Tier
Source
Mechanism
Built-in
src/mcp/
3 remote HTTP: websearch (Exa/Tavily), context7, grep_app
Claude Code
.mcp.json
${VAR} env expansion via claude-code-mcp-loader
Skill-embedded
SKILL.md YAML
Managed by SkillMcpManager (stdio + HTTP)
Runtime : Bun only (1.3.11 in CI) -- never use npm/yarn
TypeScript : strict mode, ESNext, bundler moduleResolution, bun-types (never @types/node)
Test pattern : Bun test (bun:test), co-located *.test.ts, given/when/then style (nested describe with #given/#when/#then prefixes or inline // given / // when / // then comments)
CI test split : script/run-ci-tests.ts auto-detects mock.module() usage, isolates those tests in separate processes
Factory pattern : createXXX() for all tools, hooks, agents
Hook tiers : Session (24) → Tool-Guard (14) → Transform (5) → Continuation (7) → Skill (2)
Agent modes : primary (respects UI model) vs subagent (own fallback chain) vs all
Model resolution : 4-step: override → category-default → provider-fallback → system-default
Config format : JSONC with comments, Zod v4 validation, snake_case keys
File naming : kebab-case for all files/directories
Module structure : index.ts barrel exports, no catch-all files (utils.ts, helpers.ts banned), 200 LOC soft limit
Imports : relative within module, barrel imports across modules (import { log } from "./shared")
No path aliases : no @/ -- relative imports only
Dual package : oh-my-opencode + oh-my-openagent published simultaneously (transition period)
Never use as any, @ts-ignore, @ts-expect-error
Never suppress lint/type errors
Never add emojis to code/comments unless user explicitly asks
Never commit unless explicitly requested
Never run bun publish directly -- use GitHub Actions
Never modify package.json version locally
Test: given/when/then -- never use Arrange-Act-Assert comments
Comments: avoid AI-generated comment patterns (enforced by comment-checker hook)
Never create catch-all files (utils.ts, helpers.ts, service.ts)
Empty catch blocks catch(e) {} -- always handle errors
Never use em dashes, en dashes, or AI filler phrases in generated content
index.ts is entry point ONLY -- never dump business logic there
bun test # Bun test suite
bun run build # Build plugin (ESM + declarations + schema)
bun run build:all # Build + platform binaries
bun run typecheck # tsc --noEmit
bunx oh-my-opencode install # Interactive setup
bunx oh-my-opencode doctor # Health diagnostics
bunx oh-my-opencode run # Non-interactive session
Workflow
Trigger
Purpose
ci.yml
push/PR to master/dev
Tests (split: mock-heavy isolated + batch), typecheck, build, schema auto-commit
publish.yml
manual dispatch
Version bump, dual npm publish (oh-my-opencode + oh-my-openagent), platform binaries, GitHub release
publish-platform.yml
called by publish
11 platform binaries via bun compile (darwin/linux/windows)
sisyphus-agent.yml
@mention / dispatch
AI agent handles issues/PRs
refresh-model-capabilities.yml
weekly schedule / dispatch
Auto-refresh model capabilities from models.dev API
cla.yml
issue_comment/PR
CLA assistant for contributors
lint-workflows.yml
push to .github/
actionlint + shellcheck on workflow files
Logger writes to /tmp/oh-my-opencode.log -- check there for debugging
Background tasks: 5 concurrent per model/provider (configurable, circuit breaker support)
Plugin load timeout: 10s for Claude Code plugins
Model fallback: per-agent chains in shared/model-requirements.ts, not a single global priority
Two fallback systems: model-fallback (proactive, chat.params) vs runtime-fallback (reactive, session.error)
Config migration: idempotent via _migrations tracking, creates timestamped backups before atomic writes
Build: bun build (ESM) + tsc --emitDeclarationOnly, externals: @ast-grep/napi
Test setup: test-setup.ts preloaded via bunfig.toml, resets session/cache state between tests
Test split: script/run-ci-tests.ts auto-isolates files using mock.module() (plus src/openclaw/__tests__/reply-listener-discord.test.ts)
104 barrel export files (index.ts) establish module boundaries
Architecture rules enforced via .sisyphus/rules/modular-code-enforcement.md
Windows builds run on windows-latest runner (not cross-compiled) to avoid Bun segfaults
Platform binaries detect AVX2 + libc family at runtime, fallback to baseline if needed
Hashline edit: every Read output tagged with LINE#ID content hashes; edits reject on hash mismatch
IntentGate: classifies user intent (research/implementation/investigation/evaluation/fix) before routing