skillhub/skillhub-cli/package.json
chenbaowang 6c0d4f4f16 feat(skillhub-cli): add skillhub CLI with interactive multi-agent support
- Interactive agent selection for install/uninstall/list
- Namespace search selection for unspecified namespace
- --skill-version option to skip interactive selection
- --from option for local/github source installation
- Remove deprecated add command (use install --from instead)
- Path-based grouping for uninstall results
2026-04-14 10:21:09 +08:00

35 lines
811 B
JSON

{
"name": "@motovis/skillhub",
"version": "1.0.0",
"type": "module",
"description": "SkillHub CLI - 企业级 Agent Skill 管理工具,支持命名空间",
"bin": {
"skillhub": "dist/cli.mjs"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"chalk": "^5.3.0",
"commander": "^14.0.3",
"ora": "^9.3.0",
"picocolors": "^1.1.1",
"semver": "^7.7.4",
"undici": "^7.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/semver": "^7.5.8",
"typescript": "^5.6.0",
"unbuild": "^3.0.0",
"vitest": "^3.0.0"
}
}