From oh-my-harness
Checks status of running oh-my-harness agents via tmux panes, git commits, and file changes in worktree mode. Displays table and suggests apply/stop actions.
npx claudepluginhub hoya324/oh-my-harness --plugin oh-my-harnessThis skill uses the workspace's default tool permissions.
Check the status of running oh-my-harness agents.
Displays AgentHub session status: DAG state, agent branches, commit counts, frontier status, last updates, and board activity. Invoke via /hub:status.
Checks status of worldai-workstreams team agents across workstreams 1-5, reports done/running/stuck agents, new git commits, and sqlite beads created.
Renders AgentOps workflow dashboard via /status, showing ratchet/task status, epics, learnings count, git state, recent activity, inbox, and session signals. Use for quick project overviews.
Share bugs, ideas, or general feedback.
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