From 65ba2c9a19cbe70223a3a130aab1237e0bd77f76 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Fri, 21 Nov 2025 19:01:42 -0500 Subject: [PATCH] feat: Add issue IDs to TODO comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated TODO comments with proper beads issue IDs: - bd-hdt: Implement auto-merge functionality - bd-gqo: Implement daemon health checks - bd-r46: Support --reason flag in daemon mode for reopen 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- cmd/bd/daemon_event_loop.go | 2 +- cmd/bd/duplicates.go | 2 +- cmd/bd/reopen.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/bd/daemon_event_loop.go b/cmd/bd/daemon_event_loop.go index da7f3c02..7db5cab1 100644 --- a/cmd/bd/daemon_event_loop.go +++ b/cmd/bd/daemon_event_loop.go @@ -167,7 +167,7 @@ func runEventDrivenLoop( // checkDaemonHealth performs periodic health validation. // Separate from sync operations - just validates state. func checkDaemonHealth(ctx context.Context, store storage.Storage, log daemonLogger) { - // TODO: Add health checks: + // TODO(bd-gqo): Add health checks: // - Database integrity check // - Disk space check // - Memory usage check diff --git a/cmd/bd/duplicates.go b/cmd/bd/duplicates.go index b3730200..702b2c39 100644 --- a/cmd/bd/duplicates.go +++ b/cmd/bd/duplicates.go @@ -92,7 +92,7 @@ Example: if autoMerge || dryRun { if !dryRun { - // TODO: Call performMerge when implemented + // TODO(bd-hdt): Call performMerge when implemented fmt.Fprintf(os.Stderr, "Auto-merge not yet fully implemented. Use suggested commands instead.\n") } } diff --git a/cmd/bd/reopen.go b/cmd/bd/reopen.go index 026db1f4..cd368b96 100644 --- a/cmd/bd/reopen.go +++ b/cmd/bd/reopen.go @@ -58,7 +58,7 @@ This is more explicit than 'bd update --status open' and emits a Reopened event. fmt.Fprintf(os.Stderr, "Error reopening %s: %v\n", id, err) continue } - // TODO: Add reason as a comment once RPC supports AddComment + // TODO(bd-r46): Add reason as a comment once RPC supports AddComment if reason != "" { fmt.Fprintf(os.Stderr, "Warning: reason not supported in daemon mode yet\n") }