pmat 2.93.1

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
pub mod adapters;
pub mod advanced_strategies;
pub mod base;
#[cfg(test)]
pub mod cache_property_tests;
#[cfg(test)]
pub mod cache_property_tests_fast;
pub mod cache_trait;
pub mod config;
pub mod content_cache;
pub mod diagnostics;
pub mod manager;
pub mod orchestrator;
pub mod persistent;
pub mod persistent_manager;
pub mod strategies;
pub mod unified; // Compatibility stub
pub mod unified_manager; // Compatibility stub

pub use advanced_strategies::{
    AdaptiveCache, AdaptiveCacheStats, AdvancedCacheConfig, CacheTier, CacheWarmingConfig,
    EvictionPolicy, PerformanceConfig,
};
pub use base::{CacheEntry, CacheStats, CacheStrategy};
pub use cache_trait::AstCacheManager;
pub use config::CacheConfig;
pub use content_cache::ContentCache;
pub use diagnostics::{CacheDiagnostics, CacheEffectiveness};
pub use manager::SessionCacheManager;
pub use orchestrator::{
    CacheOrchestrator, OrchestratorConfig, OrchestratorStats, PerformanceMetrics,
    StrategyRecommendation, WorkloadProfile,
};
pub use persistent_manager::PersistentCacheManager;
pub use strategies::{
    AstCacheStrategy, ChurnCacheStrategy, DagCacheStrategy, GitStats, GitStatsCacheStrategy,
    TemplateCacheStrategy,
};

#[cfg(test)]
mod property_tests {
    use proptest::prelude::*;

    proptest! {
        #[test]
        fn basic_property_stability(_input in ".*") {
            // Basic property test for coverage
            prop_assert!(true);
        }

        #[test]
        fn module_consistency_check(_x in 0u32..1000) {
            // Module consistency verification
            prop_assert!(_x < 1001);
        }
    }
}