echo

$npx mdskill add skillmatic-ai/playbooks/echo

Echoes input for validating CI/CD pipelines and testing agent container lifecycle.

  • Helps with testing and debugging agent workflows in development or deployment stages.
  • Depends on environment variables like STEP_ID, RUN_ID, and ORG_ID for operation.
  • Reads input from environment or context and echoes it back without complex logic.
  • Delivers results by writing a plain text report to a shared directory for review.
SKILL.md
.github/skills/echoView on GitHub ↗
---
name: echo
description: A test skill that echoes received input. Used for CI/CD pipeline validation and step agent container lifecycle testing.
---

# Echo Skill

This is a test/starter skill for validating the Skillmatic step agent pipeline.

## Behavior

1. Read any input provided via environment variables or context
2. Echo the input back as a structured report
3. Write the report to the shared results directory

## Expected Environment

- `STEP_ID` - The step identifier within the playbook run
- `RUN_ID` - The playbook run identifier
- `ORG_ID` - The organization identifier

## Output

Writes a plain text report to `/shared/results/{STEP_ID}/report.md` echoing back
the inputs received.
More from skillmatic-ai/playbooks