Claude-skills

The markdown files Claude Code reads before it starts.

These skills cover the tasks I repeat most: writing commits, reading other people’s sites, designing interfaces, and checking what is actually true.

Each skill is one folder with one SKILL.md in it. No dependencies, no build step, nothing to run.

cp -r web-design ~/.claude/skills/
View on GitHub

The skills

Claude Code reads each skill’s description and invokes it when the task matches — ask for a commit message and commit-message applies itself. You can also call one by name, like the lines below. The size is the whole instruction file: how much the model is handed before it answers.

Installing

Skills are picked up from two places, and which one you copy into decides where they are available.

~/.claude/skills/
Every project on the machine.
.claude/skills/
Inside one project, that project only.
git clone https://github.com/nestix6/claude-skills.git
cd claude-skills
 
# all of them, for every project
cp -r commit-message web-analysis web-design web-research ~/.claude/skills/
 
# or just one, scoped to the project you're in
cp -r web-design /path/to/your/project/.claude/skills/

Only SKILL.md is read by Claude Code. The README.md in each folder rides along and is ignored, so the whole install is four text files sitting in a directory.