This repository is a collection of reusable agent skills.
Skills currently live under skills/<skill-name>/.
For now, the repo stays flat at the skill level. Category folders can be added later once there are enough skills to justify grouping.
brew-tap-python- Create a production-ready Homebrew tap for a Python CLI tool.follow-clig- Audit, guide, or fix a CLI tool against the CLIG guidelines (clig.dev).
Use the Skills CLI to install from this repository.
Canonical install:
npx skills add deeplook/skills --skill brew-tap-pythonInteractive discovery:
npx skills findList skills in this repo without installing them:
npx skills add deeplook/skills --listTo target a specific AI host, add --agent:
npx skills add deeplook/skills --skill brew-tap-python --agent claude-codeIf you prefer the direct URL form:
npx skills add https://github.com/deeplook/skills/tree/main/skills/brew-tap-python- Create
skills/<new-skill-name>/. - Add
SKILL.mdwith valid YAML frontmatter. - Add
agents/openai.yamlif you want richer skill metadata in UI surfaces. - Keep the skill self-contained. Add
scripts/,references/, orassets/only if the skill needs them. - Update this README and
skills/README.md.
- Skill directory names use lowercase hyphenated names.
SKILL.mdis the required entrypoint for each skill.- Avoid extra documentation inside skill folders unless it is bundled resource material the skill actually uses.
Run python3 scripts/validate_skills.py to check the repo structure and basic skill metadata.