The markdown files that teach Claude new tricks
Anthropic's public cookbook for teaching Claude specialized tasks through self-contained markdown instruction sets.

What it does
The repository holds Agent Skills for Claude: self-contained folders of instructions, scripts, and resources that Claude loads dynamically. Each skill centers on a SKILL.md file mixing YAML frontmatter and markdown instructions, covering tasks from generating PowerPoint decks to testing web apps without retraining the model. It also hosts the Agent Skills specification, a template for building your own, and the source-available document skills that power Claude’s native file creation.
The interesting bit
The format is almost embarrassingly simple: just a name, a description, and some markdown guidelines. Anthropic is essentially treating prompt engineering as infrastructure, shipping production document skills as readable reference material rather than black-box binaries.
Key highlights
- Skills are plain folders with a
SKILL.mdfile; no complex packaging required. - Covers creative, technical, and enterprise workflows, plus the document-editing skills (
docx,pdf,pptx,xlsx) that power Claude’s native file creation. - Most examples are Apache 2.0; the document skills are source-available and offered as a production reference.
- Includes the Agent Skills specification and a bare-bones template to get started.
- Works across Claude Code, Claude.ai (paid plans), and the Claude API.
Caveats
- The document creation skills are source-available, not open source.
- Anthropic warns that these files are demonstrations; live Claude behavior may differ from the implementations shown.
- Some capabilities shown here may already exist in Claude, but the underlying implementations are not guaranteed to match.
Verdict
Developers building on Claude or designing agent instruction sets should browse this for patterns and the production document skill references. If you are not working with Claude or agent orchestration, this is essentially a well-organized prompt library you can safely skip.
Frequently asked
- What is anthropics/skills?
- Anthropic's public cookbook for teaching Claude specialized tasks through self-contained markdown instruction sets.
- Is skills open source?
- Yes — anthropics/skills is an open-source project tracked on heatdrop.
- What language is skills written in?
- anthropics/skills is primarily written in Python.
- How popular is skills?
- anthropics/skills has 163.4k stars on GitHub and is currently accelerating.
- Where can I find skills?
- anthropics/skills is on GitHub at https://github.com/anthropics/skills.