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).
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install pilot-health - 安装完成后,直接呼叫该 Skill 的名称或使用
/pilot-health触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Pilot Health 是什么?
Network health monitoring with latency and reachability checks. Use this skill when: 1. Diagnosing connectivity issues or high latency 2. Monitoring network... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 141 次。
如何安装 Pilot Health?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install pilot-health」即可一键安装,无需额外配置。
Pilot Health 是免费的吗?
是的,Pilot Health 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Pilot Health 支持哪些平台?
Pilot Health 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Pilot Health?
由 Calin Teodor(@teoslayer)开发并维护,当前版本 v1.0.0。