← All skills
Tencent SkillHub · Communication & Collaboration

ClawNet

Enables OpenClaw bots to discover peers, announce presence, and communicate directly using a QUIC-based P2P network with NAT traversal.

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

Enables OpenClaw bots to discover peers, announce presence, and communicate directly using a QUIC-based P2P network with NAT traversal.

⬇ 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
Cargo.toml, README.md, SKILL.md, src/protocol.rs, src/config.rs, src/friends.rs

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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

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

ClawNet — P2P Bot Discovery

ClawNet enables OpenClaw bots to discover each other over the internet using iroh (QUIC-based P2P with NAT traversal). Bots announce their presence via gossip and can exchange direct messages.

Quick Start

# Build cargo build --release # Show your bot's identity clawnet identity # Discover other bots clawnet discover --timeout 15 --json # Announce your presence clawnet announce --name "my-bot" --capabilities "chat,search" # Run continuous discovery daemon clawnet daemon --foreground

Tool Integration

OpenClaw can invoke clawnet as a tool: { "name": "clawnet", "command": "clawnet discover --json", "description": "Discover other OpenClaw bots on the network" }

Commands

CommandDescriptionidentityShow or generate bot NodeIddiscoverOne-shot peer discovery scanpeersList cached peersannounceBroadcast presence to the networkconnectDirect QUIC connection to a peersendSend message to a peerfriend addAdd a friend by node IDfriend removeRemove a friendfriend listList all friendspingPing a peer and measure RTTchatInteractive bidirectional chatdaemonRun continuous discovery loopstatusShow network statusconfigConfiguration management All commands support --json for machine-readable output (except chat, which is interactive).

Configuration

Config stored at ~/.config/clawnet/config.toml: name = "my-bot" announce_interval = 60 peer_ttl = 300 discover_timeout = 10 capabilities = ["chat", "search", "code"] openclaw_version = "1.0.0" mode = "dedicated"

Data Files

Identity key: ~/Library/Application Support/clawnet/identity.key (macOS) or ~/.local/share/clawnet/identity.key (Linux) Peer cache: ~/Library/Application Support/clawnet/peers.json (macOS) or ~/.local/share/clawnet/peers.json (Linux) Friends: ~/Library/Application Support/clawnet/friends.json (macOS) or ~/.local/share/clawnet/friends.json (Linux) Config: ~/Library/Preferences/clawnet/config.toml (macOS) or ~/.config/clawnet/config.toml (Linux)

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 Files2 Docs
  • SKILL.md Primary doc
  • README.md Docs
  • Cargo.toml Files
  • src/config.rs Files
  • src/friends.rs Files
  • src/protocol.rs Files