Does this support any other ACP CLI? #113
|
Hi, just a silly question, but I'd like to know if this work with CLI not mentioned in README? Like ACP mode in Copilot CLI? I ask this because seem like you implement "adapter" even for CLI that already support ACP (like OpenCode), but I haven't looked into the code (I know that you already have a PR to support Copilot CLI, but my question is whether an ACP CLI need explicit support by this plugin to be used with) |
Replies: 1 comment
I would love to have a "Generic" Adapter! And I intend to work something like this soon. Which caused each ACP provider to implement it differently 🫠 Even Zed, the biggest driver on the ACP scene, created Claude-acp and Codex-acp implementations, and they both don't follow the same rules or send the same data. 😞 That's why we were forced to use 1 Adapter per provider. Officially, as of the day of writing this, 2026-02-08, we support:
|
I would love to have a "Generic" Adapter! And I intend to work something like this soon.
But the reality is the ACP protocol and Schema are on what we can call v0.1, it's, most of the things are "optional" and there's no clear event order.
Which caused each ACP provider to implement it differently 🫠
Even Zed, the biggest driver on the ACP scene, created Claude-acp and Codex-acp implementations, and they both don't follow the same rules or send the same data. 😞
That's why we were forced to use 1 Adapter per provider.
Officially, as of the d…