echo · git:20260427.9efbc79 · 2026-04-27 · sha256 6e690e26a540353a

echo git:20260427.9efbc79A

Immutable. This exact content is served forever at /api/v1/blob/6e690e26a540353a.

---
name: echo
description: Echo a message through the cli-tool adapter.
source:
  type: cli-tool
  command: node
  args:
    - -e
    - "process.stdout.write(process.env.RUNX_INPUT_MESSAGE ?? '')"
  timeout_seconds: 10
  sandbox:
    profile: readonly
    cwd_policy: skill-directory
inputs:
  message:
    type: string
    required: true
    description: Message to echo
runx:
  input_resolution:
    required:
      - message
---

Echo the provided message.