Suffolk University • Sawyer Business School

Multi-Agent Systems in Practice

One agent is useful. A team of agents is powerful. Build pipelines, coordinate handoffs, and manage agent teams.

Session 8 of 13
150 Minutes
40 Students
Hands-On Learning
01 // LEARNING OBJECTIVES

What You'll Learn Today

By the end of this session, you'll have both conceptual understanding and hands-on experience with the foundations of AI.

01

Build a Multi-Agent Pipeline

Go from Session 6's design exercise to a working system: build a Researcher agent that feeds into an Analyst agent, then add an Editor for quality control.

02

Master Agent Coordination Patterns

Implement handoffs, shared context, and orchestration. Learn when pipeline, debate, and orchestrator patterns are the right choice.

03

Handle Information Distortion

The 'telephone game' problem: information degrades as it passes between agents. Build safeguards against compounding errors.

04

Apply the Org Chart Analogy

Multi-agent systems mirror organizational design: division of labor, specialization, coordination costs. Map business structures to agent architectures.

02 // SESSION AGENDA

Today's Journey

A carefully crafted progression from concepts to hands-on building.

5:00 PM - 5:15 PM

Part 1: From Design to Build

15 minutes

In Session 6 you designed multi-agent systems on paper. Today you build one.

  • Recap: Three architectures from Session 6 — Pipeline, Debate, Orchestrator
  • Today's build: A 2-agent pipeline (Researcher → Analyst), then extend to 3 agents (+ Editor)
  • The org chart analogy: Why companies have departments. Why agent systems need specialization.
  • Key question: When does adding another agent help vs. adding complexity?
5:15 PM - 5:40 PM

Part 2: Agent Communication Patterns

25 minutes

How agents talk to each other — message passing, shared context, and orchestration.

  • Message passing: Agent A's output becomes Agent B's input. The simplest coordination pattern.
  • Shared context: All agents read from and write to a shared workspace. More flexible but harder to debug.
  • Orchestration: A manager agent decides who works on what. The pattern behind Claude Code's team feature.
  • Live demo: See how a simple pipeline actually works in code — it's just function calls with structured outputs.
5:40 PM - 6:25 PM

Part 3: Hands-On — Build a 2-Agent Pipeline

45 minutes

Build a Researcher → Analyst pipeline, then extend it with an Editor agent.

  • Phase 1 (15 min): Build the Researcher agent — searches for information, returns structured findings
  • Phase 2 (15 min): Build the Analyst agent — receives research, identifies patterns, generates insights and recommendations
  • Phase 3 (15 min): Add the Editor agent — fact-checks, improves clarity, scores quality. Run the full pipeline end-to-end.
6:25 PM - 6:35 PM

Break

10 minutes

You now have a team of AI agents that collaborate. Next: what can go wrong?

6:35 PM - 7:05 PM

Part 5: The Telephone Game — Information Distortion

30 minutes

The ethics of multi-agent systems: who's accountable when information degrades across agents?

  • Ethics moment: The 'telephone game' — each agent subtly changes information. After 3 agents, is the output still accurate?
  • Live experiment: Run the same question through your pipeline 3 times. Do you get the same answer? Why not?
  • Accountability: If Agent C gives a wrong answer based on Agent A's research, who's responsible?
  • Safeguards: Citation chains, confidence propagation, and human review gates at critical handoffs.
  • Business value: Division of labor works in companies AND in agent systems — but coordination has a cost.
7:05 PM - 7:20 PM

Part 6: When Multi-Agent is Worth It

15 minutes

Multi-agent isn't always better. Learn the decision framework.

  • The complexity tax: Each agent adds latency, cost, and potential failure points
  • Decision framework: Use multi-agent when tasks require different expertise, when quality review is critical, or when you need adversarial checking
  • Stick with single-agent when the task is straightforward, speed matters more than thoroughness, or the pipeline is linear and simple
  • Real examples: Content creation (multi-agent wins), simple Q&A (single-agent wins), code review (debate pattern wins)
7:20 PM - 7:30 PM

Part 7: Wrap-Up + Homework

10 minutes

You've built single agents, knowledge agents, and now agent teams. Next: apply them to YOUR industry.

  • The stack: Tools (S4) → Real APIs (S5) → ReAct (S6) → RAG (S7) → Multi-Agent (TODAY)
  • Next session: Agents for Your Industry — pick your department, build your agent
  • Homework preview: Extend your pipeline, analyze information distortion, design a domain-specific multi-agent system
03 // INTERACTIVE RESOURCES

Tools & Learning Materials

Everything you need to explore, experiment, and build.

Hands-On

Multi-Agent Workshop Notebook

Build a Researcher → Analyst → Editor pipeline. Learn agent communication, handoffs, and quality control in a multi-agent system.

Open in Colab
Review

Advanced Agent Patterns

Review the visual explainer from Session 6: Pipeline, Debate, and Orchestrator architectures. Today you build what you designed.

View patterns
Docs ?

Anthropic Multi-Agent Guide

Official documentation on building multi-agent systems with Claude. Covers orchestration, handoffs, and coordination patterns.

Read docs
Guide

Building Effective Agents (Anthropic)

Anthropic's guide on when to use multi-agent vs. single-agent approaches. Includes decision frameworks and real-world examples.

Read guide
Instructor

Speaker Notes

Professor's command center with talking points, demo cues, discussion prompts, and section timers for the full 2.5-hour session.

Open notes
Timer ?

Workshop Timer

45-minute projectable countdown with 3 phases: Build Researcher (15 min), Build Analyst (15 min), Add Editor + Run Pipeline (15 min).

Start timer
Demo

Pipeline Demo — Live Trace

Interactive step-by-step visualization of a Researcher → Analyst → Editor pipeline. Watch data transform at each handoff with play/pause controls.

Launch demo
Homework ?

Homework Guide

Step-by-step walkthrough for all 4 homework tasks: extend your pipeline, analyze distortion, design for your industry, and read about orchestration.

View guide
04 // HANDS-ON ACTIVITIES

Learning by Doing

Three interactive challenges to build your intuition.

Activity 1

Build a Multi-Agent Pipeline

45 minutes in Google Colab. Build a team of specialized agents:

1

Build the Researcher Agent (15 min)

An agent that searches for information on a topic and returns structured findings: key facts, sources, and confidence levels.

2

Build the Analyst Agent (15 min)

Receives the Researcher's output, identifies patterns, generates insights, and writes recommendations. Tests: Does it add value beyond summarizing?

3

Add the Editor Agent (15 min)

Fact-checks the Analyst's report, improves clarity, and scores overall quality 1-10. Run the full 3-agent pipeline end-to-end.

? Activity 2

Telephone Game Experiment

Test information distortion across your agent pipeline:

1

Run 3 Times (10 min)

Send the same question through your pipeline 3 times. Compare the final outputs. How much do they differ?

2

Trace the Distortion (10 min)

Read each agent's intermediate output. Where did information change? Was it the Researcher, Analyst, or Editor?

3

Add Safeguards (10 min)

Implement citation chains: each agent must cite where it got each fact. Re-run and compare accuracy.

05 // KEY TAKEAWAYS

What to Remember

Agent teams mirror org charts. Division of labor, specialization, and coordination costs apply to AI agents just like human teams. Design your agent system like you'd design a department.

?

Watch for the telephone game. Information degrades across agents. Citation chains and confidence propagation are your safeguards against compounding errors.

Multi-agent isn't always better. Each agent adds latency, cost, and complexity. Use the decision framework: multi-agent for complex, multi-expertise tasks. Single-agent for everything else.

The pipeline pattern is your workhorse. Research → Analysis → Review is the most common multi-agent pattern. Master it and you can adapt it to any domain.

06 // HOMEWORK

Before Next Session

Complete these tasks before our next class to prepare for prompt engineering.

Extend: Add a 4th agent to your pipeline (e.g., a Fact-Checker, Summarizer, or Domain Expert). Test the full pipeline with 3 business questions.
Analyze: Run your pipeline 5 times on the same question. Document how outputs differ, where distortion occurs, and what safeguards would help.
Design: Propose a multi-agent system for your target industry (the one you'll use for your final project). Include: agent roles, handoff logic, human gates, and cost estimate.
Read: Read about Claude Code's multi-agent 'team' feature. Write a paragraph on how it applies the orchestrator pattern from Session 6.
Coming Next

Session 9: Agents for Your Industry

Pick your department. Build your agent. Marketing, finance, HR, or operations — apply everything you've learned to YOUR career.

Industry AgentsDomain-SpecificCareer ApplicationVertical AI