# Awesome Agent Skills — Copy-Paste Toolpacks for Agents > Directory of agent skills plus installer scripts for Cursor and Claude Code. Includes interactive install/uninstall/list flows and manual install links. ## Install Save the content below to `.claude/skills/` or append to your `CLAUDE.md`: ## Quick Use ```bash # One-click install (interactive) curl -sL https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.sh | bash # Windows PowerShell # irm https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.ps1 | iex ``` ```bash # Manual: browse examples/ and install into your agent’s skill directory ``` ## Intro Awesome Agent Skills is both a directory and a bootstrapper: it collects skill references and ships an installer that can place bundled example skills into your agent environment. Use it to standardize a team’s baseline skill set across tools. **Best for:** teams that want a quick baseline of agent skills installed consistently across Cursor/Claude Code **Works with:** bash/PowerShell, agent skill directories, Cursor/Claude Code skill loaders **Setup time:** 2–10 minutes ### Key facts (verified) - README notes the installer installs bundled example skills from `examples/` (not every third-party project). - Includes both bash and PowerShell installers for cross-platform setups. - GitHub: 500 stars · 63 forks; pushed 2026-05-12 (GitHub API verified). ## Main Use this repo as a *skills bootstrap layer*: - Install the bundled examples first. - Replace/extend with your team’s audited skills. - Keep skill sources pinned (git commit/versions) for reproducible agent behavior. If you manage multiple agent clients, document where each client expects its skills so the installer output is predictable. ### README excerpt (verbatim) # Awesome Agent Skills

Awesome Agent Skills

PRs Welcome GitHub Stars

🔍 Search Skills Online

> Modular instruction packages that give AI coding assistants on-demand capabilities for specific tasks, working across Cursor, Claude Code, GitHub Copilot, and more. English | [简体中文](README_ZH.md) ## Contents - [Quick Start](#quick-start) - [What Are Agent Skills](#what-are-agent-skills) - [Official Resources](#official-resources) - [Skills Collections](#skills-collections) - [Development Tools](#development-tools) - [Productivity](#productivity) - [DevOps](#devops) - [Data Processing](#data-processing) - [Writing](#writing) - [Design](#design) ## Quick Start ### One-Click Install (Recommended) **macOS / Linux:** ```bash # Interactive mode - install, uninstall, or list curl -sL https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.sh | bash # Or install all skills to a specific platform curl -sL https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.sh | bash -s -- -p cursor -a ``` **Windows (PowerShell):** ```powershell # Download and run the install script irm https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.ps1 | iex ``` > Note: The installer currently installs the bundled example skills from this repository's `examples/` directory. It is not a general-purpose package manager for every third-party project listed below. ### Manual Install ```bash # Clone examples from this repository git clone https://github.com/JackyST0/awesome-agent-skills.git cp -r awesome-agent-skills/examples/code-review ~/.cursor/skills/ # Or clone official skills git clone https://github.com/anthropics/skills.git ~/.cursor/skills/anthropics ``` > 📖 See [How to Use Agent Skills](docs/how-to-use.md) for the complete guide. ## What Are Agent Skills Agent Skills are instruction sets, scripts, and resources that AI agents can discover and use to perform specific tasks. Each skill contains a `SKILL.md` file that tells the AI how to use it. Skills work across multiple platforms: |Platform |Global Directory |Project Directory | |-----------|-----------------------------|--------------------| ### FAQ **Q: Does it install every linked project?** A: No—README says the installer installs the bundled examples under `examples/`. **Q: Can I uninstall?** A: Yes—README describes interactive install/uninstall/list flows. **Q: How do I keep it safe?** A: Treat skills as code: audit sources, pin versions, and review updates before rollout. ## Source & Thanks > Source: https://github.com/JackyST0/awesome-agent-skills > License: CC0-1.0 > GitHub stars: 500 · forks: 63 --- ## 快速使用 ```bash # 一键安装(交互式) curl -sL https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.sh | bash # Windows PowerShell # irm https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.ps1 | iex ``` ```bash # 手动:浏览 examples/,安装到你的 agent skills 目录 ``` ## 简介 Awesome Agent Skills 既是目录也是“脚手架”:它汇总了技能资源,同时提供安装脚本,把仓库内示例技能安装到你的 agent 环境里。适合用来统一团队的基础技能集。 **最适合:** 希望在 Cursor/Claude Code 等环境快速统一基础技能的团队 **适配:** bash/PowerShell、agent skills 目录、Cursor/Claude Code 的 skills 加载机制 **配置时间:** 2–10 分钟 ### 关键事实(已验证) - README 明确:安装器安装的是仓库 `examples/` 里的示例技能(不是所有第三方项目)。 - 同时提供 bash 与 PowerShell 安装方式,便于跨平台。 - GitHub:500 stars · 63 forks;最近更新 2026-05-12(GitHub API 验证)。 ## 正文 把它当作“技能引导层”使用: - 先装好仓库自带的示例技能; - 再替换/扩展为团队审计通过的技能; - 技能来源尽量固定版本(commit/版本号),保证可复现。 多客户端场景要明确每个客户端的 skills 目录位置,避免脚本输出不一致。 ### README 原文节选(verbatim) # Awesome Agent Skills

Awesome Agent Skills

PRs Welcome GitHub Stars

🔍 Search Skills Online

> Modular instruction packages that give AI coding assistants on-demand capabilities for specific tasks, working across Cursor, Claude Code, GitHub Copilot, and more. English | [简体中文](README_ZH.md) ## Contents - [Quick Start](#quick-start) - [What Are Agent Skills](#what-are-agent-skills) - [Official Resources](#official-resources) - [Skills Collections](#skills-collections) - [Development Tools](#development-tools) - [Productivity](#productivity) - [DevOps](#devops) - [Data Processing](#data-processing) - [Writing](#writing) - [Design](#design) ## Quick Start ### One-Click Install (Recommended) **macOS / Linux:** ```bash # Interactive mode - install, uninstall, or list curl -sL https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.sh | bash # Or install all skills to a specific platform curl -sL https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.sh | bash -s -- -p cursor -a ``` **Windows (PowerShell):** ```powershell # Download and run the install script irm https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/main/install.ps1 | iex ``` > Note: The installer currently installs the bundled example skills from this repository's `examples/` directory. It is not a general-purpose package manager for every third-party project listed below. ### Manual Install ```bash # Clone examples from this repository git clone https://github.com/JackyST0/awesome-agent-skills.git cp -r awesome-agent-skills/examples/code-review ~/.cursor/skills/ # Or clone official skills git clone https://github.com/anthropics/skills.git ~/.cursor/skills/anthropics ``` > 📖 See [How to Use Agent Skills](docs/how-to-use.md) for the complete guide. ## What Are Agent Skills Agent Skills are instruction sets, scripts, and resources that AI agents can discover and use to perform specific tasks. Each skill contains a `SKILL.md` file that tells the AI how to use it. Skills work across multiple platforms: |Platform |Global Directory |Project Directory | |-----------|-----------------------------|--------------------| ### FAQ **它会安装目录里所有项目吗?** 答:不会。README 说明安装器只安装 `examples/` 里的示例技能。 **支持卸载吗?** 答:支持。README 提到交互式安装/卸载/列表流程。 **如何更安全?** 答:把技能当代码:审计来源、固定版本、更新前 review 再推广。 ## 来源与感谢 > Source: https://github.com/JackyST0/awesome-agent-skills > License: CC0-1.0 > GitHub stars: 500 · forks: 63 --- Source: https://tokrepo.com/en/workflows/awesome-agent-skills-copy-paste-toolpacks-for-agents Author: Skill Factory