Files
skillhub/apps/cli/package.json
airano 3e22d2e238 sync: AI review scores, reviewed page, search improvements, score filter
- Surface AI review scores across skill pages, browse, and search
- Add dedicated /reviewed page with score filtering
- Add recommended sort using Meilisearch relevance + AI scores
- Fix search sort defaulting to stars instead of recommended
- Fix CLI TypeScript null check for aiScore in search command
- Adjust cache TTL for reviewed content

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-14 05:05:37 +03:30

62 lines
1.3 KiB
JSON

{
"name": "skillhub",
"version": "0.2.9",
"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"
]
}