validate-skill
Original:🇺🇸 English
Translated
Validate skill directories against AgentSkills spec
4installs
Added on
NPX Install
npx skill4agent add plaited/development-skills validate-skillTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Validate Skill
Purpose
This skill validates skill directories against the AgentSkills specification. Use it to ensure your skills have proper frontmatter, required fields, and follow naming conventions.
Use when:
- Creating new skills in any agent's skills directory (,
.claude/skills/, etc.).cursor/skills/ - Reviewing PRs that modify skills
- Validating skill structure before publishing
Scripts
validate-skill.ts
Validate one or more skill directories.
bash
bunx @plaited/development-skills validate-skill [paths...]Arguments:
- : Paths to validate (defaults to current agent's skills directory)
paths
Options:
- : Output results as JSON
--json
Examples:
bash
# Validate skills in current directory's .claude/skills/
bunx @plaited/development-skills validate-skill .claude/skills
# Validate Cursor skills
bunx @plaited/development-skills validate-skill .cursor/skills
# Validate a specific skill
bunx @plaited/development-skills validate-skill .claude/skills/typescript-lsp
# Validate multiple paths with JSON output
bunx @plaited/development-skills validate-skill .claude/skills .cursor/skills --jsonValidation Rules
Required Fields
- : Skill name (lowercase, alphanumeric with hyphens)
name - : Brief description of the skill
description
Naming Conventions
- Name must be lowercase
- Only alphanumeric characters and hyphens allowed
- Cannot start or end with hyphen
- Cannot contain consecutive hyphens
- Maximum 64 characters
- Directory name must match skill name
Optional Fields
- : License identifier
license - : Runtime requirements
compatibility - : Comma-separated list of allowed tools
allowed-tools - : Key-value pairs for additional metadata
metadata
Output Format
Human-Readable (default)
✓ .claude/skills/typescript-lsp
✓ .cursor/skills/my-skill
✗ .claude/skills/invalid-skill
ERROR: Missing required field in frontmatter: 'description'
2/3 skills validJSON (--json)
json
[
{
"valid": true,
"path": ".cursor/skills/my-skill",
"errors": [],
"warnings": [],
"properties": {
"name": "my-skill",
"description": "..."
}
}
]Related Skills
- typescript-lsp - Example of a well-structured skill with scripts
- code-documentation - TSDoc standards for TypeScript/JavaScript code