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