Skill writing guide
Use when creating, reviewing, or refining Agent Skills for this repositoryFrom its SKILL.md
npx -y skills add easyzoom/aix-skills --skill skill-writing-guideAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.2 KB, 639 tokens by cl100k_base, as published. Nobody here has run it
Skill Writing Guide
Overview
Use this guide to create Agent Skills that are easy to discover, quick to load, and reliable in repeated use. A skill should teach an agent how to perform a task, not record how one person solved it once.
When To Use
Use this skill when:
- Creating a new
skills/<name>/SKILL.md. - Reviewing a pull request that adds or changes a skill.
- Turning repeated agent behavior into reusable instructions.
- Deciding whether content belongs in a skill, a script, or regular documentation.
Do not use it for one-off project notes, private runbooks, or generic documentation that agents can already infer from standard tools.
Workflow
-
Define the trigger. Write the frontmatter
descriptionas aUse when...sentence that describes the situation where the skill should load. -
Keep the skill operational. Prefer short instructions, decision points, verification steps, and concrete examples. Avoid essays and background stories.
-
Separate heavy material. Keep
SKILL.mdfocused. Move long API references, generated examples, or reusable scripts into supporting files beside the skill. -
Add one strong example. Use a realistic example that demonstrates the workflow end-to-end. Do not add several shallow examples.
-
Add verification. Explain how the agent should prove the skill was used correctly before claiming completion.
-
Run repository validation. Run
python3 scripts/validate-skills.pybefore opening a pull request.
Skill Checklist
- Folder name uses lowercase kebab-case.
SKILL.mdstarts with YAML frontmatter.- Frontmatter includes
nameanddescription. - Frontmatter
namematches the folder name. - Description starts with
Use when. - Body explains workflow and verification.
- Public examples contain no secrets or private data.
Verification
Before publishing a new or updated skill:
- Run
python3 scripts/validate-skills.pyand confirm zero errors. - Confirm the frontmatter
namematches the folder name exactly. - Confirm the
descriptionstarts withUse whenand describes the trigger situation. - Confirm at least one realistic example and one verification section exist in the body.
- Confirm no secrets, internal URLs, or private tool assumptions are in the public skill.
Common Failures
- Description summarizes the workflow: descriptions are for discovery; the body is for process.
- Skill is too broad: split unrelated workflows into separate skills.
- No verification: the agent cannot know whether the workflow succeeded.
- Too much copied reference material: link to public docs or move concise references into supporting files.
- Private assumptions: public skills should not depend on private tools unless the trigger says so.
Example
Bad description:
description: Explains how to gather context, write a document, run checks, and open a PR
Better description:
description: Use when drafting release notes from repository commits and pull requests
The better version tells the agent when to load the skill without tempting it to skip the actual instructions.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.