pub mod check;
pub mod colors;
pub mod dag;
mod dag_render;
pub mod detail;
pub mod format_event;
pub mod header;
pub mod icons;
pub mod live;
pub mod renderer;
pub mod run_renderer;
pub mod spinner;
mod summary;
pub use check::{
print_check_header, print_check_summary, print_mcp_validation, print_phase,
print_phase_skipped, McpCallValidation, McpCheckResult, McpParamError, PhaseResult,
};
pub use dag_render::{render_dag, DagTask, DagTaskStatus};
pub use detail::DetailLevel;
pub use live::LiveRenderer;
pub use renderer::CliRenderer;
pub use run_renderer::RunRenderer;
pub use summary::{
print_doctor_header, print_doctor_summary, print_done_summary, print_run_summary,
};
#[cfg(test)]
mod tests;