The fastest way to ship on Weave. Boot a node, mount a drive, publish to WOVEN, replicate over the swarm — in a few lines. Identity adapters, capability proxying, agent-friendly defaults.
use weave_sdk::{Node, NodeConfig, woven, locus};
let node = Node::builder()
.config(NodeConfig::production("weave-node-01"))
.with_dht().with_swarm().with_locus()
.open().await?;
node.locus().mount("team/notes").await?
.write("hello.md", b"# Off-chain").await?;
node.woven().publish(woven::Event::post("hello, peers")).await?;Start with the SDK or load the agent context. Every library is independently documented and versioned.