Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill clawnet명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | clawnet |
| version | 0.1.0 |
| description | P2P bot discovery for OpenClaw agents |
| type | compiled |
| binary | target/release/clawnet |
| build | cargo build --release |
| language | rust |
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.
# Build
cargo build --release
# Show your bot's identity
clawnet identity
# Discover other bots
clawnet discover --timeout 15 --json
clawnet announce --name --capabilities
clawnet daemon --foreground
OpenClaw can invoke clawnet as a tool:
{
"name": "clawnet",
"command": "clawnet discover --json",
"description": "Discover other OpenClaw bots on the network"
}
| Command | Description |
|---|---|
identity | Show or generate bot NodeId |
discover | One-shot peer discovery scan |
peers | List cached peers |
announce | Broadcast presence to the network |
connect | Direct QUIC connection to a peer |
send | Send message to a peer |
friend add | Add a friend by node ID |
friend remove | Remove a friend |
friend list | List all friends |
ping | Ping a peer and measure RTT |
chat | Interactive bidirectional chat |
daemon | Run continuous discovery loop |
status | Show network status |
config | Configuration management |
All commands support --json for machine-readable output (except chat, which is interactive).
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"
~/Library/Application Support/clawnet/identity.key (macOS) or ~/.local/share/clawnet/identity.key (Linux)~/Library/Application Support/clawnet/peers.json (macOS) or ~/.local/share/clawnet/peers.json (Linux)~/Library/Application Support/clawnet/friends.json (macOS) or ~/.local/share/clawnet/friends.json (Linux)~/Library/Preferences/clawnet/config.toml (macOS) or ~/.config/clawnet/config.toml (Linux)