AIAny
AI Agent2024
Icon for item

Agent Squad

Routes each user query to the most suitable agent via a classifier that weighs agent profiles and conversation history, keeping context shared across handoffs. Python and TypeScript, with a SupervisorAgent that runs sub-agents in parallel.

Introduction

Most multi-agent frameworks assume you already know which agent should handle a request — you wire the routing by hand or chain everything through one model. Agent Squad inverts that: the routing decision is the product. A classifier reads the incoming message plus the running conversation, scores every registered agent's description against it, and hands off to whichever fits — so adding a capability means registering an agent, not editing a router.

What Sets It Apart
  • Classifier-driven routing weighs both agent profiles and prior turns, so a follow-up like "and cheaper?" still reaches the agent that answered the first question — context survives the handoff.
  • Genuinely polyglot: feature-paired Python and TypeScript implementations, not a port lagging behind a primary language.
  • Backend-agnostic agents — Amazon Bedrock, Anthropic Claude, OpenAI, Lex, Lambda, or your own class — mix freely behind one classifier.
  • The newer SupervisorAgent flips to an "agents-as-tools" model: a lead agent calls specialist teammates in parallel rather than routing to exactly one.
Who It's For

Great fit if you're building an assistant that spans distinct domains (billing, tech support, travel) and want each handled by a focused agent without hand-rolling intent detection. The dual-runtime design suits teams split between Python data stacks and TypeScript services. Look elsewhere if you only need a single ReAct-style agent with tools — the classifier overhead buys you nothing — or if you want a hosted, no-code builder; this is a library you assemble and deploy yourself.

A Note on Provenance

Originally built inside AWS Labs as "Multi-Agent Orchestrator," the project was renamed Agent Squad and has since moved to its original creators' own organization. Treat older awslabs references and the Orchestrator name as the same lineage when reading tutorials or pinned versions.

Information

  • Websitegithub.com
  • OrganizationsAmazon Web Services
  • AuthorsCorneliu Croitoru, Anthony Bernabeu, awslabs
  • Published date2024/07/23

Categories

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.