A collection of custom skills for Claude Code. Each skill adds a new capability you can trigger with a /command, ask for in natural language, or let Claude invoke automatically when the context is right.
| Skill | Command | Description | Install |
|---|---|---|---|
| ss | /ss |
Capture a screenshot from iOS Simulator and attach it to the conversation | Guide |
Each skill has its own installation instructions in its directory. The general steps are:
# Example for the "ss" skill
mkdir -p ~/.claude/skills/ss/scripts
cp skills/ss/SKILL.md ~/.claude/skills/ss/SKILL.md
cp skills/ss/scripts/*.sh ~/.claude/skills/ss/scripts/
chmod +x ~/.claude/skills/ss/scripts/*.shOpen ~/.claude/settings.json and add the required permissions listed in the skill's README.
Want to add a new skill? Each skill follows this structure:
skills/<name>/
README.md # Usage, installation, and permissions
SKILL.md # Skill definition (YAML frontmatter + instructions)
scripts/ # Supporting scripts (optional)
The SKILL.md frontmatter fields:
---
name: skill-name
description: What the skill does
allowed-tools: Tools the skill can use without prompting
auto-invoke: true
user-invocable: true
---MIT