Skip to content

nailcagri/ai-agents-skills

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

12 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

AI Agent Skills GitHub Star AWS GenAI Superstar

AI Agent Skills Hero

🧠 Agent Skills Repository


πŸ†• NEW: Honest Agent Skill

Just added! A universal skill that configures ALL your AI coding agents to be honest, objective, and non-sycophantic. Run it once, and every agent (Claude Code, GitHub Copilot, Cursor, Windsurf, etc.) will stop telling you what you want to hear and start giving you honest, direct feedback.

πŸ”— View the Honest Agent Skill β†’

What it does:

  • Configures honest, objective communication across 7 verified AI coding agents
  • One-time setup that updates all your agent instruction files
  • Supports both project-level and global configuration
  • Works with Claude Code, Copilot, Cursor, Windsurf, Cline, Aider, and Continue.dev

A curated collection of AI agent skills for enhanced coding assistance

Supercharge your AI coding agents with specialized knowledge and production-ready patterns

Skills β€’ Quick Start β€’ Usage β€’ Contributing


πŸ‘€ Author

Yuval Avidani

Yuval Avidani

AI Builder & Speaker | GitHub Star ⭐ | AWS GenAI Superstar 🌟

Building the future with AI agents, automation, and cutting-edge technology.
20+ years turning complex ideas into production-ready solutions.

Website GitHub Projects

🎀 Speaker & Enterprise AI Trainer
πŸ† Recognized for open-source contributions

πŸ€– This repository was created by Yuval Avidani using GitHub Copilot via VS Code Insiders β€” demonstrating the power of AI-assisted development!


✨ What Are Agent Skills?

Agent skills are specialized knowledge modules that enhance AI coding agents with domain-specific expertise. They provide:

  • 🎯 Focused Knowledge β€” Only what the AI doesn't already know
  • πŸ“ Production-Ready Code β€” Working examples, not abstract concepts
  • ⚑ Quick Activation β€” Trigger keywords for instant context
  • πŸ”„ Reusable Patterns β€” Copy once, use everywhere

�️ Understanding Agent Skills (Open Standard)

What is SKILL.md?

SKILL.md is a simple, open format for giving AI agents new capabilities and expertise. It's an open standard that works across multiple AI coding agents and platforms.

Agent Skills are folders of instructions, scripts, and resources that your AI agent can discover and use to perform tasks more accurately and efficiently.

Why Use Agent Skills?

For You (Developer):

  • πŸ“š Learn Faster β€” Pre-built knowledge from experts in your domain
  • 🎯 Better Results β€” Agents have context to work more accurately
  • ♻️ Reuse Everywhere β€” Same skill works across Copilot, Claude Code, Cursor, Windsurf, and more
  • πŸ” Version Control β€” Skills are part of your repository, tracked in git

For Your Team:

  • πŸ“– Capture Knowledge β€” Document processes and best practices
  • πŸš€ Share Skills β€” Distribute expertise across projects
  • 🏒 Enterprise Use β€” Centralize organizational knowledge

For AI Agents:

  • 🧠 Domain Expertise β€” Perform specialized tasks reliably
  • πŸ”§ New Capabilities β€” Enable new workflows and automations
  • πŸŽ“ Context β€” Access procedures, scripts, and examples on demand

What Can You Do With Agent Skills?

Agent skills enable AI agents to:

  • Domain Expertise: Package specialized knowledge (legal review, data analysis, deployment procedures)
  • New Capabilities: Create presentations, build MCP servers, analyze datasets, debug failures
  • Repeatable Workflows: Turn multi-step tasks into consistent, auditable processes
  • Interoperability: Reuse skills across different compatible agent products

πŸ“š How Agent Skills Work (Step-by-Step for Beginners)

Step 1: Understanding the File Structure

Each skill is a simple folder with a SKILL.md file inside:

your-project/
β”œβ”€β”€ .github/skills/          # GitHub Copilot project skills location
β”‚   └── my-skill-name/
β”‚       β”œβ”€β”€ SKILL.md         # Main skill file (required)
β”‚       β”œβ”€β”€ script.js        # Optional: supporting scripts
β”‚       └── examples.md      # Optional: more examples
β”œβ”€β”€ .claude/skills/          # Claude Code project skills location
β”‚   └── my-skill-name/
β”‚       └── SKILL.md
└── ~/.copilot/skills/       # Personal skills (available across all projects)
    └── my-skill-name/
        └── SKILL.md

Step 2: Understanding SKILL.md Format

Every SKILL.md file has two parts:

YAML Frontmatter (metadata):

---
name: my-skill-name           # Unique identifier (lowercase, hyphens for spaces)
description: What this skill  # When should the agent use this skill?
license: MIT                  # Optional: license information
---

Markdown Body (instructions): The rest of the file contains instructions and examples for the AI agent.

Step 3: A Real Example

Here's what a simple SKILL.md looks like:

---
name: github-actions-debugging
description: Guide for debugging failing GitHub Actions workflows. Use this when asked to debug CI/CD failures or workflow issues.
---

# Debugging GitHub Actions Workflows

When debugging a failing workflow:

1. **Check the job logs** - Look for error messages and stack traces
2. **Review recent changes** - What changed since the last successful run?
3. **Test locally** - Reproduce the issue in your local environment
4. **Fix and validate** - Make changes and verify they work

## Common Issues and Solutions

### Issue: Workflow fails with "Command not found"
**Solution**: Install the required tool in your workflow step

### Issue: Permission denied when running scripts
**Solution**: Add `chmod +x script.sh` before running the script

Step 4: Agent Discovers and Uses Your Skill

When you ask your AI agent to do something:

"Debug why our GitHub Actions workflow is failing"

The agent will:

  1. βœ… Recognize that you're asking about GitHub Actions
  2. βœ… Find the github-actions-debugging skill in your project
  3. βœ… Load the SKILL.md file into its context
  4. βœ… Follow the instructions to help you debug

Step 5: Supported Locations

Project Skills (specific to one repository):

  • your-repo/.github/skills/ β€” For GitHub Copilot
  • your-repo/.claude/skills/ β€” For Claude Code

Personal Skills (available across all projects on your machine):

  • ~/.copilot/skills/ β€” For GitHub Copilot (Copilot CLI and VS Code)
  • ~/.claude/skills/ β€” For Claude Code

Organization/Enterprise Skills (coming soon):

  • Enterprise-level skills support is in development

🀝 Supported AI Agents

Agent Skills work with these AI coding agents:

Agent Support Location
GitHub Copilot βœ… Full Support .github/skills/ or ~/.copilot/skills/
Claude Code βœ… Full Support .claude/skills/ or ~/.claude/skills/
Cursor βœ… Full Support .cursor/rules/
Windsurf βœ… Full Support .windsurf/rules/
VS Code Insiders βœ… Full Support Agent mode with skills
VS Code (Stable) ⏳ Coming Soon Support coming in future release

πŸ“¦ Available Skills

Skill Description Keywords
copilot-sdk GitHub Copilot SDK for building agentic applications Copilot SDK, GitHub SDK, agentic app, embed Copilot
honest-agent πŸ†• Configure all AI agents for honest, objective feedback honest agent, no sycophancy, objective, contradict me
aws-agentcore AWS Bedrock AgentCore development patterns AgentCore, Bedrock Agent, AWS agent
aws-strands Model-agnostic agent framework with Strands SDK Strands, ReAct agent, model-agnostic
aws-account-management AWS Organizations, IAM, billing & multi-account AWS Organizations, IAM, SCPs, Cost Explorer
langchain LangChain/LangGraph pipelines and agent workflows LangChain, LangGraph, RAG, LCEL
vercel Vercel deployment, serverless, and edge functions Vercel, serverless, edge function
railway Railway platform deployment and configuration Railway, deploy container
cloudflare Cloudflare Workers, Pages, D1, R2, KV & AI Cloudflare, Workers, D1, R2, edge computing
figma Figma API, component code generation & design tokens Figma API, design tokens, Figma to code
fal-ai Serverless AI image/video generation with fal.ai fal.ai, Flux, SDXL, AI image generation
mongodb MongoDB & Mongoose queries, aggregation pipelines MongoDB, Mongoose, aggregation, NoSQL
bun Bun JavaScript runtime, bundler & test runner Bun, bun.sh, JavaScript runtime
owasp-security OWASP Top 10 security vulnerabilities & prevention OWASP, security, XSS, SQL injection, CSRF
shabbat-times Jewish calendar data and Shabbat times integration Shabbat times, Hebcal, Zmanim
copilot-docs GitHub Copilot custom instructions reference copilot-instructions.md
nano-banana-pro Google Gemini 3 Pro Image generation Nano Banana Pro, Gemini 3 Pro Image
github-trending GitHub trending repositories scraping GitHub trending, trending repos
ux-design-systems Design systems and component libraries design system, design tokens, theming
web-accessibility WCAG compliance and accessibility patterns accessibility, a11y, WCAG, ARIA
mobile-responsiveness Responsive design and mobile-first patterns responsive, mobile-first, breakpoints
analytics-metrics Data visualization and analytics dashboards analytics, dashboard, charts, KPI
mermaid-diagrams Mermaid diagram syntax for visualizations Mermaid, flowchart, sequence diagram
local-llm-router Route queries to local LLMs in air-gapped networks with Serena MCP local LLM, Ollama, LM Studio, air-gapped, Serena, model routing

πŸš€ Quick Start

1. Clone the Repository

git clone https://github.com/yuval-avidani/ai-agents-skills.git

2. Copy Skills to Your Project

Choose your AI coding agent and follow the instructions below.


πŸ’» Setup Guide: Using Skills in Your Agent (For Beginners)

This guide walks you through setting up Agent Skills in your favorite coding agent, step by step.

🎯 Prerequisites

Before you start, you need:

  • A coding agent installed (Copilot, Claude Code, Cursor, or Windsurf)
  • A project folder on your computer
  • Basic familiarity with command line or your agent's UI

πŸ“ Step-by-Step Setup

Option 1: GitHub Copilot (Most Popular)

🟒 Setup GitHub Copilot with Skills

For Project Skills (specific to one repository):

  1. In your project folder, create the skills directory:

    mkdir -p .github/skills
  2. Copy the skills you want from this repository:

    # Copy a single skill
    cp -r skills/vercel .github/skills/
    
    # Or copy all skills
    cp -r skills/* .github/skills/
  3. Or manually create a skill:

    your-project/
    └── .github/
        └── skills/
            └── my-custom-skill/
                └── SKILL.md
    
  4. Open your project in VS Code and start using Copilot Agent

  5. Ask Copilot a question related to your skill, and it will automatically load it!

For Personal Skills (available across all your projects):

  1. Find your home directory (~ or C:\Users\YourUsername)

  2. Create personal skills folder:

    mkdir -p ~/.copilot/skills
  3. Copy skills there:

    cp -r skills/vercel ~/.copilot/skills/
  4. Now all your projects can use these skills automatically!

Verify it's working:

  • Open Copilot Agent
  • Ask about something covered in your skill (e.g., "How do I deploy to Vercel?")
  • Copilot will use the skill to help you

Option 2: Claude Code

🟣 Setup Claude Code with Skills

For Project Skills:

  1. In your project folder, create the skills directory:

    mkdir -p .claude/skills
  2. Copy the skills you want:

    # Single skill
    cp -r skills/langchain .claude/skills/
    
    # All skills
    cp -r skills/* .claude/skills/
  3. Open your project in Claude Code

  4. Chat with Claude about tasks covered in your skills - it will automatically use them!

For Personal Skills (available everywhere):

  1. Create personal skills folder:

    mkdir -p ~/.claude/skills
  2. Copy skills there:

    cp -r skills/aws-agentcore ~/.claude/skills/

Verify it's working:

  • Open Claude Code in your project
  • Ask about something in your skill
  • Claude will reference and use the skill

Option 3: Cursor

πŸ”΅ Setup Cursor with Skills

For Project Rules:

  1. In your project folder:

    mkdir -p .cursor/rules
  2. Copy SKILL.md files (rename them as rules):

    # Copy a skill as a rule file
    cp skills/figma/SKILL.md .cursor/rules/figma.md
    
    # Or copy multiple
    cp skills/*/SKILL.md .cursor/rules/
  3. In Cursor Settings, configure which rules to use:

    • Settings β†’ Rules β†’ Add project rules
    • Point to .cursor/rules/ folder
  4. Start using Cursor - it will apply these rules to your context automatically


Option 4: Windsurf

🟑 Setup Windsurf with Skills

For Project Rules:

  1. In your project folder:

    mkdir -p .windsurf/rules
  2. Copy skills as rules:

    # Copy specific skills
    cp skills/vercel/SKILL.md .windsurf/rules/vercel.md
    
    # Or copy all skills
    cp skills/*/SKILL.md .windsurf/rules/
  3. Windsurf automatically discovers rules in .windsurf/rules/

  4. Start building - Windsurf will use these rules contextually


πŸŽ“ What Happens After Setup?

Once you've set up your skills:

  1. Agent Detects Skills: Your AI agent scans the skill directories
  2. Agent Reads SKILL.md: It reads the name and description from frontmatter
  3. Agent Activates on Relevance: When you ask a question matching the description, the agent loads the skill
  4. Agent Follows Instructions: Your agent now has the context to help you accurately

πŸ’‘ Example: Using a Vercel Skill

You have this SKILL.md:

---
name: vercel-deployment
description: Deploying applications to Vercel. Use this when asked about deploying, hosting, or managing Vercel projects.
---

You ask your agent:

"Help me deploy my React app to Vercel"

Agent automatically:

  • βœ… Finds vercel-deployment skill
  • βœ… Loads SKILL.md into context
  • βœ… Follows the deployment instructions
  • βœ… Helps you deploy successfully!

πŸ› Troubleshooting

Problem Solution
Agent not using skill Restart your agent, or make sure folder path is correct
Skill file not found Verify SKILL.md is in the right folder and named exactly "SKILL.md"
Agent using wrong skill Make sure skill descriptions are descriptive enough to match your request

πŸ’» Usage (Advanced)


πŸ“ Skill Format

Each skill follows a consistent structure:

---
name: skill-name
description: Brief description with trigger keywords
---

# Skill Title

Quick start and core patterns...

🎯 Key Principles

Principle Description
Concise is key Only include what the AI doesn't already know
Progressive disclosure Start with quick start, then advanced patterns
Concrete examples Working code over abstract descriptions
Trigger keywords Include words that activate the skill

πŸ“ Repository Structure

ai-agents-skills/
β”œβ”€β”€ πŸ“„ README.md
β”œβ”€β”€ πŸ“ skills/
β”‚   β”œβ”€β”€ πŸ“ copilot-sdk/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ honest-agent/       # πŸ†• NEW!
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ aws-agentcore/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ aws-strands/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ aws-account-management/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ langchain/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ vercel/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ railway/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ cloudflare/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ figma/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ fal-ai/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ mongodb/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ bun/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ owasp-security/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ shabbat-times/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ copilot-docs/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ nano-banana-pro/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ github-trending/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ ux-design-systems/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ web-accessibility/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ mobile-responsiveness/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ analytics-metrics/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   β”œβ”€β”€ πŸ“ mermaid-diagrams/
β”‚   β”‚   └── πŸ“„ SKILL.md
β”‚   └── πŸ“ local-llm-router/
β”‚       β”œβ”€β”€ πŸ“„ SKILL.md
β”‚       └── πŸ“ references/
β”‚           └── πŸ“„ model-matrix.md
└── πŸ“ templates/
    └── πŸ“ skill-template/
        └── πŸ“„ SKILL.md

🀝 Contributing

We welcome contributions! Here's how to add a new skill:

  1. Fork this repository
  2. Create a new skill in skills/your-skill-name/SKILL.md
  3. Follow the skill template
  4. Submit a pull request

Contribution Guidelines

  • βœ… Include practical, production-ready code examples
  • βœ… Add trigger keywords in the description
  • βœ… Test all code snippets before submitting
  • βœ… Keep explanations concise but complete
  • ❌ Don't include basic concepts the AI already knows
  • ❌ Don't use placeholder code or TODOs

🌟 Star History

If you find this repository useful, please consider giving it a ⭐!


πŸ“„ License

MIT License β€” Feel free to use, modify, and distribute.


Made with ❀️ by Yuval Avidani

Building AI agents that matter

Follow on GitHub

About

🧠 AI Agent Skills Repository - A curated collection of specialized skills for AI coding agents (Claude Code, GitHub Copilot, Cursor, Windsurf). Created by Yuval Avidani using GitHub Copilot via VS Code Insiders.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors