Building Claude Skills Guide
ποΈ Description
A pointer to The Complete Guide to Building Skill for Claude (PDF, archived in _raw/processed/). A complete guide to creating your own skills for Claude Code β from folder structure (.claude/skills/<name>/SKILL.md), through progressive disclosure pattern, frontmatter, cluster detection, to distribution best practices (personal vs repo-local vs marketplace).
Clusters with the rest of the Agent Skills notes in the wiki β use as a reference document when designing a new skill or refactoring an existing one.
π Links
- Archived PDF:
content/_raw/processed/2026-05-09_The-Complete-Guide-to-Building-Skill-for-Claude.pdf - Anthropic official: docs.anthropic.com β Agent Skills (verify current path)
- Related skill creator: skills
plugin-dev:skill-developmentanddocument-skills:skill-creatorin the local Claude Code install
π§© What it covers (typical scope)
- Anatomy of a skill β
SKILL.md, frontmatter (name,description, triggers), nested directories, plain-text resources - Triggering β when Claude invokes a skill, how to write the description so triggering is reliable, when a skill should be invoked proactively
- Progressive disclosure β why not to load everything upfront; the βmain β references β resourcesβ structure
- Distribution β personal (
~/.claude/skills/), repo-local (.claude/skills/), plugin marketplace - Anti-patterns β descriptions too generic (overlap with other skills), monolithic SKILL.md, no resource versioning
π Further reading
- Agent Skills β concept, class, ecosystem
- Awesome Agent Skills β VoltAgentβs curated 1000+ skills (where to look for examples)
- Awesome Claude Code β broader Claude Code resources context
- Karpathy Skills / Vercel Skills β examples of complete skill collections
- Superpowers β agentic skills framework + SDLC methodology
- gstack β virtual team of 23+ skills
- UX RULER β example of a single skill with strong domain methodology
- Progressive Disclosure β the concept underlying skill architecture
- Token Optimization for Claude Code β why on-demand skill loading pays off
Template: knowledge_note_info