chore: remove issue ID references from comments and changelogs

Strip (bd-xxx), (gt-xxx) suffixes from code comments and changelog
entries. The descriptions remain meaningful without the ephemeral
issue IDs.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-28 10:05:16 -08:00
parent b4deb96924
commit f46cc2e798
82 changed files with 1175 additions and 1182 deletions

View File

@@ -44,7 +44,7 @@ func parseTimeFlag(s string) (time.Time, error) {
return time.Time{}, fmt.Errorf("unable to parse time %q (try formats: 2006-01-02, 2006-01-02T15:04:05, or RFC3339)", s)
}
// pinIndicator returns a pushpin emoji prefix for pinned issues (bd-18b, bd-7h5)
// pinIndicator returns a pushpin emoji prefix for pinned issues
func pinIndicator(issue *types.Issue) string {
if issue.Pinned {
return "📌 "
@@ -346,14 +346,14 @@ var listCmd = &cobra.Command{
priorityMinStr, _ := cmd.Flags().GetString("priority-min")
priorityMaxStr, _ := cmd.Flags().GetString("priority-max")
// Pinned filtering flags (bd-p8e)
// Pinned filtering flags
pinnedFlag, _ := cmd.Flags().GetBool("pinned")
noPinnedFlag, _ := cmd.Flags().GetBool("no-pinned")
// Template filtering (beads-1ra)
// Template filtering
includeTemplates, _ := cmd.Flags().GetBool("include-templates")
// Parent filtering (bd-yqhh)
// Parent filtering
parentID, _ := cmd.Flags().GetString("parent")
// Pretty and watch flags (GH#654)
@@ -508,7 +508,7 @@ var listCmd = &cobra.Command{
filter.PriorityMax = &priorityMax
}
// Pinned filtering (bd-p8e): --pinned and --no-pinned are mutually exclusive
// Pinned filtering: --pinned and --no-pinned are mutually exclusive
if pinnedFlag && noPinnedFlag {
fmt.Fprintf(os.Stderr, "Error: --pinned and --no-pinned are mutually exclusive\n")
os.Exit(1)
@@ -521,19 +521,19 @@ var listCmd = &cobra.Command{
filter.Pinned = &pinned
}
// Template filtering (beads-1ra): exclude templates by default
// Template filtering: exclude templates by default
// Use --include-templates to show all issues including templates
if !includeTemplates {
isTemplate := false
filter.IsTemplate = &isTemplate
}
// Parent filtering (bd-yqhh): filter children by parent issue
// Parent filtering: filter children by parent issue
if parentID != "" {
filter.ParentID = &parentID
}
// Check database freshness before reading (bd-2q6d, bd-c4rq)
// Check database freshness before reading
// Skip check when using daemon (daemon auto-imports on staleness)
ctx := rootCtx
if daemonClient == nil {
@@ -608,13 +608,13 @@ var listCmd = &cobra.Command{
listArgs.PriorityMin = filter.PriorityMin
listArgs.PriorityMax = filter.PriorityMax
// Pinned filtering (bd-p8e)
// Pinned filtering
listArgs.Pinned = filter.Pinned
// Template filtering (beads-1ra)
// Template filtering
listArgs.IncludeTemplates = includeTemplates
// Parent filtering (bd-yqhh)
// Parent filtering
listArgs.ParentID = parentID
resp, err := daemonClient.List(listArgs)
@@ -634,7 +634,7 @@ var listCmd = &cobra.Command{
return
}
// Show upgrade notification if needed (bd-loka)
// Show upgrade notification if needed
maybeShowUpgradeNotification()
var issues []*types.Issue
@@ -781,7 +781,7 @@ var listCmd = &cobra.Command{
return
}
// Show upgrade notification if needed (bd-loka)
// Show upgrade notification if needed
maybeShowUpgradeNotification()
// Load labels in bulk for display
@@ -896,14 +896,14 @@ func init() {
listCmd.Flags().String("priority-min", "", "Filter by minimum priority (inclusive, 0-4 or P0-P4)")
listCmd.Flags().String("priority-max", "", "Filter by maximum priority (inclusive, 0-4 or P0-P4)")
// Pinned filtering (bd-p8e)
// Pinned filtering
listCmd.Flags().Bool("pinned", false, "Show only pinned issues")
listCmd.Flags().Bool("no-pinned", false, "Exclude pinned issues")
// Template filtering (beads-1ra): exclude templates by default
// Template filtering: exclude templates by default
listCmd.Flags().Bool("include-templates", false, "Include template molecules in output")
// Parent filtering (bd-yqhh): filter children by parent issue
// Parent filtering: filter children by parent issue
listCmd.Flags().String("parent", "", "Filter by parent issue ID (shows children of specified issue)")
// Pretty and watch flags (GH#654)