Skip to content

The three-flavour taxonomy

Put the three flavours side by side, because the whole point of the chapter is knowing which one a given job wants. They are not interchangeable - they trade along different axes:

Local fan-out (sidebar)SubagentsCloud Agents
Where it runsYour machine, parallel worktreesYour machine, isolated contextRemote cloud VM
How you reach itMulti-agent sidebar, one promptAuto-delegate, /name, or NL mentionDesktop / web / Slack / GitHub / Linear / REST API
ShapeOne-shot, broadcast-and-compareDelegated, defined ahead of timeDetached, fire-and-review
IsolatesThe filesystem (worktrees)The context windowThe whole machine
Best forCompeting approaches or parallel slices you’ll review togetherA scoped, noisy, or repeatable job you don’t want in your main threadWork that shouldn’t tie up your laptop and doesn’t need your eyes mid-flight

Read it as one question asked three ways - where should this work happen, and how isolated does it need to be? The local fan-out isolates files so a fleet of agents can edit at once without corrupting each other. A subagent isolates context so a noisy job doesn’t bury your main thread. A Cloud Agent isolates the whole machine so the work leaves your laptop entirely. Same instinct - push work somewhere isolated and review what comes back - at three different radii.

By the end of this chapter the question to ask before any heavy or parallel task is which radius it wants: fan it out locally to compare, delegate it to a subagent to keep your thread clean, or send it to the cloud to get it off your machine. Pick the wrong radius and you’ll feel it - a Cloud Agent for a thirty-second scan is overkill, a sidebar fan-out for a job with one obvious approach is just spending compute to feel busy.

Parallelism settles how many agents work and where they run. It changes nothing about what any single one of them can reach - the live systems, the repeatable procedures, and the rules that have to hold whatever the model decides. Those all live outside the repo, and each needs a different surface. Next: extending Cursor with MCP, skills, commands and hooks.