From 9675cce29ac307dd332d522e121409296ef718cf Mon Sep 17 00:00:00 2001 From: dj-oyu <68707227+dj-oyu@users.noreply.github.com> Date: Sun, 22 Feb 2026 18:14:08 +0900 Subject: [PATCH] chore: increase exec tool default timeout from 60s to 5min Prevents spurious timeout errors when running tests or invoking external AI agents that take longer than one minute. Co-Authored-By: Claude Opus 4.6 --- pkg/tools/shell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tools/shell.go b/pkg/tools/shell.go index 29f3aac23..ba2290f37 100644 --- a/pkg/tools/shell.go +++ b/pkg/tools/shell.go @@ -104,7 +104,7 @@ func NewExecToolWithConfig(workingDir string, restrict bool, config *config.Conf return &ExecTool{ workingDir: workingDir, - timeout: 60 * time.Second, + timeout: 5 * time.Minute, denyPatterns: denyPatterns, allowPatterns: nil, restrictToWorkspace: restrict,