//! CLI Scanner Engine — Three-tier deterministic parser that scans arbitrary
//! CLI tools into structured metadata.
//!
//! ## Architecture
//!
//! - **Tier 1**: Parse `--help` output using format-specific parsers (GNU, Click, Cobra, Clap)
//! - **Tier 2**: Enrich with man page data
//! - **Tier 3**: Enrich with shell completion scripts
//!
//! The `ScanOrchestrator` coordinates all tiers, with caching and plugin support.
// Re-export key types for convenient access
pub use ScanOrchestrator;
pub use ParserPipeline;
pub use ;
pub use ;