From 6c126b9e58c6b5d019f2cfe583b4b2bf71d557fa Mon Sep 17 00:00:00 2001 From: Ben Brandt Date: Thu, 20 Nov 2025 15:28:37 +0000 Subject: [PATCH] fix(zed-integration): Ensure that the zed integration is classified as interactive (#13394) Co-authored-by: Shreya Keshive --- packages/cli/src/config/config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index 48ed54c5c4..946a14dc88 100755 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -515,10 +515,11 @@ export async function loadCliConfig( const hasQuery = !!argv.query; const interactive = !!argv.promptInteractive || + !!argv.experimentalAcp || (process.stdin.isTTY && !hasQuery && !argv.prompt); // In non-interactive mode, exclude tools that require a prompt. const extraExcludes: string[] = []; - if (!interactive && !argv.experimentalAcp) { + if (!interactive) { const defaultExcludes = [ SHELL_TOOL_NAME, EDIT_TOOL_NAME,