vibe-action 0.2.2

Command router — execute shell commands and LLM prompts via simple YAML actions.
version: 0.0.1

name: naming
about: Generate code naming suggestions based on a description

# IDE plugin integration: maps argument names to IDE contexts
api:
  # Target for the final result (replace | clipboard | dialog)
  output: dialog
  # Source for the {query} tag
  input: query|prompt

actions:
  # LLM generates 5-10 naming options based on the description
  - tag: tag_name_suggestions
    run: 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|prompt}