Skip to main content
Agno Skills integration, based on Anthropic’s Agent Skills specification, is a way to extend your agent’s capabilities by providing specific skills. Using Skills, your agents will be able to gradually discover, obtain and utilize specialized knowledge and capabilities.

What is a Skill?

A skill is a self-contained package an Agent can use to extend its capabilities in a specific domain, or to acquire a new specific capability. All skills contain:
  • Instructions: Detailed guidance on when and how to apply the skill (in SKILL.md)
  • Scripts: Optional executable code templates the agent can run
  • References: Optional supporting documentation (guides, cheatsheets, examples)

Why Use Skills?

Domain Expertise on Demand

Instead of filling the system message with instructions to cover every usecase, skills let you organize domain knowledge into focused packages. The agent loads only what it needs, allowing you to save tokens and ultimately reduce costs.

Reusable Knowledge Packages

Create skills once, use them across multiple agents. A code review skill can be shared between your debugging agent, PR review agent, and code generation agent.

Progressive Discovery

Skills use lazy loading to keep context windows efficient:
  1. Browse: The agent sees skill summaries in its system prompt
  2. Load: When a task matches a skill, the agent loads full instructions
  3. Reference: The agent accesses detailed documentation as needed
  4. Execute: The agent can run scripts from the skill

Quick Example

from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.skills import Skills, LocalSkills

# Load skills from a directory
agent = Agent(
    model=OpenAIChat(id="gpt-4o"),
    skills=Skills(loaders=[LocalSkills("/path/to/skills")])
)

# The agent now has access to skill tools:
# - get_skill_instructions(skill_name)
# - get_skill_reference(skill_name, reference_path)
# - get_skill_script(skill_name, script_path)

Skill Structure

my-skill/
├── SKILL.md           # Instructions with YAML frontmatter
├── scripts/           # Optional executable scripts
│   └── helper.py
└── references/        # Optional reference documentation
    └── guide.md

Learn More