brainwires-agent-network 0.8.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
14
//! # Identity Layer
//!
//! Foundational identity types for the agent networking stack.
//!
//! Every agent on the network is represented by an [`AgentIdentity`] which
//! includes a unique identifier, human-readable name, and an [`AgentCard`]
//! that advertises the agent's capabilities, supported protocols, and
//! reachable endpoint.

mod agent_identity;
mod credentials;

pub use agent_identity::{AgentCard, AgentIdentity, ProtocolId};
pub use credentials::{SigningKey, VerifyingKey};