Summary
Kimi CLI appears to have a hard concurrency limit of 4 background/subagent tasks. When a workflow tries to launch a 5th subagent, the 5th task fails with a "too many background tasks" style error instead of being queued or handled gracefully.
This blocks larger planned multi-agent workflows where the task has been intentionally divided into 5 or more specialized subagents.
Environment
- Kimi CLI running in WSL
- Multi-subagent workflow
- 4 subagents started successfully
- 5th subagent failed because of background task limit
Observed behavior
The CLI successfully started 4 subagents:
- Subagent A: Alchemist WordPress
- Subagent B: Google Ads
- Subagent C: OpenClaw
- Subagent D: Infra + Skills
When trying to start the 5th subagent:
- Subagent E: Future Project Coordinator
the task failed because there were already too many background tasks.
Relevant output:
Used TaskList (active)
agent-11tu8kjc [running] Subagent D: Infra + Skills
agent-kh1freha [running] Subagent C: OpenClaw
agent-38suvuzr [running] Subagent B: Google Ads
agent-cw8ku7m9 [running] Subagent A: Alchemist WordPress
4 subagents are running. The 5th (Subagent E) failed because of too many background tasks. I need to wait for one to complete before starting Subagent E.
The CLI then continued checking task output and waiting:
Used TaskOutput (agent-cw8ku7m9)
agent-cw8ku7m9 [running] Subagent A: Alchemist WordPress
Used TaskOutput (agent-38suvuzr)
agent-38suvuzr [running] Subagent B: Google Ads
Used TaskOutput (agent-kh1freha)
agent-kh1freha [running] Subagent C: OpenClaw
Used TaskOutput (agent-11tu8kjc)
agent-11tu8kjc [running] Subagent D: Infra + Skills
All 4 subagents are running and reading files. I need to wait for at least one to finish so I can start Subagent E.
Used Shell (sleep 15 && echo "checking...")
Reproduced: 15-agent swarm test (2026-05-04)
The limit was reproduced with a controlled test attempting to launch 15 subagents simultaneously, each running a simple count-1-to-10 task with a 10-second pause between each number (~90-100 seconds per agent).
Launch results
Agent #1 - Started (4fq6oz2g / a20836732)
Agent #2 - Started (qgbt4qda / a038b32b7)
Agent #3 - Started (u2dq2bwh / a48b6f53b)
Agent #4 - Started (tixysjt3 / a96f1addf)
Agent #5 - ERROR: Too many background tasks are already running
Agent #6 - ERROR: Too many background tasks are already running
Agent #7 - ERROR: Too many background tasks are already running
Agent #8 - ERROR: Too many background tasks are already running
Agent #9 - ERROR: Too many background tasks are already running
Agent #10 - ERROR: Too many background tasks are already running
Agent #11 - ERROR: Too many background tasks are already running
Agent #12 - ERROR: Too many background tasks are already running
Agent #13 - ERROR: Too many background tasks are already running
Agent #14 - ERROR: Too many background tasks are already running
Agent #15 - ERROR: Too many background tasks are already running
Summary
| Agents |
Result |
| #1-#4 |
Started and running |
| #5-#15 |
Rejected with "Too many background tasks are already running" |
11 out of 15 agents (73%) were instantly rejected with no queuing, no backpressure, and no suggestion to retry. The 4 that started would take ~90-100 seconds each to complete.
Expected behavior
One of the following would be better:
- Allow more than 4 concurrent background/subagent tasks.
- Expose the background task limit clearly in the CLI or config.
- Allow users to configure the max number of background tasks.
- Automatically queue the 5th and later subagent tasks instead of failing them.
- Avoid indefinite polling/waiting behavior when the planned workflow is blocked by the concurrency limit.
Why this matters
For larger codebase or workspace review tasks, it is useful to split work across 5+ specialized subagents.
In this case, the planned review was intentionally divided into:
- WordPress
- Google Ads
- OpenClaw
- Infrastructure + Skills
- Future Project Coordinator
The 4-task limit prevented the full planned coverage from running.
Suggested improvement
Please consider adding a configurable setting such as:
kimi --max-background-tasks 8
or a config option like:
{
"maxBackgroundTasks": 8
}
At minimum, it would help if the CLI surfaced the limit explicitly and queued extra subagent tasks rather than failing them.
Summary
Kimi CLI appears to have a hard concurrency limit of 4 background/subagent tasks. When a workflow tries to launch a 5th subagent, the 5th task fails with a "too many background tasks" style error instead of being queued or handled gracefully.
This blocks larger planned multi-agent workflows where the task has been intentionally divided into 5 or more specialized subagents.
Environment
Observed behavior
The CLI successfully started 4 subagents:
When trying to start the 5th subagent:
the task failed because there were already too many background tasks.
Relevant output:
The CLI then continued checking task output and waiting:
Reproduced: 15-agent swarm test (2026-05-04)
The limit was reproduced with a controlled test attempting to launch 15 subagents simultaneously, each running a simple count-1-to-10 task with a 10-second pause between each number (~90-100 seconds per agent).
Launch results
Summary
11 out of 15 agents (73%) were instantly rejected with no queuing, no backpressure, and no suggestion to retry. The 4 that started would take ~90-100 seconds each to complete.
Expected behavior
One of the following would be better:
Why this matters
For larger codebase or workspace review tasks, it is useful to split work across 5+ specialized subagents.
In this case, the planned review was intentionally divided into:
The 4-task limit prevented the full planned coverage from running.
Suggested improvement
Please consider adding a configurable setting such as:
or a config option like:
{ "maxBackgroundTasks": 8 }At minimum, it would help if the CLI surfaced the limit explicitly and queued extra subagent tasks rather than failing them.