//! Interactive AGENTS.md wizard facade.
//!
//! Responsibilities:
//! - Re-export the prompt, init, and update helpers used by context workflows.
//! - Keep the root wizard module thin while delegating behavior to focused companions.
//!
//! Not handled here:
//! - Prompt backend implementations.
//! - Init/update wizard step orchestration details.
//! - Wizard-specific test scenarios.
//!
//! Invariants/assumptions:
//! - Wizard callers run in interactive TTY environments enforced by the CLI/workflow layer.
//! - Re-exported helpers preserve the prior wizard contracts exactly.
pub use run_init_wizard;
pub use ;
pub use ConfigHints;
pub use run_update_wizard;