Skill Examples

Browse real-world examples of Agent Skills to learn how to create your own.

Development Skills

| Skill | Description | Difficulty | |-------|-------------|------------| | Code Review | Guidelines for reviewing pull requests | Intermediate | | API Integration | Best practices for API design and integration | Advanced | | Data Analysis | Data science and analytics workflows | Advanced |

Design Skills

| Skill | Description | Difficulty | |-------|-------------|------------| | Brand Guidelines | Maintain consistent brand identity | Beginner | | Frontend Design | UI/UX design principles | Intermediate |

Example Structure

Each example includes:

  1. Complete SKILL.md - Full source code you can copy
  2. Line-by-line explanation - Understand each section
  3. Use cases - When and how to use the skill
  4. Customization tips - How to adapt for your needs

Quick Templates

Minimal Skill

markdown
---
name: My Skill
description: Brief description of the skill
---

# My Skill

## Guidelines
- Guideline 1
- Guideline 2
- Guideline 3

Complete Skill

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)

Next Steps