Modular AI Skill repository. Build your own AI like stacking LEGO blocks.
模块化 AI Skill 仓库,像搭积木一样构建你自己的 AI。
A Skill is a set of instructions for AI. When a user says "I want to do X", the AI reads the corresponding Skill and knows how to help.
Skill 是一份给 AI 看的说明书。用户说"我要做 X",AI 读取对应的 Skill,就知道怎么帮用户实现。
- User describes what AI they want / 用户描述想做什么 AI
- AI scans available Skills / AI 扫描可用的 Skill
- AI picks the right combination / AI 挑选合适的组合
- AI helps build it step by step / AI 帮用户逐步构建
Welcome to contribute! We need your skills. / 欢迎贡献!我们需要你的 Skill。
Tell your AI: "我想贡献一个 skill" / 告诉你的 AI:"我想贡献一个 skill"
AI 会读取
contributeSkill,帮你完成整个贡献流程。
- Fork this repository / Fork 本仓库
- Write a Skill following SKILL-FORMAT.md / 按 SKILL-FORMAT.md 写 Skill
- Submit a PR / 提交 PR
| 方式 | 适合谁 | 说明 |
|---|---|---|
| 贡献 Skill | 有代码能力 | 写一个可运行的 Skill |
| 提想法 | 有想法但不会写 | 提交想法,让社区帮你实现 |
| 反馈问题 | 所有人 | 报告问题或建议改进 |
---
name: 技能名称
layer: action # core / action / identity / meta
category: code # code / web / file / device / ...
description: >
一句话描述 + 触发关键词
---详细格式见 SKILL-FORMAT.md
在让 AI 修改你的代码之前,必须先做备份!
AI 修改代码时可能引入错误,没有备份将无法恢复。
# 方法 1:git 备份(推荐)
cd 你的项目目录
git init
git add -A
git commit -m "备份"
# 方法 2:复制文件夹
xcopy /E /Y 你的项目 备份目录使用 Git 自动备份 Skill 可以实现文件变化时自动提交。
以下 Skill 已测试可用,用户可以直接使用:
| Skill | 说明 | 验证状态 |
|---|---|---|
| voice-recognition | 本地语音识别(4种方案+代码) | ✅ verified |
| git-backup | Git 自动备份(被动检测+自动提交) | ✅ verified |
其他 Skill 为
unverified状态,仅提供文档参考。
Tell your AI: "我想做一个 XX 的 AI" / 告诉你的 AI:"我想做一个 XX 的 AI"
The AI will read the ai-builder Skill and automatically pick the right combination from this repository.
AI 会读取 ai-builder Skill,自动从仓库挑选合适的组合。
skills/
├── meta/ 🧩 元能力层(3 个)
│ ├── ai-builder/ 🧩 智能组合
│ ├── contribute/ 🤝 社区贡献
│ └── mcp-adapter/ 🔌 MCP 工具适配
│
├── action/ ⚡ 执行能力层(17 个)
│ ├── code/ 💻 代码操作(3 个)
│ ├── web/ 🌐 网络操作(2 个)
│ ├── file/ 📁 文件操作(4 个)
│ ├── device/ 📱 设备交互(3 个)
│ │ └── voice-recognition/ 🎤 语音识别(含4种方案+代码)
│ └── media/ 🎬 媒体处理(5 个)
│
├── core/ 🧠 核心能力层(5 个)
│
└── identity/ 🎭 身份层(2 个)
详情见各分类目录的 README.md
MIT