1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Prompt inspection command facade.
//!
//! Purpose:
//! - 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.
//!
//!
//! Usage:
//! - Used through the crate module tree or integration test harness.
//!
//! 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;