A collection of Claude Code skills (.skill.md files) for common workflows.
| Skill | Description |
|---|---|
| brand-asset-audit | Audit and generate brand assets (logos, favicons, OG images, design system docs) |
| comprehensive-docs | Build a full docs/ suite — index, categorized guides, role-based navigation, consistent formatting |
| readme | Create or restructure a project's root README with the standard section layout and emoji-prefixed headers |
Add this directory to your Claude Code settings so all skills are automatically discovered.
Project-level (.claude/settings.json in your repo):
{
"skills": [
"/path/to/skills/*.skill.md"
]
}User-level (~/.claude/settings.json):
{
"skills": [
"/path/to/skills/*.skill.md"
]
}Replace /path/to/skills with the absolute path to this directory.
- Create a
your-skill-name.skill.mdfile in this directory - Include YAML frontmatter with
nameanddescriptionfields - The
descriptionfield controls when Claude will suggest using the skill -- include trigger keywords
Template:
---
name: your-skill-name
description: Use when [trigger conditions]. Triggers on "keyword1", "keyword2".
---
# Skill Title
## Overview
What this skill does.
## When to Use
- Condition 1
- Condition 2
## Process
Step-by-step instructions for Claude to follow.See LICENSE.