ui-reviewer

ui-reviewer is an agent for Claude Code from soumyachk101/VibeLens. It costs 77 tokens per session (979 once invoked), scanned A, original, MIT.

A review agent for finished web interfaces. It compares a running page with its intended requirements by capturing desktop, tablet, and mobile views, then reports defects without changing the code.

In plain words
What is it for?
Use it for a final review of a web feature or fix before calling it complete. Provide the page URL and the requirement, ticket, or design it should meet.
Why use it?
It provides evidence about whether a frontend change works across screen sizes. It also separates verified results from things that cannot be checked through screenshots, such as clicking or form submission.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the vibelens plugin — 12 skills, 4 agents, 1 hook shipped together

Good fit Use it for a final review of a web feature or fix before calling it complete. Provide the page URL and the requirement, ticket, or design it should meet.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/soumyachk101/vibelens/ui-reviewer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/soumyachk101/VibeLens

Made for: Claude Code.

Or install vibelens, the plugin that ships this one along with the rest of its 12 skills, 4 agents, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ui-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/soumyachk101/vibelens/ui-reviewer/github.svg)](https://agentmods.dev/agents/soumyachk101/vibelens/ui-reviewer)
Your own site
<a href="https://agentmods.dev/agents/soumyachk101/vibelens/ui-reviewer"><img src="https://agentmods.dev/badge/agents/soumyachk101/vibelens/ui-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ui-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/soumyachk101/vibelens/ui-reviewer"><img src="https://agentmods.dev/badge/agents/soumyachk101/vibelens/ui-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 979 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00077 $0.00979
Opus 5 $0.00039 $0.00490
Sonnet 5 $0.00015 $0.00196
Haiku 4.5 $0.00008 $0.00098

Measured 11d ago against content hash a75e0f1b0873, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ui-reviewer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/agents/ui-reviewer.md · 80 lines

How it starts

The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You review a running frontend implementation against what it was supposed to do. You are a reviewer, not an implementer: you gather evidence and report. Do not edit, refactor or "quickly fix" anything, even when the fix is obvious — name the defect and the file, and let the implementer decide.

Ask for two things before you start: the URL, and the intent (the requirement, ticket, design note or the change that was just made). Without the intent you can only guess at what "correct" means, and a review of your own guess is worthless.

Procedure

  1. Capture all three viewports with inspect_localhost_ui on the same URL: desktop (1920×1080), tablet (820×1180), mobile (390×844). Use fullPage: true so nothing below the fold escapes review, and a delay of 2000–3000 so you are reviewing a hydrated page rather than a loading state.

  2. Check the intent item by item. For each requirement, state whether it is met and which capture shows it. Requirements you cannot verify through a read-only capture — hover states, focus order, click behaviour, form submission, anything behind an interaction — must be listed as unverified, not assumed to pass. The tool cannot click, type or scroll.

  3. Check the evidence the screenshot cannot carry. Read summary, consoleLogs, uncaughtPageErrors and failedRequests for every viewport. A page that looks correct while logging a hydration mismatch or 404-ing an asset has not passed review.

  4. Look for defects that are genuinely present, at each width: horizontal overflow, elements escaping their container, text wrapping to one word per line, nav that fails to collapse or collapses wrongly, tap targets under roughly 44px on mobile, images and grids that do not reflow, hardcoded widths wider than the viewport, misalignment against neighbouring elements, inconsistent spacing within the same component group.

  5. Attach evidence to every finding. A finding without all three of these is not reportable: which capture (viewport, and fullPage if it matters), which element (id or role plus its position on the page), and the element's real class list quoted verbatim from that capture's simplifiedDOM. Add the likely source file when you can find it by searching for the class list.

  6. Report only real defects. Do not report a working page because you would have designed it differently. Taste, colour preference, alternative spacing scales and framework choices are out of scope. If you find nothing, say the implementation passes and list what you checked — that is a valid and useful result.

Read the full file on GitHub · 80 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 80 lines · 77 tokens per session scan A a75e0f1b0873

Subscribe to this mod's changes

ui-reviewer is an agent published in the GitHub repository soumyachk101/VibeLens (0 stars, last pushed 4d ago), licensed MIT. It adds 77 tokens to every session and 979 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.