Four tasks to deepen your understanding of multi-agent systems. Build a 4th agent, test reliability, and design for your industry.
Your pipeline has Researcher → Analyst → Editor. Add a 4th agent. Choose one:
Cross-references claims against known data. Place between Analyst and Editor.
Produces a 1-paragraph executive brief. Place after Editor.
Adds industry-specific context (e.g., healthcare, finance). Place between Researcher and Analyst.
Define your 4th agent’s prompt and wire it into the pipeline.
Where you insert the 4th agent changes the pipeline’s behavior. A Fact-Checker between Analyst and Editor catches errors before editing. A Domain Expert between Researcher and Analyst enriches the analysis. Think about information flow.
Run your pipeline 5 times on the SAME question. Document how outputs differ. This is the “telephone game” in action.
Use this table format in your notebook. Fill in each row after each pipeline run.
| Run # | Key Facts Found | Quality Score | Unique Claims | Consistent Claims |
|---|---|---|---|---|
| 1 | fill in... | fill in... | fill in... | fill in... |
| 2 | fill in... | fill in... | fill in... | fill in... |
| 3 | fill in... | fill in... | fill in... | fill in... |
| 4 | fill in... | fill in... | fill in... | fill in... |
| 5 | fill in... | fill in... | fill in... | fill in... |
Answer each of these in your submission:
If every run produces identical output, try setting temperature=1 or using a more open-ended question. LLMs are non-deterministic — the question is how different, not whether they differ.
Propose a multi-agent system for your target industry (the one you’ll use for your final project). Think like an architect — agents, handoffs, human gates, and cost.
The pipeline is the baseline, but feel free to propose a debate pattern (two agents argue), an orchestrator pattern (manager agent delegates), or a hybrid. Just explain why your architecture fits the use case.
Read about Claude Code’s multi-agent “team” feature and the orchestrator pattern. This is how real production systems coordinate multiple AI agents.
Write one paragraph (5–8 sentences) explaining how Claude Code’s team feature implements the orchestrator pattern from Session 6. Include:
One paragraph is enough. The goal is to show you understand the orchestrator pattern and can recognize it in real products — not to write an essay. Connect what you read to the architectures we discussed in Session 6 (Pipeline, Debate, Orchestrator).
Click any question to expand the answer.
temperature=0 for more consistency. The goal of Task 2 is to measure and document this variation, not eliminate it.
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.