diff --git a/desktop/src/features/settings/ui/DoctorSettingsPanel.tsx b/desktop/src/features/settings/ui/DoctorSettingsPanel.tsx index aee5dc03d..be7dda159 100644 --- a/desktop/src/features/settings/ui/DoctorSettingsPanel.tsx +++ b/desktop/src/features/settings/ui/DoctorSettingsPanel.tsx @@ -133,9 +133,28 @@ function ProviderRow({

) : null} -

- {provider.binaryPath} -

+ {provider.underlyingCliPath && + provider.underlyingCliPath !== provider.binaryPath ? ( +
+

+ CLI:{" "} + {provider.underlyingCliPath} +

+

+ ACP adapter:{" "} + {provider.binaryPath} +

+
+ ) : ( + <> +

+ {provider.binaryPath} +

+

+ ACP support built-in — no separate adapter needed. +

+ + )} ) : provider.availability === "adapter_missing" ? ( <> @@ -281,9 +300,11 @@ export function DoctorSettingsPanel() {
-

ACP runtimes

+

+ Agent CLIs and ACP runtimes +

- Known runtimes and their installation status. + Installation status of supported agent CLIs and their ACP runtimes.