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.
npx claudepluginhub gleanwork/claude-plugins --plugin glean-skillsThis skill uses the workspace's default tool permissions.
This guide helps you create effective Claude Code skills.
Guides development of Claude Code SKILL.md files with best practices, structure, YAML frontmatter rules, categories, patterns, references, and testing.
Creates, reviews, and iterates on Claude Code skills using Anthropic's best practices and latest API docs. Use for new skill creation, existing skill review, description writing, and architecture design.
Create, improve, and test SKILL.md files to extend Claude Code with project-specific knowledge and reusable workflows.
Share bugs, ideas, or general feedback.
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 description