Skip to content

Repository files navigation

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 | 简体中文

Contents

Quick Start

One-Click Install (Recommended)

macOS / Linux:

# Use a reviewed release tag or full commit SHA, never a moving branch name.
export AAS_REF="v1.0.0"
base_url="https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/$AAS_REF"
curl --fail --proto '=https' --tlsv1.2 -LO "$base_url/install.sh" -LO "$base_url/checksums.txt"
shasum -a 256 -c checksums.txt --ignore-missing

# Interactive mode, or install all skills to a specific platform
AAS_REPOSITORY_REF="$AAS_REF" bash install.sh
AAS_REPOSITORY_REF="$AAS_REF" bash install.sh -p cursor -a

Windows (PowerShell):

# Use a reviewed release tag or full commit SHA, never a moving branch name.
$AAS_REF = "v1.0.0"
$baseUrl = "https://raw.githubusercontent.com/JackyST0/awesome-agent-skills/$AAS_REF"
Invoke-WebRequest -Uri "$baseUrl/install.ps1" -OutFile "install.ps1"
Invoke-WebRequest -Uri "$baseUrl/checksums.txt" -OutFile "checksums.txt"
$expected = (Select-String -Path checksums.txt -Pattern ' install\.ps1$').Line.Split()[0]
if ((Get-FileHash install.ps1 -Algorithm SHA256).Hash.ToLower() -ne $expected) { throw "SHA-256 verification failed." }

.\install.ps1 -RepositoryRef $AAS_REF

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. Use a versioned release tag (recommended) or full commit SHA and verify its checksum before executing the script.

Manual Install

# 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 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
Cursor ~/.cursor/skills/ .cursor/skills/
Claude Code ~/.claude/skills/ .claude/skills/
Copilot ~/.copilot/skills/ .github/skills/
Windsurf ~/.windsurf/skills/ .windsurf/skills/
Codex ~/.codex/skills/ .codex/skills/
OpenCode ~/.config/opencode/skills/ .opencode/skills/
OpenClaw ~/.openclaw/skills/ skills/

Official Resources

Skills Collections

  • awesome-cursorrules - The most comprehensive Cursor Rules collection.
  • everything-claude-code - Complete Claude Code configs (agents/skills/hooks).
  • heilcheng/awesome-agent-skills - Community-curated Agent Skills directory focused on real-world skills used by engineering teams.
  • kasetto - An extremely fast AI skills manager, written in Rust.
  • awesome-claude-skills - Claude Skills collection by Composio.
  • awesome-claude-code - Claude Code skills/hooks/plugins collection.
  • openskills - Universal Skills loader (npm install).
  • awesome-claude-skills - Claude Skills collection by VoltAgent.
  • claude-skills - Claude Skills documentation by Simon Willison.
  • claude-skills-collection - Curated official and community Skills.
  • cursor-rules-and-prompts - Cursor rules and prompts collection.
  • Ai-Agent-Skills - Universal AI Skills installer (Homebrew for Skills).
  • claude-code-kit - Claude Code toolkit with auto-activating skills.
  • best-skills - High-quality Skills collection for paper writing, dev workflow, and content creation.
  • skillkit - Cross-platform skills manager that installs, translates, and syncs skills across 40+ agents.
  • OrkasVideoStudio - Agent video-production skill pack with CLI and MCP runtime.
  • Skywork-Skills - Officially maintained Skywork agent skills for AI office workflows, including PPT, documents, Excel, design, search, and music.
  • suede-creator-skills - Skills pack for Claude Code and Codex covering code review and grading, design, marketing and SEO, agent workflows, and mobile app shipping.
  • unifapi-agent/skills - Public-data MCP and KOL pricing Skills for Codex, Claude Code, Cursor, and other agents.
  • youtube-skills - YouTube transcript, video search, channel and playlist skills for Claude Code, OpenClaw, Hermes Agent, and other agent runtimes.

Development Tools

Productivity

  • claude-code-workflows - Production-grade dev workflows with quality checks.
  • claude-skills - 20+ productivity tools with 8 expert Agents.
  • claude-code-skill-factory - Skills factory for batch generation and deployment.
  • obra/superpowers - Complete dev workflow (Debug/TDD/Code Review/Planning).
  • cognyai/claude-code-marketing-skills - AI marketing skills (SEO Audit/Landing Page Review/Competitor Analysis/Ad Copywriting/Lead Qualification) with MCP server integration.
  • coreyhaines31/marketingskills - Marketing Skills (SEO/Copywriting/CRO/Ads).
  • nowork-studio/NotFair - Claude Code skills for SEO, GEO, Google Ads, and Meta Ads; connects to live data via Google Ads MCP, Meta Ads MCP, Google Search Console MCP, and Google Analytics (GA4) MCP.
  • gingiris-launch - Product Hunt launch playbook for AI products, startups, and open source GTM.
  • gingiris-opensource - Open source marketing playbook focused on GitHub growth and launch strategy.
  • gingiris-b2b-growth - B2B SaaS growth playbook covering PLG, SLG, and go-to-market strategy.
  • gingiris-aso-growth - ASO and mobile app growth playbook for cold start, UGC, and distribution.
  • alpha-insights - Harness-enforced business research skill with consulting frameworks, evidence grading, stage gates, and HTML reports.
  • salespeak-ai/buyer-eval-skill - B2B vendor evaluation skill: 7-dimension scoring and evidence-tracked scorecards for procurement and build-vs-buy decisions.
  • changelog-generator - Generate changelogs from Git commits.
  • wiki - Build indexed Markdown knowledge bases that agents map, search, read, update, and lint.

DevOps

  • devops-claude-skills - DevOps workflow marketplace with Terraform/K8s.
  • devops-engineer - DevOps engineer Skill for cloud infrastructure management.
  • ci-cd - Design, optimize, and security-scan CI/CD pipelines.
  • claudekit-skills - Docker/GCP/Cloudflare deployment and management.
  • claudebox - Dockerized Claude Code dev environment.

Data Processing

  • bilig-workpaper - Formula-backed WorkPaper skill for editing cells, recalculating, verifying readback, and persisting spreadsheet logic from agents.
  • d3-visualization - D3.js data visualization Skill.
  • context-engineering - Context engineering and multi-Agent architecture.

Writing

  • doc-coauthoring - Document co-authoring Skill.
  • internal-comms - Internal communications generation Skill.
  • docx - Word document processing Skill.
  • pdf - Portable document format processing Skill.
  • pptx - PowerPoint presentation generator Skill.
  • xlsx - Excel spreadsheet processing Skill.

Design

Contributing

We welcome contributions! See CONTRIBUTING.md for detailed guidelines.

Footnotes

Create Your Own Skill

📁 Examples: Check out examples/ for 5 ready-to-use skill templates.

📖 Guide: See How to Create a Skill for the complete guide.

📋 Specification: See SKILL.md Specification for format standards and best practices.

Support

If this project helps you, you can support its maintenance:

Show support options

Sponsorship does not affect listing decisions. All submissions are reviewed using the same contribution criteria.

PayPal: paypal.me/JackyST0

Star History

Star History Chart

About

🤖 精选的 AI Agent Skills 列表,适用于 Cursor、Claude Code、GitHub Copilot 等 AI 编程工具

Topics

Resources

Contributing

Stars

624 stars

Watchers

4 watching

Forks

Releases

Contributors

Languages