Sandbox
@seb1n/awesome-ai-agent-skills

Installable AI agent skill library for Claude Code and Codex

This repo collects 103 Agent Skills as self-contained `SKILL.md` workflows for agent tools. You can install the full library, browse starter packs, or add individual skills for areas like agent engineering, security, code review, research, and writing. The repo also includes validation scripts and a production demo that shows how several skills work together.

179 stars33 forksPythonUpdated 1mo ago
Who it's for

Builders who want reusable agent workflows for Claude Code, Codex, Gemini CLI, Cursor, Copilot, or Windsurf.

What it delivers

You can add proven workflows to your agent setup without rebuilding them from scratch.

What it does

103 packaged skills

Provides complete skill directories across agent engineering, coding, security, data, documents, marketing, sales, and more.

Cross-tool support

Targets Claude Code, OpenAI Codex, Gemini CLI, Cursor, GitHub Copilot, Windsurf, and other Agent Skills-compatible tools.

Starter packs

Groups related skills into packs like Production Agent Stack, Multi-Agent Systems, Agent Security, and Document Work.

Production demo

Includes `demos/production-agent-stack/run_demo.py --check` to show six skills working together in a controlled scenario.

Validation and contribution checks

Includes `scripts/validate_skills.py` plus GitHub workflows to check catalog consistency, naming, links, and skill structure.

How to get it

  1. 1Use the open-source Skills CLI to choose skills and install them for your detected agents
    npx skills add seb1n/awesome-ai-agent-skills
  2. 2List all available skills without installing
    npx skills add seb1n/awesome-ai-agent-skills --list
  3. 3Install one skill directly
    npx skills add seb1n/awesome-ai-agent-skills --skill agent-evaluation
  4. 4Install several complementary skills by repeating --skill
    npx skills add seb1n/awesome-ai-agent-skills \
      --skill agent-evaluation \
      --skill agent-observability \
      --skill human-in-the-loop
  5. 5Can a poisoned GitHub issue hijack a deployment agent? Run the offline demo with…
    python3 demos/production-agent-stack/run_demo.py --check

README

Awesome AI Agent Skills

103 ready-to-use AI agent skills for Claude Code, OpenAI Codex, Gemini CLI, Cursor, GitHub Copilot, Windsurf, and other tools that support the open Agent Skills standard.

Every skill is a complete, self-contained SKILL.md workflow for agent engineering, MCP, multi-agent systems, security, coding, research, data, DevOps, documents, marketing, sales, and more—not a link to another repository.

Skills Count GitHub stars License: MIT PRs Welcome Validate Skills Browse on skills.sh

⭐ If this library saves you time, star the repository to bookmark it and help more agent builders discover it.

Quick start · Production demo · Starter packs · Browse 103 skills · Supported agents · Contribute

Quick Start: Install Agent Skills

Use the open-source Skills CLI to choose skills and install them for your detected agents:

npx skills add seb1n/awesome-ai-agent-skills

List all available skills without installing:

npx skills add seb1n/awesome-ai-agent-skills --list

Install one skill directly:

npx skills add seb1n/awesome-ai-agent-skills --skill agent-evaluation

Install several complementary skills by repeating --skill:

npx skills add seb1n/awesome-ai-agent-skills \
  --skill agent-evaluation \
  --skill agent-observability \
  --skill human-in-the-loop

Starter Packs

PackRecommended skills
Production Agent Stackagent-evaluation, agent-observability, tool-schema-design, human-in-the-loop, prompt-injection-defense, agent-red-teaming
Multi-Agent Systemsmulti-agent-orchestration, mcp-server-building, agent-evaluation
Agent Securityprompt-injection-defense, agent-red-teaming, skill-supply-chain-audit
Document Workpdf-processing, spreadsheet-analysis, presentation-creation

Production Agent Stack Demo

Can a poisoned GitHub issue hijack a deployment agent? Run the offline demo with deterministic outcomes to compare a fragile agent boundary with a controlled stack built from six complementary skills:

python3 demos/production-agent-stack/run_demo.py --check

The committed fixtures move from 1/5 to 5/5 checks passed, with strict tool-schema, approval-policy, trust-boundary, trace-privacy, evaluation, and red-team evidence. The demo uses local mock effects only—no API keys, network requests, model calls, shell invocation, or real deployment.

Explore the Production Agent Stack demo →

What Are Agent Skills?

Agent Skills are reusable instruction packages that teach an AI agent when and how to complete a task. Each skill follows the open Agent Skills standard: a SKILL.md file with activation metadata and step-by-step guidance, plus optional scripts, references, and assets. Agents load a skill only when it is relevant, keeping context focused.

Why This Library?

Unlike collections that send you to external repositories, Awesome AI Agent Skills keeps every workflow in one inspectable, installable library.

  • Ready to use: Install a single skill, a starter pack, or choose from the complete catalog.
  • Cross-agent compatible: Use the same skills with Claude Code, OpenAI Codex, Gemini CLI, Cursor, GitHub Copilot, Windsurf, and other compatible tools.
  • Validated structure: CI checks names, activation descriptions, links, duplicates, catalog synchronization, skill count, and bundled Python syntax.
  • Progressive disclosure: Deeper skills bundle focused scripts, references, and assets without loading everything into context.
  • Broad real-world coverage: Build agents for engineering, security, data, research, documents, compliance, finance, marketing, sales, and customer success.
  • Open source: The library is MIT licensed and open to review, adaptation, and contribution.

Supported Agents

The Skills CLI detects supported agents automatically. For manual installation, copy a skill directory into the appropriate project or global path:

PlatformProject PathGlobal Path
Claude Code.claude/skills/~/.claude/skills/
OpenAI Codex.agents/skills/~/.agents/skills/
Gemini CLI.gemini/skills/~/.gemini/skills/
Cursor.cursor/skills/~/.cursor/skills/
GitHub Copilot.github/skills/~/.copilot/skills/
Windsurf.windsurf/skills/~/.codeium/windsurf/skills/

Skills Index

Browse all 103 skills by category, or use the full searchable index below.

Agent BuildingTechnicalBusiness & Knowledge
Agent EngineeringCode & DevelopmentCommunication
Agent SecurityData & AnalyticsCustomer Success
Context EngineeringDatabaseFinance & Accounting
AI/ML OperationsDevOps & InfrastructureLegal & Compliance
API & IntegrationDocuments & FilesMarketing & SEO
SecurityDesign & UI/UXSales
Productivity & WorkflowResearch & KnowledgeWriting & Content

AI/ML Operations

SkillDescription
data-labelingCreate labeled datasets for machine learning model training
hyperparameter-tuningOptimize model hyperparameters for better performance
ml-pipeline-creationBuild end-to-end machine learning pipelines
model-deploymentDeploy trained models to production environments
model-trainingTrain machine learning models on given datasets

Agent Engineering

SkillDescription
agent-evaluationDesign reproducible evaluations, graders, baselines, and release gates for AI agents
agent-observabilityInstrument agent traces, metrics, cost attribution, dashboards, and investigations
human-in-the-loopDesign auditable approval gates, escalation paths, and safe state transitions
mcp-server-buildingBuild and verify secure, interoperable Model Context Protocol servers
multi-agent-orchestrationCoordinate bounded multi-agent workflows, handoffs, shared state, and recovery
tool-schema-designDesign precise model-facing tool schemas with explicit side effects and safe defaults

Agent Security

SkillDescription
agent-red-teamingPlan authorized adversarial tests for agent behavior, tools, memory, and controls
prompt-injection-defenseDefend agent workflows against direct and indirect prompt injection
skill-supply-chain-auditAudit skill bundles for malicious instructions, unsafe scripts, provenance, and excessive permissions

API & Integration

SkillDescription
api-designDesign RESTful APIs with resources, endpoints, and data models
api-integrationIntegrate third-party APIs into applications
graphql-api-designDesign GraphQL schemas, queries, and mutations
oauth-2-0-setupImplement OAuth 2.0 authentication flows
webhook-setupConfigure webhooks for event-driven integrations

Code & Development

SkillDescription
code-documentationGenerate comprehensive code documentation
code-reviewReview code for bugs, style violations, and performance issues
debuggingIdentify and fix errors with root cause analysis
refactoringImprove code quality and maintainability
testingWrite and run unit, integration, and end-to-end tests
version-controlManage Git workflows, branching, and merging

Communication

SkillDescription
chatbot-conversation-designDesign conversational flows for chatbots
email-draftingDraft professional emails for various purposes
meeting-transcriptionTranscribe and summarize meeting recordings
presentation-creationCreate slide decks and presentations
report-generationGenerate structured business and technical reports

Customer Success

SkillDescription
churn-analysisIdentify at-risk accounts and churn indicators
customer-feedback-analysisAnalyze NPS, CSAT, and qualitative feedback for themes
knowledge-base-article-writingWrite help center articles and FAQ entries
onboarding-playbook-creationDesign customer onboarding workflows and checklists
ticket-triageClassify, prioritize, and route support tickets

Context Engineering

SkillDescription
context-compressionCompress context to reduce token usage
context-injectionInject relevant context into agent prompts
context-optimizationOptimize context for improved agent performance
context-rankingRank and prioritize context by relevance
context-retrievalRetrieve relevant context from knowledge bases

Data & Analytics

SkillDescription
data-analysisAnalyze datasets to extract insights and identify trends
data-cleaningClean and preprocess raw data for analysis
data-visualizationCreate charts, graphs, and interactive visualizations
exploratory-data-analysisPerform initial data exploration and profiling
sql-query-generationGenerate optimized SQL queries from natural language

Database

SkillDescription
database-backupCreate and manage database backups
database-migrationPlan and execute database schema migrations
database-schema-designDesign normalized database schemas
database-seedingPopulate databases with test or initial data
query-optimizationOptimize slow database queries

Design & UI/UX

SkillDescription
accessibility-testingTest interfaces for WCAG compliance
frontend-designDesign and build frontend interfaces
logo-designCreate logo concepts and brand identity
user-flow-mappingMap user journeys and interaction flows
wireframingCreate wireframes and low-fidelity mockups

Documents & Files

SkillDescription
pdf-processingExtract, transform, create, and visually verify PDF documents safely
spreadsheet-analysisAnalyze and modify spreadsheets while preserving formulas, structure, and auditability

Finance & Accounting

SkillDescription
budget-planningCreate and manage budgets with variance analysis
expense-categorizationClassify expenses by category, department, and tax deductibility
financial-modelingBuild financial projections, P&L, and DCF models
financial-report-generationGenerate balance sheets, cash flow statements, and financial summaries
invoice-processingExtract, validate, and categorize invoice data

DevOps & Infrastructure

SkillDescription
ci-cdSet up CI/CD pipelines for automated builds and deployments
cloud-monitoringConfigure cloud monitoring and alerting
docker-compose-setupCreate Docker Compose configurations for multi-service apps
infrastructure-as-codeDefine infrastructure using Terraform, Pulumi, or CloudFormation
kubernetes-deploymentDeploy and manage applications on Kubernetes

Legal & Compliance

SkillDescription
compliance-checklist-generationCreate compliance checklists for SOC2, HIPAA, PCI-DSS, and GDPR
contract-reviewAnalyze contracts for risks, obligations, and key clauses
eu-ai-act-readinessAssess EU AI Act readiness with dated evidence, gaps, owners, and counsel review
license-analysisAnalyze open-source license compatibility and obligations
privacy-policy-draftingDraft privacy-policy language and a jurisdiction-aware review checklist
terms-of-service-generationDraft Terms of Service documents for web apps and SaaS

Marketing & SEO

SkillDescription
analytics-reportingGenerate marketing analytics reports
content-strategyDevelop content marketing strategies
keyword-researchResearch and analyze keywords for SEO
seo-optimizationOptimize webpages for search engine visibility
social-media-postingCreate and schedule social media content

Productivity & Workflow

SkillDescription
file-organizationOrganize and structure files and directories
meeting-schedulerSchedule meetings across calendars and time zones
note-takingTake structured notes from meetings and documents
project-managementManage tasks, milestones, and team coordination
task-automationAutomate repetitive tasks and workflows

Research & Knowledge

SkillDescription
deep-researchConduct comprehensive multi-source research
fact-checkingVerify claims against authoritative sources
knowledge-graph-creationBuild knowledge graphs from unstructured data
literature-reviewReview and synthesize academic literature
summarizationSummarize long documents and articles

Sales

SkillDescription
competitive-battlecard-creationBuild sales battlecards for competitive positioning
crm-data-enrichmentEnrich CRM records with firmographic and contact data
lead-scoringScore and prioritize leads based on fit and engagement signals
proposal-generationCreate tailored sales proposals and RFP responses
sales-email-sequencesDesign multi-touch outbound email sequences

Security

SkillDescription
dependency-scanningScan dependencies for known vulnerabilities
dynamic-application-security-testingTest running applications for security flaws
security-auditPerform comprehensive security audits
static-application-security-testingAnalyze source code for security vulnerabilities
threat-modelingIdentify and prioritize security threats

Writing & Content

SkillDescription
blog-post-writingWrite engaging blog posts and articles
copywritingWrite persuasive marketing and advertising copy
proofreadingProofread and edit text for grammar and clarity
technical-writingWrite technical documentation and user guides
translationTranslate text between languages

Skill Format

Each skill follows the Agent Skills open standard. A skill is a directory containing a SKILL.md file with YAML frontmatter and Markdown instructions:

skill-name/
├── SKILL.md          # Required: Instructions and metadata
├── agents/           # Optional: Product-specific UI metadata
├── scripts/          # Optional: Executable scripts
├── references/       # Optional: Reference documentation
└── assets/           # Optional: Templates and resources

The SKILL.md file structure:

---
name: skill-name
description: What the skill does. Use when the user provides these inputs or requests this workflow.
---

# Skill Name

Instructions, workflows, and examples for the agent.

Quality and Validation

Run the zero-dependency catalog validator locally:

python3 scripts/validate_skills.py

The same validation runs in CI. New and materially revised skills must also test one normal prompt, one edge or failure prompt, and every executable script. See CONTRIBUTING.md for the complete quality and safety checklist.

Contributing

We welcome contributions from the community. Whether you want to add a new skill, improve an existing one, or fix a bug, please see our CONTRIBUTING.md for guidelines.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Files in the repo

Repository payload31 top-level entries
  • .github
  • agent-engineering
  • agent-security
  • ai-ml-operations
  • api-and-integration
  • code-and-development
  • communication
  • context-engineering
  • customer-success
  • data-and-analytics
  • database
  • demos
  • design-and-ui-ux
  • devops-and-infrastructure
  • documents-and-files
  • finance-and-accounting
  • legal-and-compliance
  • marketing-and-seo
  • productivity-and-workflow
  • research-and-knowledge
  • sales
  • scripts
  • security
  • writing-and-content
  • .gitignore
  • CHANGELOG.md
  • CONTRIBUTING.md
  • LICENSE
  • README.md
  • SECURITY.md
  • SKILL_TEMPLATE.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More collections

The awesome collection of OpenClaw skills. 5,400+ skills filtered and categorized from the official OpenClaw Skills Registry.🦞

52k

Extracted system prompts from Anthropic - Claude Fable 5.1, Opus 5, Claude Design, Claude Code. OpenAI - ChatGPT GPT-6-Astra, Codex. Google - Gemini 3.8 Flash, 3.1 Pro, Antigravity. xAI - Grok, Grok Bot, Cursor, Kimi and more! Updated regularly.

65k
1 add