//! Enables conditional execution of scoped pipelines within a step of a main pipeline.
//!
//! This module provides the `ConditionalScopeBuilder` for a fluent API to define
//! different execution paths (scopes) based on conditions evaluated against the
//! main pipeline's context. Each scope can dynamically source or use a static
//! `Pipeline<S>` instance and operate on an extracted sub-context `S`.
pub use ConditionalScopeBuilder;