# Send ClawNet 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. 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

```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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawnet",
    "name": "ClawNet",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/dendisuhubdy/clawnet",
    "canonicalUrl": "https://clawhub.ai/dendisuhubdy/clawnet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawnet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawnet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "Cargo.toml",
      "README.md",
      "SKILL.md",
      "src/protocol.rs",
      "src/config.rs",
      "src/friends.rs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawnet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:18:12.755Z",
      "expiresAt": "2026-05-06T12:18:12.755Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawnet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawnet",
        "contentDisposition": "attachment; filename=\"clawnet-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawnet"
      },
      "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/clawnet"
    },
    "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/clawnet",
    "downloadUrl": "https://openagent3.xyz/downloads/clawnet",
    "agentUrl": "https://openagent3.xyz/skills/clawnet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawnet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawnet/agent.md"
  }
}
```
## Documentation

### 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)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dendisuhubdy
- Version: 0.1.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-29T12:18:12.755Z
- Expires at: 2026-05-06T12:18:12.755Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawnet)
- [Send to Agent page](https://openagent3.xyz/skills/clawnet/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawnet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawnet/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawnet)