agno-teams

Create multi-agent teams in Agno with a leader model that delegates tasks dynamically.

Updated Sep 10, 2026
One-click install
npx skills add https://github.com/allankltsn/setup_kiro --skill agno-teams-allankltsn
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agno-teams
Source: https://github.com/allankltsn/setup_kiro/tree/main/.kiro/skills/agno-teams
Command: npx skills add https://github.com/allankltsn/setup_kiro --skill agno-teams-allankltsn

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires agno.

What problem does it solve? Coordinating multiple specialized AI agents on open-ended tasks requires manual orchestration logic; this Skill shows how to build Agno Teams where a leader LLM dynamically delegates subtasks to member agents. ## Core Features & Use Cases - Team Creation: Define a Team with a leader model and member agents, each with a distinct role that guides delegation decisions. - Leader Reasoning: Attach ReasoningTools to the leader so it plans delegation more effectively, and inspect member outputs with show_members_responses. - Hierarchical Teams: Compose teams of teams, where a Team can be a member of another Team, enabling company-style agent hierarchies. - Use Case: Build a content pipeline where a Writer drafts, an Editor reviews, and a Fact Checker verifies, with the leader coordinating them to produce a verified article. ## Quick Start Ask the AI to create an Agno Team with writer, editor, and fact-checker agents coordinated by a leader model to produce a verified paragraph.

Frequently Asked Questions about agno-teams

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a multi-agent team in Agno?▼

Create Agent instances with distinct roles, then pass them as members to a Team along with a leader model and coordination instructions. Calling print_response on the Team lets the leader delegate subtasks to members dynamically.

Agno Team vs Workflow: which should I use?▼

Use a Team when the leader should decide at runtime who handles each part of an open-ended task. Use a Workflow when you need a fixed, predictable sequence of steps that you define yourself.

How do I add reasoning to an Agno team leader?▼

Pass ReasoningTools with add_instructions enabled in the Team's tools list. This gives the leader explicit reasoning steps, improving the quality of its delegation decisions across members.

Can an Agno Team contain another Team as a member?▼

Yes, a Team can be listed as a member of another Team, forming hierarchies. A top-level leader can delegate research to one sub-team and writing to another, keeping each sub-team's responsibilities separate.

How do I see what each Agno team member responded?▼

Set show_members_responses to True on the Team. This displays each member's individual output, which is useful for studying how the leader delegated the task and debugging coordination.