Skills template-skill
Reusable template for authoring new Agent Skills with clear triggers, workflow, and I/O contracts.
install
source · Clone the upstream repo
git clone https://github.com/NoizAI/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NoizAI/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/template-skill" ~/.claude/skills/noizai-skills-template-skill && rm -rf "$T"
manifest:
skills/template-skill/SKILL.mdsource content
<skill-name>
简体中文 | English
One-line description of what this skill solves.
Triggers
- trigger keyword 1
- trigger keyword 2
Use Cases
- Typical scenario 1
- Typical scenario 2
- Typical scenario 3
Inputs
- Required inputs:
: Descriptionfield_a
: Descriptionfield_b
- Optional inputs:
: Descriptionfield_c
Outputs
- Success output format (example)
- Failure output format (example)
Workflow
- Validate input completeness
- Build request parameters
- Execute core action
- Format outputs
- Provide retry or fallback strategy on failure
Limitations
- Clearly define capability boundaries
- Explain common failure causes
Examples
- Input example:
...
- Output example:
...