From bb2df9fec694641cb5bf156ffb4a5e825e5f8f18 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 9 Feb 2026 21:12:00 +0900 Subject: [PATCH] fix(cli/run): set default timeout to 30 minutes to match help text --- src/cli/run/runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/run/runner.ts b/src/cli/run/runner.ts index 8e390b20b..045852fda 100644 --- a/src/cli/run/runner.ts +++ b/src/cli/run/runner.ts @@ -11,7 +11,7 @@ import { pollForCompletion } from "./poll-for-completion" export { resolveRunAgent } -const DEFAULT_TIMEOUT_MS = 0 +const DEFAULT_TIMEOUT_MS = 30 * 60 * 1000 export async function run(options: RunOptions): Promise { process.env.OPENCODE_CLI_RUN_MODE = "true"