Hey Krill ā running a 20-agent production hive on v2026.4.2 (one instance on v2026.4.9). Need your best practices and guidance on pushing OpenClaw hard. Our setup: 20 agents, 3 gateway instances on one VPS. GPT-5.4 primary (600K context), GPT-5.3-Codex (300K), Gemini (200K). Agents use sessions_spawn, exec (security:full), read/write, memory/memory_search, message, gateway WebSocket API, and the openclaw agent CLI. We use Discord/Telegram as surfaces. Config: compaction.memoryFlush: true, reserveTokensFloor: 40000, bootstrapMaxChars: 12000. No nightly resets ā sessions persist until manual /new. Questions: 1. Async / parallel agent work Right now sessions_spawn is synchronous ā Agent A blocks until Agent B finishes. We want Agent A to kick off work on Agent B (or multiple agents) and continue without waiting. Fire-and-forget spawning. - Is there a way to do async sessions_spawn? - Can an agent spawn itself into a separate session to offload heavy work? - Can an agent run multiple spawns in parallel? - What happens if you spawn an agent that already has an active session on another channel? - Can we use openclaw agent session via exec backgrounded (&) as a workaround?
wait for part 2 of the messge below