456
Dictionary

Multi-Agent System

A multi-agent system splits a job across several specialised AI agents that coordinate through a shared plan, message bus or orchestrator.

2 min readupdated 2026-08-01

/ quick answer

A multi-agent system (MAS) is an architecture where multiple LLM agents, each with a narrow role and tool set, work on one goal. Coordination usually follows one of three shapes: supervisor (one orchestrator delegates), pipeline (agents run in sequence), or swarm (agents hand off peer-to-peer). MAS buys specialisation and parallelism at the cost of latency, token spend and debuggability.

A multi-agent system splits a job across several specialised AI agents that coordinate through a shared plan, message bus or orchestrator. A multi-agent system (MAS) is an architecture where multiple LLM agents, each with a narrow role and tool set, work on one goal. Coordination usually follows one of three shapes: supervisor (one orchestrator delegates), pipeline (agents run in sequence), or swarm (agents hand off peer-to-peer). MAS buys specialisation and parallelism at the cost of latency, token spend and debuggability. In practice: A content system with a Researcher agent, a Writer agent and an Editor agent supervised by an orchestrator that reruns the Writer whenever the Editor rejects the draft. This dictionary node is part of the Onexial knowledge graph and links to related concepts, workflows and tools below.
Definition
A multi-agent system (MAS) is an architecture where multiple LLM agents, each with a narrow role and tool set, work on one goal. Coordination usually follows one of three shapes: supervisor (one orchestrator delegates), pipeline (agents run in sequence), or swarm (agents hand off peer-to-peer). MAS buys specialisation and parallelism at the cost of latency, token spend and debuggability.
Example
A content system with a Researcher agent, a Writer agent and an Editor agent supervised by an orchestrator that reruns the Writer whenever the Editor rejects the draft.
Related Workflows
Related Tool Stacks
Related Prompts
/ frequently asked

What is Multi-Agent System?

A multi-agent system (MAS) is an architecture where multiple LLM agents, each with a narrow role and tool set, work on one goal. Coordination usually follows one of three shapes: supervisor (one orchestrator delegates), pipeline (agents run in sequence), or swarm (agents hand off peer-to-peer). MAS buys specialisation and parallelism at the cost of latency, token spend and debuggability.

What is an example of Multi-Agent System?

A content system with a Researcher agent, a Writer agent and an Editor agent supervised by an orchestrator that reruns the Writer whenever the Editor rejects the draft.

Why does Multi-Agent System matter for AI and automation?

A multi-agent system splits a job across several specialised AI agents that coordinate through a shared plan, message bus or orchestrator. It connects to the workflows, prompts and tool stacks linked on this page, so you can move from definition to execution without leaving Onexial.

↳ connected nodes
Workflow↳ linked
Build a Multi-Agent Content Team
Researcher, writer and editor agents under a supervisor, producing publishable drafts.
Workflow↳ linked
Design an Agent Architecture Before Writing Code
A one-page design process that prevents the most expensive agent rebuilds.
Tool Stack↳ linked
Multi-Agent Orchestration Stack
Tooling for coordinating several specialised agents with reliable handoffs.
Prompt↳ linked
Multi-Agent Role Definition Prompt
Generates crisp role prompts and handoff contracts for a team of agents.
Dictionary↳ linked
LangGraph Framework
LangGraph is a Python library built on LangChain that enables building stateful, multi-actor applications with LLMs by modeling agentic workflows as graphs. It allows for defining complex agent behaviors, including loops and conditional logic, crucial for advanced AI agent orchestration.
Tool Stack↳ linked
AutoGen Agent Research Stack
This stack outlines the core components for building an autonomous research agent system using AutoGen, focusing on dynamic information retrieval, analysis, and report generation.
Dictionary↳ linked
CrewAI Framework
CrewAI is a framework for orchestrating role-playing autonomous AI agents, enabling them to collaborate, delegate, and execute tasks as a team. It focuses on clearly defined roles, tasks, and a shared goal to build highly collaborative AI systems.
Dictionary↳ linked
AutoGen Framework
AutoGen is a framework from Microsoft that enables the development of multi-agent conversation systems, allowing agents to communicate, negotiate, and collaborate to achieve complex tasks through dynamic dialogue.