From 9f28d07a8a2c8b71d525c4cefc40cb6658bb9f05 Mon Sep 17 00:00:00 2001 From: Travis Cline Date: Tue, 14 Oct 2025 01:03:53 -0700 Subject: [PATCH] beads: Show issue type in bd list output (#17) Updated the list command to display issue type alongside priority and status. Before: beads-48 [P1] open After: beads-48 [P1] [epic] open This makes it easier to distinguish between bugs, features, tasks, epics, and chores at a glance without using --json or bd show. --- cmd/bd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bd/main.go b/cmd/bd/main.go index 4b1c4308..ef9223cb 100644 --- a/cmd/bd/main.go +++ b/cmd/bd/main.go @@ -755,7 +755,7 @@ var listCmd = &cobra.Command{ fmt.Printf("\nFound %d issues:\n\n", len(issues)) for _, issue := range issues { - fmt.Printf("%s [P%d] %s\n", issue.ID, issue.Priority, issue.Status) + fmt.Printf("%s [P%d] [%s] %s\n", issue.ID, issue.Priority, issue.IssueType, issue.Status) fmt.Printf(" %s\n", issue.Title) if issue.Assignee != "" { fmt.Printf(" Assignee: %s\n", issue.Assignee)