mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-15 23:31:10 +00:00
- 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
35 lines
811 B
JSON
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"
|
|
}
|
|
}
|