pub use error::AgentError;
pub use types::{AgentEvent, CliTool, PtyEvent, SessionConfig};
pub mod pty;
pub mod pipe;
pub mod parser;
pub mod ndjson;
pub mod detection;
pub mod cli;
pub mod snapshot;
pub mod history;
pub mod manager;
pub use manager::{MultiCliManager, ManagerConfig};
pub use snapshot::{
AgentCli, AgentRenderSnapshot, AgentSnapshotMode, BuddyArt, ChatMessage, ChatRole, TermCell, TermGrid,
};
pub use history::{HistoryReader, SessionMeta, reader_for};
pub(crate) mod error;
pub(crate) mod types;
pub(crate) mod utils;