aa-gateway 0.0.1-beta.1

Control plane — policy enforcement engine and agent registry for Agent Assembly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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 mod baseline;
pub mod detector;
pub mod responder;
pub mod types;

pub use baseline::AgentBaseline;
pub use detector::AnomalyDetector;
pub use responder::AnomalyResponder;
pub use types::{AnomalyConfig, AnomalyEvent, AnomalyResponse, AnomalyType};