Files
Brian Borghei bb2687d2fa fix(cli): rename package to @borghei/claude-skills
The unscoped name claude-skills was squatted in Dec 2025 by another
publisher. Pivoting to the @borghei scope which is available and
owned by our npm account.

Users now install via npx @borghei/claude-skills add <skill>, or
npm i -g @borghei/claude-skills for the bare claude-skills binary.
2026-04-19 15:05:58 +02:00

52 lines
1.1 KiB
JSON

{
"name": "@borghei/claude-skills",
"version": "0.1.0",
"description": "Install any skill from the Claude Skills library into your AI assistant in one command.",
"publishConfig": {
"access": "public"
},
"keywords": [
"claude",
"claude-skills",
"claude-code",
"cursor",
"ai-skills",
"ai-agents",
"mcp",
"llm"
],
"homepage": "https://github.com/borghei/Claude-Skills",
"bugs": "https://github.com/borghei/Claude-Skills/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/borghei/Claude-Skills.git",
"directory": "cli"
},
"license": "SEE LICENSE IN ../LICENSE",
"author": "Brian Borghei",
"type": "module",
"bin": {
"claude-skills": "./bin/claude-skills.js"
},
"main": "./src/index.js",
"files": [
"bin",
"src",
"templates",
"skills.json",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node ./bin/claude-skills.js",
"build-manifest": "cd .. && python3 scripts/build_manifest.py",
"test": "node --test test/*.test.js"
},
"dependencies": {
"commander": "^12.1.0",
"kleur": "^4.1.5"
}
}