What problem does it solve? Reviewing a pending change before opening a pull request is slow and inconsistent when done by hand, and automated fixes without guardrails can silently break a working tree. This Skill runs a structured outer-loop review over the working diff, decides with a deterministic risk score whether fixes may be applied automatically, and lands verified fixes in one commit. ## Core Features & Use Cases - Lens panel over the diff: Fans out one subagent per lens in .speccle/lenses/*.md, each returning findings anchored to changed lines with severity, cause, and a proposed fix. - Risk-gated fixing: Runs speccle risk before the panel; below the threshold it fixes findings and re-runs the checks-gate after each fix, reverting any fix that goes red, while at or above the threshold it reports findings and stops for a human. - Remedy routing and calibration: Routes every finding to a durable prevention artefact (check, criterion, or lens), recalls prior remedies from the remedy record, and records the change against the calibration record before committing. - Use Case: Before opening a pull request on a feature branch, ask for a review of the pending change; the Skill scores the risk, runs the lens panel, fixes low-risk findings with the checks-gate guarding each one, commits the survivors, and closes with an overruleable summary. ## Quick Start Ask the assistant to review my pending changes and fix whatever the risk gate allows before I open a pull request.