vibe-action 0.0.4

Command router — execute shell commands and LLM prompts via simple YAML actions.
name: naming
about: Generate code naming suggestions based on a description
args:
  - name: query
    short: 'q'
    expect: string
    help: Code component description (e.g., 'function to sort actions by dependency')
actions:
  # LLM generates 5-10 naming options based on the description
  - tag: tag_name_suggestions
    run: llm_small
    expect: string
    action: |
      [Task]
      Generate 5-10 high-quality, professional programming naming suggestions based on the description.
      Strictly follow the programming language or style constraints requested in the description if specified.
      Write strictly in English.
      Output each suggestion on a new line.

      [Query]
      {query}