OMX
Oh My CodeXv0.14.0

Magic Keywords

Phrases the keyword-detector hook recognises to auto-route prompts to OMX skills — autopilot, ralph, team, ralplan, ulw, and more.

Magic keywords are phrases that trigger OMX skill routing without requiring an explicit slash command. The keyword-detector hook scans every UserPromptSubmit event for these phrases and writes skill activation state before the model sees the prompt. The model then finds its skill instructions ready to execute.

What it is

The keyword registry (src/hooks/keyword-registry.ts) defines a priority-ordered list of phrase-to-skill mappings. Detection supports both explicit $skill invocations (matched left-to-right) and implicit phrase matching with word-boundary guards. Some keywords — team, ralph, parallel — require additional intent context to avoid firing on incidental prose.

Keyword table

Phrase(s)Routes toPriority
ralplan, consensus planralplan11
autopilot, build me, I want aautopilot10
ultrawork, ulw, parallelultrawork10
ralph, don't stop, must complete, keep goingralph9
deep interview, interview me, gather requirements, don't assume, ouroborosdeep-interview8
ultraqaultraqa8
team, swarm, coordinated teamteam8
plan this, plan the, let's planplan8
code review, review codecode-review6
tdd, test firsttdd6
fix build, type errorsbuild-fix6
analyze, investigateanalyze7
wiki query, wiki add, wiki lintwiki5
cancel, stop, abortcancel5

Higher priority wins when multiple keywords match. Explicit $skill references always beat implicit phrase matches.

Example

Implicit trigger — the phrase alone routes to autopilot:

codex
> build me a REST API for bookstore inventory in TypeScript

Explicit invocation — use $ prefix to force a specific skill:

codex
> $ralplan design the new auth system
Was this page helpful?

On this page