creating-skill

Solid

Creates Skills for Claude. Use when users request creating/updating skills, need skill structure guidance, or mention extending Claude's capabilities through custom skills.

Web & Frontend 134 stars 7 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
71
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Creating Skills Create portable, reusable expertise that extends Claude's capabilities across contexts. ## When to Create Skills Skills are appropriate when: - Capability needed across multiple projects/conversations - Procedural knowledge that applies broadly (not project-specific) - Instructions should activate automatically on trigger patterns - Want portable expertise that loads progressively on-demand Not appropriate when: - Context is project-specific (use Project instructions instead) - One-off task (use standalone prompt instead) - See **crafting-instructions** skill for detailed decision framework ## Skill Structure Every skill is a directory containing: - `SKILL.md` (required): Frontmatter + imperative instructions - `scripts/` (optional): Executable code for deterministic operations - `references/` (optional): Detailed docs loaded on-demand - `assets/` (optional): Templates/files used in output Create this structure directly: ```bash mkdir -p skill-name/{scripts,references,assets} ``` Delete unused directories before packaging. ## Naming Convention Use gerund form (verb + -ing): - ✅ `processing-pdfs`, `analyzing-data`, `creating-reports` - ❌ `pdf-helper`, `data-tool`, `report-maker` Requirements: - Lowercase letters, numbers, hyphens only - Max 64 characters - No reserved words (anthropic, claude) ## Frontmatter Requirements ```yaml --- name: skill-name description: What it does. Use when [trigger patterns]. --- ``` **name:** Follow naming conventio...

Details

Author
oaustegard
Repository
oaustegard/claude-skills
Created
9 months ago
Last Updated
yesterday
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category