"""Delegation MCP Server - Multi-orchestrator delegation for AI coding agents.""" __version__ = "0.4.0" from .config import DelegationConfig, OrchestratorConfig, DelegationRule from .orchestrator import OrchestratorRegistry from .delegation import DelegationEngine __all__ = [ "DelegationConfig", "OrchestratorConfig", "DelegationRule", "OrchestratorRegistry", "DelegationEngine", ]