require-existing-relative-skill-links
Require relative Markdown links in Copilot skill definition files to resolve to existing workspace resources.
Rule catalog ID: R053
Targeted pattern scopeâ
.github/skills/**/SKILL.md.claude/skills/**/SKILL.md
What this rule reportsâ
- relative skill links whose resolved workspace target does not exist
Why this rule existsâ
Skills often depend on linked guides, examples, and scripts stored alongside the definition. Broken relative links make the skill incomplete even though its frontmatter and body appear structurally valid.
â Incorrectâ
---
name: review
description: Review code changes.
---
See [guide](guide.md).
when guide.md does not exist next to the skill definition.
â Correctâ
---
name: review
description: Review code changes.
---
See [guide](reference/guide.md).