From 0b382684910b5ba2b9d336738fc4c4a4d96c1deb Mon Sep 17 00:00:00 2001 From: James Feng <47167674+GhostDragon124@users.noreply.github.com> Date: Thu, 4 Jun 2026 18:12:27 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=81=A2=E5=A4=8D=20ACP=20=E5=91=BD?= =?UTF-8?q?=E4=BB=A4=E8=A1=8C=E5=85=A5=E5=8F=A3=20(--acp)=20=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entrypoints/cli.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/entrypoints/cli.tsx b/src/entrypoints/cli.tsx index b1e6729fd..b0903920d 100644 --- a/src/entrypoints/cli.tsx +++ b/src/entrypoints/cli.tsx @@ -121,13 +121,12 @@ async function main(): Promise { return; } - // CC_Pure: ACP feature not included — commented out - // if (feature('ACP') && process.argv[2] === '--acp') { - // profileCheckpoint('cli_acp_path'); - // const { runAcpAgent } = await import('../services/acp/entry.js'); - // await runAcpAgent(); - // return; - // } + if (feature('ACP') && process.argv[2] === '--acp') { + profileCheckpoint('cli_acp_path'); + const { runAcpAgent } = await import('../services/acp/entry.js'); + await runAcpAgent(); + return; + } if (args[0] === 'weixin') { profileCheckpoint('cli_weixin_path');