vibe-action 0.2.2

Command router — execute shell commands and LLM prompts via simple YAML actions.
//! Application constants and configuration defaults.
//! Defines config file names and version.

/// Config directory name
pub const CONFIG_DIR_NAME: &str = ".vibe-action";

/// Actions directory name
pub const ACTIONS_DIR_NAME: &str = "actions";

/// Config file name
pub const CONFIG_FILE_NAME: &str = "config.yaml";

/// Config version
pub const CONFIG_VERSION: &str = "0.0.3";

/// Flow version (bump to force-update default flows on disk).
pub const FLOW_VERSION: &str = "0.0.1";

/// Cache version (bump when flow schema or validation logic changes).
pub const CACHE_VERSION: &str = "0.0.2";