vibe-action 0.2.2

Command router — execute shell commands and LLM prompts via simple YAML actions.
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;