{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Skill Frontmatter", "description": "Frontmatter schema for SKILL.md files in chrisbanes/skills", "type": "object", "properties": { "name": { "type": "string", "description": "Skill name, must match the directory name (kebab-case)", "pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$" }, "description": { "type": "string", "description": "When this skill should be used", "minLength": 1 } }, "required": ["name", "description"], "additionalProperties": false }