Awesome-omni-skill sample-basic
A minimal example skill demonstrating the required structure. Use this as a template when creating new skills.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/design/sample-basic" ~/.claude/skills/diegosouzapw-awesome-omni-skill-sample-basic && rm -rf "$T"
manifest:
skills/design/sample-basic/SKILL.mdsource content
Sample Basic Skill
This is a minimal skill template. Replace this content with your own instructions.
Quick Start
- Copy this folder and rename it (e.g.,
)creating-components - Update the
in the YAML frontmatter (lowercase, hyphens only)name - Write a specific
that includes:description- What the skill does
- When Claude should use it (trigger phrases)
- Replace these instructions with your own
YAML Frontmatter Requirements
name: - Maximum 64 characters - Lowercase letters, numbers, and hyphens only - No reserved words: "anthropic", "claude" description: - Maximum 1024 characters - Must be non-empty - Should describe WHAT and WHEN
Writing Good Instructions
- Be concise (Claude is smart, don't over-explain)
- Use examples over lengthy descriptions
- Keep SKILL.md under 500 lines
- Link to separate files for detailed content
Example
Here's a simple example of how your skill might work:
User: "Help me create a new component" Claude: [Reads SKILL.md, follows your instructions]