//! Documentation Enforcement
//!
//! TICKET: PMAT-7001
//!
//! This module enforces documentation quality standards for both CLI and MCP
//! interfaces. It ensures that all commands, flags, and parameters have
//! complete, accurate, and non-generic documentation.
//!
//! ## Modules
//!
//! - `generic_detector` - Detects generic/placeholder documentation
//! - `cli_checker` - Validates CLI help text and flag documentation
//! - `mcp_checker` - Validates MCP tool descriptions and schemas
// Re-export main functions
pub use validate_cli_documentation;
pub use ;
pub use validate_mcp_documentation;