# Send Fleet Communication to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fleet-comm",
    "name": "Fleet Communication",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/dagangtj/fleet-comm",
    "canonicalUrl": "https://clawhub.ai/dagangtj/fleet-comm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fleet-comm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fleet-comm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "data/nodes.json",
      "fleet_bus.js",
      "fleet_cli.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "fleet-comm",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T03:22:14.414Z",
      "expiresAt": "2026-05-07T03:22:14.414Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fleet-comm",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fleet-comm",
        "contentDisposition": "attachment; filename=\"fleet-comm-1.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "fleet-comm"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fleet-comm"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fleet-comm",
    "downloadUrl": "https://openagent3.xyz/downloads/fleet-comm",
    "agentUrl": "https://openagent3.xyz/skills/fleet-comm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fleet-comm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fleet-comm/agent.md"
  }
}
```
## Documentation

### 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)

### Send a message to a specific node

node fleet-comm/fleet_cli.js send <target_node> <message>
# Example: node fleet-comm/fleet_cli.js send 01 "start bounty scan"

### Broadcast to all nodes

node fleet-comm/fleet_cli.js broadcast <message>

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dagangtj
- Version: 1.2.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T03:22:14.414Z
- Expires at: 2026-05-07T03:22:14.414Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fleet-comm)
- [Send to Agent page](https://openagent3.xyz/skills/fleet-comm/agent)
- [JSON manifest](https://openagent3.xyz/skills/fleet-comm/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fleet-comm/agent.md)
- [Download page](https://openagent3.xyz/downloads/fleet-comm)