{"id":44510807,"url":"https://github.com/nextlevelbuilder/skillx","last_synced_at":"2026-02-16T17:02:01.895Z","repository":{"id":337968273,"uuid":"1154190512","full_name":"nextlevelbuilder/skillx","owner":"nextlevelbuilder","description":"SkillX.sh — The Only Skill That Your AI Agent Needs. AI agent skills marketplace with semantic search, leaderboard, ratings, and CLI.","archived":false,"fork":false,"pushed_at":"2026-02-13T09:59:53.000Z","size":2356,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-15T20:47:17.844Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://skillx.sh","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nextlevelbuilder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-10T05:29:10.000Z","updated_at":"2026-02-15T01:27:13.000Z","dependencies_parsed_at":"2026-02-14T15:00:53.477Z","dependency_job_id":null,"html_url":"https://github.com/nextlevelbuilder/skillx","commit_stats":null,"previous_names":["nextlevelbuilder/skillx"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/nextlevelbuilder/skillx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextlevelbuilder%2Fskillx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextlevelbuilder%2Fskillx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextlevelbuilder%2Fskillx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextlevelbuilder%2Fskillx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nextlevelbuilder","download_url":"https://codeload.github.com/nextlevelbuilder/skillx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextlevelbuilder%2Fskillx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29513427,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T09:05:14.864Z","status":"ssl_error","status_checked_at":"2026-02-16T08:55:59.364Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-13T14:34:32.930Z","updated_at":"2026-02-16T17:02:01.848Z","avatar_url":"https://github.com/nextlevelbuilder.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SkillX.sh\n\n**The Only Skill That Your AI Agent Needs.**\n\nSkillX is an AI agent skills marketplace — combining a web marketplace, CLI tool, and hybrid search engine to help agents discover and execute the best skills for their tasks.\n\n## Quick Start\n\n### Web Interface\n\n```bash\n# Install dependencies\npnpm install\n\n# Start development server\ncd apps/web \u0026\u0026 pnpm dev\n\n# Open http://localhost:5173\n# Test with: curl http://localhost:5173/api/admin/seed\n```\n\n### CLI Tool\n\n```bash\n# Install globally\nnpm install -g skillx-sh\n\n# Search for skills\nskillx search \"data processing\"\n\n# Use a skill\nskillx use skillx-search\n\n# Search and use in one command\nskillx use \"data processing\" --search\n\n# Report execution result\nskillx report --outcome success --duration 1234\n\n# Configure API key\nskillx config set SKILLX_API_KEY sk_prod_...\n```\n\n## What is SkillX?\n\nSkillX combines three components:\n\n### 1. Web Marketplace\n- Browse 500+ skills with ratings, reviews, usage stats\n- Leaderboard sorted by quality metrics\n- Add skills to favorites for personalized search\n- GitHub OAuth login (no passwords)\n\n### 2. Hybrid Search Engine\n- **Semantic search** via vector embeddings (bge-base-en-v1.5)\n- **Keyword search** via SQLite FTS5\n- **Ranking** using reciprocal rank fusion + boost scoring\n- Search latency: \u003c800ms p95\n\n### 3. CLI Tool (skillx)\n```bash\nskillx search \"email validation\"\nskillx use skillx-email\nskillx report --outcome success\nskillx config set/get KEY VALUE\n```\n\n### 4. Claude Code Plugin Marketplace\nDiscover and install skills directly in Claude Code:\n```bash\n/plugin marketplace add nextlevelbuilder/skillx\n/plugin install skill-creator@skillx-marketplace\n/plugin install skillx@skillx-marketplace\n```\n\n**Plugins:**\n- **skill-creator** (v3.0.0) — Create/update skills optimized for Skillmark benchmarks\n- **skillx** (v1.0.0) — Search and use skills from SkillX.sh marketplace\n\n## Architecture\n\n**Tech Stack:**\n- Frontend: React Router v7 + Tailwind v4 (dark theme, mint accent)\n- Backend: Cloudflare Workers + D1 (SQLite)\n- Search: Vectorize (embeddings) + FTS5 (keywords) + RRF fusion\n- Auth: Better Auth + GitHub OAuth\n- Storage: KV (cache), R2 (assets)\n- AI: Cloudflare Workers AI (bge-base-en-v1.5 embeddings)\n\n**Codebase:**\n```\nskillx/\n├── apps/web/              # React Router SSR app (~2,000 LOC)\n│   ├── routes/            # Pages (home, search, detail, settings) + APIs\n│   ├── components/        # UI components\n│   └── lib/               # DB, auth, search, vectorization\n├── packages/cli/          # skillx npm package (~400 LOC)\n├── .claude-plugin/        # Claude Code plugin marketplace\n│   └── marketplace.json   # Marketplace catalog + plugin manifests\n├── .claude/skills/        # Claude Code skills\n│   ├── skill-creator/     # Skill creation tool (v3.0.0)\n│   └── skillx/            # SkillX marketplace CLI skill (v1.0.0)\n├── scripts/               # Seed data (30 real skills)\n└── docs/                  # Documentation\n```\n\n## Features\n\n**User-Facing:**\n- Semantic + keyword search with instant results\n- Rate skills (0-10) and write reviews\n- Favorites for personalized recommendations\n- Leaderboard with sorting \u0026 filtering\n- API key management for CLI access\n- User profiles with usage stats\n\n**Admin:**\n- Seed endpoint for demo data\n- Usage analytics \u0026 reporting\n- Skill indexing \u0026 vectorization\n- Analytics dashboard\n\n**Developer:**\n- REST API with session + API key auth\n- CLI for programmatic access\n- Flexible search filters (category, price, rating)\n- Pagination (limit, offset)\n\n## Deployment\n\n### Development\n```bash\ncd apps/web\npnpm dev                    # Local with D1 SQLite\n```\n\n### Production (Cloudflare)\n```bash\n# Setup Cloudflare account, create bindings, set secrets\nwrangler d1 create skillx-db\nwrangler kv:namespace create skillx-cache\nwrangler vectorize create skillx-skills\n\n# Deploy\ncd apps/web\npnpm build\nwrangler deploy --env production\n\n# Seed production data\ncurl https://skillx.sh/api/admin/seed\n```\n\n**See [deployment-guide.md](./docs/deployment-guide.md) for detailed instructions.**\n\n## Documentation\n\n| Doc | Purpose |\n|-----|---------|\n| [project-overview-pdr.md](./docs/project-overview-pdr.md) | Product requirements, features, business model |\n| [codebase-summary.md](./docs/codebase-summary.md) | Directory structure, modules, data flow |\n| [code-standards.md](./docs/code-standards.md) | Coding patterns, conventions, best practices |\n| [system-architecture.md](./docs/system-architecture.md) | Architecture diagrams, API contracts, security |\n| [project-roadmap.md](./docs/project-roadmap.md) | Phases, milestones, timelines |\n| [deployment-guide.md](./docs/deployment-guide.md) | Setup, deployment, troubleshooting |\n| [design-guidelines.md](./docs/design-guidelines.md) | UI/UX design system (dark theme, mint) |\n\n## API Endpoints\n\n**Search (public):**\n```\nPOST /api/search\n{ query, category?, is_paid?, limit?, offset? }\nReturns: { results: [Skill], count }\n```\n\n**Skill Details (public):**\n```\nGET /api/skills/:slug\nReturns: { skill, ratings: [], reviews: [] }\n```\n\n**Auth-Protected (session or API key):**\n```\nPOST /api/skills/:slug/rate { score }           # Rate 0-10\nPOST /api/skills/:slug/review { content }       # Write review\nPOST /api/skills/:slug/favorite                 # Add favorite\nDELETE /api/skills/:slug/favorite               # Remove favorite\nPOST /api/report { outcome, duration_ms }       # Report usage\n```\n\n**User APIs (session only):**\n```\nGET /api/user/api-keys                          # List keys\nPOST /api/user/api-keys { name }                # Create key\nDELETE /api/user/api-keys/:id                   # Revoke key\n```\n\n## Development\n\n### Prerequisites\n- Node.js \u003e=18\n- pnpm\n- Cloudflare account\n\n### Commands\n```bash\npnpm install                # Install dependencies\npnpm dev                    # Start dev server (apps/web)\npnpm test                   # Run tests\npnpm build                  # Build for production\npnpm lint                   # Check linting\n```\n\n### Running Tests\n```bash\n# Unit tests\npnpm test\n\n# Type checking\npnpm tsc --noEmit\n\n# Linting\npnpm lint\n```\n\n## Project Status\n\n**Phase 1 (Complete):** MVP with web marketplace, CLI, hybrid search, auth, ratings/reviews, API keys\n\n**Phase 2 (Next):** Payment integration (Stripe), production hardening, GitHub OAuth setup\n\n**Phase 3 (Future):** MCP server mode, skill execution sandbox, Skillmark integration\n\nSee [project-roadmap.md](./docs/project-roadmap.md) for details.\n\n## Performance Metrics\n\n| Metric | Target |\n|--------|--------|\n| Search latency (p95) | \u003c800ms |\n| Leaderboard load | \u003c500ms |\n| Page FCP | \u003c2s |\n| Uptime | 99.9% |\n\n## Security\n\n- API keys hashed (SHA-256)\n- Session cookies (httpOnly, secure, sameSite)\n- SQL injection prevention (Drizzle ORM)\n- CORS enabled for trusted origins\n- Rate limiting (100 req/min per IP)\n- HTTPS enforced (Cloudflare TLS 1.3)\n\n## License\n\nMIT\n\n## Contributing\n\n1. Read [code-standards.md](./docs/code-standards.md)\n2. Create feature branch\n3. Test locally: `pnpm test \u0026\u0026 pnpm lint`\n4. Submit PR with description\n\n---\n\n**Learn more:** [docs/](./docs/) directory","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextlevelbuilder%2Fskillx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnextlevelbuilder%2Fskillx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextlevelbuilder%2Fskillx/lists"}