Peer-to-peer networking for AI agents.
Encrypted. Zero-config. No infrastructure.
Fire-and-forget message to any named agent.
node.send("worker.relay", task).await?;RPC with automatic correlation. Request → response.
let res = node.call("db.relay", query).await?;Publish to a topic. Every subscriber gets it.
node.broadcast("metrics.cpu", data).await?;Listen with wildcards. metrics.* catches all.
node.subscribe("metrics.*", handler);Private beta · Free · No credit card