Best use case
help is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Guide on using oh-my-codex plugin
Teams using help should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/help/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How help Compares
| Feature / Agent | help | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Guide on using oh-my-codex plugin
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
SKILL.md Source
# How OMX Works **You don't need to learn any commands!** OMX enhances Codex CLI with intelligent behaviors that activate automatically. ## What Happens Automatically | When You... | I Automatically... | |-------------|-------------------| | Give me a complex task | Parallelize and delegate to specialist agents | | Ask me to plan something | Start a planning interview | | Need something done completely | Persist until verified complete | | Work on UI/frontend | Activate design sensibility | | Say "stop" or "cancel" | Intelligently stop current operation | ## Magic Keywords (Optional Shortcuts) You can include these words naturally in your request for explicit control: | Keyword | Effect | Example | |---------|--------|---------| | **ralph** | Persistence mode | "ralph: fix all the bugs" | | **ralplan** | Iterative planning | "ralplan this feature" | | **ulw** | Max parallelism | "ulw refactor the API" | | **plan** | Planning interview | "plan the new endpoints" | **ralph includes ultrawork:** When you activate ralph mode, it automatically includes ultrawork's parallel execution. No need to combine keywords. ## Stopping Things Just say: - "stop" - "cancel" - "abort" I'll figure out what to stop based on context. ## First Time Setup If you haven't configured OMX yet: ``` /omx-setup ``` This is the **only command** you need to know. It downloads the configuration and you're done. If you only need lightweight directory guidance scaffolding for `AGENTS.md` files, use: ```bash omx agents-init . ``` That command is intentionally narrower than full setup: it only bootstraps `AGENTS.md` files for the target directory and its immediate child directories. ## For 2.x Users Your old commands still work! `/ralph`, `/ultrawork`, `/plan`, etc. all function exactly as before. But now you don't NEED them - everything is automatic. --- ## Usage Analysis Analyze your oh-my-codex usage and get tailored recommendations to improve your workflow. > Note: This replaces the former `/learn-about-omc` skill. ### What It Does 1. Reads token tracking from `~/.omx/state/token-tracking.jsonl` 2. Reads session history from `.omx/state/session-history.json` 3. Analyzes agent usage patterns 4. Identifies underutilized features 5. Recommends configuration changes ### Step 1: Gather Data ```bash # Check for token tracking data TOKEN_FILE="$HOME/.omx/state/token-tracking.jsonl" SESSION_FILE=".omx/state/session-history.json" CONFIG_FILE="$HOME/.codex/.omx-config.json" echo "Analyzing OMX Usage..." echo "" # Check what data is available HAS_TOKENS=false HAS_SESSIONS=false HAS_CONFIG=false if [[ -f "$TOKEN_FILE" ]]; then HAS_TOKENS=true TOKEN_COUNT=$(wc -l < "$TOKEN_FILE") echo "Token records found: $TOKEN_COUNT" fi if [[ -f "$SESSION_FILE" ]]; then HAS_SESSIONS=true SESSION_COUNT=$(cat "$SESSION_FILE" | jq '.sessions | length' 2>/dev/null || echo "0") echo "Sessions found: $SESSION_COUNT" fi if [[ -f "$CONFIG_FILE" ]]; then HAS_CONFIG=true DEFAULT_MODE=$(cat "$CONFIG_FILE" | jq -r '.defaultExecutionMode // "not set"') echo "Default execution mode: $DEFAULT_MODE" fi ``` ### Step 2: Analyze Agent Usage (if token data exists) ```bash if [[ "$HAS_TOKENS" == "true" ]]; then echo "" echo "TOP AGENTS BY USAGE:" cat "$TOKEN_FILE" | jq -r '.agentName // "main"' | sort | uniq -c | sort -rn | head -10 echo "" echo "MODEL DISTRIBUTION:" cat "$TOKEN_FILE" | jq -r '.modelName' | sort | uniq -c | sort -rn fi ``` ### Step 3: Generate Recommendations Based on patterns found, output recommendations: **If high Opus usage (>40%) and no ecomode:** - "Consider using ecomode for routine tasks to save tokens" **If no team usage:** - "Try /team for coordinated review workflows" **If no security-reviewer usage:** - "Use security-reviewer after auth/API changes" **If defaultExecutionMode not set:** - "Set defaultExecutionMode in /omx-setup for consistent behavior" ### Step 4: Output Report Format a summary with: - Token summary (total, by model) - Top agents used - Underutilized features - Personalized recommendations ### Example Output ``` 📊 Your OMX Usage Analysis TOKEN SUMMARY: - Total records: 1,234 - By Reasoning Effort: high 45%, medium 40%, low 15% TOP AGENTS: 1. executor (234 uses) 2. architect (89 uses) 3. explore (67 uses) UNDERUTILIZED FEATURES: - ecomode: 0 uses (could save ~30% on routine tasks) - team: 0 uses (great for coordinated workflows) RECOMMENDATIONS: 1. Set defaultExecutionMode: "ecomode" to save tokens 2. Try /team for PR review workflows 3. Use explore agent before architect to save context ``` ### Graceful Degradation If no data found: ``` 📊 Limited Usage Data Available No token tracking found. To enable tracking: 1. Ensure ~/.omx/state/ directory exists 2. Run any OMX command to start tracking Tip: Run /omx-setup to configure OMX properly. ``` ## Need More Help? - **README**: https://github.com/Yeachan-Heo/oh-my-codex - **Issues**: https://github.com/Yeachan-Heo/oh-my-codex/issues --- *Version: 4.2.3*
Related Skills
worker
Team worker protocol (ACK, mailbox, task lifecycle) for tmux-based OMX teams
web-clone
URL-driven website cloning with visual + functional verification
visual-verdict
Structured visual QA verdict for screenshot-to-reference comparisons
ultrawork
Parallel execution engine for high-throughput task completion
ultraqa
QA cycling workflow - test, verify, fix, repeat until goal met
trace
Show agent flow trace timeline and summary
team
N coordinated agents on shared task list using tmux-based orchestration
tdd
Test-Driven Development enforcement skill - write tests first, always
swarm
N coordinated agents on shared task list (compatibility facade over team)
skill
Manage local skills - list, add, remove, search, edit, setup wizard
ralplan
Alias for $plan --consensus
ralph
Self-referential loop until task completion with architect verification