"""ExecutionContext compatibility shim. To avoid having two separately-defined ExecutionContext classes in the codebase, this module re-exports the single canonical definition from ``workflow_executor.py``. Importing ``ExecutionContext`` from here keeps older imports working while centralizing the implementation. """ from .workflow_executor import ExecutionContext # re-export canonical class __all__ = ["ExecutionContext"]