//! Anomaly detection engine for `aa-gateway`.
//!
//! Monitors agent behavior in real-time and detects deviations from
//! established baselines. The engine covers seven anomaly types defined
//! in the Governance Gateway epic (AAASM-8 AC #5).
//!
//! Entry point: [`AnomalyDetector::detect`](detector::AnomalyDetector::detect).
pub use AgentBaseline;
pub use AnomalyDetector;
pub use AnomalyResponder;
pub use ;