Reusable Claude Code skills, installable globally or per-project.
Clone once, then install any skill into your global Claude skills directory:
git clone https://github.com/<your-user>/skills.git ~/.skills
cd ~/.skills
./install.sh code-style # one skill, globally (~/.claude/skills)
./install.sh --all # every skill, globally
./install.sh --list # show what's availableInstall into a specific project instead of globally:
./install.sh code-style --project ~/work/my-app
./install.sh --all --project # uses current directoryInstalls default to symlinks, so edits to a skill in this repo are
picked up immediately wherever it's installed. Use --copy if you need
a portable snapshot or are crossing filesystems.
Run ./install.sh --help for the full option list.
| Skill | Description |
|---|---|
code-style |
Code style conventions: function/file size, naming, types, tests, comments, formatting, logging. |
mkdir my-skill- Add
my-skill/SKILL.md:--- name: my-skill description: Specific trigger describing when the model should invoke this skill. --- Skill instructions here.
- Add a row to the table above and commit.
See CLAUDE.md for repo-internal conventions.
MIT — see LICENSE.