//! # ralph-telegram
//!
//! Telegram integration for human-in-the-loop orchestration in Ralph.
//!
//! This crate provides bidirectional communication between AI agents and humans
//! during orchestration loops via Telegram:
//!
//! - **AI → Human**: Agents emit `human.interact` events; the bot sends questions to Telegram
//! - **Human → AI**: Humans reply or send proactive guidance via Telegram messages
//!
//! ## Key Components
//!
//! - [`StateManager`] — Persists chat ID, pending questions, and reply routing
//! - [`MessageHandler`] — Processes incoming messages and writes events to JSONL
//! - [`TelegramService`] — Lifecycle management for the bot within the event loop
//! - [`error`] — Error types for startup, send, and receive failures
pub use ;
pub use TelegramDaemon;
pub use ;
pub use MessageHandler;
pub use ;
pub use ;