One short paragraph: what this skill does.
Usage
bash <skill-dir>/run.sh "<argument>"
Describe expected output and exit codes.
Behavior
- On success: what is printed, exit 0.
- On failure: the raw error is printed, non-zero exit. Never fabricate success.
Settings (.env)
Copy .env.example to .env next to this file and fill in the values.
Process environment variables take precedence over .env.
| Variable | Required | Default | Meaning |
|---|---|---|---|
| EXAMPLE_VAR | yes | — | What it configures |
Verification
Criteria — the skill is ready only if all of these hold:
- Scripts pass a bash syntax check.
- Invalid input fails loudly with a non-zero exit code.
- Happy path produces the expected, verifiable result.
Run: ./check.sh (or tools/check-skill.sh <skill-name> from the repo root).
Last verified: never