Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
akillness avatar

Omx

  • 231 installs
  • 40 repo stars
  • Updated August 4, 2026
  • akillness/oh-my-skills

Orchestrate, load, and run multiple Claude Code skills from oh-my-skills so agents pick the right capability per task without hand-wiring each skill every session.

About

OMX from oh-my-skills is agent orchestration for Claude Code: discover, select, and execute the right skill for each step so multi-skill build workflows stay composable, repeatable, and easier to maintain across repos.

  • Central skill orchestration layer
  • Faster agent capability switching
  • Works with oh-my-skills collections
  • Reduces manual skill wiring
  • Improves repeatable agent workflows

Omx by the numbers

  • 231 all-time installs (skills.sh)
  • Ranked #2,689 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akillness/oh-my-skills --skill omx

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs231
repo stars40
Last updatedAugust 4, 2026
Repositoryakillness/oh-my-skills

What it does

Orchestrate, load, and run multiple Claude Code skills from oh-my-skills so agents pick the right capability per task without hand-wiring each skill every session.

Files

SKILL.mdMarkdownGitHub ↗

omx (oh-my-codex) — Multi-Agent Orchestration for Codex CLI

When to use this skill

  • You want a stronger Codex CLI runtime with reusable role prompts and workflow skills
  • You need coordinated parallel agents via tmux team workers
  • You want Codex/OMX equivalents for Claude /team, /autopilot, /ultrawork, or /ultraqa
  • Complex tasks requiring persistent execution ($ralph) or consensus planning ($ralplan)
  • You need repository exploration (omx explore) or bounded shell inspection (omx sparkshell)
  • Cross-model consultation with $ask-claude or $ask-gemini

---

1. Quick Start

npm install -g @openai/codex oh-my-codex
omx setup
omx --madmax --high

Inside Codex:

/prompts:architect "analyze the authentication flow"
$plan "map the safest implementation path"
Mental model: Codex does the agent work. OMX adds better prompts, reusable workflow skills, and a runtime layer around it. Start with omx --madmax --high and let the agent pull in $team, $ralph, or other workflows when the task needs them.

---

2. Agent Roles (30+)

TierAgents
Core Developmentarchitect · planner · executor · debugger · verifier · explore
Quality Assurancestyle-reviewer · quality-reviewer · api-reviewer · security-reviewer · performance-reviewer
Domain Expertsdependency-expert · test-engineer · build-fixer · designer · writer · qa-tester
Product Strategyproduct-manager · ux-researcher · product-analyst · information-architect

Invoke via: /prompts:<agent-name> "task"

---

3. Workflow Skills (35+)

SkillTriggerDescription
autopilot$autopilotFull autonomous pipeline — idea to working code
ralph$ralphPersistent execution loop until verified complete
ultrawork$ulw, $ultraworkMaximum parallelism across independent agents
team$teamN coordinated agents with tmux/worktree isolation
plan$planStrategic planning before implementation
ralplan$ralplanConsensus-based iterative planning
deep-interview$deep-interviewSocratic clarification before planning or execution
deepsearch$deepsearchCodebase-focused deep search
analyze$analyzeEvidence-driven causal analysis (trace methodology)
tdd$tddTest-first development (red-green-refactor)
build-fix$build-fixFix build errors, type errors, toolchain failures
code-review$code-reviewComprehensive multi-dimension code review
security-review$security-reviewSecurity audit — vulnerabilities, trust boundaries
ultraqa$ultraqaMaximum parallelism QA/review pass
visual-verdict$visual-verdictUI/UX visual review with verdict
frontend-ui-ux$frontend-ui-uxFrontend UI/UX design and review
ai-slop-cleaner$ai-slop-cleanerClean AI expression patterns from code/docs
ask-claude$ask-claudeCross-model consultation with Claude
ask-gemini$ask-geminiCross-model consultation with Gemini
git-master$git-masterAtomic commits, rebasing, history management
ecomode$ecomodeToken-efficient execution mode
web-clone$web-cloneClone and adapt web pages or UI patterns
cancel$cancelStop active execution modes

---

4. Team Runtime

# Start parallel team workers
omx team 3:executor "fix all TypeScript errors"
omx team 2:security-reviewer,1:architect "audit auth module"

# Team management
omx team status <team-name>
omx team resume <team-name>
omx team shutdown <team-name>

Inside Codex:

$team 3:executor "parallelize this refactor"

Requirements:

PlatformDependency
macOSbrew install tmux
Ubuntu/Debiansudo apt install tmux
Fedorasudo dnf install tmux
Windows (native)winget install psmux
Windows (WSL2)sudo apt install tmux

---

5. Claude Workflow Parity

Read references/parallel-quality-workflows.md when the user asks to use Claude-style team, autopilot, ultrawork, or ultraqa from Codex.

Claude / OMC intentOMX commandUse when
/team N:role "task"$team N:role "task" or omx team N:role "task"Coordinated work needs a shared task list and isolated workers
/autopilot "task" or autopilot: task$autopilot "task"End-to-end idea → plan → implementation → verification should stay Codex-native
/ultrawork "task"$ulw "task" or $ultrawork "task"Independent lanes can run with little synchronization
/ultraqa "target"$ultraqa "target"QA/review should fan out across test, security, performance, or UI concerns

Do not reuse .omc/state/ from Claude sessions. OMX state and scratch belong under .omx/. For vague greenfield requests, run $deep-interview before $autopilot. For high-assurance completion loops, use $plan or $ralplan before $ralph.

---

6. CLI Commands

Core launch

omx                   # Launch Codex with OMX runtime
omx --madmax --high   # Recommended default (bypass + high reasoning)
omx --xhigh           # Extra-high reasoning effort

Launch flags

FlagDescription
--yoloFast execution, minimal verification
--highHigh reasoning effort
--xhighExtra-high reasoning effort
--madmaxBypass approvals/sandbox (--dangerously-bypass-approvals-and-sandbox)
--dry-runPreview without execution
--verboseVerbose output

Operator commands

omx setup             # Install prompts, skills, config, AGENTS scaffolding
omx doctor            # Verify installation
omx doctor --team     # Team/swarm diagnostics
omx status            # Show active modes
omx cancel            # Cancel execution modes
omx hud --watch       # Live HUD status monitor
omx reasoning <mode>  # Set: low/medium/high/xhigh
omx help              # Show help

Explore & inspect

omx explore --prompt "find where team state is written"   # Read-only repo lookup
omx sparkshell git status                                  # Bounded shell inspection
omx sparkshell --tmux-pane %12 --tail-lines 400           # Tail tmux pane output

---

Instructions

1. Identify intent — match request to the best workflow skill ($autopilot, $plan, $ralph, $team, $deep-interview) 2. Start with the recommended launchomx --madmax --high for most sessions 3. Use role prompts for analysis/prompts:architect "..." before implementation 4. Escalate when needed — use $autopilot for full autonomous build intent, $team for coordinated workers, $ulw for independent burst work, and $ultraqa for QA fan-out 5. Use `$deep-interview` for vague requests — when intent, scope, or boundaries are unclear 6. Point to references — link to the relevant references/ file for deep-dive details

---

Examples

Example 1: Standard session

omx --madmax --high
/prompts:architect "analyze the current auth flow"
$plan "implement OAuth safely"

Example 2: Persistent execution

$ralph "fix all failing tests and make them pass"

Loop: execute → verify → fix, until all tests pass.

Example 3: Parallel team work

omx team 3:executor "refactor the API layer with proper tests"

Example 4: Claude ultrawork / ultraqa parity

$autopilot "build the task API end to end"
$ulw "parallelize the independent cleanup tasks"
$ultraqa "review the auth flow across tests, security, and performance"

Example 5: Clarify before coding

$deep-interview "I want to add a payment system"

One-question-at-a-time Socratic loop until intent is clear, then hands off to $plan or $ralph.

---

Best practices

  • Codex-first — OMX is a workflow layer, not a replacement for Codex; start with omx --madmax --high
  • Use `$plan` before `$ralph` — plan first when scope is unclear; ralph for guaranteed execution
  • `$ralplan` for consensus — use when multiple planning perspectives are needed before committing
  • `$deep-interview` gates execution — always use for vague greenfield or brownfield work
  • Team mode is optional — use $team for coordinated workers, $ulw for independent burst work, and $ultraqa for QA fan-out
  • Cross-model consultation$ask-claude and $ask-gemini for second opinions on design or architecture
  • `omx explore` for safe lookups — read-only; won't modify anything
  • `omx doctor` when stuck — diagnose installation issues before manual debugging

---

Quick Reference

Command/SkillAction
omx --madmax --highRecommended launch
/prompts:architect "..."Analysis and design review
$autopilot "..."Full autonomous idea-to-working-code pipeline
$plan "..."Strategic planning
$deep-interview "..."Clarify vague requests
$ralph "..."Persistent loop until done
$ralplan "..."Consensus planning
$team N:role "..."Parallel coordinated agents
$ulw "..."Maximum parallelism
$ultraqa "..."Parallel QA/review burst
omx explore --prompt "..."Read-only repo exploration
omx sparkshell <cmd>Bounded shell inspection
omx setupInstall/re-install OMX
omx doctorDiagnose issues
omx cancel / $cancelCancel active modes

Website · GitHub · npm

---

References

FileContents
references/agents-catalog.mdAll 30+ agent profiles and use cases
references/skills-reference.mdFull skill list with triggers and descriptions
references/cli-reference.mdComplete CLI: omx team/explore/sparkshell/reasoning
references/parallel-quality-workflows.mdClaude team/autopilot/ultrawork/ultraqa parity for Codex/OMX

Related skills

AI & Agent Buildingagentsautomationresearch

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.