Paperclip heartbeat reaper false process_lost fix:

Paperclip heartbeat reaper false process_lost fix: Added activeRunExecutions Set in heartbeat.ts that tracks all runs being executed regardless of adapter type (HTTP, openclaw_gateway, claude_local). The reaper now checks both runningProcesses (child PIDs) AND activeRunExecutions before marking a run as orphaned. Previously ~3% of runs failed with “Process lost — server may have restarted” because non-child-process adapters weren’t tracked. Also added resumeQueuedRuns() startup function that finds queued runs stuck from previous server lifecycle and kicks off execution. Without this, queued runs stayed pending forever after container restart. Both changes at /opt/paperclip/src/server/src/services/heartbeat.ts.