From 2588b93498106efed752f30eeb4d5645343ef741 Mon Sep 17 00:00:00 2001 From: Silvio Junior Date: Tue, 21 Oct 2025 20:28:22 +0000 Subject: [PATCH 1/2] fix(config): Disable CI for now --- 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 93b4b0214ff..371dee99c05 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -473,7 +473,7 @@ export class Config { this.enableMessageBusIntegration = params.enableMessageBusIntegration ?? false; this.codebaseInvestigatorSettings = { - enabled: params.codebaseInvestigatorSettings?.enabled ?? true, + enabled: params.codebaseInvestigatorSettings?.enabled ?? false, maxNumTurns: params.codebaseInvestigatorSettings?.maxNumTurns ?? 15, maxTimeMinutes: params.codebaseInvestigatorSettings?.maxTimeMinutes ?? 5, thinkingBudget: From 123b718665eae9d71b26f5b6d5407131a5da552c Mon Sep 17 00:00:00 2001 From: Silvio Junior Date: Tue, 21 Oct 2025 21:21:27 +0000 Subject: [PATCH 2/2] add `generateInSameFile` to settings --- packages/cli/src/config/settingsSchema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/config/settingsSchema.ts b/packages/cli/src/config/settingsSchema.ts index 67168258125..c01e691f44a 100644 --- a/packages/cli/src/config/settingsSchema.ts +++ b/packages/cli/src/config/settingsSchema.ts @@ -1090,7 +1090,7 @@ const SETTINGS_SCHEMA = { label: 'Enable Codebase Investigator', category: 'Experimental', requiresRestart: true, - default: true, + default: false, description: 'Enable the Codebase Investigator agent.', showInDialog: true, },