重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
npx skills add https://github.com/patricio0312rev/skills --skill skill-creator遵循既定规范生成可用于生产环境的 Claude Code 技能。
| 分类 | 路径 | 用途 |
|---|---|---|
| 基础 | foundation/ | 项目设置、开发环境、git、文档 |
| 前端 | frontend/ | React、Vue、UI 组件、样式、UX |
| 后端 |
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
backend/| API、认证、服务器逻辑、服务 |
| AI 工程 | ai-engineering/ | LLM、RAG、智能体、提示词 |
| 架构 | architecture/ | 系统设计、架构决策记录、技术决策 |
| CI/CD | ci-cd/ | 自动化、部署、流水线 |
| 数据库 | database-management/ | 迁移、查询、数据工程 |
| 测试 | testing/ | 单元测试、集成测试、端到端测试、模拟 |
| 安全 | security/ | 漏洞、认证、加固 |
| 性能 | performance/ | 可观测性、监控、优化 |
---
name: skill-name-in-kebab-case
description: 关于技能作用及使用场景的单行描述。包含触发短语,如“当用户请求 X、Y 或 Z 时使用”。
---
# 技能标题
解释技能价值主张的简短标语。
## 核心工作流程
1. **步骤一**:描述
2. **步骤二**:描述
3. **步骤三**:描述
...
## [主要内容部分]
### 包含代码示例的部分
\`\`\`typescript
// 可用于生产环境的代码示例
\`\`\`
### 模式 / 模板
用示例记录可复用的模式。
## 最佳实践
- 实践一
- 实践二
- 实践三
## 输出检查清单
每个输出都应包含:
- [ ] 项目一
- [ ] 项目二
- [ ] 项目三
当技能需要补充文档时:
skill-name/
├── SKILL.md # 主要技能文件(必需)
└── references/ # 可选的参考资料
├── templates.md # 代码/文件模板
├── conventions.md # 标准和约定
└── patterns.md # 可复用模式
---
name: kebab-case-skill-name # 必须与文件夹名称匹配
description: >
清晰的描述,包括:
- 技能的作用
- 使用时机
- 触发短语(“当 X 时使用”、“创建 Y”、“生成 Z”)
---
Name: api-rate-limiter
Category: backend
Purpose: 为 API 实现速率限制
Triggers: "添加速率限制"、"保护 API"、"限制请求"
mkdir -p backend/api-rate-limiter
touch "backend/api-rate-limiter/SKILL.md"
---
name: api-rate-limiter
description: 使用令牌桶、滑动窗口或固定窗口算法为 API 实现速率限制。当用户请求“添加速率限制”、“保护 API 免受滥用”或“限制请求”时使用。
---
# API 速率限制器
使用可用于生产环境的速率限制来保护您的 API 免受滥用。
## 核心工作流程
...
mkdir -p backend/api-rate-limiter/references
touch backend/api-rate-limiter/references/algorithms.md
创建新技能时:
每周安装次数
59
代码仓库
GitHub 星标数
26
首次出现
2026 年 1 月 24 日
安全审计
安装于
codex50
opencode50
gemini-cli48
github-copilot47
cursor46
claude-code45
Generate production-ready Claude Code skills following established conventions.
| Category | Path | Purpose |
|---|---|---|
| Foundation | foundation/ | Project setup, dev environment, git, docs |
| Frontend | frontend/ | React, Vue, UI components, styling, UX |
| Backend | backend/ | APIs, auth, server logic, services |
| AI Engineering | ai-engineering/ | LLMs, RAG, agents, prompts |
| Architecture | architecture/ | System design, ADRs, tech decisions |
| CI/CD | ci-cd/ | Automation, deployments, pipelines |
| Database | database-management/ | Migrations, queries, data engineering |
| Testing | testing/ | Unit tests, integration, e2e, mocks |
| Security | security/ | Vulnerabilities, auth, hardening |
| Performance | performance/ | Observability, monitoring, optimization |
---
name: skill-name-in-kebab-case
description: One-line description of what the skill does and when to use it. Include trigger phrases like "use when users request X, Y, or Z".
---
# Skill Title
Brief tagline explaining the skill's value proposition.
## Core Workflow
1. **Step one**: Description
2. **Step two**: Description
3. **Step three**: Description
...
## [Main Content Sections]
### Section with Code Examples
\`\`\`typescript
// Production-ready code example
\`\`\`
### Patterns / Templates
Document reusable patterns with examples.
## Best Practices
- Practice one
- Practice two
- Practice three
## Output Checklist
Every output should include:
- [ ] Item one
- [ ] Item two
- [ ] Item three
When skills need supplementary documentation:
skill-name/
├── SKILL.md # Main skill file (required)
└── references/ # Optional reference materials
├── templates.md # Code/file templates
├── conventions.md # Standards and conventions
└── patterns.md # Reusable patterns
---
name: kebab-case-skill-name # Must match folder name
description: >
Clear description including:
- What the skill does
- When to use it
- Trigger phrases ("use when X", "create Y", "generate Z")
---
Name: api-rate-limiter
Category: backend
Purpose: Implement rate limiting for APIs
Triggers: "add rate limiting", "protect API", "throttle requests"
mkdir -p backend/api-rate-limiter
touch "backend/api-rate-limiter/SKILL.md"
---
name: api-rate-limiter
description: Implements rate limiting for APIs using token bucket, sliding window, or fixed window algorithms. Use when users request "add rate limiting", "protect API from abuse", or "throttle requests".
---
# API Rate Limiter
Protect your APIs from abuse with production-ready rate limiting.
## Core Workflow
...
mkdir -p backend/api-rate-limiter/references
touch backend/api-rate-limiter/references/algorithms.md
When creating a new skill:
Weekly Installs
59
Repository
GitHub Stars
26
First Seen
Jan 24, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
codex50
opencode50
gemini-cli48
github-copilot47
cursor46
claude-code45
AI界面设计评审工具 - 全面评估UI/UX设计质量、检测AI生成痕迹与优化用户体验
58,500 周安装