//! `cueloop run ...` facade.
//!
//! Purpose:
//! - `cueloop run ...` facade.
//!
//! Responsibilities:
//! - Re-export clap argument types and command handlers for `cueloop run`.
//! - Keep clap definitions, long-help content, and dispatch logic in separate modules.
//!
//! Not handled here:
//! - Queue/task execution internals.
//! - Runner implementations.
//!
//!
//! Usage:
//! - Used through the crate module tree or integration test harness.
//!
//! Invariants/assumptions:
//! - This module remains a thin facade consistent with other decomposed CLI command groups.
pub use ;
pub use handle_run;