Claude-skill-registry intermediate-example
An intermediate example with metadata and examples
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/intermediate-example" ~/.claude/skills/majiayu000-claude-skill-registry-intermediate-example && rm -rf "$T"
manifest:
skills/data/intermediate-example/SKILL.mdsource content
Intermediate Example Skill
This skill demonstrates more comprehensive metadata usage and includes example files in an
examples/ subdirectory.
Features
- Version tracking: Semantic versioning
- Authorship: Author and date information
- Categorization: Tags and category for organization
- Complexity: Indicates skill difficulty level
- Examples: Reference example files in the skill folder
Folder Structure
intermediate-example/ ├── SKILL.md ← This file └── examples/ ← Optional examples folder └── demo.py ← Example Python script
Metadata Fields
Required
: Unique identifiername
: Brief descriptiondescription
Optional (shown in this skill)
: Semantic versionversion
: Skill creatorauthor
,created
: ISO datesupdated
: Main categorycategory
: List of tags for searchingtags
: beginner, intermediate, or advancedcomplexity
: Boolean flaghas_examples
: Paths relative to skill folderexample_files
Using Examples
The
examples/demo.py file shows a simple Python script that demonstrates
the concept. You can reference these files in your skill documentation.
Best Practices
- Use semantic versioning for the version field
- Keep tags relevant and lowercase
- Set appropriate complexity to help users find suitable skills
- List all example files in the frontmatter
- Organize examples in subdirectories
Next Steps
Check out the
advanced-example skill for even more metadata fields
and a more complex folder structure with templates!