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

@@ -56,7 +56,7 @@ func (s *Server) checkVersionCompatibility(clientVersion string) error {
clientVersion, ServerVersion)
}
// Compare full versions - daemon must be >= client (bd-ckvw: strict minor version gating)
// Compare full versions - daemon must be >= client (strict minor version gating)
// This prevents stale daemons from serving requests with old schema assumptions
cmp := semver.Compare(serverVer, clientVer)
if cmp < 0 {
@@ -146,7 +146,7 @@ func (s *Server) handleRequest(req *Request) Response {
}
}
// Check for stale JSONL and auto-import if needed (bd-160)
// Check for stale JSONL and auto-import if needed
// Skip for write operations that will trigger export anyway
// Skip for import operation itself to avoid recursion
if req.Operation != OpPing && req.Operation != OpHealth && req.Operation != OpMetrics &&
@@ -227,7 +227,7 @@ func (s *Server) handleRequest(req *Request) Response {
resp = s.handleGetWorkerStatus(req)
case OpShutdown:
resp = s.handleShutdown(req)
// Gate operations (bd-likt)
// Gate operations
case OpGateCreate:
resp = s.handleGateCreate(req)
case OpGateList: