Skip to content

zachvictor/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skills

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.

Skills

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.

Installation

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-msg

Structure

Each skill is a self-contained directory following the Agent Skills specification:

skill-name/
├── SKILL.md          # Instructions and metadata (required)
└── scripts/          # Helper scripts (optional)
    └── ...

License

MIT

About

Skills for use with agentic coding tools. These skills follow the agentskills.io open standard. Use with Claude Code, Codex, OpenCode, and other harnesses for AI-assisted software development.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors