Install
openclaw skills install fleet-commEnables real-time text messaging and broadcasting between multiple OpenClaw nodes across machines for coordinated fleet operations.
openclaw skills install fleet-commMulti-agent communication system for OpenClaw fleets. Enables real-time messaging between multiple OpenClaw instances running on different machines.
The skill runs a lightweight HTTP message bus on the coordinator node (default port 18800).
node fleet-comm/fleet_bus.js
FLEET_NODE_ID — This node's ID (default: 00)FLEET_BUS_URL — URL of the message bus (default: http://127.0.0.1:18800)FLEET_BUS_PORT — Port to run bus on (default: 18800)node fleet-comm/fleet_cli.js send <target_node> <message>
# Example: node fleet-comm/fleet_cli.js send 01 "start bounty scan"
node fleet-comm/fleet_cli.js broadcast <message>
node fleet-comm/fleet_cli.js read
node fleet-comm/fleet_cli.js status
00 (Mac Mini) 01 (WSL2) 02 (Windows)
┌──────────┐ ┌──────────┐ ┌──────────┐
│ Fleet Bus │◄────────│ CLI/Poll │ │ CLI/Poll │
│ :18800 │─────────►│ │ │ │
└──────────┘ └──────────┘ └──────────┘
▲ │
└─────────────────────────────────────────┘
Tailscale Network
{
"from": "00",
"to": "01", // or "all" for broadcast
"msg": "message text",
"type": "task|info|alert|result",
"ts": 1234567890
}