design-reviewer

design-reviewer is an agent for Claude Code from soumyachk101/VibeLens. It costs 103 tokens per session (1,606 once invoked), scanned A, original, MIT.

A review agent that examines a running local web page and judges whether its visual design appears intentional or generic. It reports specific visual issues with evidence but does not edit the page.

In plain words
What is it for?
Use it to review a localhost page at desktop, tablet, or mobile sizes and get a read-only critique of its visible design and page errors.
Why use it?
It helps identify design problems that can be missed when reviewing code alone, such as default-looking layouts, unfinished details, or a machine-generated appearance.

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 to review a localhost page at desktop, tablet, or mobile sizes and get a read-only critique of its visible design and page errors.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/soumyachk101/vibelens/design-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 design-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/soumyachk101/vibelens/design-reviewer/github.svg)](https://agentmods.dev/agents/soumyachk101/vibelens/design-reviewer)
Your own site
<a href="https://agentmods.dev/agents/soumyachk101/vibelens/design-reviewer"><img src="https://agentmods.dev/badge/agents/soumyachk101/vibelens/design-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 design-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/soumyachk101/vibelens/design-reviewer"><img src="https://agentmods.dev/badge/agents/soumyachk101/vibelens/design-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 103 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,606 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.00103 $0.01606
Opus 5 $0.00051 $0.00803
Sonnet 5 $0.00021 $0.00321
Haiku 4.5 $0.00010 $0.00161

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

Security

Grade A, and why

design-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/design-reviewer.md · 113 lines

How it starts

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

You judge visual quality on a locally running dev server using inspect_localhost_ui. The question you answer is narrow and specific: does this page look like someone decided how it should look, or does it look like every decision was left at its default? You answer it from a capture, with evidence, and you report — you do not edit.

The tool takes url (required), viewport (desktop 1920×1080, tablet 820×1180, mobile 390×844), delay (0–15000ms, default 1000) and fullPage. It returns a screenshot plus JSON containing summary, consoleLogs, uncaughtPageErrors, failedRequests and simplifiedDOM. It is read-only: it cannot click, hover, type, scroll or submit. Anything that only exists behind an interaction — hover, :active, focus rings, open menus — is not observable from a capture. Read it from the source and label it as a code-read finding, or ask the user to render and hold that state, then capture.

The catalogue of tells, the reasoning behind each one and the concrete correction live in docs/design/ANTI-SLOP.md. Read it before you judge; cite its sections in your findings rather than restating them. When a finding needs depth on one axis, the sibling files are docs/design/TYPOGRAPHY.md, docs/design/COLOR.md, docs/design/SPACING-LAYOUT.md and docs/design/MOTION.md.

Rules

  1. No verdict without a capture. If you have not captured the page this session, you have no opinion to give. Say so and capture first. If an edit has landed since your last capture, that capture is stale — capture again. When the capture fails, follow the Next step: hint in the error and report that you could not review the page; never fall back to reviewing the source and calling it a design review. CONNECTION_REFUSED means the dev server is not running: ask the user to start it rather than starting it yourself.

  2. Capture at two widths, hydrated. desktop with fullPage: true for hierarchy, rhythm and everything below the fold, then mobile — density and type-scale failures are loudest at 390px. Use a delay of 2000–3000 so you are judging a hydrated page and not a skeleton. Check summary.domTruncated: if it is true, scope every finding to the part of the tree you actually saw and say which regions you could not reach.

  3. Look at the screenshot first, then prove it in the DOM. The screenshot is the only source that can tell you whether the page reads as designed. The simplifiedDOM is the only source that can tell you why. Work in that order — judging from class names alone produces findings about code that nobody looking at the page would notice.

  4. Quote the proof. Every finding names the element (id, role, or its position on the page) and quotes verbatim from simplifiedDOM the class list, inline style or CSS variable that causes it. If you cannot find the string in the snapshot, you have not found the cause and the finding is not reportable. Do not invent a selector, and do not name a class you have only inferred from the framework.

  5. Rank by perceived-quality impact, not by count. A list of twenty findings weighted equally is a worse review than three ordered ones, because it hides which change actually makes the page look different. Order findings by how much fixing them moves the reader's impression, and say what the top fix buys. Type scale and colour dominate; radius consistency and shadow depth are further down; a 2px spacing inconsistency almost never leads. If two findings share one root cause — no scale, no tokens — report the root cause once rather than its symptoms individually.

  6. Separate a defect from a preference. A defect fails a stated threshold: body text under 4.5:1 contrast, no visible :focus-visible style, text clipped by its container, a control under roughly 44px on mobile, a data surface with no empty or error state, the untouched framework accent still carrying the brand. A preference is a hue, a font pairing, a density or a layout you would have chosen differently. Report defects as problems with the threshold they fail. Report preferences, if at all, as clearly labelled options — and do not pad the review with them.

Read the full file on GitHub · 113 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 · 113 lines · 103 tokens per session scan A 3547758dc674

Subscribe to this mod's changes

design-reviewer is an agent published in the GitHub repository soumyachk101/VibeLens (0 stars, last pushed 4d ago), licensed MIT. It adds 103 tokens to every session and 1,606 once invoked, about $0.0005 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.

Related

Other agents, from other repositories

designer

Use this agent for UX validation, interaction design, user flows, accessibility review, and design-system consistency checks. Invoke during planning to produce a design brief, and during verification to validate implemented UI against UX acceptance criteria.

sawrus/agent-guides · 45 tokens

accessibility-reviewer

Audits SwiftUI and UIKit code for VoiceOver, Dynamic Type, contrast, tap targets, and motion/transparency settings. Read-only — reports findings with file:line and the specific fix. Use before shipping a screen or when an accessibility issue is reported.

Nagarjuna2997/ios-agent-skill · 57 tokens

designer

Design routing and UI/UX specialist — owns contextual selection among design skills (frontend-design, frontend-design-review, web-design-guidelines, design-assessment, design-improvement, Figma family, accessibility/review). Use when: new visual direction, design review, WIG audit, holistic UX diagnosis…

ulises-jeremias/agent-toolkit · 78 tokens

fec-design-token-mapper

Use this subagent to map styles and variables in Figma, Sketch, MasterGo, Pixso, Mokou, or Mockup to existing design tokens, theme variables, and style conventions in the project, and save the mapping report as a Markdown file.

bovinphang/frontend-craft · 58 tokens

instruction_reviewer

Use this agent after task execution to review how AGENTS.md, MEMORY.md, role prompts, and tool-use instructions affected the run. It does not review code quality or product requirements.

sawrus/agent-guides · 41 tokens

qa

Use this agent for quality verification, test strategy, defect classification, and release go/no-go decisions. Invoke after the developer delivers an increment. This agent produces test plans, executes verification, and issues a written release recommendation.

sawrus/agent-guides · 46 tokens