Initial commit

CLI tool to validate skill.md files against the agent skill specification.
Supports local files and remote URLs, with human-readable and JSON output.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ethan Beard
2026-02-02 15:27:07 -08:00
commit 67af4e2125
13 changed files with 920 additions and 0 deletions

45
package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "skill-md-validator",
"version": "1.0.0",
"description": "Validate skill.md files against the agent skill specification",
"main": "dist/index.js",
"bin": {
"skill-validate": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"skill",
"markdown",
"validator",
"agent",
"ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"gray-matter": "^4.0.3",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/semver": "^7.5.8",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/severith/skill-md-validator.git"
},
"homepage": "https://github.com/severith/skill-md-validator"
}