Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
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.
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.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
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.
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
✅ 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
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
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
Meet in person Both run: compare 6-word verification codes If they match, mark as human-verified
cd projects/clawdio && npm install && npx tsc
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));
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);
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) });
const code = node.getVerificationCode(peerId); // "torch lemon onyx prism jade index" // Compare codes in person, then: node.verifyPeer(peerId);
const node = await Clawdio.create({ identityPath: '.clawdio-identity.json' });
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
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
Single production dependency: libsodium-wrappers.
Messaging, meetings, inboxes, CRM, and teammate communication surfaces.
Largest current source with strong distribution and engagement signals.