feat: Add issue IDs to TODO comments
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 <noreply@anthropic.com>
This commit is contained in:
@@ -167,7 +167,7 @@ func runEventDrivenLoop(
|
|||||||
// checkDaemonHealth performs periodic health validation.
|
// checkDaemonHealth performs periodic health validation.
|
||||||
// Separate from sync operations - just validates state.
|
// Separate from sync operations - just validates state.
|
||||||
func checkDaemonHealth(ctx context.Context, store storage.Storage, log daemonLogger) {
|
func checkDaemonHealth(ctx context.Context, store storage.Storage, log daemonLogger) {
|
||||||
// TODO: Add health checks:
|
// TODO(bd-gqo): Add health checks:
|
||||||
// - Database integrity check
|
// - Database integrity check
|
||||||
// - Disk space check
|
// - Disk space check
|
||||||
// - Memory usage check
|
// - Memory usage check
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ Example:
|
|||||||
|
|
||||||
if autoMerge || dryRun {
|
if autoMerge || dryRun {
|
||||||
if !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")
|
fmt.Fprintf(os.Stderr, "Auto-merge not yet fully implemented. Use suggested commands instead.\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -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)
|
fmt.Fprintf(os.Stderr, "Error reopening %s: %v\n", id, err)
|
||||||
continue
|
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 != "" {
|
if reason != "" {
|
||||||
fmt.Fprintf(os.Stderr, "Warning: reason not supported in daemon mode yet\n")
|
fmt.Fprintf(os.Stderr, "Warning: reason not supported in daemon mode yet\n")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user