Skip to content

Commit 920176c

Browse files
authored
fix(config): Disable CI for stable release (#11615)
1 parent 18ced18 commit 920176c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cli/src/config/settingsSchema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ const SETTINGS_SCHEMA = {
10901090
label: 'Enable Codebase Investigator',
10911091
category: 'Experimental',
10921092
requiresRestart: true,
1093-
default: true,
1093+
default: false,
10941094
description: 'Enable the Codebase Investigator agent.',
10951095
showInDialog: true,
10961096
},

packages/core/src/config/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ export class Config {
474474
this.enableMessageBusIntegration =
475475
params.enableMessageBusIntegration ?? false;
476476
this.codebaseInvestigatorSettings = {
477-
enabled: params.codebaseInvestigatorSettings?.enabled ?? true,
477+
enabled: params.codebaseInvestigatorSettings?.enabled ?? false,
478478
maxNumTurns: params.codebaseInvestigatorSettings?.maxNumTurns ?? 15,
479479
maxTimeMinutes: params.codebaseInvestigatorSettings?.maxTimeMinutes ?? 5,
480480
thinkingBudget:

0 commit comments

Comments
 (0)