//! `ralph prompt ...` CLI facade.
//!
//! Responsibilities:
//! - Re-export clap argument types for prompt commands.
//! - Expose the prompt command handler while keeping parsing and routing separate.
//!
//! Not handled here:
//! - Prompt construction logic (see `crate::commands::prompt`).
//! - Queue persistence or runner execution.
//!
//! Invariants/assumptions:
//! - CLI parsing stays isolated from command implementation details.
pub use ;
pub use handle_prompt;