# Claude Skills Examples Real-world examples of well-designed skills across different complexity levels and use cases. ## Table of Contents 1. [Simple Skills](#simple-skills) - Just SKILL.md, no scripts 2. [Skills with Scripts](#skills-with-scripts) - Including helper utilities 3. [Complex Skills](#complex-skills) - Full-featured with references 4. [Platform-Specific Skills](#platform-specific-skills) - Optimized for one platform 5. [Universal Skills](#universal-skills) - Work across all platforms --- ## Simple Skills ### Example 1: Commit Message Formatter **Use Case**: Help developers write conventional commit messages **Structure**: ``` commit-formatter/ └── SKILL.md ``` **SKILL.md**: ```markdown --- name: commit-formatter description: Format git commit messages following Conventional Commits. Use when writing commits or reviewing commit history for proper formatting. --- # Commit Message Formatter Helps create well-formatted git commit messages following the Conventional Commits specification. ## When to Use - Writing new commit messages - Reviewing existing commits for proper format - Teaching team members commit conventions - Generating changelogs ## Commit Format ``` ():