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 <noreply@anthropic.com>
This commit is contained in:
dj-oyu 2026-02-22 18:14:08 +09:00
parent 89c8cfa5bc
commit b7688c62d5

View file

@ -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,