'use client' import { HealthRow, formatUptime, type DashboardData } from '../widget-primitives' export function RuntimeHealthWidget({ data }: { data: DashboardData }) { const { localOsStatus, claudeHealth, codexHealth, hermesHealth, mcHealth, memPct, systemStats } = data return (

Local Runtime Health

{memPct != null && 90 ? 'bad' : memPct > 70 ? 'warn' : 'good'} bar={memPct} />} {systemStats?.disk && 90 ? 'bad' : 'good'} />} {systemStats?.uptime != null && }
) }