Files
attune/packs/core/actions/echo.yaml

39 lines
849 B
YAML

# Echo Action
# Outputs a message to stdout
name: echo
ref: core.echo
description: "Echo a message to stdout"
enabled: true
# Runner type determines how the action is executed
runner_type: shell
# Entry point is the shell command or script to execute
entry_point: echo.sh
# Parameter delivery: stdin for secure parameter passing (no env vars)
parameter_delivery: stdin
parameter_format: dotenv
# Output format: text (no structured data parsing)
output_format: text
# Action parameters schema (standard JSON Schema format)
parameters:
type: object
properties:
message:
type: string
description: "Message to echo (empty string if not provided)"
required: []
# Output schema: not applicable for text output format
# The action outputs plain text to stdout
# Tags for categorization
tags:
- utility
- testing
- debug