By Sagar Shankaran, Founder of CallSphere
Inline tool, spawn-wait, parallel, quality-gated — the four sub-agent patterns from 2026 production systems. We cover RecursiveMAS's 8.3% accuracy lift, OpenPlanter's IMPLEMENT-THEN-VERIFY judge, and CallSphere's nested OneRoof shape.
Key takeaways
TL;DR — Sub-agents are agents spawned by other agents. Four patterns dominate in 2026: inline tool, spawn-wait, parallel, and quality-gated. RecursiveMAS reports 8.3% accuracy gains and 35–75% token reduction when applied carefully.
A parent agent treats a child agent as a callable. The child has its own context, prompt, and tools; the parent integrates the child's response. Recursion arises when the child can spawn its own children.
flowchart TD
P[Parent agent] -->|spawn| C1[Child A]
P -->|spawn| C2[Child B]
C1 -->|spawn| GC1[Grandchild A1]
C1 -->|spawn| GC2[Grandchild A2]
GC1 --> C1
GC2 --> C1
C1 --> P
C2 --> P
P --> JUDGE[Quality judge]
JUDGE -->|FAIL| P
JUDGE -->|PASS| OUT[Result]
The four sub-patterns:
CallSphere's deepest recursion is OneRoof's listing-deep-dive flow:
The property specialist runs IMPLEMENT-THEN-VERIFY: it spawns each grandchild with explicit acceptance criteria ("return at least 3 comps with sale dates within 6 months"); a cheap judge model evaluates each grandchild's output PASS/FAIL. FAIL retries once with the critique.
OneRoof = 10 specialists w/ Triage Aria → property/suburb/mortgage/viewing/agent matcher. UrackIT (10 specialists + ChromaDB) uses a similar nested shape for document QA. After-hours (7 agents w/ Primary→Secondary→6-fallback ladder) is shallower — 1 level only. Across 37 agents · 90+ tools · 115+ DB tables · 6 verticals. Pricing: Starter $149 · Growth $499 · Scale $1,499, 14-day trial, 22% affiliate.
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
def run_with_judge(parent_call, criteria):
out = parent_call()
verdict = judge.invoke(f"Criteria: {criteria}\nOutput: {out}")
if verdict.strip().startswith("PASS"): return out
return parent_call(critique=verdict) # one retry
def property_specialist(query):
comps = run_with_judge(
lambda critique=None: comp_finder(query, critique),
criteria="At least 3 comps, all sale dates within 6 months"
)
schools = school_reader(query)
suburbs = suburb_indicator(query)
return synthesize([comps, schools, suburbs])
Q: Inline tool vs handoff? Inline tool when the parent integrates. Handoff when the child should reply directly to the user.
Q: How deep can recursion go? Practically, 3 levels. Theoretically unbounded; in production, audit trails get unreadable past 3.
Q: Different model per level? Common — strong at the root (planning), cheaper at leaves (execution).
Q: Quality gate worth the cost? On critical paths, yes. ~30% extra cost, often 50% fewer downstream errors.
Q: How does RecursiveMAS differ? RecursiveMAS shares latent state across agents in a unified embedding, beyond just text passing. Research-grade today.
When teams move beyond recursive Sub-Agents, one question shows up first: where does the agent loop actually end? In practice, the boundary is rarely the model — it is the contract between the orchestrator and the tools it calls. The teams that ship fastest treat recursive sub-agents as an evals problem first and a modeling problem second. They write the failure cases into the regression set on day one, not after the first incident.
Agentic AI in a real call center is a different beast than a single-LLM chatbot. Instead of one model answering one prompt, you orchestrate a small team: a router that decides intent, specialists that own a vertical (booking, intake, billing, escalation), and tools that read and write to the same Postgres your CRM trusts. Hand-offs are where most production bugs hide — when Agent A passes context to Agent B, anything that isn't explicit in the message gets lost, and the user feels it as the agent "forgetting." That's why the systems that hold up under load are the ones with typed tool schemas, deterministic state stored outside the conversation, and a hard ceiling on tool calls per session. The cost story is just as important: a multi-agent loop can quietly burn 10x the tokens of a single-LLM design if you let it think out loud at every step. The fix isn't a smarter model, it's smaller agents, shorter prompts, cached system messages, and evals that fail the build when p95 latency or per-session cost regresses. CallSphere runs this pattern across 6 verticals in production, and the rule has held every time: the agent you can debug in five minutes will out-survive the agent that's "smarter" on a benchmark.
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
Q: How do you scale recursive Sub-Agents without blowing up token cost?
A: Scaling comes from constraint, not capability. The deployments that hold up keep each agent narrow, cap tool calls per turn, cache the system prompt, and pin a smaller model for routing while reserving the larger model for synthesis. CallSphere's stack — 37 agents · 90+ tools · 115+ DB tables · 6 verticals live — is sized that way on purpose.
Q: What stops recursive Sub-Agents from looping forever on edge cases?
A: Hard ceilings beat heuristics. A maximum step count, an idempotency key on every tool call, and a fallback to a deterministic script when confidence drops below a threshold are what keep the loop bounded. Evals that simulate noisy inputs catch the rest before they reach a real caller.
Q: Where does CallSphere use recursive Sub-Agents in production today?
A: It's already in production. Today CallSphere runs this pattern in Healthcare and Salon, alongside the other live verticals (Healthcare, Real Estate, Salon, Sales, After-Hours Escalation, IT Helpdesk). The same orchestrator code path serves voice and chat — the difference is the tool set the router exposes.
Want to see sales agents handle real traffic? Spin up a walkthrough at https://sales.callsphere.tech or grab 20 minutes on the calendar: https://calendly.com/sagar-callsphere/new-meeting.
Written by
Sagar Shankaran· Founder, CallSphere
Sagar Shankaran is the founder of CallSphere, where he builds production AI voice and chat agents deployed across healthcare, hospitality, real estate, and home services. He writes about agentic AI, LLM engineering, and shipping voice agents that handle real calls in production.
See how AI voice agents work for your industry. Live demo available -- no signup required.
How to design a multi-agent system using MCP for tools and A2A for cross-vendor coordination, with a CallSphere voice agent as a participating node.
A2A is the open standard for agent-to-agent coordination. Here is how the Agent Card JSON works, how discovery happens, and what to publish.
A2A unlocks cross-vendor agent coordination, but most enterprise voice/chat workloads still ship faster on a single-vendor stack. Here is how to choose.
Fully autonomous agents are still a fantasy in production. LangGraph's interrupt() lets you pause for human approval mid-graph without losing state. We cover approve/edit/reject/respond actions and CallSphere's escalation ladder.
Enterprise CIO Guide perspective on AutoGen 0.5 brings async-first execution, an extension architecture, and tighter Azure integration.
Enterprise CIO Guide perspective on Claude Code 2.1 ships background agents, sub-agent spawning, and a hooks API that turn it into a true multi-agent coding platform.
© 2026 CallSphere LLC. All rights reserved.