一键导入
agent-status
Check status of running oh-my-harness agents (commits, files changed, pane state)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check status of running oh-my-harness agents (commits, files changed, pane state)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run an autonomous, spec-driven, tiered self/cross-verifying loop — the harness forces continuation until the goal is objectively met or a guardrail fires
Author a durable, machine-checkable SPEC.md (the anchor for an autonomous loop) with EARS-style acceptance criteria mapped to verify commands
Tier 3 작업 완료 전 N-라운드 독립검증·수정 루프. git diff를 모델 로테이션(Claude/GPT/Gemini)으로 라운드마다 독립 검증하고 수정한다.
Initialize oh-my-harness in the current project (plugin mode)
Configure oh-my-harness settings (features, thresholds, model routing, multi-agent)
Create a native Claude Code team with configured teammates and task assignments
| name | agent-status |
| description | Check status of running oh-my-harness agents (commits, files changed, pane state) |
| level | 2 |
Check the status of running oh-my-harness agents.
Usage: /agent-status
Read agent state from .claude/.omh/agents.json. If no file exists, report "No active agents." and exit.
Read useWorktree from agents.json to determine how to check progress.
Check tmux session: tmux has-session -t "{tmuxSession}" 2>/dev/null
If the session doesn't exist, report that agents are no longer running and suggest cleanup.
For each agent, check:
tmux list-panes -t "{tmuxSession}" -F '#{pane_index} #{pane_pid} #{pane_dead}'useWorktree is true:
git log "main..omh/agent-{i}" --onelinegit diff "main...omh/agent-{i}" --statuseWorktree is false:
Display status table:
| Agent | Branch | Status | Commits | Files Changed |
|-------|-----------------|---------|---------|---------------|
| 1 | omh/agent-1 | running | 3 | 5 |
| 2 | omh/agent-2 | done | 1 | 2 |
When useWorktree is false, omit Branch/Commits/Files columns and show only Agent/Status.
Suggest next actions based on status:
/agent-apply (worktree mode) or /agent-stop/agent-stop {id} for specific ones