Openrig operator
Skill mvschwarz/openrig/skills/_canonical/core/openrig-operator
Multi-agent harness that runs Claude Code and Codex together as one system
npx -y skills add mvschwarz/openrig --skill openrig-operatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Use when operating or debugging host-side OpenRig runtime issues including daemon reachability, partial identity, unified-exec warnings, stale helper-process cleanup, or when distinguishing harness/process issues from live topology health.
SKILL.md
3.7 KB, as published. Nobody here has run it
OpenRig Operator
Overview
This skill covers host/runtime/operator triage around OpenRig itself. Use it when the problem may be the daemon, the shell/runtime surface, or stale helper processes rather than the product workflow you are trying to run.
When to Use
Use this skill when you see:
rig whoami --jsonreturning partial identityrig ps --nodes -A --jsonfailing while some otherrigcommands still workSent to ...plusVerified: no- repeated unified-exec-process warnings
- suspicion that stale helper processes are accumulating
Do not use this skill for normal product workflow routing, queue handling, or ordinary peer communication. Use openrig-user for that.
First Checks
Start with the minimum truthful operator read:
rig whoami --json
rig daemon status
rig ps --nodes -A --json
Interpret them together, not in isolation:
- partial
whoamican mean identity is inferable while daemon-backed surfaces are degraded daemon statustells you whether the host daemon is up, not whether every seat can reach it cleanlyps --nodes -A --jsonis the best machine-readable fleet topology check when it works (v0.4.4:--nodesneeds an explicit scope outside a managed session —-Afor fleet,--rig <name>for one rig; the barerig psmap is the cheap first glance)
Verification Drift Vs Send Failure
For rig send:
Sent to ...+Verified: yes= strong positive delivery evidenceSent to ...+Verified: no= ambiguous delivery, not automatic failure- no
Sent to ...line or a hard error = send failure
When verification is ambiguous, check:
- direct reply
rig capture <session>- transcript evidence
- queue/outbox state if the message asked for a durable handoff
Do not blindly retry until you have checked one of those.
Unified Exec Warning
If you see:
Warning: The maximum number of unified exec processes you can keep open is 60 ...
treat it first as a host/tooling-layer warning, not as automatic proof that the OpenRig topology is unhealthy.
This warning can coexist with a healthy live topology.
Safe Process Triage
Inspect the process surface first:
ps -axo pid,ppid,command | rg 'tmux send-keys|rig queue create|tmux attach|codex|claude'
Think in layers:
- host/tooling layer: stale one-shot wrappers, session bookkeeping, helper shells
- topology layer: live
tmux attachseats, livecodex/clauderuntimes, daemon health
Do not diagnose topology failure from tooling-layer warnings alone.
Safe Cleanup Boundary
Usually safe to reap when clearly orphaned / one-shot:
tmux send-keys ...- short-lived shell wrappers created only to enqueue or send one message
Do not mass-kill:
tmux attach ...codex ...claude ...- other long-lived daemon/runtime processes
The point is to remove garbage, not workers.
Common Mistakes
- treating
Verified: noas if it proves the message did not land - treating the unified-exec warning as if it proves the rig is overloaded
- killing live seats when only stale helper wrappers needed cleanup
- concluding "daemon down" from one seat's failure without checking host-level daemon status
Practical Rule
Clean the smallest safe surface that matches the evidence.
If the warning or failure remains after stale-wrapper cleanup, re-check:
rig daemon status
rig ps --nodes -A --json
If those remain healthy, the residual issue may still be in the host/tool/session layer rather than in OpenRig topology state.