TL;DR
Anthropic introduces "Agent Skills" - a new paradigm for extending AI agents. Instead of building separate agents for each use case, skills are organized folders of procedural knowledge that give general-purpose agents like Claude Code domain expertise. Skills are simple (just folders with markdown and scripts), progressively disclosed to protect context windows, and already being adopted by Fortune 100 companies to teach agents their organizational best practices.
Key Takeaways
- Code is the universal interface: Claude Code is actually a general-purpose agent, not just a coding tool. Code provides access to APIs, file systems, data analysis, and document generation.
- Agents have intelligence but lack expertise: Like a genius without domain training, current agents can reason but don't know organizational best practices or specialized workflows.
- Skills are deliberately simple: They're just folders containing markdown files and scripts. This enables versioning in Git, sharing via Google Drive, and creation by both humans and agents.
- Progressive disclosure protects context: Only skill metadata is shown initially; the full skill.md is loaded only when the agent decides to use it.
- Three types of skills emerging: Foundational skills (new capabilities), third-party skills (product integrations), and enterprise skills (company-specific practices).
- Skills complement MCP servers: MCP provides connectivity to external tools and data; skills provide the expertise to use them effectively.
- Non-technical users are building skills: People in finance, recruiting, accounting, and legal are creating skills for their workflows.
- Skills enable continuous learning: Claude can create skills for its future self, making knowledge transferable across sessions.
Summary
The Shift to General-Purpose Agents
The speakers explain how their thinking has evolved since launching MCP. They initially believed different domains would need entirely different agents with specialized scaffolding. Instead, they discovered that code itself is the universal interface to the digital world.
"We realized that code is not just a use case but the universal interface to the digital world."
Claude Code can generate financial reports by calling APIs, organizing data in the file system, analyzing with Python, and synthesizing insights - all through code. The core agent scaffolding becomes as thin as "just bash and file system."
The Domain Expertise Problem
While agents are brilliant, they lack domain expertise. The speakers use an analogy: Who should do your taxes - a 300 IQ genius or an experienced tax professional? The professional wins because you need consistent execution from someone who already knows the domain.
"Agents today are a lot like Mahesh. They're brilliant, but they lack expertise."
What Skills Are
Skills are organized collections of files that package composable procedural knowledge for agents. In simpler terms: they're folders with a standard structure.
Key characteristics:
- Work with existing tools (Git, Google Drive, zip files)
- Can include scripts as tools
- Are self-documenting and modifiable
- Live in the file system until needed
- Progressively disclosed at runtime
"Skills are organized collections of files that package composable procedural knowledge for agents. In other words, they're folders."
The Growing Ecosystem
Five weeks after launch, thousands of skills have been created across three categories:
- Foundational Skills: Give agents new general capabilities (e.g., Anthropic's document skills for creating professional Office documents, Cadence's scientific research skills for bioinformatics)
- Third-Party Skills: Built by partners for their products (Browserbase's Stagehand for browser automation, Notion for workspace research)
- Enterprise Skills: Company and team-specific skills for organizational best practices and internal software usage
"Fortune 100s are using skills as a way to teach agents about their organizational best practices and the weird and unique ways that they use bespoke internal software."
The Emerging Architecture
The general agent architecture is converging on:
- An agent loop managing the model's internal context
- A runtime environment with file system and code execution
- MCP servers for external tools and data
- A library of skills that can be pulled in at runtime
"MCP is providing the connection to the outside world while skills are providing the expertise."
Skills as Continuous Learning
Skills represent a concrete step toward continuous learning. When you first start using Claude, the standardized format guarantees that anything Claude writes down can be efficiently used by a future version of itself.
"Our goal is that Claude on day 30 of working with you is going to be a lot better than Claude on day one."
The Computing Analogy
The speakers compare the AI stack to traditional computing:
- Models = Processors: Require massive investment, contain immense potential, but limited alone
- Agent Runtime = Operating System: Orchestrates processes, resources, and data
- Skills = Applications: Where domain expertise gets encoded
"A few companies build processors and operating systems, but millions of developers have built software that encoded domain expertise. We hope that skills can help us open up this layer for everyone."
Notable Quotes
"We stopped building agents and started building skills instead."
"Code is not just a use case but the universal interface to the digital world."
"Skills are organized collections of files that package composable procedural knowledge for agents. In other words, they're folders."
"It's time to stop rebuilding agents and start building skills instead."
References
Mentioned Products & Companies
- Claude Code - Anthropic's coding agent
- Claude Agent SDK - Production-ready agent framework
- MCP (Model Context Protocol) - Standard for agent connectivity
- Browserbase Stagehand - Open-source browser automation
- Notion - Workspace research skills
- Cadence - Scientific research skills for bioinformatics
Skill Types
- Document skills (Word, Excel, PowerPoint)
- Browser automation skills
- Scientific research skills (EHR analysis, bioinformatics)
- Enterprise-specific skills
- Skill creator skill (meta-skill for creating skills)