//! Core functionality for the Synheart Sensor Agent.
//!
//! This module contains:
//!
//! - **Windowing** — [`WindowManager`] collects [`SensorEvent`](crate::SensorEvent)s
//! into fixed-duration `EventWindow`s
//! - **Feature extraction** — [`compute_features`] derives 16+ behavioural signals
//! from an event window
//! - **HSI encoding** — [`HsiBuilder`] produces HSI 1.0 JSON snapshots
/// Behavioural feature extraction from event windows.
/// HSI 1.0 snapshot types and builder.
/// Time-based event windowing.
// Re-export commonly used types
pub use ;
pub use ;
pub use ;