OMC
Oh My ClaudeCodev4.12.0

HUD

A skill for configuring and managing the HUD (Heads-Up Display) that shows real-time OMC status

Overview

HUD is a skill that configures and manages a Heads-Up Display showing real-time OMC status in Claude Code's status line. At a glance you can see active modes, context usage, agent status, TODO progress, and more.

Usage

/oh-my-claudecode:hud              # Show current status (auto-configure if needed)
/oh-my-claudecode:hud setup        # Install/repair the HUD status line
/oh-my-claudecode:hud minimal      # Minimal display
/oh-my-claudecode:hud focused      # Focused display (default)
/oh-my-claudecode:hud full         # Full display
/oh-my-claudecode:hud status       # Detailed status

Presets

Minimal

Shows only essential information.

[OMC] ralph | ultrawork | todos:2/5

Focused (default)

Shows all relevant elements.

[OMC] branch:main | ralph:3/10 | US-002 | ultrawork | ctx:67% | agents:2 | todos:2/5

Full

Multi-line display with detailed agent information.

[OMC] repo:omc branch:main | ralph:3/10 | US-002 | ctx:[████░░]67% | agents:3 | todos:2/5
├─ O architect    2m   analyzing architecture patterns...
├─ e explore     45s   searching for test files
└─ s executor     1m   implementing validation logic

Display Elements

ElementDescription
[OMC]Mode identifier
repo:nameGit repository name
branch:nameGit branch name
ralph:3/10Ralph iteration count / maximum
US-002Current PRD story ID
ctx:67%Context window usage
agents:2Number of running sub-agents
todos:2/5TODO completion status

Color Codes

  • Green: Normal / healthy
  • Yellow: Warning (context > 70%, ralph > 7)
  • Red: Critical (context > 85%, ralph at maximum)

Configuration

Configure under the omcHud key in ~/.claude/settings.json.

{
  "omcHud": {
    "preset": "focused",
    "elements": {
      "omcLabel": true,
      "contextBar": true,
      "agents": true,
      "todos": true,
      "ralph": true,
      "showTokens": false
    }
  }
}

Available presets: minimal, focused, full, dense, analytics, opencode

Usage Providers

When showTokens is enabled, HUD displays usage and spend data pulled from the provider backing your current session. Usage caches are split per provider to eliminate cross-session thrashing when you switch between accounts.

Supported providers:

  • Claude (claude.ai subscriptions, Anthropic API, Bedrock)
  • z.ai — weekly TOKENS_LIMIT classified by unit (pro+ tiers honored)
  • MiniMax — coding plan usage, with minimaxi.com / minimax.com domains both supported; routing is independent of credential presence
  • Codex / OpenAI (when routed via omc ask codex or team workers)

Extra spend data is shown when the provider exposes it.

  • omc-setup - Full OMC configuration (includes HUD)

Reference

ItemValue
Invocation/oh-my-claudecode:hud
Magic Keyword-
CategoryUtility
Config Location~/.claude/settings.json (omcHud key)

On this page