feat(cli): top-level ls alias for list

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-27 12:12:03 +01:00
parent 44a9211a6f
commit c826042625
2 changed files with 12 additions and 2 deletions
+2 -2
View File
@@ -161,9 +161,9 @@ func Run(args []string, out, errOut io.Writer) int {
}
cmd, rest := args[0], args[1:]
role := commandRole(args)
switch cmd {
switch normalizeVerb(cmd) {
case "list", "get", "search", "ack":
return runAgent(cmd, rest, role, out, errOut)
return runAgent(normalizeVerb(cmd), rest, role, out, errOut)
case "send":
return runSend(rest, role, out, errOut)
case "account":