//! AI agent integration module for machine-readable architecture.
//!
//! Provides structured export of architecture context for AI consumption.
//! Enables AI agents to understand architectural constraints, suggest improvements,
//! and generate compliant code. All functionality behind `ai` feature flag.
//!
//! Revision History
//! - 2025-10-10T20:44:00Z @AI: Add method_extractor module for trait method extraction.
//! - 2025-10-06T18:14:00Z @AI: Add AgentPack module and re-exports for comprehensive AI interop.
//! - 2025-10-02T18:00:00Z @AI: Initial AI context export implementation.
pub use AIContext;
pub use ContextBuilder;
pub use AgentPack;