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) }