agent-skills-hub

by zhuyansenVerified

Discover and compare open-source Agent Skills, tools & MCP servers — with quality scoring, trending analysis, and automated GitHub sync

324
Stars
37
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/zhuyansen/agent-skills-hub

Getting Started

Guides for using skills like agent-skills-hub.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

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)

Frequently Asked Questions

What is agent-skills-hub?

agent-skills-hub is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by zhuyansen. Discover and compare open-source Agent Skills, tools & MCP servers — with quality scoring, trending analysis, and automated GitHub sync. It has 324 GitHub stars.

Is agent-skills-hub safe to use?

Yes. agent-skills-hub passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install agent-skills-hub?

Clone the repository with "git clone https://github.com/zhuyansen/agent-skills-hub" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is agent-skills-hub written in?

agent-skills-hub is primarily written in TypeScript. It is open-source under zhuyansen on GitHub, so you can review or fork the full source.

Are there alternatives to agent-skills-hub?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agent-skills-hub against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details