# Send Comms Hub Bridge 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": "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": {
    "downloadUrl": "/downloads/comms-hub-bridge",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=comms-hub-bridge",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "config.json",
      "scripts/bridge-client.js",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "comms-hub-bridge",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T15:43:05.645Z",
      "expiresAt": "2026-05-06T15:43:05.645Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=comms-hub-bridge",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=comms-hub-bridge",
        "contentDisposition": "attachment; filename=\"comms-hub-bridge-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "comms-hub-bridge"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Comms Hub Bridge

Agent-to-agent messaging via a shared Comms Hub server. Supports send, receive, acknowledge, file sharing, and presence.

### Setup

Copy config.json.example to config.json in this skill folder
Edit config.json with your hub connection details and agent name
All commands use node scripts/bridge-client.js <command>

### Config Fields

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)

*At least one of hubIp or hubHost is required.

Environment variables override config.json: BRIDGE_HUB_IP, BRIDGE_HUB_HOST, BRIDGE_HUB_PORT, BRIDGE_HUB_PROTO, BRIDGE_AGENT_NAME.

### Check hub health

node scripts/bridge-client.js health

### Send a message

node scripts/bridge-client.js send <recipient> "<subject>" "<body>" [priority]

Priority: normal (default), high, low.

### Check inbox

node scripts/bridge-client.js inbox

Returns array of pending messages or "Inbox empty."

### Acknowledge (remove) a message

node scripts/bridge-client.js ack <messageId>

### View all bridge messages

node scripts/bridge-client.js all

### List shared files

node scripts/bridge-client.js files

### Upload a file

node scripts/bridge-client.js upload <file-path>

### View bridge state (presence, connections)

node scripts/bridge-client.js state

### Heartbeat Integration

Check inbox on every heartbeat or periodic interval:

1. Run: node scripts/bridge-client.js inbox
2. If messages exist → read, process, ack each
3. If high priority → respond immediately or alert human
4. Log activity to daily memory file

### Programmatic Use (Node.js)

const bridge = require('./scripts/bridge-client');
const msgs = await bridge.inbox();
await bridge.send('aristotle', 'Status Update', 'Sprint complete.');
await bridge.ack(msgs[0].id);
await bridge.uploadFile('/path/to/file.md');

### Message Flow

Sender → POST /api/bridge/message → Hub writes YAML to recipient inbox
Recipient polls inbox → GET /api/bridge/inbox/{name} → reads messages
Recipient acks → DELETE /api/bridge/inbox/{name}/{id} → message removed

### Network Reference

Default family network (customize per deployment):

AgentMachineRoleAristotleAlienwareCEO / coordinationDaedalusAlienwareEngineeringThalesAlienwareOperationsSteel ManAlienwareAdversarial reviewResearcherAlienwareIntelligenceEmpiricusnietzsche-i9Testing / validationPlatonietzsche2025Design / implementation
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Nietzsche247
- Version: 1.0.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-29T15:43:05.645Z
- Expires at: 2026-05-06T15:43:05.645Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/comms-hub-bridge)
- [Send to Agent page](https://openagent3.xyz/skills/comms-hub-bridge/agent)
- [JSON manifest](https://openagent3.xyz/skills/comms-hub-bridge/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/comms-hub-bridge/agent.md)
- [Download page](https://openagent3.xyz/downloads/comms-hub-bridge)