skill-authoring
Installation
SKILL.md
Skill Authoring
Use this skill to create or improve Agent Skills that work across Claude Code, Codex, and the skills CLI.
Workflow
- Clarify the reusable capability the skill should capture.
- Choose a narrow lowercase kebab-case name and create
skills/<name>/SKILL.md. - Put the trigger surface in the
description: what the skill does, when to use it, and concrete task phrases that should activate it. - Keep the
SKILL.mdbody short and procedural. Move long material intoreferences/, repeatable code intoscripts/, and reusable output files intoassets/. - Avoid agent-specific frontmatter by default. Add
compatibilityonly when the skill needs a specific environment or product. - Validate the skill and test discovery with the
skillsCLI.
Standards
Read references/standards.md before making structural decisions about frontmatter fields, directory layout, or install behavior.