Our review
This skill provides instructions for creating new agent skills within a codebase, including directory structure and SKILL.md format.
Strengths
- Provides a structured template for consistent skill creation across the codebase.
- Includes design principles focused on agent-first writing and progressive disclosure.
- Encourages reuse of existing patterns by referencing established skills.
- Emphasizes concrete examples and copy-paste templates for better agent performance.
Limitations
- Only applicable to codebases using the Claude Code skill system (.claude/skills/).
- Assumes familiarity with agent concepts and the target codebase's conventions.
- Does not include validation or testing of the created skill.
Use when you need to add a new reusable, structured capability for coding agents in your codebase.
Do not use for simple one-off prompts or slash commands, or when the task does not require the full skill directory structure.
Security analysis
SafeThis skill is purely instructional and contains no executable commands, tool invocations, or any instructions that could cause harm. It simply describes how to create a new agent skill file.
No concerns found
Examples
Create a new skill for writing unit tests with Jest. The skill should include templates for test files and best practices for mocking.Build a skill to generate API documentation from JSDoc comments. It should include a template for SKILL.md and reference files for JSDoc conventions.Make a skill for code review best practices. The skill should list common issues to check and provide a checklist template.description: Create a new Agent Skill for this codebase argument-hint: [skill-name] [description]
Write an Agent Skill
You are creating an Agent Skill - a structured capability that coding agents can discover and use to perform tasks more accurately and efficiently.
What is an Agent Skill?
A skill is a folder of instructions, scripts, and resources that agents load on-demand. Unlike slash commands (single prompts), skills provide comprehensive, structured guidance for complex workflows.
Key insight: Skills are consumed by coding agents, not humans. Structure them so an agent can:
- Quickly understand what the skill does (from
description) - Load core instructions (from
SKILL.md) - Access detailed references only when needed (from
references/)
Directory Structure
Create in .claude/skills/<skill-name>/:
skill-name/
├── SKILL.md # Required - core instructions
└── references/ # Optional - detailed docs loaded on-demand
├── REFERENCE.md
└── ...
SKILL.md Format
Frontmatter (Required)
---
name: skill-name # Lowercase, hyphens only, matches folder name
description: What this skill does and WHEN to use it. Include trigger keywords.
license: Proprietary # Optional
metadata: # Optional
author: autumn
version: "1.0"
---
Critical: The description must tell the agent WHEN to activate this skill. Include specific keywords and scenarios.
Body Structure
Write for an agent, not a human. Be direct and actionable.
## What I do
[One sentence - what capability this provides]
## Before Starting
[Prerequisites, files to read first, setup requirements]
## Critical Rules
**DO:**
- [Concrete actions]
**DON'T:**
- [Common mistakes to avoid]
## Process / Template
[Step-by-step instructions or code templates]
## References
Load these on-demand for detailed information:
- [references/TOPIC.md](references/TOPIC.md) - Brief description
Design Principles
-
Progressive disclosure: Keep
SKILL.mdunder 500 lines. Move details toreferences/. -
Agent-first writing: No fluff. Every line should help the agent do the task correctly.
-
Include templates: Agents work better with concrete examples and copy-paste templates.
-
Trigger keywords: The description should include words users might say that should activate this skill.
-
Reference files: Keep them focused and small. Agents load them on-demand, so smaller = less context used.
Examples in This Codebase
Study these existing skills:
.claude/skills/linear-ticket/SKILL.md- Simple skill, single file, uses MCP tools.claude/skills/write-test/SKILL.md- Complex skill with multiple reference files
Your Task
- Ask what the skill should do if
$ARGUMENTSis empty or unclear - Search the codebase for patterns, existing implementations, and conventions
- Create the skill directory and
SKILL.md - Add references if the skill needs detailed documentation (keep
SKILL.mdfocused) - Verify the skill follows the patterns in existing skills
Naming Convention
- Folder:
.claude/skills/<skill-name>/ - Name must be lowercase with hyphens only
- Name must match the folder name
- Keep names short but descriptive:
write-test,linear-ticket,code-review
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.