スキルの例
実際のAgent Skillsの例を閲覧して、独自のスキルを作成する方法を学びましょう。
注目の例
開発スキル
| スキル | 説明 | 難易度 | |-------|-------------|------------| | コードレビュー | プルリクエストをレビューするためのガイドライン | 中級 | | 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)