Skip to content
The Jalay Bee
Go back

Claude Code's new Skills system is quietly rewriting how devs ship with agents

Takeaways

Why it landed now

Skills are not new in concept. Macro systems, prompt libraries, and Claude Code’s own hooks have all tried to capture reusable agent behavior. What’s different about Skills is the file format and the loading model: a single markdown file with frontmatter declares a capability, lists its tools, and provides examples — and any compatible harness can pick it up without a plugin install.

The timing is not accidental. Three trends collided this week:

  1. Agent harnesses converged on filesystem-native workflows. When Claude Code, Codex, and OpenClaw all agreed that .md files on disk are the right substrate, “shareable behavior” stopped being a per-harness problem.
  2. Teams started running multiple agents in parallel. A skill that works in one place needs to work in five.
  3. MCP servers stopped being the answer for everything. Skills cover the “give the agent a recipe” case that MCP servers were getting force-fit into.

Anthropic’s own framing — that Skills are “structured prompts, not plugins” — is the giveaway. The bar for adoption is “agents can read markdown,” which is roughly every agent on the market.

What’s likely to break

The thing nobody’s talking about yet is registry trust. If a skill registry launches and skills can be downloaded the way npm packages are, the supply-chain story rhymes with 2010 npm: thousands of packages, a long tail of unmaintained ones, and a handful of weaponized impersonators waiting for somebody to typo a name.

Anthropic’s engineers are aware. Internal proposals we’ve seen include signature verification, namespacing under verified GitHub orgs, and a “skill review” tier for vetted contributions. The pressure to ship the registry before any of that trust model is fully baked is real, and it’s where this story gets messier in the next quarter.

For now, the right move for teams is to treat Skills the way you’d treat a personal dotfiles repo: version your own, fork what you need, audit anything you didn’t write. The registry will tell us soon enough whether Anthropic gets ahead of the supply-chain problem or repeats it.


Share this post on:

Previous Post
Hermes Agent's Telegram gateway turns any chat into a dev environment
Next Post
OpenClaw's persistent-memory release is reframing what an 'agent OS' looks like