Summary
The built-in Kimi runtime invokes the Kimi Code CLI as kimi --acp, but the current Kimi Code CLI expects the subcommand kimi acp (no leading dashes). Every Kimi-harness agent crashes on launch with "unknown option '--acp'", and buzz-acp reports "all N agents failed to start — cannot continue".
Environment
- Buzz hosted relay (communities.buzz.xyz), desktop app, macOS
- Kimi Code CLI at ~/.kimi-code/bin/kimi (MoonshotAI/kimi-code)
- Built-in "Kimi" harness (id
kimi-code); Arguments field = --acp
Steps to reproduce
- Install Kimi Code CLI and log in (
kimi, then /login).
- Create an agent using the Kimi harness.
- Start the agent.
Expected
buzz-acp launches Kimi in ACP mode via kimi acp; the agent initializes.
Actual
buzz-acp launches kimi --acp; Kimi exits and every instance fails:
agent_cmd=/Users/.../.kimi-code/bin/kimi --acp ...
error: unknown option '--acp'
ERROR buzz_acp: agent initialize failed: Agent process exited unexpectedly agent=0
Error: all N agents failed to start — cannot continue
Workaround
Point the Kimi harness Command at a shim that ignores the flag and runs the subcommand:
#!/usr/bin/env bash
exec "$HOME/.kimi-code/bin/kimi" acp
Suggested fix
The Kimi harness should invoke kimi acp (subcommand), not kimi --acp. Ref: Kimi Code docs — the kimi acp subcommand.
Summary
The built-in Kimi runtime invokes the Kimi Code CLI as
kimi --acp, but the current Kimi Code CLI expects the subcommandkimi acp(no leading dashes). Every Kimi-harness agent crashes on launch with "unknown option '--acp'", and buzz-acp reports "all N agents failed to start — cannot continue".Environment
kimi-code); Arguments field =--acpSteps to reproduce
kimi, then/login).Expected
buzz-acp launches Kimi in ACP mode via
kimi acp; the agent initializes.Actual
buzz-acp launches
kimi --acp; Kimi exits and every instance fails:Workaround
Point the Kimi harness Command at a shim that ignores the flag and runs the subcommand:
Suggested fix
The Kimi harness should invoke
kimi acp(subcommand), notkimi --acp. Ref: Kimi Code docs — thekimi acpsubcommand.