AIAny
AI Agent2026
Icon for item

oh-my-codex (OMX)

Provides a workflow layer for OpenAI Codex CLI to bootstrap stronger Codex sessions, add reusable agent roles/skills, and manage durable project state under .omx. Includes team runtime, canonical skills, and monitoring surfaces.

Introduction

Why this matters

LLM-driven coding and agent sessions start simple but quickly accumulate ad-hoc prompts, undocumented decisions, and fragile handoffs. OMX treats Codex not as a one-off REPL but as an execution engine inside a reproducible workflow: you start a stronger session, clarify scope, approve a plan, and either hand work to a coordinated team runtime or run a persistent completion loop.

What Sets It Apart
  • Workflow-first around lightweight CLI primitives: OMX defines a canonical flow ($deep-interview → $ralplan → $team/$ralph) so teams and individuals share the same behavioral contract for scope, approval, and execution. This reduces ad-hoc prompt drift across sessions.
  • Durable project state without a heavy backend: plans, logs, and runtime state are kept in a .omx/ directory inside the project, making agent decisions auditable and portable across machines and sessions.
  • Role- and skill-based reuse: instead of many bespoke prompts, OMX exposes reusable skills and role keywords (executor, reviewer, etc.) so common patterns can be invoked consistently and composed into team runs.
  • Lightweight orchestration for parallel work: the team runtime (tmux/psmux-backed) provides a pragmatic way to run coordinated parallel agents on developer machines without adopting a full orchestration stack.
Who It's For & Tradeoffs

Great fit if you already use the OpenAI Codex CLI and want disciplined, repeatable workflows around clarification, planning, and execution. It works well for small teams that prefer terminal-native tooling and want auditability without deploying additional services.

Look elsewhere if you need a UI-first multi-tenant orchestration platform, cloud-hosted coordination, or provider-agnostic frameworks that assume non-Codex backends. OMX intentionally keeps Codex as the execution engine — if you prefer a different LLM backend or a web app interface, you may face extra integration work.

Where It Fits

OMX sits between plain CLI Codex sessions and heavyweight agent platforms: it adds process, role semantics, and durable state while remaining local-first and minimalist. Compared with frameworks that aim to orchestrate distributed cloud agents, OMX favours reproducible developer workflows and simple team coordination over cloud orchestration features.

Information

  • Websitegithub.com
  • AuthorsYeachan Heo, HaD0Yun
  • Published date2026/02/02

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).