vibe-action 0.2.2

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

name: sysinfo
about: Generate a human-readable system report
clipboard: false

# IDE plugin integration: maps argument names to IDE contexts
api:
  # Target for the final result (replace | clipboard | dialog)
  output: dialog

actions:
  # Generate system report
  - tag: tag_report
    run: small
    expect: string
    action: |
      [Task]
      Generate a short system report using the data below.
      Format as bullet points. Language: {system_language}.

      [Data]
      OS: {system_os}
      Architecture: {system_arch}
      Hostname: {system_hostname}
      Shell: {system_shell}
      System Language: {system_language}
      User: {system_user}
      Date: {system_date}
      Time: {system_time}
      Process ID: {system_pid}
      Home: {system_dir_home}
      Working directory: {system_dir_pwd}