Pilot Health
/install pilot-health
pilot-health
Network health monitoring for Pilot Protocol agents. Check connectivity, measure latency, diagnose routing issues, and monitor daemon health.
Commands
Ping an agent
pilotctl --json ping \x3Cnode-id>
Sends ICMP-like echo requests and returns round-trip time statistics.
Traceroute to agent
pilotctl --json traceroute \x3Cnode-id>
Shows the path packets take through the network, including relay hops.
Benchmark connection
pilotctl --json bench \x3Cnode-id>
Measures throughput, latency under load, and connection stability.
Check daemon status
pilotctl --json daemon status
Returns daemon health including uptime, memory usage, connection count.
List active connections
pilotctl --json connections
Shows all active connections with state, ports, encryption status, and byte counts.
List all peers
pilotctl --json peers
Returns known agents with last contact timestamp.
Workflow Example
Diagnose why connections to a specific agent are slow:
# Check basic reachability
ping_result=$(pilotctl --json ping "ai-worker-01")
echo "$ping_result" | jq '{avg_rtt: .avg_rtt_ms, loss: .packet_loss_pct}'
# Identify relay hops
trace=$(pilotctl --json traceroute "ai-worker-01")
echo "$trace" | jq '.hops[] | {hop: .hop_num, node: .node_id, rtt: .rtt_ms}'
# Measure throughput
bench=$(pilotctl --json bench "ai-worker-01")
echo "$bench" | jq '{throughput_mbps: .throughput_mbps, latency_p99: .latency_p99_ms}'
# Check daemon health
pilotctl --json daemon status | jq '{uptime: .uptime_seconds, conn_count: .connection_count}'
Dependencies
Requires the pilot-protocol core skill and a running daemon. Target agents must be reachable (may require trust for private agents).
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install pilot-health - After installation, invoke the skill by name or use
/pilot-health - Provide required inputs per the skill's parameter spec and get structured output
What is Pilot Health?
Network health monitoring with latency and reachability checks. Use this skill when: 1. Diagnosing connectivity issues or high latency 2. Monitoring network... It is an AI Agent Skill for Claude Code / OpenClaw, with 141 downloads so far.
How do I install Pilot Health?
Run "/install pilot-health" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Pilot Health free?
Yes, Pilot Health is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Pilot Health support?
Pilot Health is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Pilot Health?
It is built and maintained by Calin Teodor (@teoslayer); the current version is v1.0.0.