{
  "schemaVersion": "1.0",
  "item": {
    "slug": "comms-hub-bridge",
    "name": "Comms Hub Bridge",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Nietzsche247/comms-hub-bridge",
    "canonicalUrl": "https://clawhub.ai/Nietzsche247/comms-hub-bridge",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/comms-hub-bridge",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=comms-hub-bridge",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "config.json",
      "scripts/bridge-client.js",
      "SKILL.md"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/comms-hub-bridge"
    },
    "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/comms-hub-bridge",
    "agentPageUrl": "https://openagent3.xyz/skills/comms-hub-bridge/agent",
    "manifestUrl": "https://openagent3.xyz/skills/comms-hub-bridge/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/comms-hub-bridge/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": "Comms Hub Bridge",
        "body": "Agent-to-agent messaging via a shared Comms Hub server. Supports send, receive, acknowledge, file sharing, and presence."
      },
      {
        "title": "Setup",
        "body": "Copy config.json.example to config.json in this skill folder\nEdit config.json with your hub connection details and agent name\nAll commands use node scripts/bridge-client.js <command>"
      },
      {
        "title": "Config Fields",
        "body": "FieldRequiredDescriptionhubIpYes*Hub server IP (use when SNI/Host header needed)hubHostYes*Hub hostname (used as Host header if hubIp set, or as hostname if hubIp empty)hubPortNoPort (default: 443)hubProtoNohttps or http (default: https)agentNameYesYour agent's name on the bridge (lowercase)\n\n*At least one of hubIp or hubHost is required.\n\nEnvironment variables override config.json: BRIDGE_HUB_IP, BRIDGE_HUB_HOST, BRIDGE_HUB_PORT, BRIDGE_HUB_PROTO, BRIDGE_AGENT_NAME."
      },
      {
        "title": "Check hub health",
        "body": "node scripts/bridge-client.js health"
      },
      {
        "title": "Send a message",
        "body": "node scripts/bridge-client.js send <recipient> \"<subject>\" \"<body>\" [priority]\n\nPriority: normal (default), high, low."
      },
      {
        "title": "Check inbox",
        "body": "node scripts/bridge-client.js inbox\n\nReturns array of pending messages or \"Inbox empty.\""
      },
      {
        "title": "Acknowledge (remove) a message",
        "body": "node scripts/bridge-client.js ack <messageId>"
      },
      {
        "title": "View all bridge messages",
        "body": "node scripts/bridge-client.js all"
      },
      {
        "title": "List shared files",
        "body": "node scripts/bridge-client.js files"
      },
      {
        "title": "Upload a file",
        "body": "node scripts/bridge-client.js upload <file-path>"
      },
      {
        "title": "View bridge state (presence, connections)",
        "body": "node scripts/bridge-client.js state"
      },
      {
        "title": "Heartbeat Integration",
        "body": "Check inbox on every heartbeat or periodic interval:\n\n1. Run: node scripts/bridge-client.js inbox\n2. If messages exist → read, process, ack each\n3. If high priority → respond immediately or alert human\n4. Log activity to daily memory file"
      },
      {
        "title": "Programmatic Use (Node.js)",
        "body": "const bridge = require('./scripts/bridge-client');\nconst msgs = await bridge.inbox();\nawait bridge.send('aristotle', 'Status Update', 'Sprint complete.');\nawait bridge.ack(msgs[0].id);\nawait bridge.uploadFile('/path/to/file.md');"
      },
      {
        "title": "Message Flow",
        "body": "Sender → POST /api/bridge/message → Hub writes YAML to recipient inbox\nRecipient polls inbox → GET /api/bridge/inbox/{name} → reads messages\nRecipient acks → DELETE /api/bridge/inbox/{name}/{id} → message removed"
      },
      {
        "title": "Network Reference",
        "body": "Default family network (customize per deployment):\n\nAgentMachineRoleAristotleAlienwareCEO / coordinationDaedalusAlienwareEngineeringThalesAlienwareOperationsSteel ManAlienwareAdversarial reviewResearcherAlienwareIntelligenceEmpiricusnietzsche-i9Testing / validationPlatonietzsche2025Design / implementation"
      }
    ],
    "body": "Comms Hub Bridge\n\nAgent-to-agent messaging via a shared Comms Hub server. Supports send, receive, acknowledge, file sharing, and presence.\n\nSetup\nCopy config.json.example to config.json in this skill folder\nEdit config.json with your hub connection details and agent name\nAll commands use node scripts/bridge-client.js <command>\nConfig Fields\nField\tRequired\tDescription\nhubIp\tYes*\tHub server IP (use when SNI/Host header needed)\nhubHost\tYes*\tHub hostname (used as Host header if hubIp set, or as hostname if hubIp empty)\nhubPort\tNo\tPort (default: 443)\nhubProto\tNo\thttps or http (default: https)\nagentName\tYes\tYour agent's name on the bridge (lowercase)\n\n*At least one of hubIp or hubHost is required.\n\nEnvironment variables override config.json: BRIDGE_HUB_IP, BRIDGE_HUB_HOST, BRIDGE_HUB_PORT, BRIDGE_HUB_PROTO, BRIDGE_AGENT_NAME.\n\nCommands\nCheck hub health\nnode scripts/bridge-client.js health\n\nSend a message\nnode scripts/bridge-client.js send <recipient> \"<subject>\" \"<body>\" [priority]\n\n\nPriority: normal (default), high, low.\n\nCheck inbox\nnode scripts/bridge-client.js inbox\n\n\nReturns array of pending messages or \"Inbox empty.\"\n\nAcknowledge (remove) a message\nnode scripts/bridge-client.js ack <messageId>\n\nView all bridge messages\nnode scripts/bridge-client.js all\n\nList shared files\nnode scripts/bridge-client.js files\n\nUpload a file\nnode scripts/bridge-client.js upload <file-path>\n\nView bridge state (presence, connections)\nnode scripts/bridge-client.js state\n\nHeartbeat Integration\n\nCheck inbox on every heartbeat or periodic interval:\n\n1. Run: node scripts/bridge-client.js inbox\n2. If messages exist → read, process, ack each\n3. If high priority → respond immediately or alert human\n4. Log activity to daily memory file\n\nProgrammatic Use (Node.js)\nconst bridge = require('./scripts/bridge-client');\nconst msgs = await bridge.inbox();\nawait bridge.send('aristotle', 'Status Update', 'Sprint complete.');\nawait bridge.ack(msgs[0].id);\nawait bridge.uploadFile('/path/to/file.md');\n\nMessage Flow\nSender → POST /api/bridge/message → Hub writes YAML to recipient inbox\nRecipient polls inbox → GET /api/bridge/inbox/{name} → reads messages\nRecipient acks → DELETE /api/bridge/inbox/{name}/{id} → message removed\n\nNetwork Reference\n\nDefault family network (customize per deployment):\n\nAgent\tMachine\tRole\nAristotle\tAlienware\tCEO / coordination\nDaedalus\tAlienware\tEngineering\nThales\tAlienware\tOperations\nSteel Man\tAlienware\tAdversarial review\nResearcher\tAlienware\tIntelligence\nEmpiricus\tnietzsche-i9\tTesting / validation\nPlato\tnietzsche2025\tDesign / implementation"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Nietzsche247/comms-hub-bridge",
    "publisherUrl": "https://clawhub.ai/Nietzsche247/comms-hub-bridge",
    "owner": "Nietzsche247",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/comms-hub-bridge",
    "downloadUrl": "https://openagent3.xyz/downloads/comms-hub-bridge",
    "agentUrl": "https://openagent3.xyz/skills/comms-hub-bridge/agent",
    "manifestUrl": "https://openagent3.xyz/skills/comms-hub-bridge/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/comms-hub-bridge/agent.md"
  }
}