← All skills
Tencent SkillHub · Communication & Collaboration

Clawdio

Secure P2P communication for AI agents. Noise XX handshake, XChaCha20-Poly1305 encryption, connection consent, human verification. Zero central servers.

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

Secure P2P communication for AI agents. Noise XX handshake, XChaCha20-Poly1305 encryption, connection consent, human verification. Zero central servers.

⬇ 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, src/__tests__/basic.test.ts, src/cli.ts, src/crypto.ts, src/index.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
1.0.0

Documentation

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

Clawdio

Minimal secure peer-to-peer communication for AI agents. Two agents exchange a connection string, perform a Noise XX handshake, then communicate over encrypted channels. No central server required.

When to Use

Agent-to-agent communication across machines or networks Secure task delegation between sub-agents on different hosts Any scenario requiring encrypted, authenticated P2P messaging

Setup

The Clawdio project lives at projects/clawdio/. Install dependencies and build: 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({ port: 9090, autoAccept: true }); const bob = await Clawdio.create({ port: 9091, autoAccept: true }); // Connect (Noise XX handshake) const aliceId = await bob.exchangeKeys(alice.getConnectionString()); // Send messages await bob.send(aliceId, { task: "What's the weather?" }); alice.onMessage((msg, from) => console.log(msg.task));

Connection Consent (Recommended)

By default, unknown inbound peers require explicit consent: const node = await Clawdio.create({ port: 9090 }); // autoAccept defaults to false node.on('connectionRequest', (req) => { console.log(`Connection from ${req.id}`); console.log(`Fingerprint: ${req.fingerprint}`); // Accept or reject node.acceptPeer(req.id); // or node.rejectPeer(req.id) }); Outbound connections (you calling exchangeKeys) are auto-accepted. Already-trusted peers auto-reconnect.

Human Verification

For high-trust scenarios, verify peers in person: node.setOwner('Alice'); const code = node.getVerificationCode(peerId); // "torch lemon onyx prism jade index" // Both humans compare codes in person, then: node.verifyPeer(peerId); // trust: 'accepted' → 'human-verified' node.getPeerTrust(peerId); // 'human-verified'

Trust Levels

pending — connection request received, not yet accepted accepted — peer accepted, encrypted communication active human-verified — verified via in-person code exchange

Persistent Identity

Pass identityPath to persist keys and trusted peers across restarts: const node = await Clawdio.create({ port: 9090, identityPath: '.clawdio-identity.json' });

Sub-Agent Pattern

Spawn a sub-agent to handle Clawdio communication: 1. Main agent spawns sub-agent with task 2. Sub-agent creates Clawdio node, connects to remote peer 3. Sub-agent exchanges messages, collects results 4. Sub-agent reports back to main agent

Security Properties

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

API Reference

MethodDescriptionClawdio.create(opts)Create and start a nodenode.exchangeKeys(connStr)Connect to peernode.send(peerId, msg)Send encrypted messagenode.onMessage(handler)Listen for messagesnode.acceptPeer(id)Accept pending connectionnode.rejectPeer(id)Reject pending connectionnode.setOwner(name)Set human owner namenode.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

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
  • src/__tests__/basic.test.ts Scripts
  • src/cli.ts Scripts
  • src/crypto.ts Scripts
  • src/index.ts Scripts
  • package.json Config