//! Entity system for behavioral pathways.
//!
//! This module contains the core `Entity` type and its builder. An Entity
//! represents a living individual with psychological state.
//!
//! # Key Types
//!
//! - [`Entity`] - Core agent container holding individual state
//! - [`EntityBuilder`] - Fluent builder for Entity construction
//! - [`EntityBuildError`] - Error type for build validation failures
pub use ;
pub use Entity;
pub use ;