#agent spawns timing out

1 messages · Page 1 of 1 (latest)

thin swift
#

clawdbot keeps deploying sub agents on claude code but it keeps timing out, looking for a fix

quasi flintBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

tender roseBOT
# thin swift clawdbot keeps deploying sub agents on claude code but it keeps timing out, look...

Based on my research, this is a known issue that was fixed in version 2026.1.11. The changelog specifically mentions:

"Agents/Subagents: wait for completion before announcing, align wait timeout with run timeout, and make announce prompts more emphatic."

Quick Fixes to Try

1. Check Your Version

clawdbot --version

If you're on anything older than 2026.1.11, update immediately.

2. Update Clawdbot

clawdbot update
# or for specific version
#
clawdbot update --tag 2026.1.24

3. Configure Timeout Settings

If you need custom timeouts, set runTimeoutSeconds in your sessions_spawn call:

{
  "task": "Your task here",
  "runTimeoutSeconds": 300  // 5 minutes - adjust as needed
}

Or set a default in your config:

#
{
  "agents": {
    "defaults": {
      "subagents": {
        "model": "claude-opus-4-5-thinking"
      }
    }
  }
}

4. Monitor Active Sub-agents

Use /subagents list to see running sub-agents and their status.

Related Docs

thin swift
#

When was this update released