cd /news/ai-agents/an-agent-that-can-spawn-agents-is-a-… Β· home β€Ί topics β€Ί ai-agents β€Ί article
[ARTICLE Β· art-58156] src=dev.to β†— pub= topic=ai-agents verified=true sentiment=↓ negative

An Agent That Can Spawn Agents Is a Fork Bomb With Good Intentions

A developer warns that giving AI agents the ability to spawn sub-agents without limits creates a recursive fork bomb pattern, leading to runaway costs and resource exhaustion. The post, written by the creator of agentproto, argues that spawning must be a metered privilege with depth and breadth caps, not an unbounded capability. The fix is privilege-gated spawning where child agents cannot exceed their parent's permissions.

read9 min views1 publishedJul 14, 2026

Disclosure up front: I build

[agentproto], one of the

tools in this market. The primitives in the back half are real and the fields

are checkable; the problem in the front half is everyone's. Corrections

welcome β€” file an issue.

Here's the multi-agent dream, and it's a good one: you hand one capable agent a

big task, and instead of grinding through it alone, it spins up a little team β€”

one sub-agent to research, two to implement in parallel, one to review β€” waits for

them all, and hands you the merged result. An orchestrator that manages

orchestrators. It works, and it's genuinely powerful.

Now read that sentence again with an engineer's paranoia. An orchestrator that manages orchestrators. If an agent can spawn agents, then the agents it spawns

You already know this shape. It's the oldest prank in the Unix book:

:(){ :|:& };:   # a function that calls two copies of itself, forever

That's a fork bomb. It does nothing malicious β€” each copy just politely starts

two more, until the process table is full and the machine is on its knees. A

coding agent with an unbounded spawn tool is the same structure with a language

model in the middle and your API bill underneath.

The one idea, if you remember nothing else:

Spawning isn't a feature you turn on. It's a privilege you grant β€” and a

privilege with no depth, no breadth, and no ceiling is a fork bomb with good

intentions.

When you give an agent a spawn_sub_agent

tool, you're not just adding a

capability. You're granting it the right to grant itself the same capability,

recursively, as many times as its reasoning talks it into. Most setups make that

grant implicitly and totally: if the tool is in the toolset, spawning is

unlimited β€” any depth, any number of children, and each child just as privileged

as the parent.

Two things make that expensive fast, and neither is hypothetical. First, cost.

Anthropic's own guidance on sub-agents is that you isolate exploration in them

precisely because each one can burn ten thousand tokens to hand back a five-line summary β€” cheap when it's one, a bonfire when a confused parent

The receipt that should slow you down.The sharpest orchestration writers

converge on one rule:the number of agents a job spawns is the *output of

the orchestration decision, not the input.* You don't pick a multi-agent

workflow because you can β€” you pick it because the work's shape demands it. An

agent that spawns because spawning is available has skipped the only decision

that mattered.

So the problem isn't multi-agent orchestration. It's ungoverned spawning β€”

handing an LLM a recursive, self-replicating capability and trusting its judgment

to not run it off a cliff. The fix isn't "don't spawn." It's "make spawning a

metered privilege."

Place yourself honestly before you build. Four postures, each with a ceiling.

Unbounded. Any agent holding the spawn tool spawns freely β€” any depth, any

count. Powerful, and one confused reasoning loop from a runaway tree and a bill

with a comma you didn't expect. Ceiling: the first agent that decides the answer to "this is hard" is "spawn more agents."

Concurrency-capped by hand. You cap how many agents run at once, in your own

harness code, watching a dashboard. Better β€” but it's your attention doing the

capping, and it doesn't stop depth, just width at one instant. Ceiling: you, watching.

Worktree-isolated only. You give each parallel agent its own git worktree so

they don't stomp each other's files β€” the near-universal isolation trick, and a

good one. But a worktree isolates the filesystem, not the right to spawn. A

tidily-isolated agent can still fork-bomb. Ceiling: clean files, unbounded tree.

Privilege-gated. Spawning is a role, capped by depth and breadth, and a child

can never grant itself more than the parent had. This is the one that can't run away, and it's the one you can declare instead of police.

Where are you?If your honest answer is"any agent with the tool can spawnyou don't have orchestration β€” you have a fork bomb that

as much as it wants,"

hasn't gone off yet. The rest of this is four bounds that make sure it never

does.

The first bound is the bluntest: most agents in a tree should be leaves that

physically cannot delegate. In agentproto that's a spawn-time role.

// this child does the work and CANNOT spawn β€” the spawn tools are removed
agent_start({
  adapter: "claude-code",
  role: "executor",        // leaf: agent_start / agent_prompt are stripped
  cwd: "/abs/host/path",
  prompt: "Implement the retry cap in src/payments/retry.ts. Do not delegate."
})

An executor

is a leaf by construction: the agent_start

and agent_prompt

tools are stripped from its toolset, and asking it to become an orchestrator

is simply ignored β€” no amount of clever prompting gives it back the ability to

spawn, because the capability isn't in the room. A supervisor

may delegate.

That single distinction turns "every agent is a potential parent" into "spawning

is a named privilege that most of the tree doesn't hold."

This is the same lesson the OWASP Agentic Top 10 files under least agency:

give an agent only the autonomy its task needs. A worker implementing a function

doesn't need the right to raise an army. Take it away, and a whole class of

runaway trees becomes unrepresentable.

Leaves can't spawn, but supervisors can, and a chain of supervisors is still a

recursion. So the second bound caps how deep the tree can go, and makes the cap

one-directional.

agent_start({
  role: "supervisor",
  orchestrator: { maxDepth: 3, maxChildren: 8 },   // this subtree, bounded
  // …
})

maxDepth

defaults to 3 and has a hard ceiling of 8 β€” a spawn that would

exceed it is rejected outright, not queued. The load-bearing detail is the

direction: a recursive spawn can only lower the inherited cap, never raise it. A parent at depth 3 can hand a child a budget of 2; that child cannot hand

Depth stops the tree going infinitely down; breadth stops any one node

exploding sideways. maxChildren

defaults to 8 concurrently-alive

sub-agents per parent and, like depth, a recursive spawn can only lower the

inherited quota β€” never raise it.

That's the direct antidote to the :|:

in the fork bomb β€” the part where one

process becomes two becomes four. Cap the branching factor and the geometric

explosion can't start. Combined with depth, your worst case is now a known

number of agents (maxChildren ^ maxDepth

, and shrinking as it descends), not an

open-ended one. You can look at a spawn config and say exactly how bad a confused

run gets. That sentence is impossible in the unbounded world.

Cost gets its own hard stop.Independently of the tree shape, each session

takesmaxCostUsd

β€” a cumulative dollar ceiling; the session is stopped at the

next turn-end once it's exceeded. Depth and breadth bound thecount; this

bounds thespenddirectly, so even a legal-sized tree of expensive turns has a

number it can't cross.

The last bound is the subtle one, and it's what makes the other three trustworthy:

a child can never end up more powerful than the parent that made it. The daemon

enforces a privilege lattice β€” a spawn made through an orchestrator may only

create a role at or below the caller's own level, never something more privileged,

and an explicit tools

allowlist can only ever narrow the toolset, never widen

it. A child can never grant itself scope its parent didn't have.

And the parent's view is boxed, too. The daemon mints a per-child scope-token,

injects a scoped sub-gateway into that child's session, and revokes the token when the session exits. A parent's

session_tree

shows only Four bounds, one property: you can hand an agent the genuinely powerful ability to

build and run a team, and still be able to state β€” before it runs β€” the maximum

depth, the maximum breadth, the maximum spend, and the ceiling on privilege. The

capability stays; the fork bomb becomes unrepresentable.

Real infrastructure, real sharp corners. Four I hit live:

turn-end

is a transient event, so the wait times out on a child that already succeeded. Teach the parent the fallback: if the wait times out, read the child's output to confirm, or take an event cursor session_tree

), or you'll leak running agents.cwd

must be a real host pathAnd the fair comparison. Vendors do ship sub-agents β€” Claude Code's Agent Teams

will run a team for you, and inside one vendor's stack it's smooth and needs none

of this wiring. Two things a built-in team doesn't give you: the spawn tree stays

inside that vendor (your cheap open-model executors aren't invited), and the

governance is theirs, not a set of depth/breadth/role/cost bounds you declare and

own. If you live entirely in one vendor and never want a mixed fleet, take the

built-in β€” it's less work. If you want to spawn across vendors and sleep at

night, the bounds have to be yours.

The instinct to stop agents from spawning is the wrong lesson β€” spawning a team

is exactly the leverage that makes agents worth orchestrating. The right lesson is

that a self-replicating capability handed to a probabilistic reasoner needs the

same thing every other powerful capability needs: limits it can't rewrite.

So grant the privilege deliberately. Make most agents leaves that can't delegate.

Cap the depth so the recursion has a floor. Cap the breadth so no node fans into a

swarm. Cap the spend and the privilege so a child is always smaller than its

parent. Do that and "an agent that spawns agents" stops being a fork bomb and

starts being what you actually wanted: a team with a foreman, and a foreman who

can't accidentally hire the whole city.

Let the agent build its team. Just make sure the tree has a floor, the branches

have a limit, and the whole thing dies when the job's done.

If your orchestrator bounds spawning a cleaner way β€” or you've found a runaway

tree these four bounds wouldn't have caught β€” tell me where. I'll fix the piece.

Written by the maintainer of agentproto (Apache-2.0, source) β€” a local, cross-vendor daemon for running and governing coding agents. Same contract as our /compare page: dated facts, named strengths, corrections by issue. Got something wrong? File an issue.

Building agentproto in the open β€” follow @theagentproto and @agentik_ai on X.

── more in #ai-agents 4 stories Β· sorted by recency
── more on @agentproto 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/an-agent-that-can-sp…] indexed:0 read:9min 2026-07-14 Β· β€”