Standardized Skills for
Intelligent Agents
Give agents new capabilities, domain expertise, and repeatable workflows with a universal skill protocol.
What can Agent Skills enable?
Skills bridge the gap between static knowledge and active agent behavior.
Domain Expertise
Package specialized knowledge into reusable instructions, from legal review processes to data analysis pipelines.
New Capabilities
Give agents new capabilities, such as creating presentations, building MCP servers, or analyzing datasets.
Repeatable Workflows
Turn multi-step tasks into consistent and auditable workflows that agents can execute reliably.
Interoperability
Reuse the same skill across different skill-compatible agent products and ecosystems.
Supported by leading tools and platforms
Open Development
Agent Skills is an open standard. Join the community to shape the future of agent capabilities and interoperability.
skill AnalyzeData {
// Description of the skill
description: "Analyze dataset for trends"
inputs: {
dataset_url: String
}
steps: [
"Download CSV",
"Calculate summary stats",
"Generate visualization"
]
}