Studio 12 — Special topic: agentic AI, release, and the next cycle
Studio 12
The book’s special topic, turned onto your finished project: direct an advanced multi-role AI review — agentic where your tools truly plan and act, human-sequenced otherwise — under your own rules, adjudicate what it returns, decide whether the work leaves your hands, and turn the largest unresolved limitation into the next study.
Studio 12
This studio closes with Milestone 12: Your release and next cycle, a short chapter of its own after the lessons. What it asks you to produce. A review-management record for your directed AI team, a release audit recording release or withhold-pending-a-named-repair, your final dossier with a complete manifest, an explicit stopping rule, and your next-study agenda.
Studio 12 · Road map
Lesson 1 of this studio · Chapter 38
how many AI loops you set running on one piece of your work, in what order, and which step you keep out of every one of them
Chapter 38
Running several AI agents means running several loops at once. You decide how to split the work into scoped jobs, in what order those loops run so that no early mistake slips downstream, and which step in the chain no loop is ever allowed to close.
Chapter 38 · Key terms
The AI loop
the cycle you have been running since the beginning of this book: you prompt, you read the output, you interrogate it, you refine the ask, you run it again.
Agentic tools
aI systems that run that loop on their own, deciding their own next step and calling their own tools between your turns (Yao et al. 2023).
Chapter 38 · Why this decision matters
Your thesis advisor, reading the draft you are about to defend.
Bring me a draft, not a pile of AI output. I want to know which part each tool touched, what you told it to do, and how you checked it. If you cannot tell me that, you did not write it.
Chapter 38 · Why this decision matters
Chapter 38 · The concept
Chapter 38 · The concept
Task decomposition
breaking one large job into smaller subtasks, each with a single clear owner (Malone & Crowston 1994)
Scoped role
an AI job narrow enough to state in one sentence and check in one pass
Chapter 38 · The concept
Chapter 38 · The concept
Chapter 38 · The concept
Dependency
a required order between two subtasks, where one needs the other’s output before it can start
Critical path
the longest run of must-follow-must steps in your workflow (Kelley 1961)
Chapter 38 · A worked example
Is a ten-minute post-lunch walk associated with a lower afternoon resting heart rate on your dorm floor?
Chapter 38 · A worked example
Chapter 38 · A worked example
import numpy as np, pandas as pd
SEED = 464
rng = np.random.default_rng(SEED)
# Turns each role actually needs. The three critics do not wait on each other.
roles = {"worker: draft limitations": 3, "clarity reviewer": 2,
"methodologist": 3, "citation-checker": 5, "editor: merge": 2}
turns = {r: int(rng.integers(max(1, n - 1), n + 2)) for r, n in roles.items()}
worker = turns["worker: draft limitations"]
critics = {r: t for r, t in turns.items() if "review" in r or r in
("methodologist", "citation-checker")}
merge = turns["editor: merge"]
serial = sum(turns.values())
parallel = worker + max(critics.values()) + merge
print(pd.Series(turns, name="turns").to_string())
print(f"\nall five in sequence : {serial} turns")
print(f"three critics in parallel : {parallel} turns")
print(f"critical path : worker -> {max(critics, key=critics.get)}"
f" -> editor")
print("\nthe slowest critic sets the schedule, so speeding up the other two")
print("buys nothing. and the integration node is yours, not the editor's")Chapter 38 · A worked example
Chapter 38
Where the tool failed
You ask a tool to design your multi-agent workflow, and it returns a confident, well-formatted plan: run the worker, the methodologist, the skeptic, and the editor all in parallel to “save rounds.” The plan runs in your head without a hitch. Here is the trap. The editor and the skeptic have nothing to read yet, because the worker has not drafted anything. The tool scheduled three roles to start before the input they depend on exists, and dressed it up as efficiency. Hand that plan to an agentic tool that executes it for you and the failure gets quieter, not louder: three loops run on an empty draft and return three confident reviews of nothing.
Chapter 38 · An AI failure case
Chapter 38
This stays yours
The split and the order can be informed by a tool, but three calls stay yours alone. You decide which jobs are worth their own loop and which just multiply output you cannot supervise. You decide the order, so that no role settles a question a role upstream of it should have answered first. And you keep the integrate step human: when two roles disagree about what your draft claims, you make that call in your own words. A workflow that hands the claim to a tool is not a workflow you can defend. The rule scales with the number of loops rather than bending to it. More agents does not mean looser command; it means the same command discipline, repeated.
Chapter 38 · Your move
Work it in the companion notebook with Chapter 38 open beside it. Log every delegation in your AI Research Ledger.
Lesson 2 of this studio · Chapter 39
whether agreement among your AI reviewers is evidence or an echo, and the moment you halt the loops and decide for yourself
Chapter 39
Your loops have come back and they do not match, or they match a little too well. You decide which of three things you are looking at (real disagreement, correlated error, or manufactured consensus), and you decide the exact moment to stop the loops and take the call into your own hands.
Chapter 39 · Key terms
Real disagreement
when the roles genuinely read the evidence differently.
Correlated error
when the roles agree, but on the same wrong assumption, so the agreement proves nothing.
False consensus
when the roles agree only because your prompt framed the task so they had to.
Escalation to human judgment
the moment an AI output would settle rather than inform a decision that is yours, so you stop and decide it yourself (Bansal et al. 2021).
Chapter 39 · Why this decision matters
Don’t tell me your reviewers agreed. Tell me whether they could have agreed for the same wrong reason. Agreement is the easiest thing in the world to manufacture, and the most dangerous to trust.
Chapter 39 · Why this decision matters
Chapter 39 · The concept
Chapter 39 · The concept
Chapter 39 · The concept
Chapter 39 · The concept
Chapter 39 · The concept
Independence check
a test that makes agreement worth more than a head-count, either an independent method you run yourself or a way you force two roles to be genuinely independent
Human override
you take the pen back and make the call in your own words, backed by your own check, even when the roles agreed on something else
Chapter 39 · The concept
Chapter 39 · A worked example
Chapter 39 · A worked example
Chapter 39 · A worked example
Chapter 39 · A worked example
Chapter 39 · A worked example
import numpy as np, pandas as pd
SEED = 464
rng = np.random.default_rng(SEED)
# 250 adults asked outside the library on three weekday afternoons.
n = 250
employed_ft = rng.random(n) < 0.58 # daytime library sample skews non-working
wants_work = np.where(employed_ft, False, rng.random(n) < 0.24)
looking = wants_work & (rng.random(n) < 0.20) # only some are actively looking
labour_force = employed_ft.sum() + looking.sum()
your_rate = looking.sum() / labour_force
official_style = wants_work.sum() / (employed_ft.sum() + wants_work.sum())
print(f"respondents : {n}")
print(f"in your labour force : {labour_force}")
print(f"counted as unemployed : {looking.sum()}")
print(f"your rate : {your_rate*100:.1f}%")
print(f"same people, counting everyone who WANTS work: "
f"{official_style*100:.1f}%")
print("\ntwo defensible definitions, two different numbers, from one sample")
print("that never met anyone at work on a weekday afternoon. three reviewers")
print("who only checked whether the answer LOOKED right caught none of it")Chapter 39
Where the tool failed
You send your draft to four AI roles and all four reply “no major problems.” It feels like overwhelming confirmation, and it is confidently wrong. The four share a base model and read the same draft with the same instructions, so they share a blind spot. Whenever your one real flaw falls inside that blind spot, all four miss it together. Their unanimous “fine” is close to a single voice, not four. Running each loop longer does not rescue you either. Four loops with the same blind spot, given more turns, return the same verdict with better paragraphs around it.
Chapter 39 · An AI failure case
Chapter 39
This stays yours
Which claims your draft can defend, where each claim must stop, whether an agreement among your roles was ever independent, and the moment to escalate: those stay yours. No role decides its own trustworthiness, and no head-count of roles decides your claim boundary or your ethics. When an AI output would settle one of those rather than inform it, you stop and you decide.
Chapter 39 · Your move
Work it in the companion notebook with Chapter 39 open beside it. Log every delegation in your AI Research Ledger.
Lesson 3 of this studio · Chapter 40
which of your claims you are willing to be wrong about in public, and what record you can show for how you checked them
Chapter 40
Out of everything your project produced, you decide which claims you will stand behind in public, and you assemble the record that shows how you ran your AI team, what you kept in your own hands, and how each surviving claim was checked.
Chapter 40 · Why this decision matters
“By the time you stand up to defend, I do not count your tools. I ask which claims you are willing to be wrong about in public, and whether you can show me you checked them yourself.” — a defense examiner, opening the folder you handed over
Chapter 40 · Why this decision matters
Chapter 40 · The concept
Chapter 40 · The concept
A research portfolio
the assembled body of your finished work: your claims, the evidence behind them, and the verification that makes each one defensible (ALLEA – All European Academies 2023)
An AI-management portfolio
the honest record of how you ran your AI work from the first curiosity to the last check: which tasks you delegated, where you took the decision back, and which calls you never handed to a tool
Chapter 40 · The concept
A stopping rule is a written statement of what “done” means, phrased around your own verified confidence rather than the tools’ agreement (Nosek et al. 2018).
“I stop when I can defend each surviving claim to a hostile reviewer with a check I ran myself (National Academies of Sciences, Engineering, and Medicine 2019).”
Chapter 40 · The concept
False consensus
agreement that exists only because the tools shared a blind spot or you asked a leading question
An independence check
a step that makes agreement worth more than a head count: a check you run yourself, outside the tools
Chapter 40 · The concept
Chapter 40 · A worked example
Chapter 40 · A worked example
Chapter 40 · A worked example
“This packet, tested in three trays of 50, averaged 88% germination, with the trays spanning 84% to 92%.”
Chapter 40 · A worked example
import numpy as np, pandas as pd
SEED = 464
rng = np.random.default_rng(SEED)
# Three trays of 50 seeds from ONE packet. Trays differ; seeds within a tray
# share their tray's conditions.
trays = []
for tray, sprouts in enumerate([42, 44, 46], start=1): # 50 seeds per tray
seeds = rng.permutation(np.r_[np.ones(sprouts), np.zeros(50 - sprouts)])
trays.append({"tray": tray, "sprouted": int(seeds.sum()),
"rate %": round(seeds.mean() * 100)})
df = pd.DataFrame(trays)
print(df.to_string(index=False))
print(f"\naverage across the three trays : {df['rate %'].mean():.0f}%")
print(f"tray-to-tray spread : {df['rate %'].min():.0f}% to "
f"{df['rate %'].max():.0f}%")
print("\nthe defensible sentence carries all three numbers: this packet,")
print("three trays of 50, and the spread — not 'lettuce seed germinates at 88%'")Chapter 40 · A worked example
Chapter 40 · A worked example
Chapter 40
Where the tool failed
You send your finished draft to three reviewer roles and ask each to “confirm it is ready to submit.” All three return the same verdict: “Looks solid, no major problems.” It feels like three confirmations. It is one. The three roles run on the same base model, you gave them the same leading prompt, and they share a blind spot: none flags that your headline number carries no uncertainty, no range across your three trays. That is false consensus, and trusting it would send an overclaimed result into your defense.
Chapter 40 · An AI failure case
Chapter 40
This stays yours
The tools may draft, review, and surface hard questions. They may never decide which claims you put your name on, where a claim like “88% germination” must stop, whether your reviewers were ever independent, what your stopping rule is, or a single word of the public defense. When agreeing roles bless a claim, deciding whether that agreement is real or just correlated is yours. So is the answer you give when the room asks how you know.
Chapter 40 · Your move
Work it in the companion notebook with Chapter 40 open beside it. Log every delegation in your AI Research Ledger.
Studio 12 closes here
What the lessons handed you becomes one artifact you can defend.
Milestone 12
The artifact
What this milestone produces. A review-management record for your directed AI team, a release audit recording release or withhold-pending-a-named-repair, your final dossier with a complete manifest, an explicit stopping rule, and your next-study agenda.
Milestone 12 · Check before you start
Milestone 12 · In the studio
Milestone 12 · Every studio, these four
Ethics, permissions, and data exposure
Release is the last point at which a permission problem can still be prevented.
Evidence, provenance, and reproducibility
The dossier is the evidence rail made assemblable.
AI activity, verification, and human decisions
This studio is the ledger’s graduation — loop wiring, conflicts, overrides, and independence checks all land as rows before it closes; record the team you actually ran.
Uncertainty, claim boundary, and revision history
State what you still do not know as clearly as what you found.
Milestone 12
How the record works
Your milestone artifact is a dated, numbered version with the reason for the version attached. When later evidence changes it, you write the next version rather than editing the last one, because the sequence of changes is itself part of your research record.
AI is your arm and your research assistant, not your brain.
AI can review AI, and a second model is a real auditor of the first. The last decision is always human.

EDR|AI · Studio 12 — Special topic: agentic AI, release, and the next cycle