Free Claude Skills, Reviewed
Claude Skills are folders of instructions, scripts and resources that Claude loads on demand to do a specialised task properly. Anthropic open-sourced seventeen of them, and the format is now an open standard. This is the newest ecosystem in the library and the least written-about.
A skill is not a plugin, and the difference matters.
A skill is a folder with a SKILL.md file: YAML frontmatter plus instructions, optionally alongside scripts and reference files. There is no API to implement and no service to deploy. Claude reads the description, decides the skill is relevant to what you asked, and loads the rest only then. That last part is the actual engineering: the description field is what determines whether a skill fires when it should and stays quiet when it should not, and getting it right is judgement rather than configuration.
This makes skills unusually cheap to build and unusually easy to get subtly wrong. A skill with a vague description either never triggers, or triggers constantly and pollutes every unrelated task. Most of the iteration on a new skill goes into that one field, not the instructions.
The licensing here is genuinely mixed and it is worth reading carefully before you reuse anything. Anthropic states that many skills in the repository are Apache 2.0, but the four document skills, docx, pdf, pptx and xlsx, are explicitly source-available rather than open source, because they power Claude’s production document features. You can read and run them. You cannot repackage them into your own commercial product. We record which is which on each entry below rather than assuming the repository has one licence, because it does not.
All 5, with the caveats.
Expand any entry for requirements, install steps, licence terms and the specific thing it does not handle. We would rather tell you before you build on it.
PDF Skill
Teaches Claude to read, merge, split, rotate, watermark, fill forms and OCR scanned PDFs. One of the four skills that power Claude's production document features.
Claude
PDF Skill
Teaches Claude to read, merge, split, rotate, watermark, fill forms and OCR scanned PDFs. One of the four skills that power Claude's production document features.
Where it falls short
Source-available, so you can read and run it but not repackage it into your own commercial product. If that matters, build your own PDF skill using the same structure.
What you need
- Claude Code, claude.ai, or the Claude API
Licence and reuse
Source-available — The README states docx, pdf, pptx and xlsx are source-available, not open source. This does not grant redistribution rights, so we link to the original rather than hosting a copy. You can still use it yourself under the source’s own terms. Checked 2026-08-12.
Source
By Anthropic · ★ 168,483 (whole anthropics/skills repo) · View original ↗
MCP Builder Skill
Scaffolds Model Context Protocol servers so Claude can connect to your own tools and data sources. The fastest route from an internal API to an agent-usable tool.
ClaudeMCP
MCP Builder Skill
Scaffolds Model Context Protocol servers so Claude can connect to your own tools and data sources. The fastest route from an internal API to an agent-usable tool.
Where it falls short
Generates a working server skeleton, not your business logic. Auth, rate limiting and error semantics for your specific API are still yours to write.
What you need
- Claude Code
- Node.js or Python
Licence and reuse
Apache-2.0 — The README states many skills in the repo are Apache 2.0. Confirm per folder before reuse. This permits commercial reuse, so you can adapt it for client work. Keep the original attribution. Checked 2026-08-12.
Source
By Anthropic · ★ 168,483 (whole anthropics/skills repo) · View original ↗
Skill Creator
A skill for writing skills. Handles the SKILL.md frontmatter, folder structure, and description tuning that determines whether a skill actually triggers when it should.
Claude
Skill Creator
A skill for writing skills. Handles the SKILL.md frontmatter, folder structure, and description tuning that determines whether a skill actually triggers when it should.
Where it falls short
Getting a skill to trigger reliably is mostly about the description field, and that is judgement rather than tooling. Expect to iterate.
What you need
- Claude Code or claude.ai
Licence and reuse
Apache-2.0 — Confirm per folder before reuse. This permits commercial reuse, so you can adapt it for client work. Keep the original attribution. Checked 2026-08-12.
Source
By Anthropic · ★ 168,483 (whole anthropics/skills repo) · View original ↗
Spreadsheet (XLSX) Skill
Reads, edits, cleans and creates Excel and CSV files, including formulas, formatting and charts. Useful for turning messy operational exports into something usable.
ClaudeExcel
Spreadsheet (XLSX) Skill
Reads, edits, cleans and creates Excel and CSV files, including formulas, formatting and charts. Useful for turning messy operational exports into something usable.
Where it falls short
Excellent on single files. It is not a data pipeline: if you are doing this nightly across many files, you want a scheduled job, not a chat turn.
What you need
- Claude Code, claude.ai, or the Claude API
Licence and reuse
Source-available — Explicitly source-available, not open source. This does not grant redistribution rights, so we link to the original rather than hosting a copy. You can still use it yourself under the source’s own terms. Checked 2026-08-12.
Source
By Anthropic · ★ 168,483 (whole anthropics/skills repo) · View original ↗
Web App Testing Skill
Drives a browser to test web applications, verify flows and catch regressions without hand-writing a full Playwright suite up front.
ClaudePlaywright
Web App Testing Skill
Drives a browser to test web applications, verify flows and catch regressions without hand-writing a full Playwright suite up front.
Where it falls short
Great for exploratory checks. It does not replace a committed regression suite that runs in CI on every push.
What you need
- Claude Code
- Node.js
Licence and reuse
Apache-2.0 — Confirm per folder before reuse. This permits commercial reuse, so you can adapt it for client work. Keep the original attribution. Checked 2026-08-12.
Source
By Anthropic · ★ 168,483 (whole anthropics/skills repo) · View original ↗
Claude Skills template questions.
What is a Claude Skill?
A folder containing a SKILL.md file with instructions and metadata, plus any scripts or resources the task needs. Claude loads it dynamically when the description matches what you are trying to do. Skills work across Claude Code, claude.ai and the Claude API.
Are Claude Skills free and open source?
They are free to use. Open source is a separate question and the answer varies within the same repository. Anthropic states many skills are Apache 2.0, while the docx, pdf, pptx and xlsx skills are source-available rather than open source. Check the entry before reusing one commercially.
Do I need to be a developer to use a Claude Skill?
To use one, no. Installing a skill is putting a folder in the right place. To write one, you need to be able to describe a repeatable process clearly, which is closer to writing good documentation than to programming. Some skills bundle scripts, and those do require a runtime such as Node.js or Python.
How is this different from an MCP server?
A skill teaches Claude how to do something using capabilities it already has. An MCP server gives Claude a new capability by connecting it to an external system. They compose: the MCP Builder skill below is a skill whose whole job is helping you write MCP servers.
Where skills stop being enough.
Skills are instructions, not infrastructure. They make a capable model reliable at a specific task, but they do not schedule anything, they do not run when nobody is at the keyboard, and they hold no state between sessions. The moment your requirement includes the words "every night" or "whenever a customer submits", you have left skill territory and entered workflow territory, and you want something like n8n underneath with the skill sitting on top of it.
Why no-code fails at enterprise scale covers what changes when volume arrives. To put a number on it, the ROI calculator estimates the annual cost of the manual version, and the quote generator gives a ballpark for building it properly. Both free, on our free tools page.
Comparing across platforms rather than committing to one? See free ai agents templates and free productivity templates.
Thirty minutes.
We'll tell you exactly
where your ROI is.
No sales deck. No 50-page report you have to pay for before anything gets built. Just a direct conversation about which of your workflows are costing the most and whether AI can fix them. If there's no compelling answer, we'll say so. And it's a conversation with Kash, our founder, not a rep reading from a script, because the person who built this business is the one who should understand yours.