From aix-skills
Use when creating, reviewing, or refining Agent Skills for this repository
How this skill is triggered — by the user, by Claude, or both
Slash command
/aix-skills:skill-writing-guideThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
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.
Use this skill when:
skills/<name>/SKILL.md.Do not use it for one-off project notes, private runbooks, or generic documentation that agents can already infer from standard tools.
Define the trigger.
Write the frontmatter description as a Use 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.md focused. 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.py before opening a pull request.
SKILL.md starts with YAML frontmatter.name and description.name matches the folder name.Use when.Before publishing a new or updated skill:
python3 scripts/validate-skills.py and confirm zero errors.name matches the folder name exactly.description starts with Use when and describes the trigger situation.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.
npx claudepluginhub easyzoom/aix-skills --plugin aix-skillsGuides authoring and validating Claude Code skills: metadata optimization, lean workflows, progressive disclosure, references, skillgrade evals.
Creates, updates, or validates SKILL.md agent skills including frontmatter authoring, bundled resource planning, and three-phase discoverability validation.
Use when creating, updating, splitting, merging, or restructuring an agent skill or skill library.