Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Agent Skills 终极指南:快速入门、资源推荐、精选技能与实用工具 |The Ultimate Guide to Agent Skills: QuickStart, Resources, Features&Toolkit
| Date | Stars |
|---|---|
| 2026-07-31 | 4895 |
| 2026-08-02 | 4895 |
| 2026-08-04 | 4914 |
| 2026-08-06 | 4914 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
<div>
<p align="center">
<a href="https://platform.composio.dev/?utm_source=Github&utm_medium=Youtube&utm_campaign=2025-11&utm_content=AwesomeSkills">
<img width="1280" height="640" alt="Composio banner" src="assets/media/awesome-agent-skills.png">
</a>
</p>
</div>
<div>
<p align="center">
<a href="https://awesome.re">
<img src="https://awesome.re/badge.svg" alt="Awesome" />
</a>
<a href="https://makeapullrequest.com">
<img src="https://img.shields.io/badge/Issues-welcome-brightgreen.svg?style=flat-square" alt="Issues Welcome" />
</a>
<a href="https://www.apache.org/licenses/LICENSE-2.0">
<img src="https://img.shields.io/badge/License-Apache_2.0-blue.svg?style=flat-square" alt="License: Apache-2.0" />
</a>
</p>
</div>
<div align="center">
简体中文 | [English](docs/README_EN.md) | [日本語](docs/README_JA.md)
</div>
本项目致力于遵循少而精的原则,收集和分享最优质的 Skill 资源、教程和实践案例,帮助更多人轻松迈出搭建 Agent 的第一步。
> 如果觉得这个项目对你有所帮助,还请帮忙点个 🌟 让更多人知晓。同时,也欢迎关注我的 𝕏 账号 [@李不凯正在研究](https://x.com/libukai) ,即时获取 Agent Skill 的最新资源和实战教程!
## 快速入门
Skill 是一种轻量级的 Agent 构建方案,通过封装特定的业务流程与行业知识,强化 AI 执行特定任务的专业能力。
面对重复性的任务需求,你无需在每次对话中反复输入背景信息。只需安装对应的 Skill,AI 即可习得该领域的专业技能。
历经半年的迭代演进,Skill 已成为增强 AI 垂直领域能力的标准方案,并获得了各类 Agent 框架与 AI 产品的广泛支持。
## 标准结构
根据标准定义,每个 Skill 都是一个规范化命名的文件夹,其中包含了流程、资料、脚本等各类资源。通过在上下文中渐进式导入这些文件,AI 即可学会相应的技能。
```markdown
my-skill/
├── SKILL.md # 必需:流程说明和元数据
├── references/ # 可选:参考资料
├── scripts/ # 可选:可执行脚本
└── assets/ # 可选:模板、资源
```
## 安装技能
Skill 可以在 Claude 和 ChatGPT 这类 GUI 的 App 中使用,也可以在 Cursor 和 Claude Code 这类编程 IDE 及 TUI CLI 中使用,还可以在 OpenClaw 等 Agent Harness 上使用。
安装 Skill 过程的本质,其实就是将 Skill 对应的文件夹放到特定的目录下,以便 AI 能按需加载和使用。
### 类 Claude App 生态

目前在 App 中使用 Skill 的方式主要有两种:通过 App 自带的 Skill 商店安装,或者通过上传压缩包的方式安装。
对于官方商店中没有的 Skill,可以从下方推荐的 Skill 第三方商店中下载并手动上传安装。
### 类 Claude Code 生态

推荐使用 [skillsmp](https://skillsmp.com/zh) 商店,该商店中自动抓取了 Github 上的所有的 Skill 项目,并按照分类、更新时间、星标数量等标签进行了分类整理。
可辅助使用 Vercel 出品的 [skills.sh](https://skills.sh/) 排行榜,直观查看当前最受欢迎的 Skills 仓库和单个 Skill 的使用情况。
对于特定的 skill,使用 `npx skills` 命令行工具可快速发现、添加和管理 skill,具体参数详见 [vercel-labs/skills](https://github.com/vercel-labs/skills)。
```bash
npx skills find [query] # 搜索相关技能
npx skills add <owner/repo> # 安装技能(支持 GitHub 简写、完整 URL、本地路径)
npx skills list # 列出已安装的技能
npx skills check # 检查可用更新
npx skills update # 升级所有技能
npx skills remove [skill-name] # 卸载技能
```
### 类 OpenClaw 生态

如果有科学上网的能力,且使用官方版本 OpeClaw,推荐使用官方的 [ClawHub](https://clawhub.com/) 商店,提供的技能更偏技术向且包含了大量海外产品的整合。
```bash
npx clawhub search [query] # 搜索相关技能
npx clawhub explore # 浏览技能市场
npx clawhub install <slug> # 安装技能
npx clawhub uninstall <slug> # 卸载技能
npx clawhub list # 列出已安装的技能
npx clawhub update --all # 升级所有技能
npx clawhub inspect <slug> # 查看技能详情(不安装)
```

对于主要在国内网络环境下使用,或者是使用国内定制版的 OpenClaw,推荐使用腾讯推出的 [SkillHub](https://skillhub.tencent.com/) 商店,提供了大量更符合中国用户使用需求的技能。
首先,需要安装 Skill Hub CLI 工具,可以通过以下命令进行安装:
```bash
curl -fsSL https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/install.sh | bash
```
安装完成后,可以使用以下命令来安装和管理技能:
```bash
skillhub search [query] # 搜索相关技能
skillhub install <skill-name> # 使用 skill name 添加技能
skillhub list # 列出已安装的技能
skillhub upgrade # 升级已安装的技能
```
## 优质教程
### 官方文档
- @Anthropic:[Claude Skill 完全构建指南](docs/Claude-Skills-完全构建指南.md)
- @Anthropic:[Claude Agent Skills 实战经验](docs/Claude-Code-Skills-实战经验.md)
- @Google:[Agent Skills 五种设计模式](docs/Agent-Skill-五种设计模式.md)
### 图文教程
- @李不凯正在研究:[Agent Skills 简要介绍 PPT](/assets/docs/Agent%20Skills%20终极指南.pdf)
- @一泽 Eze:[Agent Skills 终极指南:入门、精通、预测](https://mp.weixin.qq.com/s/jUylk813LYbKw0sLiIttTQ)
- @deeptoaExcerpt of 10,706 characters
Read on GitHublibukai · AI Seed · China
155
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:e3141f6ec4995f3a, llm:description: 'Agent Skills 终极指南... The Ultimate Guide to Agent Skills: QuickStart, Resources, Features&Toolkit'; topics: agent, skills, awsome-list
matched fp:e3141f6ec4995f3a, llm:description: 'Agent Skills 终极指南... The Ultimate Guide to Agent Skills: QuickStart, Resources, Features&Toolkit'; topics: agent, skills, awsome-list
matched fp:e3141f6ec4995f3a, llm:description: 'Agent Skills 终极指南... The Ultimate Guide to Agent Skills: QuickStart, Resources, Features&Toolkit'; topics: agent, skills, awsome-list