Skill Review

Anthropic Agent Skills

Reference repository of Agent Skills and documentation for creating reusable agent capabilities. See install commands, full SKILL.md source, source...

Updated 2026-05-12

Sourceanthropics
Tagsdocumentation, Skills, Claude Code
InstallSource only
ContentIndexable Full Text
Updated2026-05-12

What it claims

Anthropic Agent Skills

Medium information confidence
  • Reference repository of Agent Skills and documentation for creating reusable agent capabilities.
  • Use case: documentation
  • Tooling: Skills
Owner
anthropics
Updated
2026-05-12
  • documentation
  • Skills
  • Claude Code

Source

Install Loop

  1. Copy the full SKILL.md from this page.
  2. Create the target skill folder for your agent.
  3. Save the content as SKILL.md, verify the file exists, then reload the agent.

SKILL.md

5,551 characters ready to copy into an agent skill folder.

Download

install.json

Programmatic package with skill markdown, files, install targets, and source URLs.

Claude Code

Path
~/.claude/skills/anthropic-agent-skills/SKILL.md
Folder
~/.claude/skills/anthropic-agent-skills
mkdir -p ~/.claude/skills/anthropic-agent-skills
mkdir -p ~/.claude/skills/anthropic-agent-skills && pbpaste > ~/.claude/skills/anthropic-agent-skills/SKILL.md
test -s ~/.claude/skills/anthropic-agent-skills/SKILL.md && echo "installed: ~/.claude/skills/anthropic-agent-skills/SKILL.md"

Restart Claude Code or reload the skill list after saving.

No explicit install command was identified in the fetched source. Review the source before installing.

Source Facts

Source
GitHubcrawl · 2026-05-12
Repository
github.com/anthropics/skillssource · 2026-05-12
Owner
anthropicssource · 2026-05-12
Repo path
.source · 2026-05-12
Install entry
Source onlypage contract · 2026-05-12
First seen
2026-05-12T12:48:26.537Zsource · 2026-05-12
GitHub stars
132,789source · 2026-05-12
GitHub forks
15,653source · 2026-05-12
Repository updated
2026-05-12source · 2026-05-12
Files
1source · 2026-05-12

Skill Files

SKILL.mdPrimary skill instruction · Skill Md · 5.4 KB
Open source
README.mdRepository readme · Readme · 5.4 KB
Open source

Signals

  • No obvious static risk

Full SKILL.md

Full SKILL.md · observed 2026-05-12 · 5,551 chars

> **Note:** This repository contains Anthropic's implementation of skills for Claude. For information about the Agent Skills standard, see [agentskills.io](http://agentskills.io).

[![skills.sh](https://skills.sh/b/anthropics/skills)](https://skills.sh/anthropics/skills)

# Skills
Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. Skills teach Claude how to complete specific tasks in a repeatable way, whether that's creating documents with your company's brand guidelines, analyzing data using your organization's specific workflows, or automating personal tasks.

For more information, check out:
- [What are skills?](https://support.claude.com/en/articles/12512176-what-are-skills)
- [Using skills in Claude](https://support.claude.com/en/articles/12512180-using-skills-in-claude)
- [How to create custom skills](https://support.claude.com/en/articles/12512198-creating-custom-skills)
- [Equipping agents for the real world with Agent Skills](https://anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills)

# About This Repository

This repository contains skills that demonstrate what's possible with Claude's skills system. These skills range from creative applications (art, music, design) to technical tasks (testing web apps, MCP server generation) to enterprise workflows (communications, branding, etc.).

Each skill is self-contained in its own folder with a `SKILL.md` file containing the instructions and metadata that Claude uses. Browse through these skills to get inspiration for your own skills or to understand different patterns and approaches.

Many skills in this repo are open source (Apache 2.0). We've also included the document creation & editing skills that power [Claude's document capabilities](https://www.anthropic.com/news/create-files) under the hood in the [`skills/docx`](./skills/docx), [`skills/pdf`](./skills/pdf), [`skills/pptx`](./skills/pptx), and [`skills/xlsx`](./skills/xlsx) subfolders. These are source-available, not open source, but we wanted to share these with developers as a reference for more complex skills that are actively used in a production AI application.

## Disclaimer

**These skills are provided for demonstration and educational purposes only.** While some of these capabilities may be available in Claude, the implementations and behaviors you receive from Claude may differ from what is shown in these skills. These skills are meant to illustrate patterns and possibilities. Always test skills thoroughly in your own environment before relying on them for critical tasks.

# Skill Sets
- [./skills](./skills): Skill examples for Creative & Design, Development & Technical, Enterprise & Communication, and Document Skills
- [./spec](./spec): The Agent Skills specification
- [./template](./template): Skill template

# Try in Claude Code, Claude.ai, and the API

## Claude Code
You can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code:
```
/plugin marketplace add anthropics/skills
```

Then, to install a specific set of skills:
1. Select `Browse and install plugins`
2. Select `anthropic-agent-skills`
3. Select `document-skills` or `example-skills`
4. Select `Install now`

Alternatively, directly install either Plugin via:
```
/plugin install document-skills@anthropic-agent-skills
/plugin install example-skills@anthropic-agent-skills
```

After installing the plugin, you can use the skill by just mentioning it. For instance, if you install the `document-skills` plugin from the marketplace, you can ask Claude Code to do something like: "Use the PDF skill to extract the form fields from `path/to/some-file.pdf`"

## Claude.ai

These example skills are all already available to paid plans in Claude.ai. 

To use any skill from this repository or upload custom skills, follow the instructions in [Using skills in Claude](https://support.claude.com/en/articles/12512180-using-skills-in-claude#h_a4222fa77b).

## Claude API

You can use Anthropic's pre-built skills, and upload custom skills, via the Claude API. See the [Skills API Quickstart](https://docs.claude.com/en/api/skills-guide#creating-a-skill) for more.

# Creating a Basic Skill

Skills are simple to create - just a folder with a `SKILL.md` file containing YAML frontmatter and instructions. You can use the **template-skill** in this repository as a starting point:

```markdown
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---

# My Skill Name

[Add your instructions here that Claude will follow when this skill is active]

## Examples
- Example usage 1
- Example usage 2

## Guidelines
- Guideline 1
- Guideline 2
```

The frontmatter requires only two fields:
- `name` - A unique identifier for your skill (lowercase, hyphens for spaces)
- `description` - A complete description of what the skill does and when to use it

The markdown content below contains the instructions, examples, and guidelines that Claude will follow. For more details, see [How to create custom skills](https://support.claude.com/en/articles/12512198-creating-custom-skills).

# Partner Skills

Skills are a great way to teach Claude how to get better at using specific pieces of software. As we see awesome example skills from partners, we may highlight some of them here:

- **Notion** - [Notion Skills for Claude](https://www.notion.so/notiondevs/Notion-Skills-for-Claude-28da4445d27180c7af1df7d8615723d0)

Related Pages

Similar Skills

Risks / Limits

Safety Gate

Low

No obvious static risk found.

Risk level
Low
Scan status
completed
Information confidence
Medium
Generated
2026-05-12

Source and parsed content are available, but some supporting inputs are incomplete.

Evidence

GitHub

Reference repository of Agent Skills and documentation for creating reusable agent capabilities.

Source type
crawl
Observed
2026-05-12
Confidence
90%