fix(acp): use publishable acpx install hint

This commit is contained in:
john
2026-03-03 10:05:45 +08:00
committed by Peter Steinberger
parent b29e913efe
commit 04ac688dff
2 changed files with 2 additions and 2 deletions

View File

@@ -313,7 +313,7 @@ See [Configuration Reference](/gateway/configuration-reference).
Install and enable plugin:
```bash
openclaw plugins install @openclaw/acpx
openclaw plugins install acpx
openclaw config set plugins.entries.acpx.enabled true
```

View File

@@ -419,7 +419,7 @@ export function resolveAcpInstallCommandHint(cfg: OpenClawConfig): string {
if (existsSync(localPath)) {
return `openclaw plugins install ${localPath}`;
}
return "openclaw plugins install @openclaw/acpx";
return "openclaw plugins install acpx";
}
return `Install and enable the plugin that provides ACP backend "${backendId}".`;
}