"""The Incumbent Benchmark. Benchmark governance the way we benchmark models: thirty real constitutional stress events, each encoded as a structured dossier, replayed under the FablePool constitutional kernel v0.1 and scored side-by-side against the outcome the incumbent constitution actually produced. The package contains: - ``schema`` : pydantic models defining the dossier file format. - ``kernel`` : a machine-readable model of kernel v0.1 (articles, gates, procedure clocks) used to adjudicate every historical move. - ``rubric`` : the scoring rubric (worst-off-participant first, then commons integrity, trust preservation, latency). - ``harness`` : the replay harness — loads dossiers, evaluates every move against the kernel rule engine, machine-checks the counterfactual analysis for consistency, computes latency. - ``scorecard`` : renders per-event and aggregate scorecards (Markdown/JSON). - ``cli`` : the ``ibench`` command line interface. """ __version__ = "0.1.0" from .schema import Dossier # noqa: F401 from .kernel import KERNEL_VERSION, evaluate_move # noqa: F401 from .rubric import ScoreSet # noqa: F401