Agent skills for use with agentic coding tools. These skills follow the Agent Skills open standard and work with Claude Code, Codex, OpenCode, and other compatible tools.
| Skill | Description |
|---|---|
| commit-msg | Composes a Conventional Commits message for staged changes, appends it to tmp/commit-msgs.txt, and copies it to the clipboard. |
| pypi-version-check | Checks Python dependencies against PyPI to ensure versions are current before committing. Supports requirements.txt, pyproject.toml, setup.cfg, setup.py, Pipfile, and environment.yml. |
Copy any skill folder into the skills directory for your tool:
# Claude Code
cp -r commit-msg ~/.claude/skills/
# Codex
cp -r commit-msg ~/.codex/skills/
# OpenCode
cp -r commit-msg ~/.config/opencode/skills/Or install into a project so the whole team gets it:
# Claude Code
cp -r commit-msg .claude/skills/
# Codex
cp -r commit-msg .codex/skills/
# OpenCode
cp -r commit-msg .opencode/skills/You can also use Vercel's skills CLI to auto-detect your tools:
npx skills add https://github.com/zachvictor/skills --skill commit-msgEach skill is a self-contained directory following the Agent Skills specification:
skill-name/
├── SKILL.md # Instructions and metadata (required)
└── scripts/ # Helper scripts (optional)
└── ...
MIT