From b5a2734f7847c3c1065b1cab0c3170c76f3e086c Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Sun, 26 Oct 2025 14:45:09 -0700 Subject: [PATCH] feat: Add --all flag to bd list for CLI familiarity Common CLI pattern (git branch -a, docker ps -a, ls -a). No-op since bd list already shows all issues by default, but prevents error/retry cycles when agents reflexively use it. --- cmd/bd/list.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/bd/list.go b/cmd/bd/list.go index 75636ce7..f8cb556a 100644 --- a/cmd/bd/list.go +++ b/cmd/bd/list.go @@ -210,6 +210,7 @@ func init() { listCmd.Flags().String("id", "", "Filter by specific issue IDs (comma-separated, e.g., bd-1,bd-5,bd-10)") listCmd.Flags().IntP("limit", "n", 0, "Limit results") listCmd.Flags().String("format", "", "Output format: 'digraph' (for golang.org/x/tools/cmd/digraph), 'dot' (Graphviz), or Go template") + listCmd.Flags().Bool("all", false, "Show all issues (default behavior; flag provided for CLI familiarity)") rootCmd.AddCommand(listCmd) }