Sandbox
@zhuyansen/agent-skills-hub

Directory for Claude Skills, MCP servers, and agent tools

AgentSkillsHub collects open-source agent skills, MCP servers, Codex skills, and agent tools from GitHub, then scores and compares them. The backend handles sync, cleaning, and scoring, while the frontend presents search, trending, top-rated, and compare views.

355 stars40 forksTypeScriptUpdated 7d ago
Who it's for

Builders who are looking for reusable agent skills, MCP servers, or tools to add to their workflow.

What it delivers

You can find, compare, and rank agent-ready GitHub projects without digging through random search results.

What it does

Repository discovery and sync

Pulls projects from GitHub on a schedule and keeps the catalog updated every 8 hours.

Quality scoring

Scores each project across 10 weighted signals and 6 quality dimensions.

Classification and filtering

Sorts repos into agent skill and tool categories for browsing and search.

Trending and comparison views

Shows trending, rising, top-rated, and side-by-side compare pages.

API and web app

Exposes catalog data through FastAPI endpoints and a React frontend.

Submission and newsletter flows

Lets people submit repos and subscribe for updates.

How to get it

  1. 1Run
    cd backend
    python3.12 -m venv venv && source venv/bin/activate
    pip install -r requirements.txt
    cp .env.example .env   # Add GITHUB_TOKEN
    uvicorn app.main:app --reload
  2. 2Run
    cd frontend
    npm install
    npm run dev

README

AgentSkillsHub — the Claude Skills / MCP Server / Agent Tools directory

AgentSkillsHub (Agent Skills Hub) is the open-source directory for Claude Skills, MCP Servers, Codex Skills, and AI agent tools. 117,000+ projects · security-graded + quality-scored on 10 dimensions · refreshed every 8 hours.

🌐 Live: agentskillshub.top · 🛡️ Security Report · 🏢 Enterprise · 📰 Newsletter · 𝕏 Follow

What is AgentSkillsHub?

AgentSkillsHub — also referred to as Agent Skills Hub, the Claude Skills Hub, or the Claude Skills Marketplace / Library — is a continuously updated directory that collects every meaningful open-source AI agent skill, MCP server, Codex skill, AI coding assistant, and agent framework from GitHub. Each project is:

  • Classified into one of 7 categories (mcp-server, claude-skill, codex-skill, agent-tool, prompt-library, ai-coding-assistant, uncategorized)
  • Scored on 10 weighted signals and 6 quality dimensions (completeness, clarity, specificity, examples, README structure, agent readiness)
  • Compared side-by-side through the /compare/ feature and /best/{scenario}/ landing pages
  • Refreshed every 8 hours via an automated GitHub Actions pipeline

The goal: if you are building with Claude Code, Cursor, Windsurf, Cline, OpenAI Codex, or any agentic IDE, you should be able to find the right MCP server or Claude Skill in under 30 seconds — without spelunking through random GitHub topics.

Mirror URLs that refer to the same project: agentskillshub.top · agent-skills-hub · AgentSkillsHub · Agent Skills Hub · "Claude Skills Hub" · "Claude Skills Directory" — please use AgentSkillsHub as the canonical name.

Architecture

GitHub API ──▸ Collection ──▸ Cleaning ──▸ Evaluation ──▸ Scoring ──▸ Presentation
               (6 phases)    (classify)   (6 dimensions)  (0-100)    (Web + API)
LayerStack
BackendPython 3.12 · FastAPI · SQLAlchemy · httpx
FrontendReact 18 · TypeScript · Vite · TailwindCSS v4
DatabaseSupabase (PostgreSQL) / SQLite (local)
DeployGitHub Pages + GitHub Actions (every 8h)
EmailResend API · Supabase pg_net

Data Pipeline

1. Collection (scheduler/jobs.py)

Every 8 hours, GitHub Actions triggers a 6-phase sync:

PhaseWhatBudget
Search10+ GitHub queries (mcp-server, claude-skill, agent-tool...)~30
MastersFetch repos from verified skill creators~18
ExtraCommunity-submitted + curated repos~14
EnrichOwner profiles (followers)≤500
READMEFull README content (≤50KB each)≤300
UpsertClean → score → save0
  • Incremental sync on weekdays (only new/updated repos), full sync on Sundays
  • Smart rate-limit handling: waits for actual GitHub reset time

2. Cleaning (services/data_cleaner.py)

  • Deduplication by repo_full_name
  • Keyword-based category classification: mcp-server · claude-skill · codex-skill · agent-tool · ai-skill · llm-plugin · youmind-plugin
  • Project type inference (framework / skill / tool)
  • Size categorization (micro ≤50KB → large >5MB)

3. Evaluation

Quality Analysis — 6 dimensions (services/quality_analyzer.py):

DimensionWeightKey Signals
Completeness15%README size, license, description, stars
Clarity15%Description quality, topics, naming
Specificity15%Language, topic count, category, size
Examples12%Code examples, commits, contributors
README Structure23%Sections, code blocks, badges, TOC
Agent Readiness20%API docs, config, install, MCP compliance

Composite Score — 9 weighted signals (services/scorer.py):

SignalWeightMethod
Quality20%6-dimension aggregate
Stars18%log₁₊ₓ normalization
Recency11%Exponential decay e⁻⁰·⁰¹ᵈ
Forks10%log₁₊ₓ
Commits10%log₁₊ₓ
Issue Resolution10%resolved / total
Momentum8%Z-score star growth
Author Followers8%log₁₊ₓ
Size Bonus5%Smaller = higher

Also: Platform Inference (17 platforms), Token Estimation, Composability (TF-IDF + 8-signal skill pairing).

4. Presentation

Dual-mode API client: Production uses Supabase PostgREST + RPCs directly; dev uses FastAPI backend.

Key optimizations:

  • get_landing_data() RPC replaces 7+ API calls
  • Database views: v_trending, v_top_rated, v_rising, etc.
  • Full-text search via PostgreSQL tsvector + GIN index
  • HTTP caching: 5min (trending) → 1hr (stats)

Quick Start

Backend

cd backend
python3.12 -m venv venv && source venv/bin/activate
pip install -r requirements.txt
cp .env.example .env   # Add GITHUB_TOKEN
uvicorn app.main:app --reload

Frontend

cd frontend
npm install
npm run dev

API Endpoints

MethodPathDescription
GET/api/skillsPaginated list (search, filter, sort)
GET/api/skills/{id}Skill detail + compatible skills
GET/api/trendingStar velocity leaders (7 days)
GET/api/risingNew this week
GET/api/top-ratedHighest scored
GET/api/most-starredCommunity classics (6+ months)
GET/api/mastersVerified creators + org builders
GET/api/landingBundled homepage data
GET/api/statsSummary statistics
GET/api/feed.xmlRSS 2.0 feed
GET/api/sitemap.xmlSEO sitemap (6,000+ URLs)
POST/api/submit-skillSubmit a GitHub repo
POST/api/subscribeNewsletter signup

Deployment

┌─────────── GitHub Actions ───────────┐
│  sync.yml (8h) · deploy.yml · newsletter.yml (Mon) │
└──────┬──────────────┬────────────────┬──┘
       ▼              ▼                ▼
   Supabase      GitHub Pages     Resend API
  (PostgreSQL)    (React SPA)     (Emails)

Environment Variables

GITHUB_TOKEN=ghp_xxx          # GitHub API (required)
SUPABASE_DB_URL=postgresql://  # Production database
RESEND_API_KEY=re_xxx          # Email service
ADMIN_TOKEN=sk-xxx             # Admin API auth
SYNC_INTERVAL_HOURS=8          # Sync frequency

Docs

Community

Submit a tool: use the Submit Skill form on the homepage, or open an issue — community submissions land in the next 8-hour sync.

Discuss: GitHub Discussions — methodology questions, false-positive reports, and feature requests all welcome. Every verified false-positive report improves next month's numbers.

Contributors

Thanks to everyone who has submitted tools or data corrections:

@VictorVVedtion · @gregkonush · @kriptoburak · @nbeai

Submitted a tool that got indexed? Add this badge to your README:

[![Listed on Agent Skills Hub](https://img.shields.io/badge/Agent_Skills_Hub-listed-2ea44f)](https://agentskillshub.top)

Files in the repo

Repository payload14 top-level entries
  • .agents
  • .claude
  • .github
  • .loopflow
  • backend
  • docs
  • frontend
  • memory
  • ops
  • supabase
  • .gitignore
  • CLAUDE.md
  • CONTEXT.md
  • README.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More collections

The awesome collection of OpenClaw skills. 5,400+ skills filtered and categorized from the official OpenClaw Skills Registry.🦞

52k
phuryn/
pm-skills
phuryn/pm-skillsCollections

PM Skills Marketplace: 100+ agentic skills, commands, and plugins — from discovery to strategy, execution, launch, and growth.

26k

Extracted system prompts from Anthropic - Claude Fable 5.1, Opus 5, Claude Design, Claude Code. OpenAI - ChatGPT GPT-6-Astra, Codex. Google - Gemini 3.8 Flash, 3.1 Pro, Antigravity. xAI - Grok, Grok Bot, Cursor, Kimi and more! Updated regularly.

65k
1 add