require-skill-md-filename
Require markdown files that declare skill-definition frontmatter to use the documented SKILL.md filename.
Rule catalog ID: R055
Targeted pattern scopeâ
.github/skills/**/*.md.claude/skills/**/*.md
What this rule reportsâ
- markdown files inside skill directories that look like skill definitions but are not named
SKILL.md
Why this rule existsâ
Supplementary Markdown files are allowed inside a skill directory, but the actual skill definition file has a special documented filename. Enforcing that distinction keeps discovery predictable while still allowing supporting docs next to the skill.
â Incorrectâ
.github/skills/review/README.md
with frontmatter such as:
---
name: review
description: Review code changes.
---
â Correctâ
.github/skills/review/SKILL.md