OMX
Oh My CodeXv0.18.9

Skills

An overview of the skills that actually drive work in OMX, split into workflow and utility categories.

What are skills?

Skills are the entrypoints that start work in OMX. Users usually invoke them with $name, and matching keywords can also activate them automatically.

In other words, a skill is not just a command name. It is a workflow unit that defines what roles get called and in what sequence.

Two big categories

OMX skills broadly fall into two kinds.

Workflow skills

These are execution modes that move real work forward.

SkillRole
$deep-interviewClarify fuzzy requirements through guided questioning
$ralplanBuild a planner / architect / critic consensus plan
$designCreate or refresh repo-local DESIGN.md before durable product/UI/frontend decisions
$ralphKeep working until completion is verified
$teamCoordinate work that benefits from parallel execution
$autopilotRun the full path from idea through implementation, QA, and validation
$ultraqaIterate through testing, verification, and fixes
$ultragoalSplit a large plan into durable Codex/OMX goals with ledger evidence

Workflow skills are mainly about deciding how a task should move forward.

Utility skills

These are support skills that help operate, inspect, or extend the main workflow.

For example:

Utility skills are less about driving the main workflow and more about support, inspection, cleanup, and operations.

Which skills should you learn first?

At the beginning, it is better to learn the representative flow than to memorize every skill.

The baseline workflow

$deep-interview "clarify the authentication change"
$ralplan "approve the safest implementation path"
$ultragoal "turn the approved plan into durable goals and complete them"

This baseline makes the role of each skill much easier to understand.

SkillWhen to use it
$deep-interviewThe task is still fuzzy
$ralplanYou need agreement on the plan before implementation
$ultragoalThe approved plan should become durable goals with ledger evidence
$teamThere is real value in splitting work across parallel lanes
$autopilotYou want the full path handled in one go

$autopilot vs the plan-driven path

This is the distinction users most often need.

$autopilot

$autopilot "build me a todo app in next.js"
  • Good when you want to see a full result quickly
  • Good when you do not want to manually manage planning, execution, and QA
  • Good for prototypes and smaller features

$deep-interview → $ralplan → $ultragoal

$deep-interview "clarify what we need to build"
$ralplan "produce the safest implementation plan"
$ultragoal "turn that plan into durable goals and complete them"
  • Better when requirements are not fully shaped yet
  • Better when the plan needs explicit agreement first
  • Better when you want more control over the flow

So $autopilot is the fast full-path workflow, while the plan-driven path is the more controllable durable-goal route.

When should you use $team?

$team is at its best when the approved plan contains work that is genuinely worth splitting into parallel lanes.

$team 3:executor "execute the approved plan in parallel"

Good fit when:

  • work can be split across frontend / backend / testing lanes
  • the task spans multiple files or subsystems
  • sequential execution would be unnecessarily slow
  • you already have a plan that can be distributed across workers

If the requirements are still fuzzy, clarify and plan first; if parallelism would create more collisions than speed, keep the approved plan in $ultragoal or use $ralph only for tightly coupled single-owner loops.

On this page