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/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.
web-design
Web interfaces that don’t look like every other AI‑built page.
Derives a direction from what the thing actually is instead of reaching for an aesthetic, then checks its own work twice: an anti-default audit for taste, and pass/fail verification for keyboard access, focus, contrast, and forms that keep what you typed.
/web-design a landing page for a freight invoicing toolweb-research
Research you can check.
Every claim linked where it is made, disagreements left visible, and the thin spots labelled as thin rather than papered over.
/web-research the current state of EU battery passport regulationweb-analysis
Paste a link. Get the whole site in one summary.
Two passes kept separate — one reads the visual system, one reads the site as a business — because running them together produces a vague impression of both.
/web-analysis https://example.comcommit-message
A git log you can read back.
Runs git diff HEAD first and describes the commit that is actually staged, not the working session you just had.
/commit-message
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.