Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

CLI Reference

Global Flags

FlagDescription
--config <path>Path to config file (default: ~/.vibe-action/config.yaml)
--debugEnable verbose logging output

Commands

action

Execute a YAML-defined action.

vibe-action action <name> [args...]
vibe-action action commit -p .
vibe-action action translate -f README.md -l Russian
vibe-action action --help

prompt

Send a direct prompt to the LLM cluster, bypassing YAML actions.

vibe-action prompt <text...>
vibe-action prompt "Explain Rust lifetimes"
vibe-action prompt "Напиши функцию сортировки на Python"

Action Arguments

Each action defines its own arguments in YAML. Use --help to see available options:

vibe-action action commit --help
vibe-action action extract --help

Exit Codes

CodeDescription
0Success
1Error (validation failed, shell command failed, LLM error)

Debug Mode

Use --debug for detailed logs of each pipeline step:

vibe-action --debug action commit -p .

Shows:

  • Original and resolved action text
  • Shell command output
  • LLM prompts and responses