//! SmartID (SID) - Distributed, Human-Readable Identifiers
//!
//! SmartID provides short, human-readable identifiers for distributed systems.
//! This module is used internally by the Context module for ID generation.
//!
//! # Design Targets
//!
//! - Human-friendly (chat, voice, memory)
//! - Deterministic & auditable
//! - Collision-free
//! - Offline-capable
//! - Scalable (up to 999 contributors)
//!
//! # Alphabet
//!
//! Base-36: `0123456789abcdefghijklmnopqrstuvwxyz`
//!
//! # Formula
//!
//! ```text
//! global_id = local_counter * num_contributors + contributor_id + 1
//! ```
pub use MAX_CONTRIBUTORS;
pub use ;
pub use SmartId;