From 9c3c21efe3dd556bb412aa7f17b6781187dd9b5f Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Wed, 21 Jan 2026 19:58:49 -0800 Subject: [PATCH] feat(cli): add 'view' as alias for 'show' command (#1249) Users naturally try 'bd view ' when they want to see an issue. Adding 'view' as an alias improves discoverability and UX. Fixes bd-bpx35 Co-authored-by: Claude Opus 4.5 --- cmd/bd/show.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/bd/show.go b/cmd/bd/show.go index 7bf3e92b..8b8c915c 100644 --- a/cmd/bd/show.go +++ b/cmd/bd/show.go @@ -17,6 +17,7 @@ import ( var showCmd = &cobra.Command{ Use: "show [id...]", + Aliases: []string{"view"}, GroupID: "issues", Short: "Show issue details", Args: cobra.MinimumNArgs(1),