Skip to main content
Glama

Verify a change actually landed on the live page

verify_fix

Confirm 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

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute URL to open, e.g. http://localhost:5173.
checksYesAssertions to evaluate against the live page. Each reports measured vs expected, plus an overall PASS/FAIL verdict.
reloadNoReload even if the URL is already open (default reuses it, so it can be stale after an edit).
saveAsNoName to snapshot the verdict under .agent-eyes/verify/.
viewportNoSwitch to this breakpoint first. Default: keep the current one.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.29.0

TDQS

A3.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Without annotations, the description must carry transparency, and it does disclose useful error semantics (failed verdict marks response an error) and per-check evaluation. However, it states 'Reloads the URL by default' while the schema sets reload default false and says the default reuses the URL; this contradictory behavioral claim can mislead agents into relying on an automatic fresh reload.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences are front-loaded with the core purpose, then mechanism/outcome, then motivating use case. No filler; every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

It covers what the tool does, how it evaluates, and what it returns/error behavior, while the schema fully documents the parameters. The false reload-default statement and absence of any sibling-routing guidance prevent a perfect score, but overall an agent can invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all five parameters. The description adds general assertion semantics (measured vs expected) but no parameter-level detail beyond that, matching the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific observable objective—confirm a fix reached the deployed site rather than a stale local tab—and covers mechanism and output. It clearly separates this verification tool from similar capture/measure siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives a clear use case: checking that a fix actually landed and catching stale-local-tab false positives. It does not explicitly name alternatives or when not to use it, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.