"""Models for system health & startup checks.""" from __future__ import annotations from dataclasses import dataclass @dataclass(frozen=True) class CheckResult: name: str ok: bool detail: str fix_hint: str | None = None fix_command: str | None = None # shell command to remediate, when safe to expose