380 Claude Code skills & agent skills & plugins (30+ Agents, 70+ custom commands, 380+ skills, customizable references, scripts)for Claude Code, Codex, Gemini CLI, Cursor, and 8 more coding agents — engineering, marketing, product, compliance, C-level advisory, research, business operations, commercial & finance, and your daily productivity skills.
Claude Code Skills is an open-source library of 338 modular skill packages designed to extend AI coding agents with domain expertise across engineering, marketing, product, compliance, finance, and executive advisory functions. Each skill consists of a SKILL.md instruction file, Python CLI scripts (533 total, all using the standard library with no pip dependencies), and reference documents including templates and checklists (676 files total). The library installs natively into Claude Code via its plugin marketplace using domain-grouped bundles such as engineering-skills, marketing-skills, and c-level-skills, and also supports OpenAI Codex, Gemini CLI, Cursor, Aider, and eight other coding agents through platform-specific install scripts and a single conversion utility. A notable inclusion is a full C-suite advisory layer offering CFO, CMO, CRO, CPO, COO, CHRO, CISO, and related personas alongside 21 dedicated slash commands, as well as an academic research stack covering literature review, grant writing, patent analysis, and syllabus generation. Developers, product teams, compliance officers, and business operators looking to embed repeatable workflows into any supported agent environment are the primary audience.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Healthy fork ratio
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/alirezarezvani/claude-skills ~/.claude/skills/claude-skills10 items in this repository
Deep-dive feature repair — systematically fix an entire feature/module. Usage: /focused-fix <feature-path>
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Scan and optimize docs for SEO — meta tags, readability, keywords, broken links, sitemap.
Skills overview
# Claude Code Skills & Plugins — Agent Skills for Every Coding Tool **388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools.** The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents. Reusable expertise packages covering engineering, DevOps, marketing (incl. AEO — Answer Engine Optimization for LLM citation), security (PreToolUse hooks), compliance, C-level advisory (incl. founder-mode CFO/CMO/CRO/CPO/COO/CHRO/CISO/GC/CDO/CAIO/CCO/VPE personas + 21 /cs:* slash commands), productivity (capture/email/reflect/weekly-review/deep-work/meetings), an academic research stack (litreview/grants/dossier/patent/syllabus/pulse/notebooklm/deep-research + hybrid router), and enterprise Research Operations (clinical-research/research-finance/market-research/product-research, v2.9.0). **Works with:** Claude Code · OpenAI Codex · Gemini CLI · OpenClaw · Hermes Agent[^hermes] · Mistral Vibe[^vibe] · Cursor · Aider · Windsurf · Kilo Code · OpenCode · Augment · Antigravity [^hermes]: Hermes Agent is **BYO-sync tier**: the repo ships a pre-generated `.hermes/skills/claude-skills/` tree, but you run `python scripts/sync-hermes-skills.py` once locally to install into `~/.hermes/skills/`. Uses the same agentskills.io SKILL.md standard — no format conversion. [^vibe]: Mistral Vibe is also **BYO-sync tier**: the repo ships a pre-generated `.vibe/skills/claude-skills/` tree, run `./scripts/vibe-install.sh` once locally to install into `~/.vibe/skills/`. Same agentskills.io SKILL.md standard — no format conversion. Docs: <https://docs.mistral.ai/mistral-vibe/agents-skills>. [](https://opensource.org/licenses/MIT) [](#skills-overview) [](#agents) [](#personas) [](#commands) [](https://github.com/alirezarezvani/claude-skills/stargazers) [](https://getskillcheck.com) > **5,200+ GitHub stars** — the most comprehensive open-source Claude Code skills & agent plugins library. --- ## What Are Claude Code Skills & Agent Plugins? Claude Code skills (also called agent skills or coding agent plugins) are modular instruction packages that give AI coding agents domain expertise they don't have out of the box. Each skill includes: - **SKILL.md** — structured instructions, workflows, and decision frameworks - **Python tools** — 706 CLI scripts (all stdlib-only, zero pip installs) - **Reference docs** — 823 templates, checklists, and domain-specific knowledge files **One repo, thirteen platforms.** Works natively as Claude Code plugins, Codex agent skills, Gemini CLI skills, Hermes Agent skills, Mistral Vibe skills, and converts to more tools via `scripts/convert.sh`. All 727 Python tools run anywhere Python runs. ### Skills vs Agents vs Personas | | Skills | Agents | Personas | |---|---|---|---| | **Purpose** | How to execute a task | What task to do | Who is thinking | | **Scope** | Single domain | Single domain | Cross-domain | | **Voice** | Neutral | Professional | Personality-driven | | **Example** | "Follow these steps for SEO" | "Run a security audit" | "Think like a startup CTO" | All three work together. See [Orchestration](#orchestration) for how to combine them. --- ## Quick Install > **Windows users:** clone with `git clone -c core.symlinks=true` (Developer Mode enabled) — otherwise the `.gemini/`/`.codex/`/`.vibe/`/`.hermes/` mirror trees check out as 1-line pointer text files instead of skills — and set `PYTHONUTF8=1` so tools that print Unicode don't crash on legacy-codepage consoles. Details: [INSTALLATION.md → Windows Notes](INSTALLATION.md#windows-notes). ### Gemini CLI (New) ```bash # Clone the repository git clone https://github.com/alirezarezvani/claude-skills.git cd claude-skills # Run the setup script ./scripts/gemini-install.sh # Start using skills > activate_skill(name="senior-architect") ``` ### Claude Code (Recommended) ```bash # Add the marketplace /plugin marketplace add alirezarezvani/claude-skills # Install by domain /plugin install engineering-skills@claude-code-skills # 24 core engineering /plugin install engineering-advanced-skills@claude-code-skills # 25 POWERFUL-tier /plugin install product-skills@claude-code-skills # 12 product skills /plugin install marketing-skills@claude-code-skills # 43 marketing skills /plugin install ra-qm-skills@claude-code-skills # 12 regulatory/quality /plugin install pm-skills@claude-code-skills # 6 project management /plugin install c-level-skills@claude-code-skills # 28 C-level advisory (full C-suite) /plugin install business-growth-skills@claude-code-skills # 4 business & growth /plugin install finance-skills@claude-code-skills # 2 finance (analyst + SaaS metrics) # Or install individual skills /plugin install skill-security-auditor@claude-code-skills # Security scanner /plugin install playwright-pro@claude-code-skills # Playwright testing toolkit /plugin install self-improving-agent@claude-code-skills # Auto-memory curation /plugin install content-creator@claude-code-skills # Single skill ``` ### OpenAI Codex ```bash npx agent-skills-cli add alirezarezvani/claude-skills --agent codex # Or: git clone + ./scripts/codex-install.sh ``` ### OpenClaw ```bash bash <(curl -s https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/scripts/openclaw-install.sh) ``` ### Manual Installation ```bash git clone https://github.com/alirezarezvani/claude-skills.git # Copy any skill folder to ~/.claude/skills/ (Claude Code) or ~/.codex/skills/ (Codex) ``` --- ## Multi-Tool Support (New) **Convert all 345 skills to 9 AI coding tools** with a single script: | Tool | Format | Install | |------|--------|---------| | **Cursor** | `.mdc` rules | `./scripts/install.sh --tool cursor --target .` | | **Aider** | `CONVENTIONS.md` | `./scripts/install.sh --tool aider --target .` | | **Kilo Code** | `.kilocode/rules/` | `./scripts/install.sh --tool kilocode --target .` | | **Windsurf** | `.windsurf/skills/` | `./scripts/install.sh --tool windsurf --target .` | | **OpenCode** | `.opencode/skills/` | `./scripts/install.sh --tool opencode --target .` | | **Augment** | `.augment/rules/` | `./scripts/install.sh --tool augment --target .` | | **Antigravity** | `~/.gemini/antigravity/skills/` | `./scripts/install.sh --tool antigravity` | | **Hermes Agent** | `~/.hermes/skills/` | `python scripts/sync-hermes-skills.py --verbose` | | **Mistral Vibe** | `~/.vibe/skills/` | `./scripts/vibe-install.sh` | **How it works:** ```bash # 1. Convert all skills to all tools (takes ~15 seconds) ./scripts/convert.sh --tool all # 2. Install into your project (with confirmation) ./scripts/install.sh --tool cursor --target /path/to/project # Or use --force to skip confirmation: ./scripts/install.sh --tool aider --target . --force # 3. Verify find .cursor/rules -name "*.mdc" | wc -l # Should show 346 ``` **Each tool gets:** - ✅ All 345 skills converted to native format - ✅ Per-tool README with install/verify/update steps - ✅ Support for scripts, references, templates where applicable - ✅ Zero manual conversion work Run `./scripts/convert.sh --tool all` to generate tool-specific outputs locally. --- ## Skills Overview **388 production-ready skills across 20 domains:** | Domain | Skills | Highlights | Details | |--------|--------|------------|---------| | **🔧 Engineering — Core** | 53 | Architecture, frontend, backend, fullstack, QA, DevOps, SecOps, AI/ML, data, Playwright Pro (test gen, flaky fix, migrations), self-improving agent (auto-memory curation), security suite, a11y audit, **named-persona-adversarial-review** (review via named engineering philosophies), **embedded-iot-mentor** (MCU/board selection, firmware-reuse-first, breadboard-MVP discipline) | [engineering-team/](engineering-team/) | | **⚡ Engineering — POWERFUL** | 93 | Agent designer, RAG architect, database designer, CI/CD builder, security auditor, MCP builder, AgentHub, Helm charts, Terraform, self-eval, llm-wiki, tc-tracker, autoresearch-agent, **reliability portfolio** (feature-flags-architect, kubernetes-operator, chaos-engineering, slo-architect), ship-gate, security-guidance PreToolUse hook, **Matt Pocock skills** (write-a-skill, caveman, grill-me, handoff, grill-with-docs), **zero-hallucination-coder** (Discuss→Map→Decompose→Execute→Verify), **agent-harness** (goal→plan→execute→verify→close loops over any domain), **memory-engineering** (price the memory write path, pick which cost to pay, audit FACT/SKILL/LOG density, gate on a forgetting policy), **skillopt-sleep** (nightly gated self-evolution from real Claude Code sessions, vendored from microsoft/SkillOpt), **book-to-skill** (compile a book, docs folder, or spec collection into a knowledge-base skill, then package it as a plugin), **boost-asio-pro** (async C++ networking — version-gated coroutine/callback styles, strand discipline), **human-gate** (batched human review as a structured artifact + a gate that refuses to close on open blockers), **agent-memory** (four-tier L0-L3 memory ladder over Claude Code hooks; promotion earned by recurrence across sessions and days, redacted or contested claims refuse to promote, nothing reaches CLAUDE.md without a human adopt), **skill-doctor** (grade the
What people ask about claude-skills
What is alirezarezvani/claude-skills?
+
alirezarezvani/claude-skills is skills for the Claude AI ecosystem. 380 Claude Code skills & agent skills & plugins (30+ Agents, 70+ custom commands, 380+ skills, customizable references, scripts)for Claude Code, Codex, Gemini CLI, Cursor, and 8 more coding agents — engineering, marketing, product, compliance, C-level advisory, research, business operations, commercial & finance, and your daily productivity skills. It has 25.8k GitHub stars and its last recorded update is dated 2026-08-30.
How do I install claude-skills?
+
You can install claude-skills by cloning the repository (https://github.com/alirezarezvani/claude-skills) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is alirezarezvani/claude-skills safe to use?
+
Our security agent has analyzed alirezarezvani/claude-skills and assigned a Trust Score of 100/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains alirezarezvani/claude-skills?
+
alirezarezvani/claude-skills is maintained by alirezarezvani. The last recorded GitHub activity is dated 2026-08-30, with 15 open issues.
Are there alternatives to claude-skills?
+
Yes. On ClaudeWave you can browse similar skills at /categories/skills, sorted by popularity or recent activity.
Deploy claude-skills to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/alirezarezvani-claude-skills)<a href="https://claudewave.com/repo/alirezarezvani-claude-skills"><img src="https://claudewave.com/api/badge/alirezarezvani-claude-skills" alt="Featured on ClaudeWave: alirezarezvani/claude-skills" width="320" height="64" /></a>More Skills
A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io
Graphs that teach > graphs that impress. Turn any code into an interactive knowledge graph you can explore, search, and ask questions about. Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.
OmO: Just type "mass ulw" keyword with your prompt. Now you are the master of graph engineering.
Agent skill for beautiful, verifiable architecture, workflow, sequence, data-flow, and lifecycle diagrams—self-contained HTML with motion and crisp export.
Turn any AI agent into an AI Scientist. The #1 Agent Skills library for science, used by 190,000+ scientists worldwide. 165 ready-to-use validated skills plus 100+ scientific databases covering biology, chemistry, medicine, and drug discovery. Compatible with Cursor, Claude Code, Codex, Pi, Antigravity, and the open Agent Skills standard.
A curated collection of 1000+ agent skills from official dev teams and the community, compatible with Claude Code, Codex, Gemini CLI, Cursor, and more.