How to Sparse Checkout the Claude Code Skill Creator
Anthropic released skill-creator, a skill for creating and iteratively improving other skills. I’ve been using it and found it really useful when writing skills.
If you’re not familiar with building skills, it’s worth trying out. You can pull just that folder from the GitHub repo without cloning the entire thing using Git’s sparse checkout:
mkdir -p ~/.claude
cd ~/.claude
git clone --no-checkout --depth 1 --filter=blob:none --sparse https://github.com/anthropics/skills.git tmp-skills
cd tmp-skills
git sparse-checkout set skills/skill-creator
git checkout
mkdir -p ~/.claude/skills
mv skills/skill-creator ~/.claude/skills/
cd ..
rm -rf tmp-skillsThis clones only the repository metadata and checks out just the skills/skill-creator folder.
--filter=blob:none avoids downloading file contents until needed, and --depth 1 limits the clone to the latest commit.
The folder is then moved into ~/.claude/skills/ so Claude can load it.