From oh-my-claudecode
Describes oh-my-claudecode plugin features including automatic parallel execution, persistence mode, planning interviews, and usage analysis for workflow optimization.
How this skill is triggered — by the user, by Claude, or both
Slash command
/oh-my-claudecode:omc-helpThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**You don't need to learn any commands!** OMC enhances Claude Code with intelligent behaviors that activate automatically.
You don't need to learn any commands! OMC enhances Claude Code with intelligent behaviors that activate 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 |
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.
Just say:
I'll figure out what to stop based on context.
If you haven't configured OMC yet:
/oh-my-claudecode:omc-setup
This is the only command you need to know. It downloads the configuration and you're done.
Your old commands still work! /ralph, /ultrawork, /omc-plan, etc. all function exactly as before.
But now you don't NEED them - everything is automatic.
Analyze your oh-my-claudecode usage and get tailored recommendations to improve your workflow.
Note: This replaces the former
/oh-my-claudecode:learn-about-omcskill.
~/.omc/state/token-tracking.jsonl.omc/state/session-history.json# Check for token tracking data
TOKEN_FILE="$HOME/.omc/state/token-tracking.jsonl"
SESSION_FILE=".omc/state/session-history.json"
CONFIG_FILE="$HOME/.claude/.omc-config.json"
echo "Analyzing OMC 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
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
Based on patterns found, output recommendations:
If high Opus usage (>40%) and no :
If no pipeline usage:
If no security-reviewer usage:
If defaultExecutionMode not set:
Format a summary with:
📊 Your OMC Usage Analysis
TOKEN SUMMARY:
- Total records: 1,234
- By Model: opus 45%, sonnet 40%, haiku 15%
TOP AGENTS:
1. executor (234 uses)
2. architect (89 uses)
3. explore (67 uses)
UNDERUTILIZED FEATURES:
- : 0 uses (could save ~30% on routine tasks)
- pipeline: 0 uses (great for review workflows)
RECOMMENDATIONS:
1. Set defaultExecutionMode: "" to save tokens
2. Try /pipeline review for PR reviews
3. Use explore agent before architect to save context
If no data found:
📊 Limited Usage Data Available
No token tracking found. To enable tracking:
1. Ensure ~/.omc/state/ directory exists
2. Run any OMC command to start tracking
Tip: Run /omc-setup to configure OMC properly.
Version: 4.2.3
3plugins reuse this skill
First indexed Jul 11, 2026
npx claudepluginhub sigridjineth/oh-my-claudecodeOrchestrates multiple Claude Code agents in parallel using Team mode, Autopilot, and CLI workers for complex builds and refactors.
Analyzes OMC usage patterns from session history, mode usage, and agent traces to generate personalized recommendations for improving workflow efficiency.
Activates ultrawork modes, agent orchestration, and plugin configuration for oh-my-claude. Manages specialized agents (critic, advisor, reviewer) and enforces communication guardrails.