agentskills/agentskills

GitHub Trending (daily) Tools

Summary

Agent Skills is an open standard from Anthropic for packaging specialized knowledge and workflows into portable, version-controlled folders that AI agents can load on demand, enabling domain expertise and repeatable tasks with minimal context overhead.

Specification and documentation for Agent Skills
Original Article
View Cached Full Text

Cached at: 07/02/26, 11:33 AM

agentskills/agentskills

Source: https://github.com/agentskills/agentskills

Agent Skills

Discord

A standardized way to give AI agents new capabilities and expertise.

What are Agent Skills?

Agent Skills are a lightweight, open format for extending AI agent capabilities with specialized knowledge and workflows.

At its core, a skill is a folder containing a SKILL.md file. This file includes metadata (name and description, at minimum) and instructions that tell an agent how to perform a specific task. Skills can also bundle scripts, reference materials, templates, and other resources.

my-skill/
├── SKILL.md          # Required: metadata + instructions
├── scripts/          # Optional: executable code
├── references/       # Optional: documentation
├── assets/           # Optional: templates, resources
└── ...               # Any additional files or directories

Why Agent Skills?

Agents are increasingly capable, but often don’t have the context they need to do real work reliably. Skills solve this by packaging procedural knowledge and company-, team-, and user-specific context into portable, version-controlled folders that agents load on demand. This gives agents:

  • Domain expertise: Capture specialized knowledge — from legal review processes to data analysis pipelines to presentation formatting — as reusable instructions and resources.
  • Repeatable workflows: Turn multi-step tasks into consistent, auditable procedures.
  • Cross-product reuse: Build a skill once and use it across any skills-compatible agent.

How do Agent Skills work?

Agents load skills through progressive disclosure, in three stages:

  1. Discovery: At startup, agents load only the name and description of each available skill, just enough to know when it might be relevant.

  2. Activation: When a task matches a skill’s description, the agent reads the full SKILL.md instructions into context.

  3. Execution: The agent follows the instructions, optionally executing bundled code or loading referenced files as needed.

Full instructions load only when a task calls for them, so agents can keep many skills on hand with only a small context footprint.

Where can I use Agent Skills?

Agent Skills are supported by a large number of AI tools and agentic clients — see the Client Showcase to explore some of them!

Getting started

Open development

The Agent Skills format was originally developed by Anthropic, released as an open standard, and has been adopted by a growing number of agent products. The standard is open to contributions from the broader ecosystem — see CONTRIBUTING.md for how to get involved.

License

Code in this repository is licensed under Apache 2.0. Documentation is licensed under CC-BY-4.0. See individual directories for details.

Similar Articles

addyosmani/agent-skills

GitHub Trending (daily)

agent-skills is a collection of production-grade engineering skills designed to enhance the capabilities of AI coding agents.

Equipping agents for the real world with Agent Skills

Anthropic Engineering

Anthropic introduces 'Agent Skills' as an open standard for equipping AI agents with domain-specific expertise via composable directories of instructions and scripts. This framework enhances the portability and specialization of agents like Claude Code without requiring custom model training.

tech-leads-club/agent-skills

GitHub Trending (daily)

Agent Skills is a hardened, open-source library of verified and tested skills for extending AI coding agents like Claude Code and Cursor, addressing security vulnerabilities found in marketplace alternatives.

@op7418: https://x.com/op7418/status/2065232309310427565

X AI KOLs Timeline

This article discusses the concept of Skills in the AI agent ecosystem, arguing that Skills are more than prompts—they are packaged capabilities that externalize human expertise into reusable workflow units. The author shares design principles and case studies from building popular Skills.

K-Dense-AI/scientific-agent-skills

GitHub Trending (daily)

K-Dense-AI released 'Scientific Agent Skills,' an open-source collection of 135 skills for AI agents to perform complex scientific workflows in fields like genomics and drug discovery. It supports various AI models and integrates with tools like Cursor and Claude Code via the Agent Skills standard.