From glean-skills
Guides creation of Claude Code skills: evaluates suitability with recurrence/automation/value/duplication tests, details SKILL.md structure, best practices, and quick-start commands.
How this skill is triggered — by the user, by Claude, or both
Slash command
/glean-skills:skill-creation-guideThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This guide helps you create effective Claude Code skills.
This guide helps you create effective Claude Code skills.
Use this guide when you want to:
Not every idea makes a good skill. Before creating one, evaluate:
Recurrence Test
Automation Test
Value Test
Duplication Test
Don't create skills for:
A skill is a markdown file that teaches Claude how to handle specific situations. Skills auto-trigger based on context and provide specialized guidance.
The fastest way to create a skill:
# Discover opportunities from your work patterns
/glean-skills:discover
# Create a skill from a description
/glean-skills:create <skill-name>
---
name: skill-name-in-kebab-case
description: When this skill triggers. Be specific about phrases, contexts, and use cases.
---
# Skill Title
Brief overview of what this skill does.
## When This Applies
- Condition 1
- Condition 2
- Example phrases that trigger this
## Main Content
[The actual guidance, workflow, or instructions]
## Output Format (optional)
[Template for what the skill produces]
Bad: "Use for code review" Good: "Use when reviewing pull requests, checking code quality, or when user says 'review this PR', 'check my code', or 'code review'"
Start with the essential action, add details as sections:
Use imperative form:
Name the tools the skill uses:
search, memory, user_activityGrep, Glob, ReadTask, AskUserQuestion| Location | Use Case |
|---|---|
~/.claude/skills/ | Personal skills (your machine only) |
.claude/skills/ | Project skills (shared with team) |
plugins/*/skills/ | Plugin skills (distributed with plugin) |
/glean-skills:discover - Find skill opportunities from your work patterns/glean-skills:create <name> - Generate a SKILL.md from a descriptionnpx claudepluginhub gleanwork/claude-plugins --plugin glean-skillsGuides development of Claude Code SKILL.md files with best practices, structure, YAML frontmatter rules, categories, patterns, references, and testing.
Create, improve, and test SKILL.md files to extend Claude Code with project-specific knowledge and reusable workflows.
Guides creation of new Claude Code skills from scratch, covering SKILL.md anatomy, YAML frontmatter best practices, trigger phrases, and optional resources like scripts. Triggers on 'create a skill', 'new skill', 'scaffold skill'.