My plugin is completely broken because I can no longer register the login command.
api.registerCli() not registering plugin command in 2026.1.23
My plugin loads successfully (shows as "loaded" in clawdbot plugins list) and api.registerCli() is being called with {
commands: ['{plugin}'] }, but clawdbot {plugin} --help returns "unknown command '{plugin}'".
Expected: clawdbot voicecall --help works after enabling voice-call plugin
Actual: clawdbot {plugin} --help fails as an unknown command.
Code pattern (same as voice-call):
api.registerCli(({ program }) => {
program.command('{plugin}').action(...);
}, { commands: ['{plugin}'] });
Is there a regression in CLI command registration between 2026.1.16-2 and 2026.1.23-1? Or is there a new requirement for CLI commands that memory plugins specifically must meet?