//! Adaptive learning and reinforcement learning for agent optimization.
//!
//! Pure Rust implementations of RL primitives — no Python ML libraries:
//!
//! - [`PerformanceProfile`] — success rate and duration tracking per agent
//! - [`Ucb1`] — multi-armed bandit for strategy selection
//! - [`ReplayBuffer`] — prioritized experience replay
//! - [`CapabilityScorer`] — dynamic confidence scoring with trend detection
//! - [`QLearner`] — tabular Q-learning
// Re-export key types.
pub use ;
pub use QLearner;
pub use ;
pub use ;
pub use ;