Verify a change actually landed on the live page
verify_fixConfirm a fix reached the deployed site by reloading the URL, evaluating assertions per element, and returning a PASS/FAIL verdict so CI catches stale production bugs.
Instructions
Confirm a fix REACHED the deployed site rather than a stale local tab. Reloads the URL by default, evaluates small measurable assertions per element, and returns a per-check PASS/FAIL table of measured vs expected plus an overall verdict — a failed verdict marks the response an error, so verify-loops and CI catch it. This is what catches "the tool said fixed but production still has the bug".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute URL to open, e.g. http://localhost:5173. | |
| checks | Yes | Assertions to evaluate against the live page. Each reports measured vs expected, plus an overall PASS/FAIL verdict. | |
| reload | No | Reload even if the URL is already open (default reuses it, so it can be stale after an edit). | |
| saveAs | No | Name to snapshot the verdict under .agent-eyes/verify/. | |
| viewport | No | Switch to this breakpoint first. Default: keep the current one. |