//! Sequential run-loop facade.
//!
//! Responsibilities:
//! - Re-export sequential run-loop entrypoints and options.
//! - Keep orchestration, lifecycle bookkeeping, wait handling, and session recovery separated.
//!
//! Not handled here:
//! - Parallel run-loop orchestration.
//! - Per-task execution.
//!
//! Invariants/assumptions:
//! - Queue lock contention remains non-retriable.
//! - Session recovery and wait-state handling stay delegated to focused modules.
pub use run_loop;
pub use RunLoopOptions;