Creates Claude Code skills with built-in best practices from Anthropic's official documentation.
Claude can't hold everything in mind at once. Squirrel!
Skills solve the problem of distracted agent by releasing information gradually:
- Startup: Only name + description loaded (~100 tokens per skill)
- When triggered: Full instructions loaded
- As needed: References loaded only when the task requires them
This keeps context lean while making rich knowledge available on demand.
Skills vs slash commands:
- Skills are model-invoked (Claude applies them when relevant based on the frontmatter and then relevant links in SKILL.md).
- Slash commands are user-invoked (
/command).
- Open this folder in Claude Code
- Ask it to create a new skill
- Answer a few questions — point to references or ask Claude to search online
- Find your skill in
output_skills/[category]/[skill-name]/
This repo includes a ./skills helper script for global installation.
Global (all projects) — use the script to symlink to ~/.claude/skills/:
./skills toggle # interactive picker
./skills status # check what's installedEdits to output_skills/ apply immediately since it's a symlink.
Local (single project) — copy the skill folder to your project's .claude/skills/ or create a symlink in your project yourself.
Each skill defines a STARTER_CHARACTER = [emoji] at the top. This is a visual indicator that Claude has loaded the skill and is following its instructions. For example, the nullables skill uses ⭕️ and TDD uses 🔴/🌱/🌀.
To activate this, add the following to your global ~/.claude/CLAUDE.md:
Always start replies with STARTER_CHARACTER + space (default: 🍀). Stack emojis when requested, don't replace.
Pick any default emoji you like — it confirms Claude is reading your ground rules. When a skill activates, its emoji stacks on top: 🍀 ⭕️ means both your global rules and the nullables skill are active.
Without this line in your global CLAUDE.md, the STARTER_CHARACTER lines in skills might have unpredictable behavior.
./update-docsPulls latest skill patterns from Anthropic.
docs/ — Skill creation knowledge and patterns
output_skills/ — Generated skills organized by category