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/hello-skill" ~/.claude/skills/majiayu000-claude-skill-registry-hello-skill && rm -rf "$T"
manifest:
skills/data/hello-skill/SKILL.mdsource content
What I do
I'm the simplest skill possible. I just print a hello message using the bash tool.
How to use me
Run this command:
echo "Hello from Tier 1 skill! 🎉"
That's it! This demonstrates:
- ✅ How a skill loads
- ✅ How the bash tool executes commands
- ✅ Basic skill structure