From ffe7f5f6d8deb464667e524939536f757360dd07 Mon Sep 17 00:00:00 2001 From: Sandy Tao Date: Thu, 11 Sep 2025 14:11:06 -0700 Subject: [PATCH] fix(core): Default skipNextSpeakerCheck to true when the setting is not manually set (#8295) --- 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 abbd6d3754..c4f8ee92aa 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -379,7 +379,7 @@ export class Config { this.trustedFolder = params.trustedFolder; this.useRipgrep = params.useRipgrep ?? false; this.shouldUseNodePtyShell = params.shouldUseNodePtyShell ?? false; - this.skipNextSpeakerCheck = params.skipNextSpeakerCheck ?? false; + this.skipNextSpeakerCheck = params.skipNextSpeakerCheck ?? true; this.truncateToolOutputThreshold = params.truncateToolOutputThreshold ?? DEFAULT_TRUNCATE_TOOL_OUTPUT_THRESHOLD;