//! Prompt inspection command facade.
//!
//! Responsibilities:
//! - Expose prompt management and preview entrypoints for the CLI layer.
//! - Re-export shared option types used by integration tests and callers.
//! - Keep the command surface thin while preview logic lives in focused helpers.
//!
//! Not handled here:
//! - CLI argument parsing (see `crate::cli::prompt`).
//! - Runner execution or task mutations.
//! - Prompt template persistence details beyond delegated management helpers.
//!
//! Invariants/assumptions:
//! - Preview rendering reuses production prompt-building flows for fidelity.
//! - Each helper module owns a single prompt responsibility.
pub use ;
pub use build_scan_prompt;
pub use build_task_builder_prompt;
pub use ;
pub use build_worker_prompt;