mirror of https://github.com/openclaw/openclaw.git
fix(acp): use publishable acpx install hint
This commit is contained in:
parent
b29e913efe
commit
04ac688dff
|
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -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}".`;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue