fix(#782): acp unsupported invocation now returns non-null hint with newline-delimited remediation text

This commit is contained in:
YeonGyu-Kim
2026-05-27 07:37:26 +09:00
parent 16c1117af6
commit 32c9276fdb
3 changed files with 38 additions and 1 deletions

View File

@@ -1593,7 +1593,7 @@ fn parse_acp_args(args: &[String], output_format: CliOutputFormat) -> Result<Cli
[] => Ok(CliAction::Acp { output_format }),
[subcommand] if subcommand == "serve" => Ok(CliAction::Acp { output_format }),
_ => Err(String::from(
"unsupported ACP invocation. Use `claw acp`, `claw acp serve`, `claw --acp`, or `claw -acp`.",
"unsupported ACP invocation. Use `claw acp`, `claw acp serve`, `claw --acp`, or `claw -acp`.\nACP/Zed editor integration is currently a discoverability alias only; a real daemon and JSON-RPC endpoint are in ROADMAP tracking.",
)),
}
}