import type { loadConfig } from "../config/config.js"; import { resolveAgentMaxConcurrent, resolveSubagentMaxConcurrent } from "../config/agent-limits.js"; import { setCommandLaneConcurrency } from "../process/command-queue.js"; import { CommandLane } from "../process/lanes.js"; export function applyGatewayLaneConcurrency(cfg: ReturnType) { setCommandLaneConcurrency(CommandLane.Cron, cfg.cron?.maxConcurrentRuns ?? 1); setCommandLaneConcurrency(CommandLane.Main, resolveAgentMaxConcurrent(cfg)); setCommandLaneConcurrency(CommandLane.Subagent, resolveSubagentMaxConcurrent(cfg)); }