Skip to content

skillcreatorai/Awesome-Agent-Skills

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Awesome Agent Skills

The universal skill repository for AI coding agents.
One command. Works everywhere.

Awesome Skills Compatible Agents License: Apache-2.0 npm

Browse Skills · Create Skills · Specification · Follow Updates


Quick Start

# Install any skill to any agent
npx ai-agent-skills install frontend-design
npx ai-agent-skills install pdf --agent cursor
npx ai-agent-skills install mcp-builder --agent vscode

That's it. The skill installs to the right location for your agent automatically.

Why This Exists

Every major AI coding agent now supports skills. But they're scattered everywhere.

This repo curates the best in one place. Quality over quantity. All skills follow the Agent Skills spec.

Compatible Agents

Agent Flag Install Location
Claude Code --agent claude (default) ~/.claude/skills/
VS Code / Copilot --agent vscode .github/skills/
Cursor --agent cursor .cursor/skills/
Amp --agent amp ~/.amp/skills/
Goose --agent goose ~/.config/goose/skills/
OpenCode --agent opencode ~/.opencode/skills/
Portable --agent project .skills/ (works with any agent)

Contents

Skills

Document Processing

Skill Description Install
docx Create, edit, analyze Word docs with tracked changes, comments, formatting npx ai-agent-skills install docx
pdf Extract text, tables, metadata, merge & annotate PDFs npx ai-agent-skills install pdf
pptx Read, generate, and adjust slides, layouts, templates npx ai-agent-skills install pptx
xlsx Spreadsheet manipulation: formulas, charts, data transformations npx ai-agent-skills install xlsx
Markdown to EPUB Converts markdown documents into professional EPUB ebook files External

Development & Code Tools

Skill Description Install
artifacts-builder Create elaborate HTML artifacts using React, Tailwind CSS, shadcn/ui npx ai-agent-skills install artifacts-builder
mcp-builder Create MCP servers for integrating external APIs with LLMs npx ai-agent-skills install mcp-builder
skill-creator Guide for creating effective agent skills npx ai-agent-skills install skill-creator
webapp-testing Test web applications using Playwright automation npx ai-agent-skills install webapp-testing
changelog-generator Create user-facing changelogs from git commits npx ai-agent-skills install changelog-generator
frontend-design Production-grade UI components and styling npx ai-agent-skills install frontend-design
code-review Automated PR review patterns npx ai-agent-skills install code-review
code-refactoring Systematic code improvement techniques npx ai-agent-skills install code-refactoring
backend-development APIs, databases, server architecture npx ai-agent-skills install backend-development
python-development Modern Python 3.12+ patterns npx ai-agent-skills install python-development
javascript-typescript ES6+, Node, React, TypeScript npx ai-agent-skills install javascript-typescript
aws-skills AWS development with CDK best practices External
D3.js Visualization D3 charts and interactive data visualizations External
Playwright Automation Browser automation for testing web apps External
iOS Simulator Interact with iOS Simulator for testing External

Data & Analysis

Skill Description Install
CSV Summarizer Analyze CSV files and generate insights with visualizations External
database-design Schema design and optimization npx ai-agent-skills install database-design

Business & Marketing

Skill Description Install
brand-guidelines Apply brand colors and typography to artifacts npx ai-agent-skills install brand-guidelines
competitive-ads-extractor Extract and analyze competitors' ads npx ai-agent-skills install competitive-ads-extractor
domain-name-brainstormer Generate domain name ideas and check availability npx ai-agent-skills install domain-name-brainstormer
internal-comms Write internal communications and status reports npx ai-agent-skills install internal-comms
lead-research-assistant Identify and qualify high-quality leads npx ai-agent-skills install lead-research-assistant
job-application Cover letters and applications using your CV npx ai-agent-skills install job-application

Communication & Writing

Skill Description Install
content-research-writer Research and write high-quality content with citations npx ai-agent-skills install content-research-writer
meeting-insights-analyzer Analyze meeting transcripts for behavioral patterns npx ai-agent-skills install meeting-insights-analyzer
code-documentation Generate docs from code npx ai-agent-skills install code-documentation

Creative & Media

Skill Description Install
canvas-design Create visual art in PNG and PDF documents npx ai-agent-skills install canvas-design
image-enhancer Improve image quality, resolution, sharpness npx ai-agent-skills install image-enhancer
slack-gif-creator Create animated GIFs optimized for Slack npx ai-agent-skills install slack-gif-creator
theme-factory Apply professional font and color themes npx ai-agent-skills install theme-factory
video-downloader Download videos from YouTube and other platforms npx ai-agent-skills install video-downloader
algorithmic-art Generative art with p5.js npx ai-agent-skills install algorithmic-art

Productivity & Organization

Skill Description Install
file-organizer Intelligently organize files and find duplicates npx ai-agent-skills install file-organizer
invoice-organizer Organize invoices and receipts for tax prep npx ai-agent-skills install invoice-organizer
raffle-winner-picker Randomly select winners for giveaways npx ai-agent-skills install raffle-winner-picker
jira-issues Create and manage Jira issues from natural language npx ai-agent-skills install jira-issues
qa-regression Automated regression testing with Playwright npx ai-agent-skills install qa-regression
llm-application-dev Build LLM-powered applications npx ai-agent-skills install llm-application-dev

Collaboration & Project Management

Skill Description Install
git-pushing Automate git operations and repository interactions External
review-implementing Evaluate code implementation plans External
test-fixing Detect failing tests and propose fixes External

Security & Systems

Skill Description Install
computer-forensics Digital forensics analysis and investigation External
threat-hunting Hunt for threats using Sigma detection rules External

Installation

One Command (Recommended)

# Install for Claude Code (default)
npx ai-agent-skills install <skill-name>

# Install for other agents
npx ai-agent-skills install <skill-name> --agent cursor
npx ai-agent-skills install <skill-name> --agent vscode
npx ai-agent-skills install <skill-name> --agent amp

Manual Install

# Clone the repo
git clone https://github.com/skillcreatorai/Awesome-Agent-Skills.git

# Copy a skill to your skills directory
cp -r Awesome-Agent-Skills/canvas-design ~/.claude/skills/

CLI Commands

npx ai-agent-skills list              # List all skills
npx ai-agent-skills search <query>    # Search skills
npx ai-agent-skills info <name>       # Get skill details
npx ai-agent-skills install <name>    # Install a skill

Creating Skills

Skill Structure

skill-name/
├── SKILL.md          # Required: Instructions and metadata
├── scripts/          # Optional: Helper scripts
├── templates/        # Optional: Document templates
└── resources/        # Optional: Reference files

Basic Template

---
name: my-skill-name
description: A clear description of what this skill does.
---

# My Skill Name

Detailed description of the skill's purpose.

## When to Use This Skill

- Use case 1
- Use case 2

## Instructions

[Detailed instructions for the AI agent]

## Examples

[Real-world examples]

Two Ways to Create Skills

  1. Generate in 30 seconds: skillcreator.ai/build
  2. Build manually: Follow the Agent Skills spec

Contributing

We welcome contributions! See CONTRIBUTING.md for details.

Quick Steps

  1. Fork this repo
  2. Add your skill folder with SKILL.md
  3. Test across multiple agents
  4. Submit PR with clear documentation

Resources

Official Documentation

Tools

License

Apache License 2.0. Individual skills may have different licenses.


Curated by SkillCreator.ai · Originally forked from ComposioHQ/awesome-claude-skills

About

A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows

Resources

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 92.0%
  • JavaScript 6.1%
  • Shell 1.9%