From 279e1aa91c0e8c1a3afa1ef0f4e1094e8ebbb239 Mon Sep 17 00:00:00 2001 From: Xisheng Parker Zhao <53422244+park0er@users.noreply.github.com> Date: Tue, 14 Jul 2026 18:15:36 +0800 Subject: [PATCH] Fix Codebuddy Code model discovery (#1979) * fix(app): use global codebuddy binary for codebuddy-code ACP provider The @tencent-ai/codebuddy-code npm package ships multiple bins (codebuddy/cbc/cbc-prewarm), so `npx -y @tencent-ai/codebuddy-code` fails with "could not determine executable to run" and exits immediately. Paseo's ACP catalog probe treats npx as a long-running process, so the initialize request never gets a response and the probe times out after 60s, leaving the model list empty. Switch to the user-installed codebuddy CLI (matching kiro-cli, traecli, cursor, etc.) so the probe completes and models load. * chore: trigger CI rerun (app-tests flaky: window-is-not-defined in strategy-web.test.tsx, unrelated to this change) --------- Co-authored-by: Mohamed Boudra --- packages/app/src/data/acp-provider-catalog.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/src/data/acp-provider-catalog.ts b/packages/app/src/data/acp-provider-catalog.ts index 2f8695295..b4bec91d2 100644 --- a/packages/app/src/data/acp-provider-catalog.ts +++ b/packages/app/src/data/acp-provider-catalog.ts @@ -68,10 +68,10 @@ const CATALOG_DATA = [ id: "codebuddy-code", title: "Codebuddy Code", description: "Tencent Cloud's official intelligent coding tool", - version: "2.119.3", + version: "manual", iconId: "codebuddy-code", installLink: "https://www.codebuddy.cn/cli/", - command: ["npx", "-y", "@tencent-ai/codebuddy-code@2.119.3", "--acp"], + command: ["codebuddy", "--acp"], }, { id: "codewhale",