require-valid-skill-license
Require optional Copilot skill license metadata to be a non-empty scalar when present.
Rule catalog ID: R051
Targeted pattern scopeâ
.github/skills/**/SKILL.md.claude/skills/**/SKILL.md
What this rule reportsâ
- blank
licensevalues - malformed non-scalar
licensevalues in supported frontmatter
Why this rule existsâ
Some skills include explicit license metadata for reuse and sharing. If that field is present, it should contain a meaningful value rather than an empty placeholder.
â Incorrectâ
---
name: review
description: Review code changes.
license:
---
Review code carefully.
â Correctâ
---
name: review
description: Review code changes.
license: MIT
---
Review code carefully.