personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

observer+health: tidy stale comments and dead thresholds global

Post-freshness-revamp cleanup from audit: rename stale "Observers Card"
comments in apps/health/workspace.html to match the renamed card title,
and remove the unused thresholds global plus obsolete payload overwrite
from apps/observer/workspace.html.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+2 -6
+2 -2
apps/health/workspace.html
··· 361 361 white-space: nowrap; 362 362 } 363 363 364 - /* Observers Card */ 364 + /* Capture hosts card */ 365 365 .observers-card { 366 366 border-left: 4px solid #22c55e; 367 367 } ··· 1172 1172 </div> 1173 1173 </div> 1174 1174 1175 - <!-- Observers Card --> 1175 + <!-- Capture hosts card --> 1176 1176 <div class="dashboard-card observers-card hidden" id="observersCard"> 1177 1177 <div class="card-header"> 1178 1178 <div class="card-title">
-4
apps/observer/workspace.html
··· 570 570 let errorAutoHideTimer = null; 571 571 let countdownInterval = null; 572 572 let lastPollTime = Date.now(); 573 - let thresholds = { active_ms: 30000, stale_ms: 120000 }; 574 573 const GROUP_ORDER = ['active', 'stale', 'inactive']; 575 574 const GROUP_LABELS = { 576 575 active: 'Active', ··· 757 756 url: '/app/observer/api/list', 758 757 cause: 'parse', 759 758 }); 760 - } 761 - if (payload && payload.thresholds) { 762 - thresholds = payload.thresholds; 763 759 } 764 760 const observers = payload.observers; 765 761