1 2 3 4 5 6 7 8 9 10
//! Action execution engine. //! Orchestrates tag resolution, shell/LLM execution, and validation. pub mod cluster; pub mod context; pub mod engine; pub mod parser; pub mod resolve; pub mod shell; pub mod sort;