brainwires-network 0.9.0

Agent-to-agent networking — IPC, remote bridge, mesh networking, routing, and discovery for Brainwires
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Agent operations (spawn, list, status, stop, await).
pub mod agent_ops;
/// Relay client implementation.
#[allow(clippy::module_inception)]
pub mod client;
/// Client error types.
pub mod error;
/// Wire protocol types for relay communication.
pub mod protocol;

pub use agent_ops::{AgentConfig, AgentInfo, AgentResult};
pub use client::AgentNetworkClient;
pub use error::AgentNetworkClientError;