v2.2.2

October 23, 2025

Enhance your agents with Claude's native skills

With Claude Skills support, your agents can now handle complex reasoning, execute code, interact with tools, and work with common office documents.

Agno agents with Claude capabilities can go far beyond what prompts alone can achieve. They can create PowerPoint presentations, Excel spreadsheets, and Word documents, as well as analyze PDFs. You can also create custom skills for Claude to use.

Claude Skills also gives your agents access to filesystem-based resources loaded on demand, eliminating the need to repeat the same guidance. This makes your agents more efficient, powerful, and versatile, enabling them to automate workflows, perform sophisticated analysis, and deliver richer responses.

from agno.agent import Agent
from agno.models.anthropic import Claude

agent = Agent(
    model=Claude(
        id="claude-sonnet-4-5-20250929",
        skills=[
            {"type": "anthropic", "skill_id": "pptx", "version": "latest"},
            {"type": "anthropic", "skill_id": "xlsx", "version": "latest"},
            {"type": "anthropic", "skill_id": "docx", "version": "latest"},
        ]
    ),
    instructions=["You are a document specialist."],
    markdown=True,
)

agent.print_response("Create a 3-slide presentation about AI trends")

View the docs to learn more about Agno's Claude Agent Skills support. Learn more about how Claude Skills work in the Anthropic documentation.