Add --priority flag to bd show command

Adds a new --priority (-p) flag to filter issues by priority:
- bd show --priority 0 shows all P0 issues
- bd show -p 0 -p 1 shows all P0 and P1 issues
- Can be used multiple times to show multiple priority levels
- Combines with --all-issues if both are specified
- Works only in direct mode (--no-daemon required for now)

This makes it easy to focus on high-priority issues without
needing to specify each issue ID individually.

Example: bd show -p 0 -p 1 shows all critical and high-priority
issues in the database.
This commit is contained in:
Claude Code
2025-10-24 09:41:49 +00:00
committed by Steve Yegge
parent 75541c3ff6
commit 3b8d13f100

View File

@@ -1764,27 +1764,31 @@ var showCmd = &cobra.Command{
Examples: Examples:
bd show bd-42 # Show single issue bd show bd-42 # Show single issue
bd show bd-1 bd-2 bd-3 # Show multiple issues bd show bd-1 bd-2 bd-3 # Show multiple issues
bd show --all-issues # Show all issues (may be expensive)`, bd show --all-issues # Show all issues (may be expensive)
bd show --priority 0 --priority 1 # Show all P0 and P1 issues
bd show -p 0 -p 1 # Short form`,
Args: func(cmd *cobra.Command, args []string) error { Args: func(cmd *cobra.Command, args []string) error {
allIssues, _ := cmd.Flags().GetBool("all-issues") allIssues, _ := cmd.Flags().GetBool("all-issues")
if !allIssues && len(args) == 0 { priorities, _ := cmd.Flags().GetIntSlice("priority")
return fmt.Errorf("requires at least 1 issue ID or --all-issues flag") if !allIssues && len(priorities) == 0 && len(args) == 0 {
return fmt.Errorf("requires at least 1 issue ID, or use --all-issues, or --priority flag")
} }
return nil return nil
}, },
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
allIssues, _ := cmd.Flags().GetBool("all-issues") allIssues, _ := cmd.Flags().GetBool("all-issues")
priorities, _ := cmd.Flags().GetIntSlice("priority")
// Build list of issue IDs to show // Build list of issue IDs to show
var issueIDs []string var issueIDs []string
// If --all-issues is used, fetch all issues // If --all-issues or --priority is used, fetch matching issues
if allIssues { if allIssues || len(priorities) > 0 {
ctx := context.Background() ctx := context.Background()
if daemonClient != nil { if daemonClient != nil {
// Daemon mode - not yet supported // Daemon mode - not yet supported
fmt.Fprintf(os.Stderr, "Error: --all-issues not yet supported in daemon mode\n") fmt.Fprintf(os.Stderr, "Error: --all-issues and --priority not yet supported in daemon mode\n")
fmt.Fprintf(os.Stderr, "Use --no-daemon flag or specify issue IDs directly\n") fmt.Fprintf(os.Stderr, "Use --no-daemon flag or specify issue IDs directly\n")
os.Exit(1) os.Exit(1)
} else { } else {
@@ -1796,6 +1800,22 @@ Examples:
os.Exit(1) os.Exit(1)
} }
// Filter by priority if specified
if len(priorities) > 0 {
priorityMap := make(map[int]bool)
for _, p := range priorities {
priorityMap[p] = true
}
filtered := make([]*types.Issue, 0)
for _, issue := range issues {
if priorityMap[issue.Priority] {
filtered = append(filtered, issue)
}
}
issues = filtered
}
// Extract IDs // Extract IDs
for _, issue := range issues { for _, issue := range issues {
issueIDs = append(issueIDs, issue.ID) issueIDs = append(issueIDs, issue.ID)
@@ -2093,6 +2113,7 @@ Examples:
func init() { func init() {
showCmd.Flags().Bool("all-issues", false, "Show all issues (WARNING: may be expensive for large databases)") showCmd.Flags().Bool("all-issues", false, "Show all issues (WARNING: may be expensive for large databases)")
showCmd.Flags().IntSliceP("priority", "p", []int{}, "Show issues with specified priority (can be used multiple times, e.g., -p 0 -p 1)")
rootCmd.AddCommand(showCmd) rootCmd.AddCommand(showCmd)
} }