Agentic Blueprints 130
Filters

AI Speech Trainer
A multimodal coaching team that reviews recorded speech — delivery, structure, and content — and returns practice feedback.

Magentic-One
Microsoft's generalist five-agent team: an orchestrator directing a web surfer, file surfer, coder, and terminal to solve open-ended tasks.

Selector Group Chat
An LLM selector reads the conversation and picks which agent speaks next — planner, searcher, or analyst — instead of a fixed turn order.

Distributed Group Chat
A writer and an editor collaborate in a group chat where every agent runs in a separate distributed runtime, talking over gRPC.

Handoffs (AutoGen pattern)
Swarm-style handoffs in AutoGen: triage, sales, and refund agents transfer the conversation to whoever should own it next.

Concurrent Agents (AutoGen pattern)
Fan a task out to multiple agents at once and gather their results — AutoGen's minimal parallel pattern.

AI Recruitment Agent Team
A recruiting pipeline in agents: resume analysis, candidate evaluation against the role, and interview scheduling roles working together.

AI Competitor Intelligence Team
Discovers competitor sites, crawls and extracts their positioning, and compares everything into a competitive-intelligence report.

Trust-Gated Agent Team
A team where agents carry trust scores and actions are gated by them, with a hash-chained audit trail of every decision.

Reflection (AutoGen pattern)
A coder agent and a reviewer agent in a critique loop: code, review, revise, until the reviewer approves.

AI SEO Audit Team
Agents audit a site's SEO — technical health, content, and competitive position — and compile the findings into an action plan.

AI Services Agency
An agency of role agents — CEO, CTO, product, developer — that takes a software project brief and plans it like a firm would.

Info-Gathering Chatbot
A chatbot that keeps asking until it has every requirement, then switches modes and generates the deliverable from what it gathered.

Self-RAG
Retrieval with self-reflection at every step: grade the documents, check the answer for hallucination, and loop until it's grounded.

Airline Customer Support Bot
A primary assistant hands off to specialized sub-assistants for flights, hotels, cars, and excursions, with user confirmation before writes.

Swarm Customer Service Streaming
A streaming customer-service pipeline from the Swarm repo, packaged with docker-compose and tests — the deployment-shaped example.

Swarm Airline Service
OpenAI's airline demo: a triage agent hands customers to flight-change, cancellation, or lost-baggage agents, each with policy function tools.

Self-Discover
The agent first composes its own reasoning structure from atomic modules, then solves the task by following the structure it built.

Hierarchical Agent Teams
A supervisor of supervisors: a top-level orchestrator directs a research team and a document-writing team, each with its own internal supervisor.

Multi-Agent Collaboration
A researcher agent and a chart-generator agent divide a task and route work between themselves until the answer is a finished chart.

Swarm Triage Agent
The minimal handoff example: a triage agent routes each request to a sales agent or a refunds agent and gets out of the way.

LLMCompiler
A planner streams a DAG of tasks, workers execute them in parallel as dependencies clear, and a joiner decides to finish or replan.