mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
fix(server): surface TRAE CLI slash commands and skills over ACP (#1896)
traecli publishes its slash commands and skills asynchronously via the standard ACP available_commands_update notification ~400ms after session/new resolves. Because the catalog entry runs through the plain GenericACPAgentClient (waitForInitialCommands defaults to false), listCommands() resolves before that first batch arrives and the Paseo UI shows an empty slash menu — intermittently, depending on whether the menu is opened inside the ~400ms race window. Add a thin TraeACPAgentClient that sets waitForInitialCommands: true (10s timeout) and wire it into the extends:"acp" derived-provider branch, mirroring CursorACPAgentClient exactly. Cursor has the identical async-commands behavior; this reuses that adopted pattern rather than introducing anything provider- specific. Unlike Kiro (#1792), traecli uses the standard available_commands_update update type, so no extensionCommandsParser is needed.
This commit is contained in:
committed by
GitHub
parent
5d25ed6bf8
commit
61df450366
@@ -56,7 +56,7 @@ Pick any of these from the in-app provider catalog. Each entry is a one-click in
|
||||
- [Qwen Code](https://qwenlm.github.io/qwen-code-docs/en/users/overview), Alibaba's Qwen coding assistant.
|
||||
- [siGit Code](https://github.com/getsigit/sigit), local-first coding agent with optional on-device LLM.
|
||||
- [Stakpak](https://stakpak.dev/), Rust-based DevOps agent.
|
||||
- [TRAE CLI](https://docs.trae.cn/cli), ByteDance's official TRAE coding agent.
|
||||
- [TRAE CLI](https://docs.trae.cn/cli_get-started-with-trae-cli), ByteDance's official TRAE coding agent.
|
||||
- [VT Code](https://github.com/vinhnx/VTCode/blob/main/docs/guides/zed-acp.md), open-source multi-provider coding agent.
|
||||
|
||||
The in-app catalog is the canonical, version-pinned source. Anything not listed here can still be added manually, see [Custom providers](/docs/custom-providers).
|
||||
|
||||
Reference in New Issue
Block a user