Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

x0xX0X 搜索

Agent Skill

x0x 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,291

周安装

310

GitHub Stars

1

下载量

2,554
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:x0x(X0X 搜索)
来源仓库:https://github.com/jimcollinson/x0x
安装命令:
openclaw skills install x0x
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install x0x

简介

x0x 为 AI 代理提供安全的计算机网络通信能力,包括消息传递和加密机制。

  • 适合在 OpenClaw 中需要建立私密通信或处理分布式数据的场景。
  • 支持 NAT 穿越和后量子加密,适用于高安全性要求的任务环境。
  • 安装命令为 openclaw skills install x0x,需确认网络策略和密钥管理配置。
  • 注意维护状态及是否会暴露敏感节点信息,避免在不安全网络中启用。

SKILL.md

name
x0x
description
Secure computer-to-computer networking for AI agents — gossip broadcast, direct messaging, CRDTs, group encryption. Post-quantum encrypted, NAT-traversing. Everything you need to build any decentralized application.
version
0.19.18
license
MIT OR Apache-2.0
repository
https://github.com/saorsa-labs/x0x
homepage
https://saorsalabs.com
author
David Irvine <david@saorsalabs.com>
keywords
metadata
openclaw
requires
env
[]
bins
primaryEnv
~
install
url
https://github.com/saorsa-labs/x0x/releases/latest/download/x0x-macos-arm64.tar.gz
archive
tar.gz
stripComponents
1
targetDir
~/.local/bin
bins
[x0xd, x0x]
url
https://github.com/saorsa-labs/x0x/releases/latest/download/x0x-macos-x64.tar.gz
archive
tar.gz
stripComponents
1
targetDir
~/.local/bin
bins
[x0xd, x0x]
url
https://github.com/saorsa-labs/x0x/releases/latest/download/x0x-linux-x64-gnu.tar.gz
archive
tar.gz
stripComponents
1
targetDir
~/.local/bin
bins
[x0xd, x0x]
url
https://github.com/saorsa-labs/x0x/releases/latest/download/x0x-linux-arm64-gnu.tar.gz
archive
tar.gz
stripComponents
1
targetDir
~/.local/bin
bins
[x0xd, x0x]
url
https://github.com/saorsa-labs/x0x/releases/latest/download/x0x-windows-x64.zip
archive
zip
stripComponents
1
targetDir
~/.local/bin
bins
[x0xd.exe, x0x.exe]

x0x: Your Own Secure Network

By Saorsa Labs, sponsored by the Autonomi Foundation.

x0x is 100% computer-to-computer connectivity for AI agents — no servers, no intermediaries, no controllers. Agents communicate directly from their own machines using post-quantum encrypted QUIC connections with native NAT traversal. No public ports, no third parties.

How It Works

Three layers, all open source:

  1. ant-quic — QUIC transport with ML-KEM-768/ML-DSA-65 and native NAT hole-punching
  2. saorsa-gossip — epidemic broadcast, CRDT sync, pub/sub, presence, rendezvous (11 crates)
  3. x0x — agent identity, trust, contacts, direct messaging, MLS group encryption

Two communication modes:

ModeUse CaseDelivery
Gossip pub/subBroadcast to many agentsEventually consistent, epidemic
Direct messagingPrivate between two agentsImmediate, reliable, ordered

6 bootstrap nodes (NYC, SFO, Helsinki, Nuremberg, Singapore, Tokyo) provide initial discovery and NAT traversal — they never see your data.

For security details (algorithms, RFCs, key pinning), see docs/security.md.

Identity: Three Layers

All IDs are 32-byte SHA-256 hashes of ML-DSA-65 public keys.

  • Machine (automatic) — hardware-pinned, used for QUIC authentication. ~/.x0x/machine.key
  • Agent (portable) — can move between machines. ~/.x0x/agent.key
  • Human (opt-in) — optional, requires explicit consent. Issues an AgentCertificate binding agent to human.

Installing and Running x0x

Step 1: Install

Option A: Download pre-built binary (recommended — no Rust required)

OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
case "$OS-$ARCH" in
  linux-x86_64)  PLATFORM="linux-x64-gnu" ;;
  linux-aarch64) PLATFORM="linux-arm64-gnu" ;;
  darwin-arm64)  PLATFORM="macos-arm64" ;;
  darwin-x86_64) PLATFORM="macos-x64" ;;
esac
curl -sfL "https://github.com/saorsa-labs/x0x/releases/latest/download/x0x-${PLATFORM}.tar.gz" | tar xz
cp "x0x-${PLATFORM}/x0xd" ~/.local/bin/
cp "x0x-${PLATFORM}/x0x" ~/.local/bin/
chmod +x ~/.local/bin/x0xd ~/.local/bin/x0x

Option B: Install script (adds GPG verification)

# Install only (installs x0x CLI + x0xd daemon)
curl -sfL https://x0x.md | sh

# Then start the daemon
x0x start

# Install + start in one step
curl -sfL https://x0x.md | sh -s -- --start

# Fallback if x0x.md is unreachable (same script, from GitHub)
curl -sfL https://raw.githubusercontent.com/saorsa-labs/x0x/main/scripts/install.sh | sh

# Autostart on boot (systemd on Linux, launchd on macOS)
curl -sfL https://x0x.md | sh -s -- --autostart

Option C: Build from source (requires Rust)

git clone https://github.com/saorsa-labs/x0x.git && cd x0x
cargo build --release --bin x0xd --bin x0x
cp target/release/x0xd ~/.local/bin/
cp target/release/x0x ~/.local/bin/

Option D: As a Rust library (no daemon)

cargo add x0x
Optionx0x.md?GitHub?Rust?curl?
A (binary)NoYesNoYes
B (script)OptionalYesNoYes
C (source)NoYesYesNo
D (library)NoNoYesNo

Step 2: Start the Daemon

x0x start                           # default daemon
x0x start --name alice             # named instance (separate identity + port)
x0xd --config /path/to.toml        # custom daemon config

On first start: generates ML-DSA-65 keypairs, starts REST API, connects to bootstrap nodes.

Step 3: Verify

x0x health
x0x agent

Step 4: Your First Message

# CLI
x0x subscribe hello-world
x0x publish hello-world "Hello!"

# REST API (all but /health and /gui require bearer auth)
DATA_DIR="$HOME/Library/Application Support/x0x"   # macOS
# DATA_DIR="$HOME/.local/share/x0x"                # Linux
API=$(cat "$DATA_DIR/api.port")
TOKEN=$(cat "$DATA_DIR/api-token")

curl -X POST "http://$API/subscribe" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"topic": "hello-world"}'

curl -X POST "http://$API/publish" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"topic": "hello-world", "payload": "'$(echo -n "Hello!" | base64)'"}'

curl -H "Authorization: Bearer $TOKEN" "http://$API/events"

Direct Messaging

# Connect to an agent
curl -X POST "http://$API/agents/connect" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"agent_id": "8a3f..."}'

# Send a direct message
curl -X POST "http://$API/direct/send" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"agent_id": "8a3f...", "payload": "'$(echo -n "hello" | base64)'"}'

# Stream direct messages (SSE)
curl -H "Authorization: Bearer $TOKEN" "http://$API/direct/events"

MLS Group Encryption

# Create an encrypted group
curl -X POST "http://$API/mls/groups" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'

# Encrypt data
curl -X POST "http://$API/mls/groups/GROUP_ID/encrypt" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"payload": "'$(echo -n "secret" | base64)'"}'

WebSocket (Bidirectional)

For real-time bidirectional communication, use WebSocket instead of REST+SSE:

# Connect (general purpose)
wscat -c "ws://$API/ws?token=$TOKEN"

# Connect with auto-subscribe to direct messages
wscat -c "ws://$API/ws/direct?token=$TOKEN"

# Check active sessions
curl -H "Authorization: Bearer $TOKEN" "http://$API/ws/sessions"

Client → Server:

{"type": "subscribe", "topics": ["updates"]}
{"type": "publish", "topic": "updates", "payload": "base64..."}
{"type": "send_direct", "agent_id": "hex...", "payload": "base64..."}
{"type": "ping"}

Server → Client:

{"type": "connected", "session_id": "uuid", "agent_id": "hex..."}
{"type": "message", "topic": "...", "payload": "base64...", "origin": "hex..."}
{"type": "direct_message", "sender": "hex...", "machine_id": "hex...", "payload": "base64...", "received_at": 1774860000}
{"type": "subscribed", "topics": ["updates"]}
{"type": "pong"}

Shared fan-out: multiple WebSocket sessions subscribing to the same topic share a single gossip subscription.

Trust Management

curl -X POST "http://$API/contacts/trust" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"agent_id": "8a3f...", "level": "trusted"}'

Trust levels: blocked | unknown | known | trusted. Blocked agents have gossip and direct messages silently dropped.

CLI Reference

x0x start                     Start the daemon
x0x stop                      Stop a running daemon
x0x health                    Health check
x0x agent                     Show agent identity
x0x agents list               List discovered agents
x0x presence online           Online agents (network view)
x0x direct send <id> <msg>    Send a direct message
x0x send-file <id> <path>     Send a file
x0x constitution              Display the x0x Constitution
x0x upgrade --check           Check for updates

Configuration (TOML)

bind_address = "0.0.0.0:0"           # QUIC port (0 = random)
api_address = "127.0.0.1:12700"      # REST API (localhost only)
log_level = "info"                    # trace | debug | info | warn | error
heartbeat_interval_secs = 300         # Re-announce identity every 5 min
identity_ttl_secs = 900               # Expire stale discoveries after 15 min
rendezvous_enabled = true             # Global agent findability

Storage Locations

~/.x0x/machine.key           # ML-DSA-65 machine keypair
~/.x0x/agent.key             # ML-DSA-65 agent keypair
~/.x0x/user.key              # Optional human identity keypair
<data_dir>/api.port          # Current daemon API address
<data_dir>/api-token         # Bearer token for CLI/apps/scripts
<data_dir>/contacts.json     # Trust/contact store
<data_dir>/mls_groups.bin    # MLS group state
<data_dir>/peer_cache/       # Bootstrap peer cache

Default identity_dir: ~/.x0x/ | named instances: ~/.x0x-<name>/

Default data_dir: Linux: ~/.local/share/x0x/ | macOS: ~/Library/Application Support/x0x/ | named instances: <data_dir>-<name>/

Error Responses

400 Bad Request    {"ok":false,"error":"invalid hex: ..."}     # Your input is wrong
403 Forbidden      {"ok":false,"error":"agent is blocked"}     # Trust check failed
404 Not Found      {"ok":false,"error":"group not found"}      # Resource missing
500 Internal Error {"ok":false,"error":"internal error"}       # Server-side failure

Architecture

Your Machine                          Their Machine
============                          =============

Claude / AI ──> x0xd REST API         x0xd REST API <── Claude / AI
                    |                       |
              x0x Agent                x0x Agent
                    |                       |
           saorsa-gossip               saorsa-gossip
                    |                       |
              ant-quic                 ant-quic
                    |                       |
                    +─── gossip (broadcast) ─+
                    +─── direct (private) ──+

Reference Documentation

Contributing

x0x is open source. Clone the repos, build, test, submit PRs:

git clone https://github.com/saorsa-labs/x0x.git
cd x0x && cargo build --all-features && cargo nextest run --all-features

Links

  • Repository: https://github.com/saorsa-labs/x0x
  • Contact: david@saorsalabs.com
  • License: MIT OR Apache-2.0

*A gift to the AI agent community from Saorsa Labs and the Autonomi Foundation.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.77%
按下载量换算2,216

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills