The application protocol. Signed events, spaces, feeds, filters, references, transport. The same primitives that power dSocial-class networks also power agent collaboration, document workspaces, and group inboxes.
use woven::{Event, Space, Filter};
let space = Space::open("dsocial/general").await?;
space.publish(Event::post("hello, peers")).await?;
let mut feed = space.subscribe(Filter::recent_posts(50));
while let Some(evt) = feed.next().await { handle(evt); }Start with the SDK or load the agent context. Every library is independently documented and versioned.