Claude-skill-registry-data minimal-example
A minimal example skill demonstrating the required structure
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/minimal-example" ~/.claude/skills/majiayu000-claude-skill-registry-data-minimal-example && rm -rf "$T"
manifest:
data/minimal-example/SKILL.mdsource content
Minimal Example Skill
This is a minimal example of a Claude skill with only the required fields.
Purpose
This skill demonstrates the absolute minimum required to create a valid skill:
- A dedicated folder for the skill
- A SKILL.md file with YAML frontmatter
- Required frontmatter fields:
andnamedescription
Usage
Use this as a template when creating new skills. You can add more metadata fields as needed, but
name and description are always required.
Example
Hello! I'm a minimal skill example.
That's it - simple and straightforward!