Agent_skills skill-validator
name: skill-validator
install
source · Clone the upstream repo
git clone https://github.com/jorgealves/agent_skills
manifest:
skill-validator/skill.yamlsource content
name: skill-validator version: 1.0.0 description: 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. inputs: skill_directory: type: string description: Path to the skill folder. required: true check_examples: type: boolean default: true outputs: validation_results: type: object properties: is_valid: type: boolean errors: type: array capabilities:
- Schema validation for skill.yaml.
- Documentation check for README.md.
- Semantic consistency verification. constraints:
- Metadata validation only; no logic execution. security:
- Reads metadata only; safe for CI/CD. examples:
- input: skill_directory: "./agent-skills/secret-leak-detector" output: validation_results: is_valid: true errors: []