Open-source marketplace for AI Agent skills. Features: - Next.js 15 web app with i18n (en/fa) - CLI tool for skill installation (npx skillhub) - GitHub crawler/indexer with multi-strategy discovery - Security scanning for all indexed skills - Self-hostable with Docker Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"name": "skillhub",
|
|
"version": "0.2.4",
|
|
"description": "CLI tool for managing AI Agent skills - search, install, and update skills for Claude, Codex, Copilot, and more",
|
|
"author": "SkillHub Contributors",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/airano-ir/skillhub.git",
|
|
"directory": "apps/cli"
|
|
},
|
|
"homepage": "https://skills.palebluedot.live",
|
|
"type": "module",
|
|
"bin": {
|
|
"skillhub": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsx src/index.ts",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint src/",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest",
|
|
"test:run": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^20.0.2",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^11.1.0",
|
|
"fs-extra": "^11.2.0",
|
|
"ora": "^8.0.1",
|
|
"prompts": "^2.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"skillhub-core": "workspace:*",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/node": "^20.10.0",
|
|
"@types/prompts": "^2.4.9",
|
|
"tsup": "^8.0.1",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^1.2.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"agent",
|
|
"skills",
|
|
"cli",
|
|
"claude",
|
|
"codex",
|
|
"copilot",
|
|
"cursor",
|
|
"windsurf"
|
|
]
|
|
}
|