Multi-agent orchestration system for Claude Code - Inspired by oh-my-opencode
$git clone https://github.com/yeachan-heo/oh-my-claudecodeInstalls into the current project.
Install oh-my-claudecode by running `git clone https://github.com/yeachan-heo/oh-my-claudecode`, then use it for the current task and follow its documentation at https://github.com/yeachan-heo/oh-my-claudecode.
| 1 | English | [한국어](README.ko.md) | [中文](README.zh.md) | [日本語](README.ja.md) | [Español](README.es.md) | [Tiếng Việt](README.vi.md) | [Português](README.pt.md) |
| 2 | |
| 3 | # oh-my-claudecode |
| 4 | |
| 5 | [](https://www.npmjs.com/package/oh-my-claude-sisyphus) |
| 6 | [](https://www.npmjs.com/package/oh-my-claude-sisyphus) |
| 7 | [](https://github.com/Yeachan-Heo/oh-my-claudecode/stargazers) |
| 8 | [](https://opensource.org/licenses/MIT) |
| 9 | [](https://github.com/sponsors/Yeachan-Heo) |
| 10 | [](https://discord.gg/jq6jnSGABY) |
| 11 | |
| 12 | > **For Codex users:** Check out [oh-my-codex](https://github.com/Yeachan-Heo/oh-my-codex) — the same orchestration experience for OpenAI Codex CLI. |
| 13 | |
| 14 | **Multi-agent orchestration for Claude Code. Zero learning curve.** |
| 15 | |
| 16 | _Don't learn Claude Code. Just use OMC._ |
| 17 | |
| 18 | [Get Started](#quick-start) • [Documentation](https://yeachan-heo.github.io/oh-my-claudecode-website) • [CLI Reference](https://yeachan-heo.github.io/oh-my-claudecode-website/docs/#cli-reference) • [Workflows](https://yeachan-heo.github.io/oh-my-claudecode-website/docs/#workflows) • [Migration Guide](docs/MIGRATION.md) • [Discord](https://discord.gg/jq6jnSGABY) |
| 19 | |
| 20 | --- |
| 21 | |
| 22 | ## Core Maintainers |
| 23 | |
| 24 | | Role | Name | GitHub | |
| 25 | | -------------- | ----------- | ---------------------------------------------- | |
| 26 | | Creator & Lead | Yeachan Heo | [@Yeachan-Heo](https://github.com/Yeachan-Heo) | |
| 27 | |
| 28 | ## Ambassadors |
| 29 | |
| 30 | | Name | GitHub | |
| 31 | | ---------- | ------------------------------------------------ | |
| 32 | | Sigrid Jin | [@sigridjineth](https://github.com/sigridjineth) | |
| 33 | |
| 34 | ## Document Specialists |
| 35 | |
| 36 | | Name | GitHub | |
| 37 | | ------- | -------------------------------------- | |
| 38 | | devswha | [@devswha](https://github.com/devswha) | |
| 39 | |
| 40 | ## Top Collaborators |
| 41 | |
| 42 | | Name | GitHub | Commits | |
| 43 | | -------------- | ---------------------------------------------- | ------- | |
| 44 | | JunghwanNA | [@shaun0927](https://github.com/shaun0927) | 65 | |
| 45 | | riftzen-bit | [@riftzen-bit](https://github.com/riftzen-bit) | 52 | |
| 46 | | Seunggwan Song | [@Nathan-Song](https://github.com/Nathan-Song) | 20 | |
| 47 | | BLUE | [@blue-int](https://github.com/blue-int) | 20 | |
| 48 | | Junho Yeo | [@junhoyeo](https://github.com/junhoyeo) | 15 | |
| 49 | |
| 50 | ## Quick Start |
| 51 | |
| 52 | **Step 1: Install** |
| 53 | |
| 54 | Marketplace/plugin install (recommended for most Claude Code users). |
| 55 | These are Claude Code slash commands — enter them **one at a time** (pasting both lines at once will fail): |
| 56 | |
| 57 | ```bash |
| 58 | /plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claudecode |
| 59 | ``` |
| 60 | |
| 61 | Then: |
| 62 | |
| 63 | ```bash |
| 64 | /plugin install oh-my-claudecode |
| 65 | ``` |
| 66 | |
| 67 | If you prefer the npm CLI/runtime path instead of the marketplace flow: |
| 68 | |
| 69 | ```bash |
| 70 | npm i -g oh-my-claude-sisyphus@latest |
| 71 | ``` |
| 72 | |
| 73 | > **Known npm warning:** npm may print `deprecated prebuild-install@7.1.3` during the CLI install. |
| 74 | > This currently comes from the upstream `better-sqlite3` native-addon dependency |
| 75 | > (`better-sqlite3 -> prebuild-install`); `prebuild-install@7.1.3` is still the latest |
| 76 | > published version, so there is no safe repo-side dependency bump or override to remove |
| 77 | > the warning yet. The warning is tracked in [#2913](https://github.com/Yeachan-Heo/oh-my-claudecode/issues/2913) |
| 78 | > and does not by itself mean the OMC CLI install failed. |
| 79 | |
| 80 | **Step 2: Setup** |
| 81 | |
| 82 | ```bash |
| 83 | # Inside a Claude Code / OMC session |
| 84 | /setup |
| 85 | /omc-setup |
| 86 | |
| 87 | # From your terminal |
| 88 | omc setup |
| 89 | ``` |
| 90 | |
| 91 | If you r |