Anthropic shipped a public Skills Marketplace today. It’s the productized version of what ~/.claude/skills/ has been since late 2025: capability bundles that Claude can install on demand. The new piece is the directory, the search, the publishing flow, and a small but real paid-skill economy. We’ve been on the closed beta for the past month; here’s what to actually do about it.

What it actually does

Three things, all pre-existing as concepts but now packaged together:

  1. A registry of skills, browsable at marketplace.anthropic.com/skills and via the CLI (claude skills search [query]).
  2. One-command install: claude skills install [name]. Skills appear in ~/.claude/skills/[name]/ and become callable in Claude Code, Claude.ai, and (where supported) Cowork.
  3. A paid-skill flow. Most skills are free; some are paid (a one-time install fee or a monthly subscription). Anthropic takes 15% of paid revenue.

The launch catalog has roughly 600 skills. About 90 are first-party (Anthropic-built). The rest are community contributions, with the highest-rated being the document-handling skills (PDF, Excel, PowerPoint) shipped in late 2025 as the original agent-skills repo on GitHub.

What’s actually new vs the GitHub agent-skills repo

Three things:

  • Discoverability. The GitHub repo had ~80 skills and a flat README. The marketplace has tags, ratings, downloads, examples, and search. This is the change that turns skills from “indie nerd thing” into a first-class part of the platform.
  • Versioning. Skills now have semver, changelogs, and an upgrade path. Closed beta versions (v0.x) graduate at launch.
  • Paid distribution. New. The 15% cut is gentle by marketplace standards; expect non-trivial paid skills to appear in the next 90 days.

What’s not new: the underlying mechanism. Skills are still Markdown + manifest + (optional) bundled scripts. If you’ve used agent-skills already, you don’t need to relearn anything; you just have a better front door.

What it means for $500K founders

Three patterns shift this week.

Pattern 1 — Lead-magnet PDF generation

Before: founders writing lead magnets in Google Docs → exporting to PDF → manual layout pass. After: install the pdf skill (already a top-10 download in the closed beta). Write content as Markdown. Claude assembles a styled PDF with a consistent template — covers, page numbers, table of contents, fonts. Total time per lead magnet: 90 minutes vs 6 hours.

We rebuilt the $500K AI Stack PDF production around this skill last week. The PDF is now regenerated nightly with the latest pricing data scraped from each tool.

Pattern 2 — Customer interview synthesis

Before: Fathom or Granola transcripts → hand-tagged → Notion database. After: install the customer-research skill. Paste a transcript. Get back: ICP signals, objections raised, jobs-to-be-done in their own words, quotes worth using verbatim, suggested follow-up questions. Claude does the same thing it always could; the skill is the wrapper that makes the output structured and consistent across 30 interviews.

The win is consistency. Every transcript becomes the same shape, and you can grep across interviews instead of re-reading them.

Pattern 3 — Monthly financial close

Before: download CSVs from Stripe / Mercury / your accounting software → spend a Saturday reconciling. After: install the financial-model skill (paid, $19 one-time). Connect a folder of CSVs. Get back: a balance sheet, P&L, runway forecast, and a list of categorization edge cases for you to manually decide.

Honest disclosure: the paid skill is fine but not magic. The free excel skill plus a 50-line system prompt covers 80% of the same workflow. Pay only if you value the time saved on the other 20%.

How it compares

Anthropic Skills MarketplaceOpenAI GPT StoreCursor MCP Marketplace
SurfaceClaude / Claude Code / CoworkChatGPTCursor IDE
Skill typeMarkdown + manifest + scriptsCustom GPTsMCP servers
Paid skillsYes (15% cut)Yes (75% to creator)Limited
Install in CLIYesNoVia VS Code
DiscoverabilityStrong (search, tags, ratings)StrongMedium
Quality bar at launchMedium-high (~600 entries, 80% well-tested)Mixed (~3M GPTs, mostly low-effort)Small but high

The key difference vs OpenAI’s GPT Store: skill installs are durable. A skill ships code that runs on your machine; GPTs are cloud configurations. For founders running content factories or ops automations, durability matters — you don’t want a vendor outage to break your stack.

How to get started today

# Install the CLI if you don't have it
curl -fsSL https://claude.com/install.sh | bash

# Browse skills
claude skills search pdf
claude skills search "customer research"

# Install
claude skills install pdf
claude skills install customer-research

# Use in Claude Code
claude  # opens a session that auto-loads installed skills

In Claude.ai or Cowork, the skills are auto-available once installed locally and synced via your account.

What we’re not buying

Two pieces of marketing language to push back on:

  1. “Skills replace prompt libraries.” No. Skills are better-packaged prompt libraries. The advantage is distribution and versioning, not capability. If your team already has a tight prompt library, don’t rebuild it as skills overnight — port the highest-leverage 5 first.
  2. “Paid skills will be a major revenue stream for indie devs.” Maybe in 18 months. At launch, the marketplace is small and free skills dominate. We’d be surprised if any paid skill cracks $5K/mo MRR by Q3 2026.

Hot takes / risks

  • Risk: centralized review process slows down skill iteration vs the current GitHub-based flow. Watch how strict approvals get.
  • Risk: paid skills create a “skills rot” pattern where tools you depend on break when authors abandon them. Pin versions.
  • Opportunity: founders who package their own internal Claude workflows as paid skills early will own the high-rated slots when the marketplace gets more mainstream attention.

Get started in 5 minutes

  1. Install the Claude CLI if you haven’t.
  2. Run claude skills search for the workflow you want.
  3. Install the top-rated free skill.
  4. Use it once on a real task — not a toy task.
  5. If it sticks, add it to your CLAUDE.md so future sessions auto-discover it.

FAQ

What is the Anthropic Skills Marketplace?

+

A directory and runtime for Claude skills — packaged capabilities you can install with one command. Think VS Code extensions for Claude, with a registry, semver, and a search interface. As of May 1, 2026, it has roughly 600 public skills.

Are Skills Marketplace entries free?

+

Most are free and open-source. Some are paid (one-time install fee or subscription); pricing is set per skill. The marketplace takes a 15% cut on paid skills.

Can I publish my own skill?

+

Yes. The publishing flow is documented at docs.anthropic.com/skills. You need a public GitHub repo + a manifest file. Approval is automated for free skills, manual review for paid.

Does this replace MCP servers?

+

No — they complement. Skills are capability bundles ('how to do X'); MCP servers are tool integrations ('connect to system Y'). Most useful patterns combine both.

What's the founder-relevant subset?

+

Five categories matter today: (1) document workflows (PDF, Excel, PPT), (2) ICP/customer research, (3) content factory, (4) code review, (5) financial model building. The rest is great but secondary.