agentsclimarketplace

Skill validator

Skill Fyzel/claude-skills/skills/skill-validator

A collection of Claude skills.

Install
npx -y skills add Fyzel/claude-skills --skill skill-validator

Assembled 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

  • name field present and matches the skill's directory name
  • description field present
  • No XML tags (<...>) in description — Claude Code rejects these on load
  • Combined description + when_to_use length ≤ 1,536 characters
  • Frontmatter parsed via PyYAML (handles block scalars correctly)
  • Packaging simulation writes skills/<name>/.test/<name>.skill and 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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.