
Start Codex stronger, then let OMX add better prompts, workflows, and runtime help when the work grows.
Website: https://yeachan-heo.github.io/oh-my-codex-website/ Docs: Getting Started · Agents · Skills · Integrations · Demo · OpenClaw guide Community: Discord — shared OMX/community server for oh-my-codex and related tooling.
OMX is a workflow layer for OpenAI Codex CLI.
| 🚨 CAUTION — RECOMMENDED DEFAULT ONLY: macOS or Linux with Codex CLI. OMX is primarily designed and actively tuned for that path. Native Windows and Codex App are not the default experience, may break or behave inconsistently, and currently receive less support. |
It keeps Codex as the execution engine and makes it easier to:
- start a stronger Codex session by default
- run one consistent workflow from clarification to completion
- invoke the canonical skills with
$deep-interview,$ralplan,$team, and$ralph - keep project guidance, plans, logs, and state in
.omx/
| Role | Name | GitHub |
|---|---|---|
| Creator & Lead | Yeachan Heo | @Yeachan-Heo |
| Maintainer | HaD0Yun | @HaD0Yun |
| Name | GitHub |
|---|---|
| Sigrid Jin | @sigridjineth |
| Name | GitHub |
|---|---|
| HaD0Yun | @HaD0Yun |
| Junho Yeo | @junhoyeo |
| JiHongKim98 | @JiHongKim98 |
| Lor | — |
| HyunjunJeon | @HyunjunJeon |
If you want the default OMX experience, start here:
npm install -g @openai/codex oh-my-codex
omx setup
omx --madmax --highThen work normally inside Codex:
$deep-interview "clarify the authentication change"
$ralplan "approve the auth plan and review tradeoffs"
$ralph "carry the approved plan to completion"
$team 3:executor "execute the approved plan in parallel"
That is the main path.
Start OMX strongly, clarify first when needed, approve the plan, then choose $team for coordinated parallel execution or $ralph for the persistent completion loop.
Use OMX if you already like Codex and want a better day-to-day runtime around it:
- a standard workflow built around
$deep-interview,$ralplan,$team, and$ralph - specialist roles and supporting skills when the task needs them
- project guidance through scoped
AGENTS.md - durable state under
.omx/for plans, logs, memory, and mode tracking
If you want plain Codex with no extra workflow layer, you probably do not need OMX.
- Node.js 20+
- Codex CLI installed:
npm install -g @openai/codex - Codex auth configured
tmuxon macOS/Linux if you want the recommended durable team runtimepsmuxon native Windows only if you intentionally want the less-supported Windows team path
Launch OMX the recommended way:
omx --madmax --highThis starts the interactive leader session directly by default. If you explicitly want the leader session in tmux, use:
omx --tmux --madmax --highThen try the canonical workflow:
$deep-interview "clarify the authentication change"
$ralplan "approve the safest implementation path"
$ralph "carry the approved plan to completion"
$team 3:executor "execute the approved plan in parallel"
Use $team when the approved plan needs coordinated parallel work, or $ralph when one persistent owner should keep pushing to completion.
OMX does not replace Codex.
It adds a better working layer around it:
- Codex does the actual agent work
- OMX role keywords make useful roles reusable
- OMX skills make common workflows reusable
.omx/stores plans, logs, memory, and runtime state
Most users should think of OMX as better task routing + better workflow + better runtime, not as a command surface to operate manually all day.
- Run
omx setup - Launch with
omx --madmax --high - Use
$deep-interview "..."when the request or boundaries are still unclear - Use
$ralplan "..."to approve the plan and review tradeoffs - Choose
$teamfor coordinated parallel execution or$ralphfor persistent completion loops
$deep-interview— clarify scope when the request or boundaries are still vague.$ralplan— turn that clarified scope into an approved architecture and implementation plan.$teamor$ralph— use$teamfor coordinated parallel execution, or$ralphwhen you want a persistent completion loop with one owner.
| Surface | Use it for |
|---|---|
$deep-interview "..." |
clarifying intent, boundaries, and non-goals |
$ralplan "..." |
approving the implementation plan and tradeoffs |
$ralph "..." |
persistent completion and verification loops |
$team "..." |
coordinated parallel execution when the work is big enough |
/skills |
browsing installed skills and supporting helpers |
These are useful, but they are not the main onboarding path.
Use the team runtime when you specifically need durable tmux/worktree coordination, not as the default way to begin using OMX.
omx team 3:executor "fix the failing tests with verification"
omx team status <team-name>
omx team resume <team-name>
omx team shutdown <team-name>These are operator/support surfaces:
omx setupinstalls prompts, skills, AGENTS scaffolding,.codex/config.toml, and OMX-managed native Codex hooks in.codex/hooks.json- setup refresh preserves non-OMX hook entries in
.codex/hooks.jsonand only rewrites OMX-managed wrappers omx uninstallremoves OMX-managed wrappers from.codex/hooks.jsonbut keeps the file when user hooks remain
- setup refresh preserves non-OMX hook entries in
omx doctorverifies the install when something seems wrongomx hud --watchis a monitoring/status surface, not the primary user workflow
For non-team sessions, native Codex hooks are now the canonical lifecycle surface:
.codex/hooks.json= native Codex hook registrations.omx/hooks/*.mjs= OMX plugin hooksomx tmux-hook/ notify-hook / derived watcher = tmux + runtime fallback paths
See Codex native hook mapping for the current native / fallback matrix.
omx explore --prompt "..."is for read-only repository lookupomx sparkshell <command>is for shell-native inspection and bounded verification- when
.omx/wiki/exists,omx explorecan inject wiki-first context before falling back to broader repository search
Examples:
omx explore --prompt "find where team state is written"
omx sparkshell git status
omx sparkshell --tmux-pane %12 --tail-lines 400omx wikiis the CLI parity surface for the OMX wiki MCP server- wiki data lives locally under
.omx/wiki/ - the wiki is markdown-first and search-first, not vector-first
Examples:
omx wiki list --json
omx wiki query --input '{"query":"session-start lifecycle"}' --json
omx wiki lint --json
omx wiki refresh --jsonomx team works best on macOS/Linux with tmux.
Native Windows remains a secondary path, and WSL2 is generally the better choice if you want a Windows-hosted setup.
| Platform | Install |
|---|---|
| macOS | brew install tmux |
| Ubuntu/Debian | sudo apt install tmux |
| Fedora | sudo dnf install tmux |
| Arch | sudo pacman -S tmux |
| Windows | winget install psmux |
| Windows (WSL2) | sudo apt install tmux |
On some Intel Macs, OMX startup — especially with --madmax --high — can spike syspolicyd / trustd CPU usage while macOS Gatekeeper validates many concurrent process launches.
If this happens, try:
xattr -dr com.apple.quarantine $(which omx)- adding your terminal app to the Developer Tools allowlist in macOS Security settings
- using lower concurrency (for example, avoid
--madmax --high)
- Getting Started
- Demo guide
- Wiki feature
- Agent catalog
- Skills reference
- Codex native hook mapping
- Integrations
- OpenClaw / notification gateway guide
- Contributing
- Changelog
- English
- 한국어
- 日本語
- 简体中文
- 繁體中文
- Tiếng Việt
- Español
- Português
- Русский
- Türkçe
- Deutsch
- Français
- Italiano
- Ελληνικά
- Polski
- Українська
| Role | Name | GitHub |
|---|---|---|
| Creator & Lead | Yeachan Heo | @Yeachan-Heo |
| Maintainer | HaD0Yun | @HaD0Yun |
MIT