Skills for AI coding assistants. Works with Claude Code and Codex.
| Skill | Description | Origin |
|---|---|---|
| skill-deployer | Install skills from GitHub URLs with a single command. Just give it a URL. | Custom |
| skill-creator | Create, modify, evaluate, and optimize skills. Includes eval runner and variance analysis. | Anthropic |
| scheduled-commit | Schedule a git commit and push for a later time. No AI co-author attribution. | Custom |
| ascii-clean | Strip non-ASCII characters from code files. Useful as a post-edit cleanup pass. | Custom |
Skills from the Anthropic Claude Code skills collection, licensed under Apache 2.0.
| Skill | Description | Origin |
|---|---|---|
| canvas-design | Create visual art and designs as .png and .pdf documents using design philosophy. | Anthropic |
| frontend-design | Build distinctive, production-grade frontend interfaces with high design quality. | Anthropic |
| brand-guidelines | Apply Anthropic's official brand colors and typography to artifacts. | Anthropic |
Skills for developing on the PicoCalc handheld (RP2350/Pico 2W).
| Skill | Description | Origin |
|---|---|---|
| picocalc-app | Create apps, games, and tools targeting the 320x320 display and membrane keyboard. | Custom |
| picocalc-c-module | Create and modify C extension modules compiled into the MicroPython firmware. | Custom |
| picocalc-hardware | Hardware reference data: GPIO pins, SPI/I2C buses, display, keyboard, SD card. | Custom |
| picocalc-network | WiFi and BLE networking features. | Custom |
| picocalc-ops | Device operations: flashing firmware, deploying scripts, debugging boot issues. | Custom |
| picocalc-review | Code review for MicroPython targeting PicoCalc. | Custom |
Install all skills to both Claude Code and Codex with one command:
pip install skill-deployer
skill-deployer installTarget a specific platform:
skill-deployer install --claude # Claude Code only
skill-deployer install --codex # Codex onlyInstall a single skill by name:
skill-deployer install picocalc-appInstall skill-deployer first, then tell your AI assistant to install any skill by URL:
"install this skill https://github.com/LofiFren/code-skills/tree/main/skills/picocalc-app"
Copy any skill folder directly into your skills directory:
# Claude Code
cp -r skills/picocalc-app ~/.claude/skills/
# Codex
cp -r skills/picocalc-app ~/.codex/skills/Custom skills are by the repo owner. PicoCalc skills are specific to the Clockwork Pi PicoCalc hardware platform.
Anthropic skills are from the Claude Code skills collection and licensed under Apache 2.0. See individual LICENSE.txt files in each skill directory.