From 5c78a37054324945fcf4ab62a756e6806532916f Mon Sep 17 00:00:00 2001 From: Robert Date: Mon, 2 Mar 2026 16:21:47 -0500 Subject: [PATCH] fix: increase default timeout from 300s to 600s (#32) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 168bb8e..3696bc2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -17,7 +17,7 @@ const program = new Command() .requiredOption("--repo ", "Git repository path") .option("--workers ", "Number of parallel workers", "10") .option("--port ", "HTTP server port", "8080") - .option("--timeout ", "Task timeout in seconds", "300") + .option("--timeout ", "Task timeout in seconds", "600") .option("--budget ", "Max budget per task in USD", "5") .option("--model ", "Claude model ID", "claude-sonnet-4-6") .option("--system-prompt ", "System prompt for all agents", "")