mirror of
https://github.com/borghei/Claude-Skills.git
synced 2026-09-14 19:41:02 +08:00
bb2687d2fa
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.
52 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|