Skip to main content
Glama

Renforge Diff Screenshots

renforge_diff_screenshots

Compare two screenshots to return the bounding box of changed pixels, confirming element movement or that a tweak left other areas untouched.

Instructions

Diff two frames and return the bounding box of what changed.

before_path is a saved PNG. after_path is another saved PNG, or empty to diff against the current live frame. Use it to measure how far an element moved or to confirm a tweak left everything else untouched.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
thresholdNo
after_pathNo
before_pathYes
project_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does disclose one important behavioral fact — that an empty after_path diffs against the current live frame — but says nothing about the threshold parameter's effect on sensitivity, tolerance to anti-aliasing, or any cost/side-effect profile of capturing a live frame.

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 tight sentences: the operation and its return value are front-loaded, followed by parameter notes and use cases. No filler, and each sentence adds information an agent needs.

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

Completeness3/5

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

Because an output schema exists, the description needn't detail return values, and it correctly just names the bounding box. However, for a four-parameter tool with zero schema descriptions and no annotations, the undocumented threshold and project_path leave meaningful gaps for correct invocation.

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 0%, so the description must compensate for all four parameters. It explains before_path ("a saved PNG") and after_path (including the empty-string semantics), but leaves project_path and especially the default-0 threshold completely unexplained.

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 states a specific verb ("Diff") on a specific resource ("two frames") and names the output ("the bounding box of what changed"), which cleanly separates it from sibling screenshot/capture tools that produce images rather than diffs.

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 two concrete use cases ("measure how far an element moved" and "confirm a tweak left everything else untouched"), which clearly situates the tool. It does not, however, name an alternative or state when not to use it (e.g., versus renforge_measure or renforge_find_image_on_screen).

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