pmat 3.11.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
#![cfg_attr(coverage_nightly, coverage(off))]
//! PMAT Oracle - Unified PDCA Quality Improvement System
//!
//! Implements Plan-Do-Check-Act (PDCA) with Compiler-In-The-Loop (CITL)
//! learning to converge Rust projects toward "perfect" quality state.
//!
//! # Toyota Way Principles
//! - **Jidoka**: Auto-apply with confidence threshold; halt on regression
//! - **Kaizen**: Pattern capture from successful fixes; weight updates
//! - **Genchi Genbutsu**: Evidence from actual compiler output, not heuristics
//! - **Andon**: Stop-the-line on critical regression
//!
//! # Scientific Foundation
//! Based on 15 peer-reviewed publications (see specification).

pub mod convergence;
pub mod pdca_loop;
pub mod signal_collector;
pub mod types;

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod tests;

pub use convergence::*;
pub use pdca_loop::*;
pub use signal_collector::*;
pub use types::*;