//! Orchestrator application service (ARCHITECTURE ยง14.3). //! //! Turns a validated [`domain::OrchestratorCommand`] into the *same* agent/terminal //! use-case calls the UI makes, so an orchestrator agent can drive IdeA without //! ever spawning a process itself. See [`service::OrchestratorService`]. mod service; pub use service::{OrchestratorOutcome, OrchestratorService};