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 pty;
10pub mod cmux;
11pub mod log;
12pub mod mailbox;
13
14pub mod nats_hub;
15pub mod registry;
16pub mod status;
17pub mod transport;
18pub mod tmux;
19pub mod zellij;
20
21pub use rz_agent_protocol::{Envelope, MessageKind, SENTINEL};