vibe-action 0.0.4

Command router — execute shell commands and LLM prompts via simple YAML actions.
name: mock
about: Generate realistic mock data arrays (JSON, YAML, CSV) for testing
clipboard: true
args:
  - name: query
    short: 'q'
    expect: string
    help: Describe the data you need (e.g., '5 users with id, name, and unique uuid')
  - name: format
    short: 'f'
    expect: string
    help: 'Output format: json, yaml, csv (default: json)'
    default: json
actions:
  # LLM generates structured mock data in the requested format
  - tag: tag_mock
    run: llm_small
    expect: string
    action: |
      [Task]
      Generate a realistic mock data array based on the user's [Query].
      Format the output strictly as valid raw {format} data.

      [Query]
      {query}