local_fire_departmentHoneystax
search⌘K
loginLog Inperson_addSign Up
layers
HONEYSTAX TERMINAL v1.0
HomeNewsSavedSubmit
Back to the live board
O

oh-my-claudecode

starFeaturedAgent

Teams-first Multi-agent orchestration for Claude Code

Copy the install, test the workflow, then decide if it earns a permanent slot.

31,912
Why nowMoving now

Fresh repo activity plus visible builder pull. This is the kind of tool people test before it turns obvious.

DecisionHigh-conviction move

Copy the install, test the workflow, then decide if it earns a permanent slot.

Trial costMedium lift

Reasonable to try, but it will take more than a quick skim to get real signal.

Risk25/100

GitHub health 71/100. no security policy. Fresh enough repo health and manageable issue load keep the risk controlled.

What You Are Adopting

AI Agent

Claude Code

Model

Claude

Build Time

Days

Test This In Your Stack

One command inClean rollbackLow commitment
shieldSandboxedInstalls to ~/.claude — isolated from your projects. One command to remove.

Fastest way to find out if oh-my-claudecode belongs in your setup.

Copy the install command, run a real test, and back it out cleanly if it slows you down.

Try now
git clone https://github.com/Yeachan-Heo/oh-my-claudecode ~/.claude/agents/oh-my-claudecode

Run this first. You will know quickly if the workflow earns a permanent slot.

Back out
rm -rf ~/.claude/agents/oh-my-claudecode

No messy cleanup loop. If it misses, remove it and keep moving.

Install Location

~/  └─ .claude/      ├─ commands/      ├─ agents/      │   └─ oh-my-claudecode/ ← installs here      └─ settings.json

About

Teams-first Multi-agent orchestration for Claude Code

README

English | 한국어 | 中文 | 日本語 | Español | Tiếng Việt | Português

oh-my-claudecode

npm version npm downloads GitHub stars License: MIT Sponsor

For Codex users: Check out oh-my-codex — the same orchestration experience for OpenAI Codex CLI.

Multi-agent orchestration for Claude Code. Zero learning curve.

Don't learn Claude Code. Just use OMC.

Get Started • Documentation • CLI Reference • Workflows • Migration Guide


Quick Start

Step 1: Install

/plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claudecode
/plugin install oh-my-claudecode

Step 2: Setup

/omc-setup

Step 3: Build something

autopilot: build a REST API for managing tasks

That's it. Everything else is automatic.

Team Mode (Recommended)

Starting in v4.1.7, Team is the canonical orchestration surface in OMC. Legacy entrypoints like swarm and ultrapilot are still supported, but they now route to Team under the hood.

/team 3:executor "fix all TypeScript errors"

Team runs as a staged pipeline:

team-plan → team-prd → team-exec → team-verify → team-fix (loop)

Enable Claude Code native teams in ~/.claude/settings.json:

{
  "env": {
    "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
  }
}

If teams are disabled, OMC will warn you and fall back to non-team execution where possible.

tmux CLI Workers — Codex & Gemini (v4.4.0+)

v4.4.0 removes the Codex/Gemini MCP servers (x, g providers). Use /omc-teams to spawn real CLI processes in tmux split-panes instead:

/omc-teams 2:codex   "review auth module for security issues"
/omc-teams 2:gemini  "redesign UI components for accessibility"
/omc-teams 1:claude  "implement the payment flow"

For mixed Codex + Gemini work in one command, use the /ccg skill:

/ccg Review this PR — architecture (Codex) and UI components (Gemini)
Skill Workers Best For
/omc-teams N:codex N Codex CLI panes Code review, security analysis, architecture
/omc-teams N:gemini N Gemini CLI panes UI/UX design, docs, large-context tasks
/omc-teams N:claude N Claude CLI panes General tasks via Claude CLI in tmux
/ccg 1 Codex + 1 Gemini Parallel tri-model orchestration

Workers spawn on-demand and die when their task completes — no idle resource usage. Requires codex / gemini CLIs installed and an active tmux session.

Note: Package naming — The project is branded as oh-my-claudecode (repo, plugin, commands), but the npm package is published as oh-my-claude-sisyphus. If you install the CLI tools via npm/bun, use npm install -g oh-my-claude-sisyphus.

Updating

# 1. Update the marketplace clone
/plugin marketplace update omc

# 2. Re-run setup to refresh configuration
/omc-setup

Note: If marketplace auto-update is not enabled, you must manually run /plugin marketplace update omc to sync the latest version before running setup.

If you experience issues after updating, clear the old plugin cache:

/omc-doctor

Your Claude Just Have been Steroided.

oh-my-claudecode


Why oh-my-claudecode?

  • Zero configuration required - Works out of the box with intelligent defaults
  • Team-first orchestration - Team is the canonical multi-agent surface (swarm/ultrapilot are compatibility facades)
  • Natural language interface - No commands to memorize, just describe what you want
  • Automatic parallelization - Complex tasks distributed across specialized agents
  • Persistent execution - Won't give up until the job is verified complete
  • Cost optimization - Smart model routing saves 30-50% on tokens
  • Learn from experience - Automatically extracts and reuses problem-solving patterns
  • Real-time visibility - HUD statusline shows what's happening under the hood

Features

Orchestration Modes

Multiple strategies for different use cases — from Team-backed orchestration to token-efficient refactoring. Learn more →

Mode What it is Use For
Team (recommended) Canonical staged pipeline (team-plan → team-prd → team-exec → team-verify → team-fix) Coordinated Claude agents on a shared task list
omc-teams tmux CLI workers — real claude/codex/gemini processes in split-panes Codex/Gemini CLI tasks; on-demand spawn, die when done
ccg Tri-model: Codex (analytical) + Gemini (design) in parallel, Claude synthesizes Mixed backend+UI work needing both Codex and Gemini
Autopilot Autonomous execution (single lead agent) End-to-end feature work with minimal ceremony
Ultrawork Maximum parallelism (non-team) Burst parallel fixes/refactors where Team isn't needed
Ralph Persistent mode with verify/fix loops Tasks that must complete fully (no silent partials)
Pipeline Sequential, staged processing Multi-step transformations with strict ordering
Swarm / Ultrapilot (legacy) Compatibility facades that route to Team Existing workflows and older docs

Intelligent Orchestration

  • 32 specialized agents for architecture, research, design, testing, data science
  • Smart model routing - Haiku for simple tasks, Opus for complex reasoning
  • Automatic delegation - Right agent for the job, every time

Developer Experience

  • Magic keywords - ralph, ulw, plan for explicit control
  • HUD statusline - Real-time orchestration metrics in your status bar
  • Skill learning - Extract reusable patterns from your sessions
  • Analytics & cost tracking - Understand token usage across all sessions

Full feature list →


Magic Keywords

Optional shortcuts for power users. Natural language works fine without them.

Keyword Effect Example
team Canonical Team orchestration /team 3:executor "fix all TypeScript errors"
omc-teams tmux CLI workers (codex/gemini/claude) /omc-teams 2:codex "security review"
ccg Tri-model Codex+Gemini orchestration /ccg review this PR
autopilot Full autonomous execution autopilot: build a todo app
ralph Persistence mode ralph: refactor auth
ulw Maximum parallelism ulw fix all errors
plan Planning interview plan the API
ralplan Iterative planning consensus ralplan this feature
swarm Legacy keyword (routes to Team) swarm 5 agents: fix lint errors
ultrapilot Legacy keyword (routes to Team) ultrapilot: build a fullstack app

Notes:

  • ralph includes ultrawork: when you activate ralph mode, it automatically includes ultrawork's parallel execution.
  • swarm N agents syntax is still recognized for agent count extraction, but the runtime is Team-backed in v4.1.7+.

Utilities

Rate Limit Wait

Auto-resume Claude Code sessions when rate limits reset.

omc wait          # Check status, get guidance
omc wait --start  # Enable auto-resume daemon
omc wait --stop   # Disable daemon

Requires: tmux (for session detection)

Notification Tags (Telegram/Discord/Slack)

You can configure who gets tagged when stop callbacks send session summaries.

# Set/replace tag list
omc config-stop-callback telegram --enable --token <bot_token> --chat <chat_id> --tag-list "@alice,bob"
omc config-stop-callback discord --enable --webhook <url> --tag-list "@here,123456789012345678,role:987654321098765432"
omc config-stop-callback slack --enable --webhook <url> --tag-list "<!here>,<@U1234567890>"

# Incremental updates
omc config-stop-callback telegram --add-tag charlie
omc config-stop-callback discord --remove-tag @here
omc config-stop-callback discord --clear-tags

Tag behavior:

  • Telegram: alice becomes @alice
  • Discord: supports @here, @everyone, numeric user IDs, and role:<id>
  • Slack: supports <@MEMBER_ID>, <!channel>, <!here>, <!everyone>, <!subteam^GROUP_ID>
  • file callbacks ignore tag options

Documentation

  • Full Reference - Complete feature documentation
  • CLI Reference - All omc commands, flags, and tools
  • Notifications Guide - Discord, Telegram, Slack, and webhook setup
  • Recommended Workflows - Battle-tested skill chains for common tasks
  • Release Notes - What's new in each version
  • Website - Interactive guides and examples
  • Migration Guide - Upgrade from v2.x
  • Architecture - How it works under the hood
  • Performance Monitoring - Agent tracking, debugging, and optimization

Requirements

  • Claude Code CLI
  • Claude Max/Pro subscription OR Anthropic API key

Optional: Multi-AI Orchestration

OMC can optionally orchestrate external AI providers for cross-validation and design consistency. These are not required — OMC works fully without them.

Provider Install What it enables
Gemini CLI npm install -g @google/gemini-cli Design review, UI consistency (1M token context)
Codex CLI npm install -g @openai/codex Architecture validation, code review cross-check

Cost: 3 Pro plans (Claude + Gemini + ChatGPT) cover everything for ~$60/month.


License

MIT


Inspired by: oh-my-opencode • claude-hud • Superpowers • everything-claude-code

Zero learning curve. Maximum power.

Star History

Star History Chart

💖 Support This Project

If Oh-My-ClaudeCode helps your workflow, consider sponsoring:

Sponsor on GitHub

Why sponsor?

  • Keep development active
  • Priority support for sponsors
  • Influence roadmap & features
  • Help maintain free & open source

Other ways to help

  • ⭐ Star the repo
  • 🐛 Report bugs
  • 💡 Suggest features
  • 📝 Contribute code

Tech Stack

ClaudeGoTypeScriptOpenAIAnthropicBun

Installation

npm install -g oh-my-claude-sisyphus

npm install -g @google/gemini-cli

npm install -g @openai/codex

Open Live ProjectAudit Repo

Reviews0

Log in to write a review.

ActiveLast commit today
bug_report3open issues
Submitted April 29, 2026

auto_awesomeYour strongest next moves after oh-my-claudecode