claude-skills is an open-source library of modular instruction packages, called skills, for AI coding agents. Each skill bundles a SKILL.md file with structured workflows, a Python CLI tool, and reference docs (templates, checklists, domain knowledge) that plug into Claude Code and a dozen other agent tools. It's built for developers, consultants, and small teams who want their coding agent to carry real domain expertise, engineering, marketing, compliance, finance, or C-level advisory, without re-explaining context in every session.
scripts/convert.sh.This is probably not the right fit if you need a single narrow skill and don't want to manage a large repo, or if you're looking for a hosted, managed AI product rather than a file-based library you install and maintain yourself. Teams with very simple, single-domain agent needs may find the 362-skill scope more than they need.
For Claude Code, add the marketplace and install by domain or by individual skill:
/plugin marketplace add alirezarezvani/claude-skills
/plugin install engineering-skills@claude-code-skills
/plugin install marketing-skills@claude-code-skills
/plugin install skill-security-auditor@claude-code-skills
For Gemini CLI:
git clone https://github.com/alirezarezvani/claude-skills.git
cd claude-skills
./scripts/gemini-install.sh
For OpenAI Codex:
npx agent-skills-cli add alirezarezvani/claude-skills --agent codex
# or: git clone + ./scripts/codex-install.sh
For OpenClaw:
bash <(curl -s https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/scripts/openclaw-install.sh)
For other tools (Cursor, Aider, Windsurf, Kilo Code, OpenCode, Augment, Antigravity), convert the skills locally, then install into a project:
git clone https://github.com/alirezarezvani/claude-skills.git
cd claude-skills
./scripts/convert.sh --tool all
./scripts/install.sh --tool cursor --target /path/to/project
Hermes Agent and Mistral Vibe ship pre-generated skill trees and need a one-time local sync:
python scripts/sync-hermes-skills.py --verbose
./scripts/vibe-install.sh
Manual installation works too: clone the repo and copy any skill folder into ~/.claude/skills/ (Claude Code) or ~/.codex/skills/ (Codex).