microsoft/hve-core
Publicmirrored from https://github.com/microsoft/hve-coreAvailable
scripts/linting/schemas/skill-frontmatter.schema.json
22lines · modecode
| 1 | { |
| 2 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | "$id": "https://github.com/microsoft/hve-core/schemas/skill-frontmatter.schema.json", |
| 4 | "title": "Skill File Frontmatter Schema", |
| 5 | "description": "Frontmatter schema for SKILL.md files in skill directories", |
| 6 | "type": "object", |
| 7 | "required": ["name", "description"], |
| 8 | "properties": { |
| 9 | "name": { |
| 10 | "type": "string", |
| 11 | "pattern": "^[a-z][a-z0-9-]*$", |
| 12 | "minLength": 1, |
| 13 | "description": "Unique identifier for the skill, must match the directory name in lowercase kebab-case" |
| 14 | }, |
| 15 | "description": { |
| 16 | "type": "string", |
| 17 | "minLength": 1, |
| 18 | "description": "Brief description of the skill" |
| 19 | } |
| 20 | }, |
| 21 | "additionalProperties": false |
| 22 | } |
| 23 | |