بنقرة واحدة
hud
HUD statusline and progress display. Use for "show status", "progress", "HUD", and "statusline".
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
HUD statusline and progress display. Use for "show status", "progress", "HUD", and "statusline".
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Manage OMA skills — list, add, remove, search, and edit skills
Socratic deep interview with mathematical ambiguity gating before autonomous execution
Remove AI slop - low-quality, generic, or verbose content. Use for "clean up", "remove fluff", and "make concise".
Consensus planning - agree before executing. Use for "ralplan", "consensus", "pre-execution review".
Setup routing and environment configuration. Use for "setup", "configure", and "get started".
N coordinated agents on shared task list using Claude Code native teams, with git worktree isolation per executor
| name | hud |
| description | HUD statusline and progress display. Use for "show status", "progress", "HUD", and "statusline". |
| trigger | /oma:hud |
Display heads-up display information during long-running tasks.
Single line, minimal info.
[████████░░░░░░░░] 47% | step 3/7 | ETA 2m
Multiple lines, balanced info.
┌──────────────────────────────────────┐
│ Building... [████░░] 50%│
├──────────────────────────────────────┤
│ ✓ Checkout 0:05 │
│ ► Install dependencies 0:42 │
│ ○ Build project pending │
│ ○ Run tests pending │
└──────────────────────────────────────┘
Full panel with metrics.
┌──────────────────────────────────────┐
│ TASK: Full Build [3/7] 43% │
├──────────────────────────────────────┤
│ Step Status Duration │
│ ──────────────────────────────────── │
│ Checkout ✅ Done 0:05 │
│ Install ✅ Done 0:42 │
│ Lint ⚠️ Warn 0:12 │
│ Build ► Run 0:23 │
│ Test ○ Pend │
│ Package ○ Pend │
│ Deploy ○ Pend │
├──────────────────────────────────────┤
│ CPU: 45% MEM: 2.1G DISK: 120MB/s │
└──────────────────────────────────────┘
/oma:hud start {task-name}
/oma:hud update {step} {status}
/oma:hud stop
/oma:hud metrics
## HUD: {task}
### Progress
**Status:** {running|paused|complete}
**Overall:** {percentage}%
**Elapsed:** {time}
**ETA:** {time}
### Steps
| # | Step | Status | Duration |
|---|------|--------|----------|
| 1 | {step} | ✅ | {time} |
| 2 | {step} | ⚠️ | {time} |
| 3 | {step} | ► | - |
CPU: {percentage}%
Memory: {amount}
Disk: {rate}
Result: {success|failure|partial} Total time: {duration} Issues: {n}
## <Examples>
### Good Usage
**Long multi-step build pipeline:**
Agent: Start HUD for the build pipeline OMA: [HUD starts with Standard display] OMA: [████████░░░░░░░░] 47% | step 3/7 | ETA 2m
Agent: Update to Lint step OMA: Step 4 of 7: Running lint...
**Multi-agent task with progress:**
Agent: Start HUD for orchestration OMA: [HUD shows active agents, iteration count, progress] OMA: [mode: ralph | iter: 3/100 | agents: 4 | ETA: ~4m]
### Bad Usage
**Trivial one-step task:**
Agent: Start HUD for git status check OMA: [HUD shows for 0.2s then disappears — overhead > value]
**Spamming updates:**
Agent: /oma:hud update step1 run Agent: /oma:hud update step2 run <- 200ms later Agent: /oma:hud update step3 run <- 150ms later OMA: [Terminal flickers from rapid redraws]
## Constraints
- Don't spam updates
- Keep information scannable
- Show meaningful metrics
- Clean up on exit
- Handle terminal resize
## <Final_Checklist>
Before ending a session with HUD active:
- [ ] Run `/oma:hud stop` or `/oma:hud off`
- [ ] Verify no HUD residue in terminal output
- [ ] Confirm `.oma/hud.json` state is clean (last run not persisting stale data)
- [ ] For long tasks (>5 min): note final status in task log before stopping HUD
- [ ] If Auggie statusline was used (Phase 2 feature): verify cleanup in Auggie session state
> **Phase 2 note:** Actual statusline script implementation is deferred pending Auggie statusLine API research. See `.oma/plans/` for the deferred implementation plan.