From 04ac688dff13b91553420adf1faa67c88679ce2c Mon Sep 17 00:00:00 2001 From: john Date: Tue, 3 Mar 2026 10:05:45 +0800 Subject: [PATCH] fix(acp): use publishable acpx install hint --- docs/tools/acp-agents.md | 2 +- src/auto-reply/reply/commands-acp/shared.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tools/acp-agents.md b/docs/tools/acp-agents.md index c0e3b4be687..b2744b6e7cc 100644 --- a/docs/tools/acp-agents.md +++ b/docs/tools/acp-agents.md @@ -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 ``` diff --git a/src/auto-reply/reply/commands-acp/shared.ts b/src/auto-reply/reply/commands-acp/shared.ts index adf31247b6d..1a084382330 100644 --- a/src/auto-reply/reply/commands-acp/shared.ts +++ b/src/auto-reply/reply/commands-acp/shared.ts @@ -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}".`; }