{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fleet-comm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fleet-comm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "data/nodes.json",
      "fleet_bus.js",
      "fleet_cli.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/fleet-comm",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Fleet Communication Skill",
        "body": "Multi-agent communication system for OpenClaw fleets. Enables real-time messaging between multiple OpenClaw instances running on different machines."
      },
      {
        "title": "When to use",
        "body": "User asks agents to communicate with each other\nMulti-machine OpenClaw setups need coordination\nTask delegation between fleet nodes\nBroadcasting announcements to all nodes"
      },
      {
        "title": "Setup",
        "body": "The skill runs a lightweight HTTP message bus on the coordinator node (default port 18800)."
      },
      {
        "title": "Start the bus (on coordinator node)",
        "body": "node fleet-comm/fleet_bus.js"
      },
      {
        "title": "Environment",
        "body": "FLEET_NODE_ID — This node's ID (default: 00)\nFLEET_BUS_URL — URL of the message bus (default: http://127.0.0.1:18800)\nFLEET_BUS_PORT — Port to run bus on (default: 18800)"
      },
      {
        "title": "Send a message to a specific node",
        "body": "node fleet-comm/fleet_cli.js send <target_node> <message>\n# Example: node fleet-comm/fleet_cli.js send 01 \"start bounty scan\""
      },
      {
        "title": "Broadcast to all nodes",
        "body": "node fleet-comm/fleet_cli.js broadcast <message>"
      },
      {
        "title": "Read messages for this node",
        "body": "node fleet-comm/fleet_cli.js read"
      },
      {
        "title": "Check bus status",
        "body": "node fleet-comm/fleet_cli.js status"
      },
      {
        "title": "Architecture",
        "body": "00 (Mac Mini)          01 (WSL2)           02 (Windows)\n  ┌──────────┐          ┌──────────┐        ┌──────────┐\n  │ Fleet Bus │◄────────│ CLI/Poll │        │ CLI/Poll │\n  │ :18800   │─────────►│          │        │          │\n  └──────────┘          └──────────┘        └──────────┘\n       ▲                                         │\n       └─────────────────────────────────────────┘\n                    Tailscale Network"
      },
      {
        "title": "Message Format",
        "body": "{\n  \"from\": \"00\",\n  \"to\": \"01\",       // or \"all\" for broadcast\n  \"msg\": \"message text\",\n  \"type\": \"task|info|alert|result\",\n  \"ts\": 1234567890\n}"
      },
      {
        "title": "Free vs Pro (future)",
        "body": "Free: basic messaging, broadcast, status\nPro: encrypted messages, web dashboard, task queue, auto-discovery, message persistence"
      }
    ],
    "body": "Fleet Communication Skill\n\nMulti-agent communication system for OpenClaw fleets. Enables real-time messaging between multiple OpenClaw instances running on different machines.\n\nWhen to use\nUser asks agents to communicate with each other\nMulti-machine OpenClaw setups need coordination\nTask delegation between fleet nodes\nBroadcasting announcements to all nodes\nSetup\n\nThe skill runs a lightweight HTTP message bus on the coordinator node (default port 18800).\n\nStart the bus (on coordinator node)\nnode fleet-comm/fleet_bus.js\n\nEnvironment\nFLEET_NODE_ID — This node's ID (default: 00)\nFLEET_BUS_URL — URL of the message bus (default: http://127.0.0.1:18800)\nFLEET_BUS_PORT — Port to run bus on (default: 18800)\nCommands\nSend a message to a specific node\nnode fleet-comm/fleet_cli.js send <target_node> <message>\n# Example: node fleet-comm/fleet_cli.js send 01 \"start bounty scan\"\n\nBroadcast to all nodes\nnode fleet-comm/fleet_cli.js broadcast <message>\n\nRead messages for this node\nnode fleet-comm/fleet_cli.js read\n\nCheck bus status\nnode fleet-comm/fleet_cli.js status\n\nArchitecture\n  00 (Mac Mini)          01 (WSL2)           02 (Windows)\n  ┌──────────┐          ┌──────────┐        ┌──────────┐\n  │ Fleet Bus │◄────────│ CLI/Poll │        │ CLI/Poll │\n  │ :18800   │─────────►│          │        │          │\n  └──────────┘          └──────────┘        └──────────┘\n       ▲                                         │\n       └─────────────────────────────────────────┘\n                    Tailscale Network\n\nMessage Format\n{\n  \"from\": \"00\",\n  \"to\": \"01\",       // or \"all\" for broadcast\n  \"msg\": \"message text\",\n  \"type\": \"task|info|alert|result\",\n  \"ts\": 1234567890\n}\n\nFree vs Pro (future)\nFree: basic messaging, broadcast, status\nPro: encrypted messages, web dashboard, task queue, auto-discovery, message persistence"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dagangtj/fleet-comm",
    "publisherUrl": "https://clawhub.ai/dagangtj/fleet-comm",
    "owner": "dagangtj",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}