fix: Increase timeout for CLI execution to 10 minutes

This commit is contained in:
catlog22
2025-11-26 16:04:34 +08:00
parent 7b692ce415
commit 5375c991ba

View File

@@ -455,7 +455,7 @@ Complexity: ${planObject.complexity}
// Launch CLI in foreground (NOT background)
bash_result = Bash(
command=cli_command,
timeout=600000 // 10 minutes
timeout=6000000 // 10 minutes
)
// Update TodoWrite when execution completes