cortex_runtime/temporal/mod.rs
1//! Temporal Intelligence — history, pattern detection, prediction, and alerts.
2//!
3//! The temporal layer sits on top of the registry's delta history, exposing
4//! time-series queries, statistical pattern detection, and watch/alert rules.
5
6pub mod patterns;
7pub mod query;
8pub mod store;
9pub mod watch;