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

@@ -415,7 +415,7 @@ func loadTemplateSubgraph(ctx context.Context, s storage.Storage, templateID str
// loadDescendants recursively loads all child issues
// It uses two strategies to find children:
// 1. Check dependency records for parent-child relationships
// 2. Check for hierarchical IDs (parent.N) to catch children with missing/wrong deps (bd-c8d5)
// 2. Check for hierarchical IDs (parent.N) to catch children with missing/wrong deps
func loadDescendants(ctx context.Context, s storage.Storage, subgraph *TemplateSubgraph, parentID string) error {
// Track children we've already added to avoid duplicates
addedChildren := make(map[string]bool)
@@ -461,7 +461,7 @@ func loadDescendants(ctx context.Context, s storage.Storage, subgraph *TemplateS
}
}
// Strategy 2: Find hierarchical children by ID pattern (bd-c8d5)
// Strategy 2: Find hierarchical children by ID pattern
// This catches children that have missing or incorrect dependency types.
// Hierarchical IDs follow the pattern: parentID.N (e.g., "gt-abc.1", "gt-abc.2")
hierarchicalChildren, err := findHierarchicalChildren(ctx, s, parentID)
@@ -522,7 +522,7 @@ func findHierarchicalChildren(ctx context.Context, s storage.Storage, parentID s
}
// =============================================================================
// Proto Lookup Functions (bd-drcx)
// Proto Lookup Functions
// =============================================================================
// resolveProtoIDOrTitle resolves a proto by ID or title.
@@ -715,7 +715,7 @@ func cloneSubgraphViaDaemon(client *rpc.Client, subgraph *TemplateSubgraph, opts
Assignee: issueAssignee,
EstimatedMinutes: oldIssue.EstimatedMinutes,
Ephemeral: opts.Ephemeral,
IDPrefix: opts.Prefix, // bd-hobo: distinct prefixes for mols/wisps
IDPrefix: opts.Prefix, // distinct prefixes for mols/wisps
}
// Generate custom ID for dynamic bonding if ParentID is set
@@ -961,8 +961,8 @@ func cloneSubgraph(ctx context.Context, s storage.Storage, subgraph *TemplateSub
IssueType: oldIssue.IssueType,
Assignee: issueAssignee,
EstimatedMinutes: oldIssue.EstimatedMinutes,
Ephemeral: opts.Ephemeral, // bd-2vh3: mark for cleanup when closed
IDPrefix: opts.Prefix, // bd-hobo: distinct prefixes for mols/wisps
Ephemeral: opts.Ephemeral, // mark for cleanup when closed
IDPrefix: opts.Prefix, // distinct prefixes for mols/wisps
CreatedAt: time.Now(),
UpdatedAt: time.Now(),
}