TL;DR

Anthropic has published lessons from running hundreds of reusable Claude Code Skills inside its engineering organization. The main takeaway: a Skill is treated as a discoverable folder with instructions, scripts and references, not a saved prompt.

Anthropic has published new guidance on how its engineers use Claude Code Skills, describing them as reusable folders that package instructions, scripts, references and checks rather than as saved prompts, a distinction that matters for teams trying to make AI coding agents more consistent and reusable.

The source material cites Thariq Shihipar, a Claude Code engineer, and Anthropic’s June 3 post, Lessons from building Claude Code: How we use skills. According to the write-up, Anthropic has run hundreds of Skills across its own engineering organization and has grouped them into nine broad categories, including API references, product verification, runbooks, code scaffolding, CI/CD and infrastructure operations.

The central correction is definitional. A Skill is described as a folder the agent can discover, read and use. That folder can include SKILL.md for root instructions, references loaded only when needed, runnable scripts, templates, configuration files and hooks that act as guardrails while the Skill is active.

Anthropic’s reported finding is that verification Skills, which check work rather than merely guide work, had the strongest effect on output quality. That is a company claim from Anthropic’s own measurement, not an independently verified benchmark in the source material.

At a glance
reportWhen: Anthropic blog post published June 3, 2…
The developmentAnthropic published guidance on how its engineering teams use Claude Code Skills to package reusable workflows and verification steps.
AI Dispatch · Insights · 1 July 2026

A Skill is a folder, not a prompt

Anthropic published what it learned running hundreds of Skills across its own engineering org. Read as a business memo, the point is bigger than a coding trick: this is how ad-hoc prompting becomes durable institutional capability — the SOPs your agents actually follow, versioned and shared.

✕ The misconception

“A Skill is just a clever markdown prompt you save in a file.”

✓ What it actually is

A folder the agent can discover, read & run — instructions, scripts, references, templates, config & on-demand hooks.

Anatomy of a Skill — the file system is context engineering
my-skill/the unit you share & version
├─ SKILL.mdroot instructions + a description written for the model (its trigger)
├─ references/deep detail pulled in only when needed — progressive disclosure
├─ scripts/real code, so the agent composes instead of rebuilding boilerplate
├─ assets/templates & files to copy into the output
├─ config.jsonsetup the agent asks for if it’s missing (e.g. which Slack channel)
└─ hooks + memoryon-demand guardrails + an append-only log so it remembers
Why it matters: the folder itself is the knowledge base. The agent reads the root, then reaches deeper only when the task demands it — the same way you’d hand a new hire a one-pager that points to the detailed docs.
The nine types — a gap-analysis map for your own library
1Library / API reference
2Product verification ★ top impact
3Data fetching & analysis
4Business-process automation
5Code scaffolding & templates
6Code quality & review
7CI/CD & deployment
8Runbooks
9Infrastructure operations
By Anthropic’s own measurement, verification Skills — the ones that check the work — moved output quality the most. If you build one category well, build that one.
The craft — what separates a good Skill from a useless one
Gotchas = highest-signal section Describe for the model, not humans (it’s the trigger) Don’t state the obvious Ship scripts, not just prose On-demand guardrail hooks (/careful, /freeze) Let it remember (log / SQLite) Don’t railroad — leave room to adapt
The take

The knowledge of how your organization actually operates can be captured, versioned, shared & executed — and the thing capturing it is a humble folder with a script and a gotchas list inside. For the builder, that’s context engineering with real tools attached. For whoever owns the budget, it’s the difference between AI that starts from zero every morning and an asset that compounds. Caveats: best practices are still evolving, checked-in Skills cost context, and curation beats accumulation. Start with one Skill, one gotcha, and the category that catches your mistakes.

Source: “Lessons from building Claude Code: How we use skills,” Thariq Shihipar (Anthropic), Claude blog, 3 June 2026. Categories, examples & measured claims are Anthropic’s; framing is the author’s. Docs: code.claude.com/docs/en/skills.
thorstenmeyerai.com

Skills Make Agent Work Reusable

The development matters because it reframes prompt engineering as operational infrastructure. Instead of asking workers to repeat the same instructions, a team can package its process into versioned folders that agents can apply across tasks.

For engineering leaders, the claim is that Skills can make agent behavior more consistent, shorten onboarding and preserve institutional knowledge that otherwise sits in chat history, private notes or rarely used wikis. The business case depends on whether teams maintain those folders with the same care they give source code, tests and runbooks.

No-Code AI Marketing Workflows with Zapier and Make: Automate Leads, Content, Follow-Up, and Campaigns Without Coding Using AI-Powered Systems (AI Toolkit For Online Marketers Book 17)

No-Code AI Marketing Workflows with Zapier and Make: Automate Leads, Content, Follow-Up, and Campaigns Without Coding Using AI-Powered Systems (AI Toolkit For Online Marketers Book 17)

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

From Prompts To Shared Procedures

The Thorsten Meyer AI dispatch frames Anthropic’s post as more than a coding tip. It argues that Skills show how ad hoc prompting can become a durable company asset: the procedures, caveats and checks that agents actually follow.

The described folder structure supports progressive disclosure: the agent starts with the root instructions, then pulls in deeper references only when the task calls for them. The source compares this to giving a new hire a short guide that points to detailed documentation, rather than handing over everything at once.

“A Skill is a folder, not a prompt.”

— Thorsten Meyer AI dispatch

Amazon

reusable AI skill folders

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Measurement Details Remain Limited

Several points remain unclear from the provided material. The source does not give full measurement methods for Anthropic’s quality claims, the exact number of Skills in production, or how results differed across teams and use cases.

It is also unclear how well Anthropic’s internal practice transfers to smaller engineering teams, companies with stricter approval processes, or organizations without mature internal documentation. The dispatch also flags that best practices are still changing and that checked-in Skills can consume agent context if they are not curated carefully.

AI Programming Made Practical: A Step-by-Step Guide to Building AI-Powered Applications, Writing Better Code Faster, and Using Modern AI Tools with Confidence

AI Programming Made Practical: A Step-by-Step Guide to Building AI-Powered Applications, Writing Better Code Faster, and Using Modern AI Tools with Confidence

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Teams Test Skill Libraries

The next step for teams using coding agents is likely to be small-scale adoption: building one Skill around a repeated workflow, adding one or two high-value caveats, and testing whether it improves output or catches recurring mistakes.

The strongest near-term use case, based on the source material, is verification: Skills that check whether generated work meets product, code quality or deployment rules. Broader use will depend on whether teams keep these folders current instead of allowing them to become another stale documentation layer.

AI Prompts for Long-Form Video Creators: 175 Copy-and-Paste Prompts & a Content Tracker to Plan, Script, Record, and Grow Your Long-Form Video Channel (The AI Prompt Playbook Book 3)

AI Prompts for Long-Form Video Creators: 175 Copy-and-Paste Prompts & a Content Tracker to Plan, Script, Record, and Grow Your Long-Form Video Channel (The AI Prompt Playbook Book 3)

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Key Questions

What did Anthropic announce?

Anthropic published guidance on how its engineers use Claude Code Skills, reusable folders that package instructions, scripts, references, templates and checks for AI coding agents.

How is a Skill different from a prompt?

A prompt is text given to a model. A Skill, as described in the source material, is a folder the agent can discover, read and use, including code, documentation and configuration.

Which type of Skill had the biggest reported impact?

According to Anthropic’s own measurement as cited in the source, verification Skills had the largest effect on output quality because they check whether work meets expected standards.

What remains unproven?

The source does not provide full benchmark details, so it is unclear how broadly Anthropic’s results apply outside its own engineering organization or how much maintenance Skill libraries require over time.

Source: Thorsten Meyer AI

You May Also Like

Why AOC Needs to Apologize for Her Infamous DNC Speech

Progressive Rep. Alexandria Ocasio-Cortez is being urged to apologize for her speech at the Democratic National Convention, sparking debate over her remarks and their impact.

Twin Cities Pride events delayed due to rain

Rain has caused delays to Twin Cities Pride events scheduled for this weekend, prompting organizers to postpone outdoor activities and adjust plans.

PHOTOS: Storms drop large hail in Kansas

Storms have caused large hail to fall across parts of Kansas, with photos capturing the intense weather. No injuries reported so far.

Capital: The Lever Beneath the Levers

SpaceX, Anthropic and OpenAI moves put AI financing risk in public markets as infrastructure spending keeps rising.