Anthropic Agent Skills
Anthropic's collection of agent skills — folders of instructions and scripts that teach Claude document creation and other repeatable crafts. Less software, more standard operating procedure.
What it actually does
A skill is not a server: it's a directory with a SKILL.md file — instructions, optional scripts, and reference material an agent loads when a task matches. This repo is Anthropic's own set, including the production skills behind Word, PowerPoint, Excel, and PDF generation. Because a skill is mostly prose and small scripts, you can audit one completely in minutes, and writing your own requires no toolchain beyond a text editor. It's the lowest-friction way to make an agent reliably good at a specific, repeatable task — closer to an employee handbook than to infrastructure.
Install
Read the source before you run this. Yes, actually.
From the desk
The Sunnyvale take
The unglamorous end of the agent stack, and possibly the most durable. No daemon, no port, no token — just written-down competence the model can load. We'd trade a dozen weekend MCP servers for one well-written skill.
Why it matters
Skills are becoming the standard way to package agent know-how, and this repo is both the reference implementation and the style guide for the format.
In practice
Install the document skills and Claude stops producing 'here's some HTML you could convert' and starts handing you an actual formatted spreadsheet.
The skeptic's note
A skill is only as good as its prose. The format makes competence portable; it doesn't make it automatic.
Use cases
- Generate real .docx / .pptx / .xlsx / .pdf files
- Standardize how an agent performs a recurring team task
- Template for authoring your own skills
Risks & caveats
Skills are instructions plus scripts the agent may execute — read the scripts before installing, same as any code you'd run. Risk is bounded by what the host agent is already allowed to do.
Related tools
Full indexSame shelf, different trade-offs.
Filesystem MCP Server
The reference server that gives an agent read/write access to your disk, fenced to directories you name. Simple, official, and the single sharpest tool in the drawer.