Skip to main content

rz_cli/
lib.rs

1//! rz — universal inter-agent communication.
2//!
3//! Supports multiple transports: cmux (terminal), file mailbox,
4//! and HTTP. Agents register in a shared registry and messages
5//! are routed via the appropriate transport.
6
7pub mod backend;
8pub mod bootstrap;
9pub mod cmux;
10pub mod log;
11pub mod mailbox;
12
13pub mod nats_hub;
14pub mod registry;
15pub mod status;
16pub mod transport;
17pub mod zellij;
18
19pub use rz_agent_protocol::{Envelope, MessageKind, SENTINEL};