What SKILL.md Actually Is

Anthropic shipped a feature. They called it Skills. A skill is a markdown file , typically 16 to 30 lines , that tells Claude how to handle a specific workflow. You put it in a skills folder. Claude reads it. From that point on, Claude handles that workflow the same right way every time.

That's it. No LangChain. No RAG pipeline. No agent framework. No Python.

One markdown file.


The Person Who Made This Credible

The video that mainstreamed this argument came from someone with 29,000 engineers in their Udemy bootcamp. Twenty years at IBM Watson. Production teams at Nike. He taught LangChain. He taught RAG. He taught AI Agents.

Then Anthropic shipped SKILL.md and he made a video saying: the framework era is over. I taught you all of that, and now most of it is optional.

That gets your attention when it comes from someone with skin in the game of the old approach.


What the File Actually Looks Like

Here is a real example from the skills.sh community registry , a skill for writing weekly podcast prep notes:

# Podcast Prep

Prepare structured show notes for a podcast episode.

## Trigger
When given a guest name, topic, or audio transcript.

## Instructions
1. Research the guest (background, recent work, known positions)
2. Generate 5 substantive interview questions
3. Identify 3 talking points the host should know before recording
4. Draft one paragraph of context for the opening intro

## Output Format
- Guest background: 2–3 sentences
- Questions: numbered list, each with a brief rationale
- Talking points: bullet list
- Intro draft: one paragraph, conversational tone

## Constraints
- No generic questions that apply to any guest
- Questions must reference specific work or public statements

Sixteen lines. That is the podcast prep skill. It runs every time. Same structure, same output format, no rebuilding the prompt from scratch.


Who Is Actually Using This

Inside one skills academy community: a member shipped a skill for weekly podcast prep. Another built a customer discovery skill for his solo SaaS launch. A 67-year-old business owner built a newsletter automation skill and runs it weekly.

None of them wrote Python. None of them built a multi-agent framework. They wrote markdown files that told Claude exactly what to do for one specific task , and Claude does it.

The pattern that emerges across all of them: one skill per workflow. Not one skill for everything. A handoff skill for ending sessions. A research skill for sourcing. A writing skill for drafts. Each one tight, specific, under 30 lines.


The Argument Against Frameworks

Frameworks solve a coordination problem: how do you get multiple AI components to work together? LangChain, LlamaIndex, AutoGen , all of them exist because the coordination problem is real.

SKILL.md sidesteps the problem. Instead of coordinating agents, you give one agent better instructions. Instead of building a pipeline, you write a file that tells Claude exactly what to do at each stage. The result is slower than a fully parallelised agent pipeline and faster than everything else for every solo developer or small team.

Not every use case works this way. Large-scale automated pipelines with many concurrent operations still benefit from frameworks. But 80% of what developers were building frameworks to solve can be handled with a folder of markdown files and a clear CLAUDE.md at the root.

The framework era is not over. It is over for most of the people who were building frameworks.