vibe-action 0.1.0

Command router — execute shell commands and LLM prompts via simple YAML actions.
1
2
3
4
5
6
7
8
9
//! Output module — CLI, tracing, plain, and JSON output types.
//! Select via VIBE_LOG_TYPE env var.

pub mod cli;
pub mod json;
pub mod macros;
pub mod output;
pub mod plain;
pub mod tracing;