wip: rescue uncommitted dashboard-v2 panels and cluster changes before archiving

Snapshot of work in progress found in ~/claw-store on 2026-09-12: maintenance,
pollution and warming-candidate panels in dashboard-v2, plus cluster blob/rpc/
services and daemon edits. Committed as-is for safekeeping.

Co-Authored-By: Claude Fable 5.1 <[email protected]>
Claude-Session: https://claude.ai/code/session_01DjN5qhFxHFuXjQ8krZoG81
This commit is contained in:
Omar Sobh
2026-09-12 04:40:42 -07:00
co-authored by Claude Fable 5.1
parent 5e7f7dfc83
commit 425ce58127
18 changed files with 1143 additions and 42 deletions
+6
View File
@@ -2,6 +2,8 @@ import { useEffect, useState } from 'react';
import { api, FleetSnapshot, AnomalyStatus, fmtBytes, fmtAge } from '../lib/api';
import { NodeCard } from '../components/NodeCard';
import { ProjectsPanel } from '../components/ProjectsPanel';
import { WarmingCandidatesPanel } from '../components/WarmingCandidatesPanel';
import { PollutionPanel } from '../components/PollutionPanel';
// FleetHealth landing — human-oriented single-pane-of-glass.
// Polls the aggregator's /api/v2/fleet every 10 s.
@@ -140,6 +142,10 @@ export function CommandCenter() {
</section>
<ProjectsPanel />
<WarmingCandidatesPanel />
<PollutionPanel />
</div>
);
}