localharness 0.72.0

Agents that own themselves: one Rust crate that's both an agent SDK (streaming, tools, hooks, policies, triggers, MCP) and a wallet-owning, self-sovereign agent that runs in the browser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! BRIDGE — one module per host capability a cartridge reaches through the
//! worker→main postMessage boundary. The worker can't sign tokens, read the
//! chain, hold an RtcPeerConnection, or own an AudioContext, so each
//! capability's main-thread half lives here; `super::worker`'s onmessage
//! router dispatches to these. Each bridge keeps its own thread_local state
//! MODULE-PRIVATE.

pub(super) mod audio;
pub(super) mod chat;
pub(super) mod compose;
pub(super) mod feed;
pub(super) mod http;
pub(super) mod mp;