What problem does it solve?
Re-audit skill for L8 of the Auditable Design pipeline. Given a baseline surface description (before_snapshot), a proposed alternative surface (after_snapshot), and the list of heuristic violations the baseline scored (with their baseline severities), re-audits the proposed surface against the same heuristic list and returns per-heuristic severities on ADR-008's anchored 0-10 scale. The module wraps the result in an OptimizationIteration record and runs a Pareto dominance check (plus weighted-sum fallback) against the baseline to decide whether the proposed design is an accepted iteration. Use when the user asks to re-audit a proposed change, score a design iteration, or evaluate whether an alternative resolves the baseline violations.
Core Features & Use Cases
- Re-audit a proposed design surface against a baseline heuristic list and return updated severities per heuristic.
- Enforce ADR-008 anchored severities and apply Pareto dominance with weighted-sum fallback to decide acceptance.
- Use when evaluating design iterations, comparing before/after snapshots, or validating design changes against a fixed heuristic set.
Quick Start
Provide the before_snapshot, after_snapshot, and the baseline heuristics list, and I will re-audit and return the per-heuristic severities.