Agentic AI · Module 21
Multi-agent systems
Once you have one agent, the next step is many. They specialise, coordinate, escalate, and audit each other.
Orchestrator
Coder
Reviewer
Deployer
Auditor
Researcher
Planner
Alfred is a multi-agent operator OS — a substrate that schedules, observes, and audits work performed by other agents.
Multi-agent orchestration demo
A local toy loop that logs coordination steps for specialized agents, matching this module’s orchestration framing.
const agents = ['research', 'implementation', 'review'];
for (const agent of agents) {
console.log('coordinate agent:', agent);
}Multi-agent systems check
0 of 1 questions completed locally.
Reader progress is stored locally in this browser.
Source slide 22