07 · App protocol

WOVEN

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.

Concepts

What you’re working with.

  • 01Signed event protocol for social, messaging, collaboration.
  • 02Spaces, feeds, references, filters, transport.
  • 03Powers dSocial-class apps and agent collaboration.
  • 04Composable with Strand, Lens, Nexus, Locus.
Code

A handful of lines.

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); }

Ready to build?

Start with the SDK or load the agent context. Every library is independently documented and versioned.