77+ skills from 23 sources — OpenAI Codex · Claude · Hermes Agent · OpenCode · OpenClaw
一个静态网页,收录各类 AI Agent Skills:
- 🎯 OpenAI Codex 官方精选 39 个(来自
openai/skills) - 🎭 Claude 官方技能 17 个(来自
anthropics/skills) - 🌟 社区清单 5 个(awesome-* 系列)
- 🛠 Codex CLI 配套工具 3 个
- 🤖 通用 Agent Skills 10 个(兼容 Codex / Claude Code / OpenCode)
- 🦉 Hermes Agent · 🦞 OpenClaw · ⌨️ OpenCode
关键词:skill, skills, AI agent, codex, claude code, opencode, hermes agent, openclaw, MCP, agent skills, 技能导航, awesome list
特点:
- 暗色主题,零依赖(纯 HTML + CSS + JS)
- 响应式(手机 / 平板 / 桌面)
- 客户端搜索 + 分类过滤
- 一键复制 install 命令
- 中英文切换
- 数据驱动(修改
js/data.js即可) - SEO 优化(JSON-LD、Open Graph、Twitter Card)
https://skill.pages.dev — 部署在 Cloudflare Pages
git clone https://github.com/rdone4425/skill.git
cd skill
python3 -m http.server 8000
# 访问 http://localhost:8000或者用任何静态服务器(Nginx、Surge、Netlify 都可以)。
- 登录 Cloudflare Dashboard
- Workers & Pages → Create → Pages → Connect to Git
- 选择
rdone4425/skill仓库 - 配置:
- Build command:留空
- Build output directory:
/(项目根目录)
- 点击 Save and Deploy
- 等 1-2 分钟,CF 会自动分配
skill.pages.dev域名
💡 也可以用
wranglerCLI:wrangler pages deploy .
skill/
├── index.html # 主页面(SEO 优化 + JSON-LD 结构化数据)
├── css/
│ └── style.css # 暗色主题样式
├── js/
│ ├── data.js # 所有 skills 数据(自动生成,不要手动改)
│ ├── i18n.js # 中英文翻译
│ └── app.js # 渲染逻辑
├── config/
│ └── repos.json # ⭐ 仓库配置(添加/删除仓库只改这个文件)
├── scripts/
│ ├── fetch-skills.py # 从 config/repos.json 读取配置,抓取最新数据
│ ├── discover-skills.py # 搜索 GitHub 发现新仓库,写入 config/repos.json
│ └── auto-update-skills.sh # 统一更新脚本(discover + fetch + commit)
├── .github/
│ └── workflows/
│ └── update-skills.yml # 每天自动更新
├── LICENSE # MIT
└── README.md # 本文件
数据流:
config/repos.json → fetch-skills.py → js/data.js → 网站
↑
discover-skills.py ← GitHub Search API
编辑 config/repos.json,在 repos 字典中添加:
{
"repos": {
"owner/repo-name": {
"source": "general",
"name": "my-skill",
"install": "git clone https://github.com/owner/repo-name.git"
}
}
}然后 git commit -am "add my-skill" && git push,CI 自动更新数据并部署。
discover-skills.py 会自动搜索 GitHub,发现新的高星 skill 仓库并写入 config/repos.json。
每天自动运行,无需手动操作。
scripts/fetch-skills.py 会自动从 GitHub API 抓取:
- 官方 39 个 curated skills 的 SKILL.md frontmatter(name、description、stars)
- 23 个社区/工具/通用仓库的最新 stars 和描述
GitHub Actions 每周一 UTC 00:00 自动跑一次:
- 工作流:
.github/workflows/update-skills.yml - 抓取脚本:
scripts/fetch-skills.py - 抓取后直接 commit + push 到 main(不走 PR 流程)
- CF Pages / Vercel 监听到 push 后自动重新部署
- 无变化时自动跳过(不会产生空 commit)
手动触发:
- 打开 https://github.com/rdone4425/skill/actions
- 选 Update Codex Skills
- 点 Run workflow
- 可选勾 "Dry run" 只抓数据不提交
调整更新频率:编辑 .github/workflows/update-skills.yml 的 cron 字段
0 0 * * 1— 每周一0 0 * * *— 每天0 */6 * * *— 每 6 小时
添加新仓库:编辑 config/repos.json 的 repos 字典即可,无需改 Python 代码。
回滚一次更新:
git revert HEAD # 创建反向 commit
git push| 来源 | 数量 | 链接 |
|---|---|---|
openai/skills (.curated) |
39 | https://github.com/openai/skills |
anthropics/skills |
17 | https://github.com/anthropics/skills |
ComposioHQ/awesome-codex-skills |
1 | https://github.com/ComposioHQ/awesome-codex-skills |
VoltAgent/awesome-codex-subagents |
1 | https://github.com/VoltAgent/awesome-codex-subagents |
hashgraph-online/awesome-codex-plugins |
1 | https://github.com/hashgraph-online/awesome-codex-plugins |
RoggeOhta/awesome-codex-cli |
1 | https://github.com/RoggeOhta/awesome-codex-cli |
JackyST0/awesome-agent-skills |
1 | https://github.com/JackyST0/awesome-agent-skills |
router-for-me/CLIProxyAPI |
1 | https://github.com/router-for-me/CLIProxyAPI |
decolua/9router |
1 | https://github.com/decolua/9router |
openai/codex |
1 | https://github.com/openai/codex |
nousresearch/hermes-agent |
1 | https://github.com/NousResearch/hermes-agent |
openclaw/openclaw |
1 | https://github.com/openclaw/openclaw |
opencode-ai/opencode |
1 | https://github.com/opencode-ai/opencode |
| 其他通用 skills | 10 | — |
最后更新:2026-06-04
MIT