/ 目录 / 演练场 / awesome-claude-code
● 社区 Hesreallyhim ⚡ 即开即用

awesome-claude-code

作者 Hesreallyhim · Hesreallyhim/awesome-claude-code

Claude Code 最多星标的 awesome 列表——slash 命令、agent、skill、hook、MCP 汇聚一处的精选索引。

Hesreallyhim/awesome-claude-code 是 Claude Code 生态的核心目录。在这里可以找到 slash 命令、subagent、skill、hook、自定义 MCP、状态栏和配置示例。几乎每天都有社区 PR 更新。通过 gitmcp 使用,让 Claude 无需将整个列表倒入上下文即可搜索索引。

为什么要用

核心特性

实时演示

实际使用效果

就绪

安装

选择你的客户端

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "awesome-claude-code-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Hesreallyhim/awesome-claude-code",
        "~/awesome-claude-code"
      ],
      "_inferred": true
    }
  }
}

打开 Claude Desktop → Settings → Developer → Edit Config。保存后重启应用。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "awesome-claude-code-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Hesreallyhim/awesome-claude-code",
        "~/awesome-claude-code"
      ],
      "_inferred": true
    }
  }
}

Cursor 使用与 Claude Desktop 相同的 mcpServers 格式。项目级配置优先于全局。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "awesome-claude-code-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Hesreallyhim/awesome-claude-code",
        "~/awesome-claude-code"
      ],
      "_inferred": true
    }
  }
}

点击 Cline 侧栏中的 MCP Servers 图标,然后选 "Edit Configuration"。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "awesome-claude-code-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Hesreallyhim/awesome-claude-code",
        "~/awesome-claude-code"
      ],
      "_inferred": true
    }
  }
}

格式与 Claude Desktop 相同。重启 Windsurf 生效。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "awesome-claude-code-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Hesreallyhim/awesome-claude-code",
        "~/awesome-claude-code"
      ]
    }
  ]
}

Continue 使用服务器对象数组,而非映射。

~/.config/zed/settings.json
{
  "context_servers": {
    "awesome-claude-code-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/Hesreallyhim/awesome-claude-code",
          "~/awesome-claude-code"
        ]
      }
    }
  }
}

加入 context_servers。Zed 保存后热重载。

claude mcp add awesome-claude-code-skill -- git clone https://github.com/Hesreallyhim/awesome-claude-code ~/awesome-claude-code

一行命令搞定。用 claude mcp list 验证,claude mcp remove 卸载。

使用场景

实战用法: awesome-claude-code

发现 Claude Code 默认之外的可能性

👤 Claude Code 新用户 ⏱ ~30 min beginner

何时使用: 你刚安装了 Claude Code,想知道该添加什么。

步骤
  1. 按类别浏览
    Use awesome-claude-code. List categories and 3 top picks per category by stars.✓ 已复制
    → 紧凑的生态概览
  2. 选择入门包
    What 5-item starter pack gives me the highest leverage today?✓ 已复制
    → 精选入门推荐
  3. 安装
    Install those 5. Tell me where each lives and what it does.✓ 已复制
    → 本地环境已配置

结果: 带有精选社区工具基线的 Claude Code。

在自己动手构建 skill 之前,先查找是否已有现成的

👤 即将编写 skill 的开发者 ⏱ ~15 min beginner

何时使用: 你觉得需要一个 skill,但它可能已经存在。

步骤
  1. 搜索
    Search awesome-claude-code for 'database migration' skills.✓ 已复制
    → 带仓库链接的命中结果
  2. 对比
    Compare the top 2 — which is more current and trustworthy?✓ 已复制
    → 每个候选的注记

结果: 从现有选项中选定 skill,或确认该细分领域尚属空白。

逐月追踪生态趋势

👤 技术负责人和内容创作者 ⏱ ~20 min intermediate

何时使用: 你撰写 AI 工具相关文章或制定公司 AI 战略。

步骤
  1. 与上月对比
    What's been added since last month? Which categories are growing fastest?✓ 已复制
    → 趋势分析

结果: 基于数据的视角,了解 Claude Code 社区的走向。

组合

与其他 MCP 搭配,撬动十倍杠杆

awesome-claude-code-skill + awesome-mcp-servers-appcypher

两个 awesome 列表,分别针对两个生态(Claude Code + MCP)

awesome-claude-code-skill + git-mcp-idosal

找到候选后立即检查其仓库

工具

此 MCP 暴露的能力

工具输入参数何时调用成本
search_documentation query 精准查找 1 GitHub API call
fetch_documentation () 浏览整个目录 1 API call

成本与限制

运行它的成本

API 配额
与任何 gitmcp 使用一样,受 GitHub 限制
每次调用 Token 数
使用搜索而非全量获取以控制成本
费用
免费
提示
锁定特定分类章节,而非倾倒整个 README

安全

权限、密钥、影响范围

凭据存储: GITHUB_TOKEN 可选
数据出站: gitmcp.io

故障排查

常见错误与修复

链接到已过时的条目

列表由社区维护;采用前确认每个仓库的最新提交

搜索漏掉模糊匹配

尝试多个同义词;搜索是精确子字符串匹配

替代方案

awesome-claude-code 对比其他方案

替代方案何时用它替代权衡
appcypher/awesome-mcp-servers你特别想要 MCP server不同范围(MCP,而非 Claude Code 接入面)
FreeMCPLab你想要精选指南和实时演示不同形态——游乐场 vs 索引

更多

资源

📖 阅读 GitHub 上的官方 README

🐙 查看未解决的 issue

🔍 浏览全部 400+ MCP 服务器和 Skills