Personal skills for small, practical spells for everyday work.
Designed to complement superpowers.
| Skill | Description |
|---|---|
| go-standards | Writing, reviewing, or designing Go code. |
| linux-systems | Managing Linux environments. |
Clone into your Claude Code skills directory:
git clone https://github.com/gnarl/cantrips.git /tmp/cantrips \
&& cp -r /tmp/cantrips/skills/* ~/.claude/skills/ \
&& rm -rf /tmp/cantrips
Or in a Dockerfile:
RUN git clone https://github.com/nug/cantrips.git /tmp/cantrips \
&& cp -r /tmp/cantrips/skills/* /home/coder/.claude/skills/ \
&& rm -rf /tmp/cantrips
Structure
skills/
├── go-standards/
│ ├── SKILL.md
│ ├── CODE_RULES.md
│ ├── ARCH_RULES.md
│ ├── TEST_RULES.md
│ └── PATTERNS_REF.md
└── linux-systems/
├── SKILL.md
├── shell-environments.md
├── package-management.md
├── system-config.md
└── build-automation.md