Skill validator
A collection of Claude skills.
npx -y skills add Fyzel/claude-skills --skill skill-validatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Validate Claude Code skill files (SKILL.md) against Anthropic's structural requirements. Use this skill whenever the user asks to validate, lint, check, or verify a skill file or skill structure. Triggers on "validate skill", "lint skill", "check skill", "verify SKILL.md", "does my skill meet requirements", or any request to confirm a skill is correctly structured before publishing or importing.
SKILL.md
1.8 KB, as published. Nobody here has run it
Skill Validator
Validates SKILL.md files in the skills/ directory against Anthropic's requirements using skills/skill-validator/scripts/validate-skills.py.
What it checks
namefield present and matches the skill's directory namedescriptionfield present- No XML tags (
<...>) indescription— Claude Code rejects these on load - Combined
description+when_to_uselength ≤ 1,536 characters - Frontmatter parsed via PyYAML (handles block scalars correctly)
- Packaging simulation writes
skills/<name>/.test/<name>.skilland reports archive size
Run
Validate all skills:
# Windows
.venv/Scripts/python skills/skill-validator/scripts/validate-skills.py
# Linux / macOS
.venv/bin/python skills/skill-validator/scripts/validate-skills.py
Validate one skill by name:
# Windows
.venv/Scripts/python skills/skill-validator/scripts/validate-skills.py <skill-name>
# Linux / macOS
.venv/bin/python skills/skill-validator/scripts/validate-skills.py <skill-name>
Skip packaging simulation:
# Windows
.venv/Scripts/python skills/skill-validator/scripts/validate-skills.py --no-package
# Linux / macOS
.venv/bin/python skills/skill-validator/scripts/validate-skills.py --no-package
Exit code 0 = all pass. Exit code 1 = one or more failures.
Setup
Requires Python in .venv:
python -m venv .venv
pip install -r requirements.txt