//! 5-phase transpilation pipeline with Jidoka stop-on-error validation.
//!
//! The pipeline orchestrates the transformation of source code to Rust:
//! 1. Analysis - Detects languages and dependencies
//! 2. Transpilation - Converts source to Rust using external transpilers
//! 3. Optimization - Applies MoE-based backend selection for GPU/SIMD
//! 4. Validation - Verifies semantic equivalence using syscall tracing
//! 5. Build - Compiles the final binary
// Re-export all public types from types module
pub use ;
// Re-export execution pipeline
pub use TranspilationPipeline;
// Re-export all stage implementations
pub use ;