mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* 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 <boudra.moha@gmail.com>