AI DevelopmentDecision Matrix18 min readPublished August 1, 2026

Up to 300 subagents · two vendor-named failure modes · one decomposability test

Kimi K3 Swarm: Which Work Actually Parallelizes Well

Moonshot documents Agent Swarm at up to 300 subagent instances and more than 4,000 tool calls in a single task. It also documents the two ways its own orchestrator fails — serial collapse and fake parallelism. Those two failures are the most useful decision framework anyone has published for when to fan work out at all.

DA
Digital Applied Team
Senior strategists · Published Aug 1, 2026
PublishedAug 1, 2026
Read time18 min
SourcesKimi docs, vendor blog, OpenAI, arXiv +2
Max subagent instances
300
vendor-documented capacity
since the K2.6 upgrade
Tool calls per task
4,000+
in a single Swarm task
BrowseComp accuracy
33.3%
Swarm vs 15.9% single agent
+17.4 pts
Orchestrator step budget
15
steps, directing up to 4,000

The Kimi K3 Agent Swarm question that matters is not how many subagents you can run — Moonshot documents up to 300 instances and more than 4,000 tool calls in a single task — but which of your work actually gets faster when you split it. Moonshot answers that question more honestly than most vendors do, because its own documentation names the two ways the system fails when the work does not decompose.

Those two failure modes are called serial collapse and fake parallelism. They are not criticisms from a reviewer; they are training targets that Moonshot published in its own help centre, alongside the reward function it built to suppress them. A vendor that has to explicitly train an orchestrator not to fake parallelism is a vendor telling you, in public, that fan-out is not free and not always a win.

This guide turns that admission into a working decision test. It covers how the architecture is actually put together, what Moonshot’s own critical-steps metric measures, a scored decomposability matrix you can run against your own task list before you spend a credit, what the BrowseComp result does and does not prove, the one case where divergence between subagents is the deliverable rather than the defect, and how to think about fan-out width when the vendor publishes no fixed cost multiplier.

Key takeaways
  1. 01
    Moonshot names its own failure modes — use them.Serial collapse (the orchestrator quietly hands everything to one subagent) and fake parallelism (it splits work into meaningless subtasks to inflate parallelism metrics) are both documented RL training targets. If the vendor has to train against them, your task can trigger them.
  2. 02
    Capacity is 300 subagents and 4,000+ tool calls per task.That is the current documented ceiling, carried over from the April 20, 2026 Kimi K2.6 upgrade and now served by K3. The orchestrator itself is capped at 15 steps while directing up to 4,000 steps across the swarm.
  3. 03
    The decision test has three questions, not one.Can subtasks run with zero cross-dependency? Is merging N outputs cheap or expensive? Does the deliverable need one voice or one decision? Score each 0 or 1; only a 3 out of 3 is an unambiguous fan-out.
  4. 04
    Two Swarm efficiency numbers get fused — they are separate.The 3–4.5× critical-step reduction is a general claim about large-scale search scenarios. BrowseComp’s own reported efficiency delta is roughly 40% fewer critical steps versus a baseline context-management approach. BrowseComp did not show 3–4.5×.
  5. 05
    Divergence is sometimes the product, not the bug.Moonshot’s own multi-perspective review and multi-style writing cases deliberately engineer disagreement between subagents. The one-coherent-voice test has a real exception — when reconciling contradictory views is the deliverable itself.

01The ArchitectureA trained coach directing frozen players.

Agent Swarm was introduced on January 27, 2026 alongside Kimi K2.5, described by Moonshot as a scale-out architecture that coordinates large-scale subagent collaboration without predefined roles or manually designed workflows. On April 20, 2026, the release of Kimi K2.6 gave it a substantial capacity upgrade: up to 300 subagent instances running simultaneously, more than 4,000 tool calls in a single task, and a vendor-stated 4.5× speed advantage over sequential execution by a single agent. Agent Swarm now runs on Kimi K3, which Moonshot describes as further improving large-scale parallel search and batch processing — without publishing new capacity numbers beyond those figures.

The structural detail worth internalising is the split between coordination and execution. The main agent — the orchestrator — is capped at 15 steps. Those 15 steps direct up to 4,000 steps executed across the subagents. Almost all of the compute happens below the orchestrator; almost all of the judgement happens inside it. That asymmetry is why the orchestrator is the only part Moonshot trains.

Coordination
The orchestrator
15 steps · directs up to 4,000

The main agent decomposes the brief, decides fan-out width, dispatches subagents and consolidates results. It is the only component improved during training, via a method Moonshot names PARL — Parallel-Agent Reinforcement Learning.

Trained via PARL
Execution
Up to 300 subagents
context-sharded notebooks

Each subagent keeps its own isolated context, reasons without interference from siblings, and reports only key conclusions back — not full intermediate output. Moonshot positions this context sharding as an alternative to compressing or dropping a shared window.

Capabilities frozen
Incentives
A three-part reward
quality · true parallelism · completion

Training rewards final task quality, whether genuine parallelism was achieved rather than one subagent doing all the work, and subtask completion rate to avoid empty headcount. The last two are weighted heavily early, then reduced so the model optimises for results once the habit is learned.

Weights shift over training
“The players are ‘frozen’; only the coach is trained.”— Kimi Help Center, Agent Swarm technical documentation

Moonshot gives two reasons for freezing the subagents. The first is clean credit assignment: when a project succeeds or fails, the credit or blame belongs unambiguously to the orchestrator’s scheduling decisions rather than to ambiguous drift in subagent behaviour. The second is stability — if every subagent’s tactics changed simultaneously during training, the team would fall into chaos.

Read that as a design statement about where the difficulty lives. The hard problem in multi-agent work is not making a worker better; it is deciding what to hand it, when, and how many of them to run. That is the same problem you have when you decide whether to use Swarm at all. If you want the wider map of how this pattern sits next to supervisor, pipeline and blackboard designs, our agent architecture patterns taxonomy places orchestrator/subagent systems in context.

02Failure ModesSerial collapse and fake parallelism.

The most useful paragraph Moonshot has published about Agent Swarm is not a benchmark. It is the section describing what the orchestrator does wrong when left untrained. Two behaviours are named explicitly, and the reward function exists to suppress both.

Failure mode 01 · Serial collapse
“Serial collapse: the commander avoids coordination and hands everything to a single Subagent to do slowly, degenerating into solo work.” — Kimi Help Center, Agent Swarm documentation. In other words, an untrained orchestrator faced with work that does not split will simply stop splitting it. The system degrades to a single agent, and you pay swarm-tier credits for single-agent throughput.
Failure mode 02 · Fake parallelism
“Fake parallelism: to inflate ‘parallelism metrics,’ the commander blindly splits out a large number of meaningless subtasks that do not actually improve efficiency.” — Kimi Help Center, Agent Swarm documentation. This is the more expensive failure. Wide fan-out looks like productivity, consumes credits at swarm rates, and returns a pile of outputs that a human or the orchestrator then has to reconcile at full cost.

Both failures share a root cause: the task did not have the shape that rewards splitting. Moonshot’s countermeasure is a reward function with three dimensions — final completion quality, whether true parallelism was achieved rather than one agent doing everything, and subtask completion rate so the orchestrator cannot pad the roster with agents that do nothing. Early in training the second and third dimensions carry heavy weight; later they are reduced so the model optimises toward result quality once the collaboration habit is established.

Notice what that curriculum implies. Moonshot had to push the model hard toward parallelism to teach it the behaviour at all, then pull back so it would stop parallelising for its own sake. Both directions of correction were necessary. That is the clearest available evidence that neither “always fan out” nor “never fan out” is the right default — the decision is per-task, and it is exactly the decision the rest of this guide is about.

03Critical StepsMoonshot invented its own critical path.

To stop the model from blindly splitting tasks to look busy, Moonshot needed a metric that only improves when parallelism does real work. It settled on critical steps, and explained the idea with a renovation analogy. Run a renovation serially and each trade waits in line, so total time is the sum of every trade’s hours. Run it in parallel and the tiler, carpenter, electrician and plumber start at once, so total time is set by the slowest trade at each stage — not by the total labour. Critical steps are the sum of the slowest subagent’s time across each stage.

That is a critical-path argument, arrived at independently and expressed in plumbing. It is also the cleanest way to explain why adding subagents stops helping. Once every stage is already bounded by one slow worker, the twentieth agent changes nothing about wall-clock time — but it still consumes credits, still produces output somebody has to read, and still adds a row to whatever the orchestrator has to reconcile at the end.

The reasoning bridge
Classical parallel computing has a name for this: the fraction of work that cannot be split governs your ceiling. One published framing of the agent version argues that for LLM systems the irreducibly sequential part is the synthesis step — the moment somebody has to reconcile conflicting subagent outputs into one answer — and that agents coordinate in natural language rather than fixed protocols, so coordination overhead runs higher than in classical multithreading. That framing is blog-level analysis rather than a peer-reviewed result, and Amdahl’s original 1967 argument was about fixed hardware, not agents. Treat it as a useful lens, not a law.

There is at least one piece of academic work pointing the same way. M1-Parallel, published in July 2025, runs multiple multi-agent teams in parallel on the same problem to find diverse solution paths rather than splitting subtasks of one problem. It reported up to a 2.2× speedup with early termination and aggregation — but also found that engineering task-specific diversity strategies produced no additional performance gains over simple repeated sampling. The paper predates Agent Swarm and does not evaluate Moonshot’s system, but the direction is consistent: parallel gains come from work that is genuinely independent and cheaply aggregable, not from structure imposed on tasks that resist it.

04Proprietary AnalysisThe decomposability test, scored three ways.

Moonshot documents six task families as especially suitable for Agent Swarm: large-scale information retrieval, batch downloads, broad reading across 100+ documents, long-form writing exceeding 100,000 characters, complex programming including front-end work, code review and multi-file refactoring, and office automation across documents, spreadsheets and presentations. That list is a starting point, not a decision rule — “complex programming” contains both work that fans out beautifully and work that collides on every shared file.

So here is the test we run instead. Three yes/no questions, each scored 1 when the answer favours fan-out and 0 when it does not. Question one: can the subtasks run with genuinely zero cross-dependency? Question two: is merging N outputs cheap — a concatenation, a table, a folder — or expensive, requiring somebody to resolve contradictions into a single narrative? Question three: can the deliverable tolerate divergence, or does it need one voice and one decision? Add the three. Only a 3 out of 3 is an unambiguous fan-out.

Decomposability test scoring eight candidate task shapes against three fan-out criteria — independent subtasks, merge cost and tolerance for divergence — with a summed score out of three and a verdict for each row.
Task shapeIndependent subtasks?Merge costDivergence acceptable?ScoreVerdict
Score = independent subtasks (0 or 1) + low merge cost (0 or 1) + divergence acceptable (0 or 1) · 3 = fan out · 2 = fan out with a named merge owner · 0–1 = keep it sequential
Retrieve pricing and spec pages across 300 competitor sitesYes — one site per agent (1)Low — rows concatenate (1)Yes — data, not voice (1)3 / 3Fan out
Collect, classify and summarise 200+ scattered essays by one authorYes — one source per agent (1)Low — folder plus per-item summary (1)Yes — summaries stand alone (1)3 / 3Fan out
Generate 40 independent customer-persona interview summariesYes — one persona per agent (1)Low — one artefact each (1)Yes — variety is fine (1)3 / 3Fan out
100-page literature review drawn from 40 PDFsYes — sections split cleanly (1)Moderate — section stitching and citation dedup (0)Partly — sections tolerate different hands (1)2 / 3Fan out with a named merge owner
Multi-perspective expert review of a launch strategyYes — one role per agent (1)High — reconciliation is the deliverable (0)Desirable — divergence is the point (1)2 / 3Fan out with a named merge owner
Refactor a monolith’s auth layer across shared modulesNo — edits collide on shared files (0)High — conflicting diffs (0)No — one architectural decision (0)0 / 3Keep it sequential
Write a 2,000-word brand-voice articleNo — the argument builds on itself (0)High — the seams show (0)No — one voice required (0)0 / 3Keep it sequential
Step-through debugging of a live production incidentNo — each step depends on the last (0)High — nothing mergeable to merge (0)No — one line of reasoning (0)0 / 3Keep it sequential

The three zero-score rows are the ones worth dwelling on, because each maps to a Moonshot failure mode. The auth refactor and the production-incident debug both trigger serial collapse: the dependency chain is real, so a well-trained orchestrator will correctly stop splitting — and you will have paid swarm-tier credits for a single-agent run. The brand-voice article is the fake- parallelism trap: it splits easily into sections, produces plausible parallel output, and delivers an article with four different registers that a human then rewrites end to end.

The two-out-of-three rows are not rejections. They are instructions: fan out, but assign the merge explicitly before you start. Name who or what resolves contradictions, decide the output schema up front, and budget for that step rather than discovering it after 40 agents have returned. That merge design is most of the work in a real Swarm workflow — enough that we treat it as its own topic in the end-to-end market-research workflow.

05Benchmark EvidenceWhat BrowseComp does not prove.

The headline result Moonshot publishes for Agent Swarm is BrowseComp accuracy rising from 15.9% for a single agent to 33.3% for the swarm. That is a real and substantial gap — a little over double — and it is the strongest published evidence that fan-out helps on the right task shape. It is also narrower evidence than it first appears.

BrowseComp accuracy · Agent Swarm vs a single agent

Source: Kimi Help Center, Agent Swarm — vendor-reported, not independently reproduced
Single agentBrowseComp accuracy · vendor-reported
15.9%
Agent SwarmBrowseComp accuracy · vendor-reported
33.3%

BrowseComp is OpenAI’s benchmark, not Moonshot’s. It contains 1,266 questions built by an inverted-question method: start from a verifiable fact, construct a question whose answer is hard to find but easy to check — what the authors call the asymmetry of verification — then confirm the question resists strong models and does not surface in top search results. It measures browsing persistence and retrieval depth. It does not measure coding, it does not measure single-voice writing, and it does not measure anything requiring one coherent through-line.

That matters for how far you can carry the result. A doubling on BrowseComp is strong evidence for wide information-retrieval work — which is also Agent Swarm’s best-documented category — and weak evidence for anything else. This is our reading rather than a vendor claim, but it follows directly from what the benchmark was built to test.

Do not fuse these two numbers
Two separate efficiency claims sit near each other in Moonshot’s documentation and are routinely blurred together. The 3–4.5× critical-step reduction is a general capability claim about large-scale search scenarios; it is not tied to any single benchmark run. BrowseComp’s own reported efficiency delta is different — roughly 40% fewer critical steps, measured against a baseline context-management approach rather than against a single agent. Writing “BrowseComp shows a 3–4.5× reduction” fuses two claims that were never one.
General claim
Faster than sequential
4.5×

Vendor-stated speed advantage over sequential execution by a single agent, published with the April 2026 capacity upgrade. Not tied to a named benchmark run.

Kimi Help Center
General claim
Critical-step reduction
3–4.5×

Vendor-stated for large-scale search scenarios generally. This is the figure most often mis-attached to the BrowseComp result — the two are separate claims.

Not benchmark-specific
BrowseComp only
Fewer critical steps
~40%

The efficiency figure Moonshot reports for BrowseComp itself, measured against a baseline context-management approach rather than against a single agent. Distinct from both figures above.

vs baseline context mgmt

One more caveat belongs here, carefully bounded. A single hands-on review published in late July 2026 ran Kimi K3 against Claude Opus 4.8 on real GitHub issues and reported near-parity on simple tasks but a markedly higher failure rate for K3 on deliberately adversarial ones. That review tested single-agent coding quality, not swarm coordination, and it has not been corroborated by a second lab — so it says nothing about parallelisation behaviour. It is relevant in one indirect way only: the less reliable an individual subagent is on hard work, the more verification and reconciliation you inherit after the fan-out, which pushes borderline tasks toward the sequential column of the table above.

06The ExceptionWhen divergence is the deliverable.

Most “when not to parallelise” advice, including the third column of our own table, treats disagreement between workers as a defect to be merged away. Moonshot’s own case studies contain the counter-example, and it is worth naming explicitly rather than glossing over.

In its multi-perspective analysis case, Agent Swarm reviews a product launch strategy by assigning independent agents genuinely different roles — a senior product manager worried about technical debt, a sceptical investor questioning unit economics, a head of customer success defending edge cases — and then forces reconciliation. Moonshot frames the design goal as structurally avoiding groupthink. The divergence is not noise to be smoothed; it is the entire reason to run the task at all.

The same logic drives its multi-style writing case, where twenty independent writer subagents each continue the same novel in a different literary register — interior monologue, labyrinthine fabulism, bureaucratic absurdism — producing twenty alternate endings that are supposed to disagree. In both cases the one-coherent-voice test inverts: you are not trying to produce one voice, you are trying to produce many and then decide between them.

Convergent
One answer required

A refactor plan, an incident root cause, a brand-voice article, a pricing recommendation. Contradictions between subagents are pure cost — somebody has to resolve them, and the resolution is the hard part. Score the merge column zero and expect it to dominate.

Keep it sequential
Additive
Many independent artefacts

300 competitor pages, 200 essays, 40 persona summaries. Outputs stack rather than compete. Merging is a concatenation or a table, so fan-out width converts almost directly into wall-clock savings until the slowest stage binds.

Fan out wide
Divergent
Disagreement is the point

Multi-perspective review, red-teaming a plan, generating stylistic alternatives. Here independence is engineered deliberately and reconciliation is the deliverable rather than overhead — the one case where a high merge cost is money well spent.

Fan out, then arbitrate
Hybrid
Split research, keep synthesis

The most common real shape: fan out the retrieval and evidence-gathering, then hand a single agent or a human the synthesis. You get the retrieval speedup that BrowseComp actually demonstrates without paying the single-voice penalty on the output.

Fan out the front half

That fourth pattern deserves the most attention, because it is where most agency and engineering work lands. Very little real work is purely additive or purely convergent; most of it is a wide, boring evidence-gathering phase followed by a narrow, judgement-heavy synthesis. Swarm is excellent at the first half and structurally unsuited to the second. Splitting your workflow at that seam — rather than deciding to “use Swarm” or “not use Swarm” for the whole job — is the single highest-leverage change most teams can make. It is the same reasoning we apply to parallel multi-agent coding patterns generally, and the first thing we map in an AI transformation engagement — which parts of an existing workflow decompose, and which quietly do not.

07Fan-Out WidthHow wide before it stops paying?

Once you have decided a task fans out, the second question is how far. Moonshot publishes no cost curve and no fixed credit multiplier, so an honest answer cannot be a number — it has to be a reasoning tool. The table below applies the vendor’s own critical-steps definition at four widths and asks, at each, what actually sets your wall-clock time and what you inherit in coordination load. It is a framework for interrogating your own task, not measured data.

Illustrative reasoning framework for choosing fan-out width, derived from Moonshot’s critical-steps definition. Not measured data and not a published cost curve.
Fan-out widthWhat sets the critical pathCoordination and merge loadQuestion to answer first
Illustrative framework · derived from the vendor’s critical-steps definition · Moonshot publishes no fixed credit-per-subagent figure
3 subagentsThe single slowest branch. Variance between agents barely matters at this width.Trivial — you can read all three outputs yourself.Is a swarm-tier task even warranted, or would one agent with a longer leash finish it?
20 subagentsStill the slowest branch, but tail latency starts to bind — one stuck agent holds the stage.Real. Output schema must be fixed in advance or the merge becomes manual.Have you defined the output format each agent must return, before dispatch?
100 subagentsTail latency and retry behaviour dominate. Adding agents no longer shortens the stage.Heavy — deduplication and contradiction handling become their own workstream.Who or what dedupes overlapping findings, and what happens when two agents disagree?
300 subagents (documented ceiling)Coordination overhead and the consolidation step, not the workers themselves.Dominant — the swarm has produced more material than any single reader can verify.Is verification sampled or exhaustive, and have you budgeted the credits before you dispatch?

The pattern the table is trying to make visible is that the binding constraint moves. At three agents your limit is the slowest worker; at three hundred it is your own ability to check the output. That shift is why “use the maximum width” is almost never the right instruction. The right instruction is to widen until the stage is bounded by something other than worker count, then stop — and if you cannot tell where that point is, run the task twice at different widths and time it rather than trusting a vendor multiple.

Worth noting for calibration: Moonshot is not alone in shipping parallel orchestration as a product surface. OpenAI’s ultra setting coordinates four agents in parallel by default, a default width Swarm’s documented ceiling exceeds roughly seventy-five-fold. That gap is a design statement about where each vendor thinks the useful width sits — and it should make you sceptical of any framing where more agents is automatically better.

08Cost & AccessCredits, gating, and what the vendor will not tell you.

Agent Swarm is gated to Moonshot’s paid membership tiers — Moderato, Allegretto and Allegro — and the vendor states plainly that a swarm task consumes roughly several times the credits of a regular agent task, scaling with complexity and subagent count. That is the whole of the published cost guidance. There is no fixed swarm-to-single multiplier anywhere in Moonshot’s documentation, and you should be suspicious of any third-party article that supplies one.

The underlying model has a published API price, which is a different surface from the consumer credit tiers. Moonshot’s standard list pricing for Kimi K3 is $0.30 per 1M cache-hit input tokens, $3.00 per 1M cache-miss input tokens and $15.00 per 1M output tokens — the vendor itself notes that the output rate includes the reasoning trace, which is a real cost factor on agentic work. OpenRouter’s moonshotai/kimi-k3 listing matches that at $3.00 in and $15.00 out per 1M tokens on its provider rate. Those figures are API rates and do not translate directly into swarm credits.

The honest cost position
You cannot compute swarm ROI from published numbers, because the one input you need — the credit multiplier per subagent — has never been published. What you can do is measure. Run the same brief once sequentially and once with a fan-out, record both the wall-clock time and the credits consumed, and compute your own ratio for your task shape. Two runs of instrumentation beat any vendor multiple, and they are the only way to find out whether your particular workload sits above or below break-even.

For context on the model underneath: Kimi K3 is a 2.8T-total, 104B-active mixture of experts with 896 experts, a 1M-token context window and native vision. It has been hosted since mid-July 2026, with open weights following in late July under a bespoke Kimi K3 licence — notably not the modified-MIT terms K2 shipped under. That licence gates commercial model-as-a-service use above roughly $20M a year in revenue from that use, and requires visible Kimi K3 branding for product embedding above 100 million monthly active users or $20M a month in revenue. If you are evaluating the model itself rather than the swarm, our write-up of Kimi K3’s full release specs covers the architecture in depth, and the hands-on setup guide for Kimi Code covers the CLI and caching behaviour.

Before you run anything wide, put a ceiling on it. Fan-out is the fastest way to turn a budgeting mistake into a large one, because the spend happens in parallel and you find out afterwards. Our agent token-budget framework is built for exactly this — set the cap before the dispatch, not after the invoice. And if the deciding factor is a capability other than parallelism, the 1M context, vision and reasoning-effort surfaces are frequently the better lever.

09ConclusionThe vendor gave you the test — use it.

Agent Swarm, August 2026

Parallelism is a property of the task, not a feature of the model.

The most valuable thing Moonshot published about Agent Swarm is not the 300-subagent ceiling or the BrowseComp jump. It is the admission, in its own documentation, that an untrained orchestrator either collapses back to solo work or splits tasks that should never have been split. Serial collapse and fake parallelism are the two ways your credits disappear without your wall-clock time moving, and both are properties of the work rather than the model.

So run the test before you run the swarm. Independent subtasks, cheap merge, tolerance for divergence — three questions, three points, and only a clean sweep is an unambiguous fan-out. Two out of three means fan out but assign the merge explicitly first. Anything lower means the sequential path is the fast path, whatever the marketing says about parallel capacity.

The direction of travel is clear enough to plan around. Orchestration width has become a competitive surface across vendors, and the published ceilings will keep climbing faster than anyone’s ability to verify what comes back. That makes the scarce skill the opposite of what the headline numbers suggest: not running more agents, but knowing which half of a workflow deserves them and designing the merge before the dispatch. Teams that build that judgement now will spend the next capacity upgrade well. Teams that treat width as progress will simply spend.

Put agent orchestration to work

Most agent workflows fail at the merge, not the fan-out.

We design multi-agent workflows around what actually decomposes — fan-out where it pays, sequential where it does not, and a merge step specified before the first agent is dispatched.

Free consultationExpert guidanceTailored solutions
What we work on

Multi-agent workflow engagements

  • Decomposability audits across your existing task list
  • Fan-out design with an explicit merge owner
  • Credit and token budget guards before dispatch
  • Model routing across Kimi K3, GPT-5.6 and Claude
  • Instrumentation so you measure speedup, not assume it
FAQ · Kimi K3 Agent Swarm

The questions teams ask before their first swarm run.

Agent Swarm is Moonshot's scale-out orchestration architecture, introduced on January 27, 2026 alongside Kimi K2.5 and now powered by Kimi K3. An orchestrator agent decomposes a brief and dispatches subagents that work in parallel, each with its own isolated context. The documented current capacity, set by the Kimi K2.6 release on April 20, 2026, is up to 300 subagent instances running simultaneously and more than 4,000 tool calls within a single task. The orchestrator itself operates on a 15-step budget while directing those thousands of subagent steps. Moonshot describes K3 as further improving large-scale parallel search and batch processing, but has not published new capacity figures beyond the 300 and 4,000+ numbers. All of these are vendor-stated and have not been independently reproduced.
Related dispatches

Continue exploring agentic architecture.