← All skills
Tencent SkillHub · Communication & Collaboration

Clawdio

Transport-agnostic secure P2P communication for AI agents. Noise XX handshake, XChaCha20-Poly1305 encryption, connection consent, human verification. No WebSocket — works over Telegram, Signal, or any messaging transport.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Transport-agnostic secure P2P communication for AI agents. Noise XX handshake, XChaCha20-Poly1305 encryption, connection consent, human verification. No WebSocket — works over Telegram, Signal, or any messaging transport.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, package.json, scripts/start.js, src/__tests__/basic.test.ts, src/cli.ts, src/crypto.ts

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.2.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

Clawdio

Secure peer-to-peer communication for AI agents using Telegram as transport. Create a "Clawdio Hub" group, add your bot, and you're ready to connect with other agents securely. Agents perform Noise XX handshake over Telegram, then communicate via encrypted channels.

When to Use

Secure agent-to-agent communication via Telegram Task delegation between agents on different machines Distributed AI workflows requiring encrypted P2P messaging Cross-platform agent coordination without port forwarding

Why Telegram

✅ Always online — No port forwarding, NAT, or server setup ✅ Reliable delivery — Messages queue when peers offline ✅ Universal access — Works from anywhere with internet ✅ Battle-tested — Handles billions of messages daily ✅ OpenClaw integration — Simple message tool for send/receive ✅ Offline resilience — Messages delivered when peer comes back online

First Time Setup (Your Agent)

Install Clawdio: clawhub install clawdiocomms Create a Telegram group called "Clawdio Hub" Add your OpenClaw bot to the group Send your agent the group ID (or agent auto-detects it) Your agent generates your identity and you're ready

Connecting to a Peer

Share your public key with your friend Your friend does the same setup on their end Your friend shares their public key + their Clawdio Hub group ID with you Your agent creates a topic/thread in your Clawdio Hub for this peer (e.g. "James <> Alex") Connection request sent — friend's agent asks for consent Friend approves Noise XX handshake happens over Telegram messages in the dedicated topics You're connected — encrypted comms flowing

Human Verification (Optional but Recommended)

Meet in person Both run: compare 6-word verification codes If they match, mark as human-verified

Technical Setup

cd projects/clawdio && npm install && npx tsc

Quick Start

const { Clawdio } = require('./projects/clawdio/dist/index.js'); // Create two nodes const alice = await Clawdio.create({ autoAccept: true }); const bob = await Clawdio.create({ autoAccept: true }); // Wire transport (agents decide HOW to send) alice.onSend((peerId, msg) => bob.receive(alice.publicKey, msg)); bob.onSend((peerId, msg) => alice.receive(bob.publicKey, msg)); // Connect (Noise XX handshake) const aliceId = await bob.connect(alice.publicKey); // Send messages await bob.send(aliceId, { task: "What's the weather?" }); alice.onMessage((msg, from) => console.log(msg.task));

Using with Telegram (via OpenClaw)

const node = await Clawdio.create({ owner: 'James' }); // Send via Telegram node.onSend((peerId, base64Message) => { // Use OpenClaw's message tool to send to peer's Telegram sendTelegramMessage(peerId, base64Message); }); // When receiving a Telegram message from peer: node.receive(peerId, base64EncodedMessage);

Connection Consent

Unknown inbound peers require explicit consent: node.on('connectionRequest', (req) => { console.log(`Peer: ${req.id}, Fingerprint: ${req.fingerprint}`); node.acceptPeer(req.id); // or node.rejectPeer(req.id) });

Human Verification

const code = node.getVerificationCode(peerId); // "torch lemon onyx prism jade index" // Compare codes in person, then: node.verifyPeer(peerId);

Persistent Identity

const node = await Clawdio.create({ identityPath: '.clawdio-identity.json' });

API Reference

MethodDescriptionClawdio.create(opts)Create and initialize a nodenode.onSend(handler)Register send handler (transport layer)node.receive(from, b64)Feed incoming message from transportnode.connect(peerId)Initiate Noise XX handshakenode.send(peerId, msg)Send encrypted messagenode.onMessage(handler)Listen for decrypted messagesnode.acceptPeer(id)Accept pending connectionnode.rejectPeer(id)Reject pending connectionnode.getVerificationCode(id)Get 6-word verification codenode.verifyPeer(id)Mark peer as human-verifiednode.getPeerTrust(id)Get trust levelnode.getFingerprint(id)Emoji fingerprintnode.getPeerStatus(id)alive/stale/downnode.stop()Shutdown

Security Properties

Forward secrecy (ephemeral X25519 keys) Mutual authentication (Noise XX) Replay protection (monotonic counters) XChaCha20-Poly1305 AEAD encryption Connection consent for inbound peers Human verification via 6-word codes

Dependencies

Single production dependency: libsodium-wrappers.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts1 Docs1 Config
  • SKILL.md Primary doc
  • scripts/start.js Scripts
  • src/__tests__/basic.test.ts Scripts
  • src/cli.ts Scripts
  • src/crypto.ts Scripts
  • package.json Config