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>
46 lines
962 B
JSON
46 lines
962 B
JSON
{
|
|
"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"
|
|
}
|