docs: update CLAUDE.md concurrency section for per-agent mutex

This commit is contained in:
JackChen 2026-04-07 10:46:08 +08:00
parent 73b2454c2f
commit a29d87f384
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ This is the framework's key feature. When `runTeam()` is called:
### Concurrency Control
Two independent semaphores: `AgentPool` (max concurrent agent runs, default 5) and `ToolExecutor` (max concurrent tool calls, default 4).
Three semaphore layers: `AgentPool` pool-level (max concurrent agent runs, default 5), `AgentPool` per-agent mutex (serializes concurrent runs on the same `Agent` instance), and `ToolExecutor` (max concurrent tool calls, default 4).
### Structured Output