#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]
pub mod console;
pub mod detection;
pub mod theme;
pub mod banner; pub mod client; pub mod status; pub mod diagnostics; pub mod error; pub mod handlers; pub mod logging; pub mod stats; pub mod tables; pub mod testing;
pub use console::console;
pub mod config;
pub use client::RequestResponseRenderer;
pub use config::ConsoleConfig;
pub use detection::{DisplayContext, is_agent_context, should_enable_rich};
pub use error::ErrorBoundary;
pub use handlers::{HandlerRegistryRenderer, ServerCapabilities};
pub use rich_rust;
pub use theme::theme;