From 45df40c513bce34e549de6b8b40b9fa09f69063c Mon Sep 17 00:00:00 2001 From: Aishanee Shah Date: Tue, 17 Mar 2026 14:34:54 +0000 Subject: [PATCH] feat: enable thin harness by default on this branch --- packages/core/src/config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index acb07cd9ee..7c152fc6d5 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -999,7 +999,7 @@ export class Config implements McpContext, AgentLoopContext { ); this.thinHarness = - params.thinHarness ?? process.env['GEMINI_THIN_HARNESS'] === 'true'; + params.thinHarness ?? process.env['GEMINI_THIN_HARNESS'] !== 'false'; this.experimentalJitContext = params.experimentalJitContext ?? true; this.topicUpdateNarration = params.topicUpdateNarration ?? false; this.modelSteering = params.modelSteering ?? false;