스킬 예시
실제 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)