#agent spawns timing out
1 messages · Page 1 of 1 (latest)
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
- Subagents documentation: https://docs.clawd.bot/tools/subagents
- Update instructions: https://docs.clawd.bot/help/faq
- Changelog: https://github.com/clawdbot/clawdbot/releases
The fix should resolve the timeout issues when sub-agents spawn on Claude Code. If you're already on 2026.1.11+ and still experiencing timeouts, there may be a different underlying issue - in that case, share your version and error details for further troubleshooting.
When was this update released