技能範例
瀏覽真實的 Agent Skills 範例,學習如何建立您自己的技能。
精選範例
開發技能
| 技能 | 說明 | 難度 | |-------|-------------|------------| | 程式碼審查 | 審查 Pull Request 的指南 | 中級 | | API 整合 | API 設計與整合的最佳實務 | 進階 | | 資料分析 | 資料科學與分析工作流程 | 進階 |
設計技能
| 技能 | 說明 | 難度 | |-------|-------------|------------| | 品牌指南 | 維護一致的品牌識別 | 初級 | | 前端設計 | UI/UX 設計原則 | 中級 |
範例結構
每個範例包含:
- 完整的 SKILL.md - 可直接複製的完整原始碼
- 逐行說明 - 了解每個區段的用途
- 使用情境 - 何時以及如何使用該技能
- 客製化技巧 - 如何根據您的需求進行調整
快速模板
最小化技能
markdown
---
name: My Skill
description: Brief description of the skill
---
# My Skill
## Guidelines
- Guideline 1
- Guideline 2
- Guideline 3
完整技能
markdown
---
name: Complete Example Skill
description: A full-featured skill template with all sections
version: 1.0.0
author: Your Name
platforms:
- claude-code
- codex
- chatgpt
categories:
- development
---
# Complete Example Skill
## Context
Background information and domain knowledge that helps
the AI understand the problem space.
## Guidelines
1. First important guideline
2. Second important guideline
3. Third important guideline
## Do's
- Do this specific thing
- Also do this
- And this
## Don'ts
- Avoid this behavior
- Never do this
- Don't forget about this
## Examples
### Example 1: Basic Usage
Description of the example scenario.
\`\`\`
Example input or code
\`\`\`
Expected output or behavior.
### Example 2: Advanced Usage
More complex scenario demonstration.
## References
- [Link 1](https://example.com)
- [Link 2](https://example.com)