Skip to content

Commit 8047350

Browse files
authored
docs(config): correct agent defaults concurrency comments
Correct the exported agent defaults type comments for `maxConcurrent` and `subagents.maxConcurrent` so they match the runtime defaults of 4 and 8. No runtime behavior changes. Thanks @ArielSmoliar for the fix.
1 parent 15e4fbf commit 8047350

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/config/types.agent-defaults.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,15 +455,15 @@ export type AgentDefaultsConfig = {
455455
*/
456456
includeReasoning?: boolean;
457457
};
458-
/** Max concurrent agent runs across all conversations. Default: 1 (sequential). */
458+
/** Max concurrent agent runs across all conversations. Default: 4. */
459459
maxConcurrent?: number;
460460
/** Sub-agent defaults (spawned via sessions_spawn). */
461461
subagents?: {
462462
/** Prompt-only guidance for how strongly the main agent should delegate work. Default: "suggest". */
463463
delegationMode?: SubagentDelegationMode;
464464
/** Default allowlist of target agent ids for sessions_spawn. Use "*" to allow any configured target. */
465465
allowAgents?: string[];
466-
/** Max concurrent sub-agent runs (global lane: "subagent"). Default: 1. */
466+
/** Max concurrent sub-agent runs (global lane: "subagent"). Default: 8. */
467467
maxConcurrent?: number;
468468
/** Maximum depth allowed for sessions_spawn chains. Default behavior: 1 (no nested spawns). */
469469
maxSpawnDepth?: number;

0 commit comments

Comments
 (0)