From latestaiagents
Write the YAML frontmatter for a SKILL.md file so it activates reliably — name, description, and activation keywords that the model matches against. Covers length, tone, and the most common frontmatter mistakes. Use this skill when authoring a new skill, fixing a skill that isn't auto-activating, or reviewing skills for publication. Activate when: SKILL.md frontmatter, skill description, skill activation, skill YAML, write a skill, author a skill.
npx claudepluginhub latestaiagents/agent-skills --plugin skills-authoringThis skill uses the workspace's default tool permissions.
**The frontmatter is what the model reads to decide whether to load your skill. Get it wrong and the skill never fires.**
Writes or rewrites frontmatter description fields for Claude Code skills and agents. Use when creating new skills/agents, descriptions exceed 1024 characters, contain YAML multiline indicators or colons, lack trigger keywords, or need AI tool optimization.
Generates validated SKILL.md files for Claude Code skills with YAML frontmatter, naming conventions, tool minimalism, structure constraints, and best practices.
Guides creating and editing SKILL.md files for Claude Code skills, covering objectives, when to create, YAML frontmatter requirements, structure, and writing principles like showing patterns with examples.
Share bugs, ideas, or general feedback.
The frontmatter is what the model reads to decide whether to load your skill. Get it wrong and the skill never fires.
---
name: kebab-case-name
description: |
Sentence 1: what the skill does.
Sentence 2: when to use it (specific trigger conditions).
Sentence 3: activation keywords (phrases users say).
---
That's it. name and description. Nothing else is required by most clients.
name Fieldmerge-conflict-surgeon, not MergeConflictSurgeonSKILL.md must have the same nameresolve-merge-conflictowasp-auditormcp-server-authoringdescription FieldThis is THE activation signal. Model reads it and matches against the user's message.
description: |
Systematic merge conflict resolution with context analysis and safe resolution.
Use this skill when the user has merge conflicts, needs help resolving conflicting changes, or is stuck on a rebase.
Activate when: merge conflict, conflict resolution, git merge failed, rebase conflict, CONFLICT markers.
tsc, Next.js, LangGraph etc. Users and models match on theseKeywords are the easiest win. Think about what the user might literally type:
Bad:
Activate when: development, coding, software.
Too vague. Matches everything → matches nothing well.
Good:
Activate when: git merge failed, CONFLICT markers, resolve conflicts, rebase conflict, auto-merge failed.
Specific phrases, variants, error strings users actually see.
Include:
prompt caching, OAuth 2.1, RAG)null pointer, CORS error)@modelcontextprotocol/sdk, LangChain)deploy, debug, refactor)name: foo but directory is bar → skill may not load| — YAML parses as a single collapsed line, loses formatting---, unquoted colonsEvery CI run should parse your frontmatter:
# Quick check
find skills -name SKILL.md -exec sh -c \
'head -n 20 "$1" | grep -A 20 "^---$" > /dev/null || echo "BAD: $1"' _ {} \;
Or a proper script:
import matter from "gray-matter";
import { readFileSync } from "fs";
const { data } = matter(readFileSync(path, "utf-8"));
if (!data.name || !data.description) throw new Error(`Missing fields: ${path}`);
if (data.description.length < 50) console.warn(`Short description: ${path}`);
name: test-generator
description: Generates tests.
Too short. No activation signal. Model never picks it.
name: test-generator
description: Generate unit tests for JavaScript and TypeScript code.
Better, but still missing WHEN and keywords.
name: test-generator
description: |
Generate unit and integration tests for JavaScript/TypeScript code using Jest or Vitest.
Use this skill when the user asks for tests, has added untested code, or needs to improve coverage.
Activate when: write tests, add tests, test coverage, generate test cases, Jest, Vitest, missing tests.
---
Now the model has enough signal to activate confidently.