vibe-action 0.2.0

Command router — execute shell commands and LLM prompts via simple YAML actions.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: parser-list-conditional-switch
about: Test list expansion and conditional logic switch branches
actions:
  - tag: tag_files
    run: cmd
    expect: list
    action: |
      echo "index.ts"
      echo "main.rs"
  - tag: tag_result
    run: value
    expect: string
    action:
      - when: '{tag_files|contains:rs}'
        then: 'Found Rust source: {tag_files|upper}'