From 60b84afa3aaf9bce32cec3c5f3b18fb4b1d5d64f Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 24 Oct 2025 09:40:34 +0000 Subject: [PATCH] Add support for showing multiple issues with bd show bd show now accepts multiple issue IDs and displays each one: - bd show bd-1 bd-2 bd-3 shows all three issues - Issues are separated by a horizontal line for clarity - Works in both daemon and direct modes - JSON output returns an array of all requested issues This feature already worked in the implementation (it looped through args), but now it's properly documented in the help text. --- cmd/bd/main.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cmd/bd/main.go b/cmd/bd/main.go index cb05766f..32277424 100644 --- a/cmd/bd/main.go +++ b/cmd/bd/main.go @@ -1759,7 +1759,12 @@ func resolveIssueID(ctx context.Context, id string) (*types.Issue, string, error var showCmd = &cobra.Command{ Use: "show [id...]", Short: "Show issue details", - Args: cobra.MinimumNArgs(1), + Long: `Show detailed information for one or more issues. + +Examples: + bd show bd-42 # Show single issue + bd show bd-1 bd-2 bd-3 # Show multiple issues`, + Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { // If daemon is running, use RPC if daemonClient != nil {