Source: Anthropics Skills Repo 2026 04 26
Repo: https://github.com/anthropics/skills
Stars: 124,272 (at time of ingest 2026-04-26)
Forks: 14,541
Open standard pointer: agentskills.io
License: Mixed — most skills Apache 2.0; the four document skills (docx, pdf, pptx, xlsx) are source-available (not OSS)
The canonical Anthropic-published skills repository — Anthropic’s reference implementation of Agent Skills alongside the official spec (spec/agent-skills-spec.md) and a starter template (template/). Bundles 17 example skills covering creative, technical, and document workflows. Distributed as a Claude Code plugin marketplace (/plugin marketplace add anthropics/skills) with two installable plugins: document-skills (the four production document tools) and example-skills (the rest). The README explicitly redirects readers to agentskills.io as the home of the open standard, framing this repo as one implementation rather than the standard itself.
Key Takeaways
- It’s both a marketplace and a reference. Run
/plugin marketplace add anthropics/skillsto register the marketplace, then installdocument-skillsorexample-skillsdirectly. Same source tree doubles as a study reference for skill authors. - Two officially shipped Claude Code plugins live here.
document-skills@anthropic-agent-skillsandexample-skills@anthropic-agent-skills. These are the Anthropic-vetted “starter pack” for developers who want to read real skills before authoring their own. - The four production document tools are source-available.
docx,pdf,pptx,xlsxare the actual skills powering Claude’s document capabilities in the consumer product. Source-available (readable for reference) but not OSS — different license tier from the other 13 skills, which are Apache 2.0. - The Agent Skills spec lives in
spec/agent-skills-spec.md. This is the formal contract every Anthropic Skill conforms to: YAML frontmatter requirements (name,description), folder layout, scripts/resources conventions. Pointing atspec/is more reliable than referencing the docs page when authoring a skill that needs to be portable. - agentskills.io is the open-standard home. The README leads with “for information about the standard, see agentskills.io” — reinforcing that Skills is a cross-vendor open standard that other implementers (OpenAI, Google, Microsoft per claudeskills.info’s collection counts) target. This repo is Anthropic’s implementation; the spec is the open layer.
- Same skills are pre-installed on Claude.ai paid plans. Pro/Max/Team/Enterprise users can invoke these without any plugin install — the repo is the “show your work” version.
- Apache 2.0 (most skills) means commercial reuse is allowed. Fork, embed, customize. Document skills sit under a separate source-available license — read-only reference material, not redistributable.
- Disclaimer is load-bearing. “Skills are provided for demonstration and educational purposes only … the implementations and behaviors you receive from Claude may differ from what is shown.” Production reliance requires testing in your own environment — even when the skill is officially Anthropic-published.
- 124k stars, 14.5k forks. One of the largest Anthropic-published repos on GitHub. Active (last push the day of this ingest).
The 17 example skills
| Skill | Category | Notes |
|---|---|---|
algorithmic-art | Creative & Design | Generative art with Claude |
brand-guidelines | Enterprise | Apply brand systems consistently |
canvas-design | Creative & Design | Visual canvas workflows |
claude-api | Development & Technical | Claude API patterns |
doc-coauthoring | Enterprise | Multi-author document flow |
docx | Document (source-available) | Production Word doc tool |
frontend-design | Development & Technical | Front-end engineering patterns |
internal-comms | Enterprise & Communication | Internal communication templates |
mcp-builder | Development & Technical | Generate MCP servers (essential-mcp-servers) |
pdf | Document (source-available) | Production PDF tool |
pptx | Document (source-available) | Production PowerPoint tool |
skill-creator | Meta | Guide to authoring effective skills |
slack-gif-creator | Creative & Design | Slack-friendly animated assets |
theme-factory | Creative & Design | Generate visual themes |
web-artifacts-builder | Development & Technical | Build interactive web artifacts |
webapp-testing | Development & Technical | Test web applications |
xlsx | Document (source-available) | Production Excel tool |
How it fits the Claude Code stack
- vs Agent Skills Overview: The overview article documents Anthropic’s docs page. This article documents the GitHub repo — the actual code, the spec file, the plugin marketplace registration. Different artifacts, both canonical.
- vs Claude Code Skills Ecosystem: Ecosystem is the map. anthropics/skills is the reference territory — when you want a real
SKILL.mdto crib from, you read this repo, not the docs page. - vs Building Skills Guide: The guide explains how to author a skill. anthropics/skills shows what authored skills look like in production. Pair them.
- vs Skill Design Patterns: The patterns article extracts five abstract patterns from skill examples. This repo is one of the example sources those patterns are extracted from.
- vs Plugins and Marketplaces: This repo is a plugin marketplace (the
.claude-plugin/folder registersanthropic-agent-skillswith two plugins). When the plugins-and-marketplaces article references “the official registry,”claude-plugins-officialandanthropic-agent-skillsare both Anthropic-run, but distinct marketplaces. - vs Superpowers: Both ship via Claude Code plugins, but Superpowers is a methodology bundle (closed workflow) while anthropics/skills is à-la-carte examples (pick the doc skill you need). Different shapes.
- vs Claude Skills Hub (claudeskills.info): The Hub aggregates from many publishers including Anthropic. anthropics/skills is one of the collections the Hub features (16 official Anthropic skills card on the Hub vs 17 directories in the actual repo — the Hub may not surface every skill, or may have a slight count drift).
- vs Corey Haines Marketing Skills / Five Claude Skills Recipe: Those are community / curator skill bundles. anthropics/skills is the publisher-of-Claude’s own bundle. The trust gradient runs Anthropic > publisher > community.
Installation paths
Claude Code (plugin marketplace, recommended)
/plugin marketplace add anthropics/skills
/plugin install document-skills@anthropic-agent-skills # docx + pdf + pptx + xlsx
/plugin install example-skills@anthropic-agent-skills # the other 13After install, mention the skill by name in a prompt: “Use the PDF skill to extract the form fields from path/to/some-file.pdf”. Claude Code routes to the skill automatically.
Claude.ai
These skills are already pre-installed for paid plans. Invoke by name. To upload custom skills, follow Using skills in Claude.
Claude API
Anthropic exposes its pre-built skills, plus custom-skill upload, via the Skills API. Reference: Skills API Quickstart.
Authoring a basic skill (template)
The template ships at template/ in the repo. Minimum required structure:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Instructions Claude follows when this skill is active]
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2Frontmatter requires only two fields:
name— lowercase, hyphens for spaces, unique within scopedescription— complete; this is what Claude sees when deciding whether to invoke the skill
Body is regular Markdown — instructions, examples, guidelines. See Agent Skills Overview for the formal spec field requirements (64-char name limit, 1024-char description limit, etc.).
Partner skills
The README highlights one officially-blessed partner skill set:
- Notion — Notion Skills for Claude
The “we may highlight some of them here” framing implies this section will grow. Watch the README for new partner additions.
When to read this repo (vs the docs)
- You’re authoring your first skill and want a battle-tested example to mimic — read
template/plus 2-3 skills fromskills/that share your domain. - You need to see how Claude’s production document tools are structured — read
skills/pdf/SKILL.md(source-available reference; treat as reading-only). - You’re verifying the formal spec a third-party tool needs to conform to — read
spec/agent-skills-spec.mddirectly, not paraphrased docs. - You want to install Anthropic’s complete starter pack into Claude Code in one motion —
/plugin install example-skills@anthropic-agent-skills.
Tradeoffs
- The disclaimer cuts both ways. “Demonstration and educational purposes” means you can’t blindly trust that Anthropic’s deployed Claude.ai behavior matches what you read here — production routing may diverge.
- Mixed licensing requires care. If you’re forking a document skill into a commercial product, you’re under the source-available license, not Apache 2.0. Confirm per-folder.
- Two plugins, one repo. The split between
document-skillsandexample-skillsmeans installing “everything” is two/plugin installcommands — a small but real friction. - Spec lives here, but standard lives elsewhere. If
agentskills.ioand the in-repo spec ever drift, the standard wins per the README’s framing. Watch for divergence.
Related
- Agent Skills Overview (Official Anthropic Docs) — sister article documenting the docs page; this article documents the GitHub repo
- The Complete Guide to Building Skills for Claude — the authoring guide; the repo is the example library
- Claude Code Skills Ecosystem — broader ecosystem map
- Skill Design Patterns — five patterns extracted from real skills, several from this repo
- Skills vs MCP vs Plugins — placement decision for new work
- Claude Code Plugins and Marketplaces — anthropics/skills is one of two Anthropic-run plugin marketplaces
- Claude Skills Hub (claudeskills.info) — community directory that surfaces 16 of these skills as “Anthropic Official Skills” collection
- Superpowers — third-party agentic skills framework via the official marketplace, distinct surface
- Corey Haines Marketing Skills Bundle — community-curated parallel bundle
- Five Claude Skills Recipe — community starter pack
- Essential MCP Servers — the
mcp-builderskill in this repo helps generate them - _index
Try It
- Register the marketplace:
/plugin marketplace add anthropics/skills. - Install the example pack:
/plugin install example-skills@anthropic-agent-skills. Restart Claude Code. - Trigger one skill by mention: ask Claude to “use the mcp-builder skill to scaffold an MCP server for our internal X API.” Watch how the skill auto-loads and which sub-files it reads.
- Open
skills/skill-creator/SKILL.mdin your editor as a meta-reference. Use it to author your first project-local skill. - Read
spec/agent-skills-spec.mdonce before authoring anything you intend to publish — the spec catches edge cases the docs page glosses over. - Browse
skills/pdf/(source-available) to see what a real-world production skill looks like — the structure, the helper scripts, the failure-mode handling. Don’t redistribute the code; do absorb the patterns.
Open Questions
- Will the partner-skills section grow into a curated marketplace tier (Anthropic + partner-vetted), or stay as occasional callouts? The “we may highlight” wording is intentionally non-committal.
- How does the repo’s
spec/agent-skills-spec.mdsynchronize withagentskills.io’s standard? If a vendor implements againstagentskills.ioand Anthropic’s spec diverges, what’s the precedence? - Why is the count between this repo (17 skills) and claudeskills.info’s “Anthropic Official Skills” collection (16 skills) off by one? Probably a counting quirk (template not counted, or one skill excluded), but worth confirming if the gap matters.
- Is there a release/tag cadence for the production document skills, or are they updated in-place as Claude.ai changes? Source-available means we can read; we can’t necessarily diff for behavior changes.