/install fleet-comm
Fleet Communication Skill
Multi-agent communication system for OpenClaw fleets. Enables real-time messaging between multiple OpenClaw instances running on different machines.
When to use
- User asks agents to communicate with each other
- Multi-machine OpenClaw setups need coordination
- Task delegation between fleet nodes
- Broadcasting announcements to all nodes
Setup
The skill runs a lightweight HTTP message bus on the coordinator node (default port 18800).
Start the bus (on coordinator node)
node fleet-comm/fleet_bus.js
Environment
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)
Commands
Send a message to a specific node
node fleet-comm/fleet_cli.js send \x3Ctarget_node> \x3Cmessage>
# Example: node fleet-comm/fleet_cli.js send 01 "start bounty scan"
Broadcast to all nodes
node fleet-comm/fleet_cli.js broadcast \x3Cmessage>
Read messages for this node
node fleet-comm/fleet_cli.js read
Check bus status
node fleet-comm/fleet_cli.js status
Architecture
00 (Mac Mini) 01 (WSL2) 02 (Windows)
┌──────────┐ ┌──────────┐ ┌──────────┐
│ Fleet Bus │◄────────│ CLI/Poll │ │ CLI/Poll │
│ :18800 │─────────►│ │ │ │
└──────────┘ └──────────┘ └──────────┘
▲ │
└─────────────────────────────────────────┘
Tailscale Network
Message Format
{
"from": "00",
"to": "01", // or "all" for broadcast
"msg": "message text",
"type": "task|info|alert|result",
"ts": 1234567890
}
Free vs Pro (future)
- Free: basic messaging, broadcast, status
- Pro: encrypted messages, web dashboard, task queue, auto-discovery, message persistence
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install fleet-comm - After installation, invoke the skill by name or use
/fleet-comm - Provide required inputs per the skill's parameter spec and get structured output
What is Fleet Communication System?
Enables real-time text messaging and broadcasting between multiple OpenClaw nodes across machines for coordinated fleet operations. It is an AI Agent Skill for Claude Code / OpenClaw, with 477 downloads so far.
How do I install Fleet Communication System?
Run "/install fleet-comm" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Fleet Communication System free?
Yes, Fleet Communication System is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Fleet Communication System support?
Fleet Communication System is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Fleet Communication System?
It is built and maintained by dagangtj (@dagangtj); the current version is v1.2.0.