jorgealves/agent_skills

skill-validator

Validates agent skill definitions against agentskills.io and AGENTS.md rules. Use when creating or modifying skills to ensure they are machine-readable and documentation-complete.

First seen Jan 30, 2026

Installation

$ npx skills add jorgealves/agent_skills --skill skill-validator

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from jorgealves/agent_skills · top by installs.

npx skills add jorgealves/agent_skills

Browse all from jorgealves/agent_skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License license-compliance-auditor
Default branch main
Open issues 1
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,638 B
  • docs SUMMARY.md 202 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 209 installs

SKILL.md

Skill Validator

Purpose and Intent

The skill-validator is the primary quality control tool for this repository. It ensures that every AI Agent Skill is "machine-consumable" by validating it against the agentskills.io standard and the repository's AGENTS.md rules.

When to Use

  • During Development: Run this skill every time you create or modify a skill.
  • CI/CD Integration: Automatically block Pull Requests that contain non-compliant skill definitions.
  • Repository Audits: Periodically scan the entire agent-skills/ directory to ensure long-term compliance as specifications evolve.

When NOT to Use

  • Code Logic Validation: This tool does not "run" the skills or verify their internal logic; it only validates the "contract" (the YAML and Markdown).

Error Conditions and Edge Cases

  • Invalid YAML: If skill.yaml cannot be parsed, the validator will fail immediately with a syntax error.
  • Missing Required Fields: Any missing field defined in the agentskills.io specification will result in is_valid: false.
  • Empty Directories: Folders in agent-skills/ that do not contain a skill.yaml will be flagged as invalid skills.

Security and Data-Handling Considerations

  • ReadOnly Access: The skill only requires read permissions for the target directory.
  • No External Calls: Validation is performed locally using the embedded schema rules.