From be12371380617eec129dbd9d706d8130d5334acf Mon Sep 17 00:00:00 2001 From: kevinjwang1 Date: Wed, 25 Feb 2026 09:58:07 -0800 Subject: [PATCH] Plumb the maxAttempts setting through Config args (#20239) --- packages/cli/src/config/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index 3e0fd4b913..6a4bd09470 100755 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -859,6 +859,7 @@ export async function loadCliConfig( fakeResponses: argv.fakeResponses, recordResponses: argv.recordResponses, retryFetchErrors: settings.general?.retryFetchErrors, + maxAttempts: settings.general?.maxAttempts, ptyInfo: ptyInfo?.name, disableLLMCorrection: settings.tools?.disableLLMCorrection, rawOutput: argv.rawOutput,