Initial release v1.0.0

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>
This commit is contained in:
airano
2026-02-12 06:08:51 +03:30
commit 97b427831a
227 changed files with 48411 additions and 0 deletions

45
packages/db/package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "@skillhub/db",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./schema": {
"types": "./dist/schema.d.ts",
"import": "./dist/schema.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts src/schema.ts --format esm --dts",
"dev": "tsup src/index.ts src/schema.ts --format esm --dts --watch",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"push": "drizzle-kit push",
"studio": "drizzle-kit studio",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"drizzle-orm": "^0.29.3",
"meilisearch": "^0.55.0",
"postgres": "^3.4.3"
},
"devDependencies": {
"@types/node": "^20.10.0",
"drizzle-kit": "^0.20.10",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
}
}