oh-my-claudecode-opencode
v0.7.2
Published
OpenCode port of oh-my-claudecode - Multi-agent orchestration plugin (omco)
Maintainers
Readme
oh-my-claudecode-opencode (omco)
🔄 OpenCode port of oh-my-claudecode v3.3.6
oh-my-claudecode-opencode (omco) - Multi-agent orchestration plugin that brings oh-my-claudecode features to OpenCode.
Like Sisyphus condemned to roll his boulder eternally, this plugin ensures your AI assistant never stops until the task is complete.
🚀 Quick Install
For Humans (Recommended)
Just tell your AI assistant:
"Install oh-my-claudecode-opencode by following these instructions: https://raw.githubusercontent.com/devswha/oh-my-claudecode-opencode/main/docs/guide/installation.md"
That's it. The AI will handle the rest.
One-liner (If you insist on doing it yourself)
cd ~/.config/opencode && npm install oh-my-claudecode-opencode@latest && cat > opencode.json << 'EOF'
{
"plugin": ["oh-my-claudecode-opencode"]
}
EOF
echo "✅ Restart OpenCode to activate OMCO"Magic Keywords
Once installed, just include these keywords in your prompts:
| Keyword | Effect |
|---------|--------|
| ultrawork or ulw | Maximum intensity parallel execution |
| ralph | Persistence mode - won't stop until complete |
| autopilot | Full autonomous execution |
Example: ulw implement user authentication with tests
🎯 What is this?
This project ports the powerful features of oh-my-claudecode v3.3.6 (a Claude Code plugin) to the OpenCode platform.
| Original (Claude Code) | This Port (OpenCode) | |------------------------|----------------------| | oh-my-claudecode | oh-my-claudecode-opencode (omco) | | Shell hooks + Node.js bridge | Native TypeScript plugin API | | Stop hook (proactive blocking) | session.idle event (reactive) |
Key Features Ported
- ✅ Ultrawork Mode (maximum intensity parallel execution)
- ✅ Ralph Loop (self-referential completion loop)
- ✅ TODO Continuation Enforcer
- ✅ PRD-based task tracking
- ✅ Notepad memory system (
<remember>tags) - ✅ Background agent orchestration
- ✅ Session state persistence
Features
Core Capabilities
- TODO Continuation Enforcer - Automatically reminds the assistant to complete pending tasks
- Ultrawork Mode - Maximum intensity parallel execution triggered by keywords
- Ralph Loop - Self-referential loop that continues until verified completion
- Background Agents - Run explore/librarian agents in parallel without blocking
- Agent Usage Reminder - Encourages using specialized agents over direct tool calls
Specialized Agents
Note: New agent names are available with backward compatibility for legacy names.
| Agent (New) | Alias (Legacy) | Model | Purpose |
|-------------|----------------|-------|---------|
| architect | oracle | Opus | Strategic architecture & debugging advisor (READ-ONLY) |
| architect-medium | oracle-medium | Sonnet | Balanced architectural analysis (READ-ONLY) |
| architect-low | oracle-low | Haiku | Fast architectural checks (READ-ONLY) |
| researcher | librarian | Sonnet | Documentation & reference researcher |
| researcher-low | librarian-low | Haiku | Quick documentation lookup |
| explore | - | Haiku | Fast codebase search |
| explore-medium | - | Sonnet | Deeper codebase analysis |
| designer | frontend-engineer | Sonnet | UI/UX designer-developer |
| designer-low | frontend-engineer-low | Haiku | Fast UI changes |
| designer-high | frontend-engineer-high | Opus | Complex UI architecture |
| writer | document-writer | Haiku | Technical documentation |
| executor | sisyphus-junior | Sonnet | Focused task executor |
| executor-low | sisyphus-junior-low | Haiku | Simple task execution |
| executor-high | sisyphus-junior-high | Opus | Complex multi-file tasks |
| planner | prometheus | Opus | Strategic planning |
| analyst | metis | Opus | Pre-planning analysis |
| critic | momus | Opus | Plan review |
| vision | multimodal-looker | Sonnet | Visual/media analysis |
| qa-tester | - | Sonnet | Interactive CLI testing |
Installation
💡 Recommended: Let your AI handle it! See Quick Install above.
Manual Installation
# Install in OpenCode config directory
cd ~/.config/opencode
npm install oh-my-claudecode-opencode
# Register plugin in opencode.json
cat > opencode.json << 'EOF'
{
"plugin": ["oh-my-claudecode-opencode"]
}
EOF
# Restart OpenCode to activateFor detailed instructions, see Installation Guide.
Usage
Ultrawork Mode
Trigger maximum performance mode by including keywords in your prompt:
ultrawork: Implement the authentication system with testsor
ulw refactor the database layerKeywords: ultrawork, ulw, uw
Slash Commands
| Command | Description |
|---------|-------------|
| /ultrawork <task> | Maximum intensity parallel execution |
| /ralph-loop <task> | Completion guarantee loop |
| /ultrawork-ralph <task> | Combined max intensity + completion guarantee |
| /ultraqa <goal> | QA cycling workflow |
| /ralplan <task> | Iterative planning with Planner/Architect/Critic |
| /plan <task> | Start planning session |
| /review <plan> | Review plan with Critic |
| /doctor | Diagnose installation issues |
| /cancel-ralph | Cancel Ralph Loop |
| /cancel-ultraqa | Cancel UltraQA |
Ralph Loop
Start a self-referential loop that continues until the task is verified complete:
/ralph-loop "Implement user registration with email verification"Cancel with:
/cancel-ralphBackground Agents
The plugin provides tools for running agents in the background:
// Run explore agent in background
background_task(agent="explore", prompt="Find all authentication-related files")
// Run librarian for documentation research
background_task(agent="librarian", prompt="Find JWT best practices documentation")
// Get results when ready
background_output(task_id="...")
// Cancel all background tasks
background_cancel(all=true)Call Agents Directly
// Synchronous call
call_omco_agent(
subagent_type="oracle",
prompt="Review this architecture decision...",
run_in_background=false
)
// Async call
call_omco_agent(
subagent_type="explore",
prompt="Find all React components",
run_in_background=true
)Configuration
Create .opencode/omco.json in your project (see assets/omco.example.json for full example):
{
"$schema": "node_modules/oh-my-claudecode-opencode/assets/omco.schema.json",
"agents": {
"architect": { "tier": "opus", "enabled": true },
"explore": { "tier": "haiku" }
},
"background_task": {
"defaultConcurrency": 5
},
"ralph_loop": {
"enabled": true,
"default_max_iterations": 100
},
"autopilot": {
"enabled": true,
"maxPhaseRetries": 3,
"delegationEnforcement": "warn"
},
"ultraqa": {
"enabled": true,
"maxIterations": 10
},
"orchestrator": {
"delegationEnforcement": "warn",
"auditLogEnabled": true
}
}Configuration Options
| Option | Description | Default |
|--------|-------------|---------|
| background_task.defaultConcurrency | Max parallel background tasks | 5 |
| ralph_loop.enabled | Enable Ralph Loop | true |
| ralph_loop.default_max_iterations | Max loop iterations | 100 |
| autopilot.enabled | Enable Autopilot mode | true |
| autopilot.maxPhaseRetries | Max retries per phase | 3 |
| autopilot.delegationEnforcement | strict, warn, off | warn |
| ultraqa.enabled | Enable UltraQA | true |
| ultraqa.maxIterations | Max QA iterations | 10 |
| orchestrator.delegationEnforcement | Delegation enforcement level | warn |
| orchestrator.auditLogEnabled | Enable audit logging | true |
Model Provider Configuration
By default, oh-my-claudecode-opencode uses GitHub Copilot Claude 4 models for the three tiers:
| Tier | Default Model |
|------|---------------|
| haiku / LOW | github-copilot/claude-haiku-4 |
| sonnet / MEDIUM | github-copilot/claude-sonnet-4 |
| opus / HIGH | github-copilot/claude-opus-4 |
To use other providers like Google or OpenAI, configure model_mapping.tierDefaults:
{
"model_mapping": {
"tierDefaults": {
"haiku": "google/gemini-3-flash",
"sonnet": "google/gemini-3-pro",
"opus": "openai/gpt-5"
}
}
}Intelligent Routing
The plugin includes intelligent model routing with automatic tier escalation:
{
"routing": {
"enabled": true,
"defaultTier": "MEDIUM",
"escalationEnabled": true,
"maxEscalations": 2,
"tierModels": {
"LOW": "github-copilot/claude-haiku-4",
"MEDIUM": "github-copilot/claude-sonnet-4",
"HIGH": "github-copilot/claude-opus-4"
},
"agentOverrides": {
"architect": { "tier": "HIGH", "reason": "Deep reasoning required" },
"explore": { "tier": "LOW", "reason": "Search-focused" }
},
"escalationKeywords": ["critical", "production", "urgent", "security"],
"simplificationKeywords": ["find", "list", "show", "where"]
}
}Features Configuration
Toggle platform features:
{
"features": {
"parallelExecution": true,
"lspTools": true,
"astTools": true,
"continuationEnforcement": true,
"autoContextInjection": true
}
}MCP Servers
Configure MCP server integrations:
{
"mcpServers": {
"exa": { "enabled": true, "apiKey": "your-api-key" },
"context7": { "enabled": true },
"grepApp": { "enabled": true }
}
}Permissions
Control allowed operations:
{
"permissions": {
"allowBash": true,
"allowEdit": true,
"allowWrite": true,
"maxBackgroundTasks": 5
}
}Magic Keywords
Customize trigger keywords:
{
"magicKeywords": {
"ultrawork": ["ultrawork", "ulw", "uw"],
"search": ["search", "find", "locate"],
"analyze": ["analyze", "investigate", "examine"],
"ultrathink": ["ultrathink", "think", "reason", "ponder"]
}
}Disabling Hooks
{
"disabled_hooks": [
"agent-usage-reminder",
"keyword-detector"
]
}Available hooks:
todo-continuation-enforcerkeyword-detectorralph-loopsession-recoveryagent-usage-reminder
How It Works
TODO Continuation Enforcer
When the assistant has incomplete TODO items and becomes idle:
- Plugin detects idle state (no tool calls for configured threshold)
- Checks if pending/in_progress TODOs exist
- Injects continuation prompt:
[SYSTEM REMINDER - TODO CONTINUATION]
Incomplete tasks remain in your todo list. Continue working on the next pending task.
Proceed without asking for permission. Mark each task complete when finished.
Do not stop until all tasks are done.Ralph Loop
Self-referential execution loop:
- User invokes
/ralph-loop "task description" - Plugin creates PRD (Product Requirements Document) if not exists
- Monitors for completion signals (
<promise>DONE</promise>) - Re-injects task prompt on idle until completion
- Tracks iterations to prevent infinite loops
Ultrawork Mode
When triggered:
- Injects high-intensity system prompt
- Encourages parallel execution
- Minimizes confirmation requests
- Maximizes throughput
Troubleshooting
Agents not showing in Tab menu?
Run the diagnostic tool:
npx oh-my-claudecode-opencode doctorThis checks:
- Plugin installation in
~/.config/opencode/node_modules/ - Plugin registration in
opencode.json - Asset files present
- Package dependencies
- OMCO configuration validity
Common Issues
| Issue | Solution |
|-------|----------|
| "Plugin not installed" | cd ~/.config/opencode && npm install oh-my-claudecode-opencode |
| "Plugin not in opencode.json" | Add "oh-my-claudecode-opencode" to "plugin" array |
| "Assets directory missing" | Reinstall: npm install oh-my-claudecode-opencode@latest |
Exit Codes
| Code | Meaning | |------|---------| | 0 | All checks passed | | 1 | Critical failure found | | 2 | Warnings only |
Getting Help
- Run
/doctorin OpenCode and share the report - Open an issue: https://github.com/devswha/oh-my-claudecode-opencode/issues
Development
# Clone the repo
git clone https://github.com/devswha/oh-my-claudecode-opencode.git
cd oh-my-claudecode-opencode
# Install dependencies
bun install
# Build
bun run build
# Type check
bun run typecheck
# Run tests
bun testPhilosophy
Named after Sisyphus from Greek mythology - condemned to roll a boulder up a hill for eternity. Like Sisyphus, this plugin embodies persistence:
- Tasks are tracked until completion
- The assistant cannot simply "give up"
- Work continues until the boulder reaches the summit
"The struggle itself toward the heights is enough to fill a man's heart. One must imagine Sisyphus happy." - Albert Camus
Credits
This project is an OpenCode port of oh-my-claudecode by @Yeachan-Heo.
Special thanks to:
- oh-my-claudecode - The original Claude Code plugin this project ports
- OpenCode - The target platform
License
MIT
