# Skill Template

> One sentence stating what the skill does AND when the agent should use it.

- Skill: `kexxx777xxx/skill-template` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add kexxx777xxx/skill-template`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kexxx777xxx/skill-template/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: kexxx777xxx (https://skillmd.com/u/kexxx777xxx)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/kexxx777xxx/skill-template

---


# <Skill title>

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:

1. Scripts pass a bash syntax check.
2. Invalid input fails loudly with a non-zero exit code.
3. Happy path produces the expected, verifiable result.

Run: `./check.sh` (or `tools/check-skill.sh <skill-name>` from the repo root).

Last verified: never

