io.github.shadowrootdev/awesome-agent-skills

AI 与智能体

by shadowrootdev

提供包含 100+ AI agent skills 的 MCP 服务器,整合 Anthropic、Vercel、Trail of Bits、Hugging Face 等资源。

什么是 io.github.shadowrootdev/awesome-agent-skills

提供包含 100+ AI agent skills 的 MCP 服务器,整合 Anthropic、Vercel、Trail of Bits、Hugging Face 等资源。

README

Awesome Agent Skills MCP Server

CI Security Audit CodeQL npm version npm downloads License: MIT Node.js Version MCP Compatible GitHub release GitHub stars

A Model Context Protocol (MCP) server that provides access to 100+ curated AI agent skills from the VoltAgent Awesome Agent Skills collection.

Transform your AI assistants into specialized experts with skills from Anthropic, Vercel, Trail of Bits, Hugging Face, Stripe, Expo, and many more leading organizations.

🚀 Quick Start

bash
npx awesome-agent-skills-mcp

That's it! Add to your MCP client config and start using 100+ AI skills.


Table of Contents


Features

  • 100+ Curated Skills - Access skills from top organizations including Anthropic, Vercel, Trail of Bits, Hugging Face, and more
  • Auto-Sync - Automatically fetches and updates skills from the VoltAgent repository
  • MCP 2024-11-05 Compliant - Full compatibility with the latest Model Context Protocol specification
  • Multi-Client Support - Works with Claude, GitHub Copilot, OpenCode, and any MCP-compatible client
  • Smart Caching - Efficient JSON-based caching for fast startup times
  • Type-Safe - Built with TypeScript and Zod for runtime validation
  • Zero Configuration - Works out of the box with sensible defaults

Quick Start

Using npx (Recommended)

bash
npx awesome-agent-skills-mcp

Global Installation

bash
npm install -g awesome-agent-skills-mcp
awesome-agent-skills-mcp

Installation

Prerequisites

  • Node.js >= 20.0.0
  • npm or yarn

From npm

bash
npm install awesome-agent-skills-mcp

From Source

bash
git clone https://github.com/shadowrootdev/awesome-agent-skills-mcp.git
cd awesome-agent-skills-mcp
npm install
npm run build

Configuration

VS Code / GitHub Copilot

Create or update .vscode/mcp.json in your project:

json
{
  "servers": {
    "awesome-agent-skills": {
      "command": "npx",
      "args": ["awesome-agent-skills-mcp"]
    }
  }
}

Or with a local installation:

json
{
  "servers": {
    "awesome-agent-skills": {
      "command": "node",
      "args": ["/path/to/awesome-agent-skills-mcp/dist/index.js"]
    }
  }
}

Important: After adding the configuration, fully quit VS Code (Cmd+Q / Alt+F4) and reopen it for changes to take effect.

Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

json
{
  "mcpServers": {
    "awesome-agent-skills": {
      "command": "npx",
      "args": ["awesome-agent-skills-mcp"]
    }
  }
}

OpenCode

Add to ~/.config/opencode/opencode.json:

json
{
  "mcp": {
    "awesome-agent-skills": {
      "type": "local",
      "command": ["npx", "awesome-agent-skills-mcp"],
      "enabled": true
    }
  }
}

Environment Variables

VariableDefaultDescription
SKILLS_REPO_URLhttps://github.com/VoltAgent/awesome-agent-skills.gitSkills repository URL
SKILLS_CACHE_DIR.cacheCache directory path
SKILLS_SYNC_INTERVAL60Auto-sync interval in minutes (0 to disable)
LOG_LEVELinfoLogging level (debug, info, warn, error)

Available Skills

The server provides access to 100+ skills from leading organizations:

Anthropic

Document processing, presentation creation, spreadsheet manipulation, PDF handling, algorithmic art, MCP building, and more.

SkillDescription
docxCreate, edit, and analyze Word documents
pptxPowerPoint presentation creation and editing
xlsxSpreadsheet manipulation with formulas
pdfPDF processing and form filling
mcp-builderGuide for creating MCP servers
webapp-testingPlaywright-based web app testing

Vercel

React and Next.js best practices, deployment, and performance optimization.

SkillDescription
react-best-practicesReact performance optimization guidelines
next-best-practicesNext.js conventions and patterns
web-design-guidelinesUI/UX compliance review
vercel-deployDeploy apps to Vercel

Trail of Bits

Security analysis, smart contract auditing, and code review tools.

SkillDescription
building-secure-contractsSmart contract security toolkit
semgrep-rule-creatorCreate custom Semgrep rules
property-based-testingProperty-based testing guidance
static-analysisStatic analysis tooling

Hugging Face

ML model training, dataset management, and Hub operations.

SkillDescription
hugging-face-cliHF Hub CLI operations
hugging-face-datasetsDataset creation and management
hugging-face-model-trainerModel fine-tuning with TRL
hugging-face-evaluationModel evaluation workflows

Sentry

Code review, commit conventions, and PR automation.

SkillDescription
code-reviewSentry engineering code review practices
commitConventional commit messages
create-prPR creation following Sentry conventions
find-bugsBug and vulnerability detection

And Many More...

  • Stripe - Payment integration best practices
  • Expo - React Native app development
  • n8n - Workflow automation patterns
  • Sanity - CMS best practices
  • Neon - Serverless Postgres
  • Remotion - Programmatic video creation

MCP Tools

The server exposes four MCP tools:

list_skills

List all available skills with optional filtering.

typescript
// List all skills
{ }

// Filter by source
{ "source": "repository" }

// Filter by tag
{ "tag": "security" }

get_skill

Get detailed information about a specific skill.

typescript
{ "skill_id": "react-best-practices" }

invoke_skill

Invoke a skill with optional parameters.

typescript
{
  "skill_id": "docx",
  "parameters": {
    "document_type": "report"
  }
}

refresh_skills

Manually trigger a skills refresh from the repository.

typescript
{ }

Usage Examples

In GitHub Copilot Chat

code
@workspace Use the react-best-practices skill to review my React components
code
@workspace List all available security-related skills
code
@workspace Get the stripe-best-practices skill and apply it to my checkout code

In Claude

code
What skills are available for Next.js development?
code
Use the code-review skill to analyze my pull request

Development

Setup

bash
git clone https://github.com/shadowrootdev/awesome-agent-skills-mcp.git
cd awesome-agent-skills-mcp
npm install

Build

bash
npm run build

Run Tests

bash
# Run all tests
npm test

# Run tests in watch mode
npm run test:watch

# Run integration tests only
npm run test:integration

Lint & Format

bash
npm run lint
npm run format

Project Structure

code
awesome-agent-skills-mcp/
├── src/
│   ├── index.ts              # Entry point
│   ├── server.ts             # MCP server implementation
│   ├── config.ts             # Configuration management
│   ├── models/
│   │   ├── skill.ts          # Skill type definitions
│   │   ├── parameter.ts      # Parameter schemas
│   │   ├── registry.ts       # SkillRegistry class
│   │   └── repository.ts     # Repository source model
│   ├── services/
│   │   ├── git-sync.ts       # Git repository sync
│   │   ├── skill-parser.ts   # Skill parsing from README
│   │   └── skill-executor.ts # Skill invocation
│   ├── cache/
│   │   └── cache-manager.ts  # JSON-based caching
│   └── utils/
│       └── logger.ts         # Structured logging
├── tests/
│   ├── unit/                 # Unit tests
│   └── integration/          # Integration tests
├── dist/                     # Compiled output
└── .cache/                   # Runtime cache (gitignored)

API Reference

Skill Object

typescript
interface Skill {
  id: string;           // Unique identifier
  name: string;         // Display name
  description: string;  // Short description
  source: 'repository' | 'local';
  sourcePath: string;   // GitHub URL or local path
  content: string;      // Full skill content (markdown)
  parameters: ParameterSchema[];
  metadata: {
    author?: string;
    version?: string;
    tags?: string[];
    requirements?: string[];
    sourceOrg?: string;   // GitHub organization
    sourceRepo?: string;  // GitHub repository
  };
  lastUpdated: Date;
}

Parameter Schema

typescript
interface ParameterSchema {
  name: string;
  type: 'string' | 'number' | 'boolean' | 'object' | 'array';
  description: string;
  required: boolean;
  default?: unknown;
  enum?: unknown[];
}

Troubleshooting

Skills Not Loading

  1. Check cache: Delete .cache directory and restart
  2. Verify network: Ensure access to GitHub
  3. Check logs: Set LOG_LEVEL=debug for verbose output

GitHub Copilot Not Seeing Skills

  1. Full restart required: Quit VS Code completely (Cmd+Q) and reopen
  2. Check config path: Ensure .vscode/mcp.json is in the workspace root
  3. Verify server: Run npx awesome-agent-skills-mcp manually to test

Connection Errors

bash
# Test the server manually
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}' | npx awesome-agent-skills-mcp

Credits

This project is built on top of the incredible work by the open-source community:

Data Source

VoltAgent Awesome Agent Skills - A curated collection of AI agent skills maintained by VoltAgent. This MCP server fetches and serves skills from this repository, making them accessible to MCP-compatible AI assistants.

Skill Contributors

Skills in this collection are contributed by leading organizations including:

  • Anthropic - Document processing, art generation, MCP building
  • Vercel - React, Next.js, deployment
  • Trail of Bits - Security analysis, smart contracts
  • Hugging Face - ML workflows, model training
  • Sentry - Code review, commit conventions
  • Expo - React Native development
  • Stripe - Payment integrations
  • And many more contributors!

Technologies


Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

See our issue templates for reporting bugs, requesting features, or asking questions.


Documentation & Demo

GitHub Pages

You can enable GitHub Pages to host interactive documentation or demos:

  1. Create your documentation (recommended: use /docs folder):

    • Create a docs/ directory in your repository root
    • Add an index.html file or use a static site generator like VitePress or Docusaurus
    • This keeps documentation separate from source code
  2. Enable GitHub Pages:

    • Go to your repository SettingsPages
    • Select Source: Deploy from a branch
    • Choose Branch: main and folder /docs (recommended) or / if deploying entire repo
    • Save and wait for deployment

This is useful for:

  • Interactive API documentation
  • Live demos of MCP server capabilities
  • Tutorial walkthroughs
  • Skill catalog browser

Note: Using the /docs folder is recommended as it keeps documentation organized and separate from source code. Only use / (root) if you want to deploy the entire repository as a website.


License

This project is licensed under the MIT License - see the LICENSE file for details.


Related Projects


<p align="center"> Made with ❤️ for the AI agent community <br> <a href="https://github.com/VoltAgent/awesome-agent-skills">⭐ Star the Awesome Agent Skills repository</a> </p>

常见问题

io.github.shadowrootdev/awesome-agent-skills 是什么?

提供包含 100+ AI agent skills 的 MCP 服务器,整合 Anthropic、Vercel、Trail of Bits、Hugging Face 等资源。

相关 Skills

Claude接口

by anthropics

Universal
热门

面向接入 Claude API、Anthropic SDK 或 Agent SDK 的开发场景,自动识别项目语言并给出对应示例与默认配置,快速搭建 LLM 应用。

想把Claude能力接进应用或智能体,用claude-api上手快、兼容Anthropic与Agent SDK,集成路径清晰又省心

AI 与智能体
未扫描109.6k

提示工程专家

by alirezarezvani

Universal
热门

覆盖Prompt优化、Few-shot设计、结构化输出、RAG评测与Agent工作流编排,适合分析token成本、评估LLM输出质量,并搭建可落地的AI智能体系统。

把提示优化、LLM评测到RAG与智能体设计串成一套方法,适合想系统提升AI开发效率的人。

AI 与智能体
未扫描9.0k

智能体流程设计

by alirezarezvani

Universal
热门

面向生产级多 Agent 编排,梳理顺序、并行、分层、事件驱动、共识五种工作流设计,覆盖 handoff、状态管理、容错重试、上下文预算与成本优化,适合搭建复杂 AI 协作系统。

帮你把多智能体流程设计、编排和自动化统一起来,复杂工作流也能更稳地落地,适合追求强控制力的团队。

AI 与智能体
未扫描9.0k

相关 MCP Server

顺序思维

编辑精选

by Anthropic

热门

Sequential Thinking 是让 AI 通过动态思维链解决复杂问题的参考服务器。

这个服务器展示了如何让 Claude 像人类一样逐步推理,适合开发者学习 MCP 的思维链实现。但注意它只是个参考示例,别指望直接用在生产环境里。

AI 与智能体
82.9k

知识图谱记忆

编辑精选

by Anthropic

热门

Memory 是一个基于本地知识图谱的持久化记忆系统,让 AI 记住长期上下文。

帮 AI 和智能体补上“记不住”的短板,用本地知识图谱沉淀长期上下文,连续对话更聪明,数据也更可控。

AI 与智能体
82.9k

PraisonAI

编辑精选

by mervinpraison

热门

PraisonAI 是一个支持自反思和多 LLM 的低代码 AI 智能体框架。

如果你需要快速搭建一个能 24/7 运行的 AI 智能体团队来处理复杂任务(比如自动研究或代码生成),PraisonAI 的低代码设计和多平台集成(如 Telegram)让它上手极快。但作为非官方项目,它的生态成熟度可能不如 LangChain 等主流框架,适合愿意尝鲜的开发者。

AI 与智能体
6.4k

评论