vibe-action 0.0.4

Command router — execute shell commands and LLM prompts via simple YAML actions.
//! Modifier system for transforming tag values via pipe syntax.
//! Each modifier implements the Modifier trait and is registered in ModifierRegistry.

pub mod ast;
pub mod contains;
pub mod empty;
pub mod equals;
pub mod is_dir;
pub mod is_file;
pub mod join;
pub mod lower;
pub mod modifier;
pub mod resolve;
pub mod reverse;
pub mod size;
pub mod sort;
pub mod split;
pub mod take;
pub mod trim;
pub mod upper;