/** * DebugPanel — engine health readout for researchers. * * Shows tick, agent/moving/paused counts, background task counts, and * per-agent anomalies reported by the backend health monitor. * * Architecture: toggled from InfoBar; fed by the snapshot's health block. * * Design: keeps runtime anomalies visible without cluttering the main * dashboard. */ export default function DebugPanel({ health }) { if (!health) return null; return ( ); }