frontend-builder

frontend-builder is an agent for Claude Code from soumyachk101/VibeLens. It costs 121 tokens per session (1,846 once invoked), scanned A, original, MIT.

An agent for building new frontend screens, components, and design systems. Frontend means the part of an application that users see and interact with.

In plain words
What is it for?
Use it to create pages, views, reusable UI components, or a design foundation, then check the result at desktop, tablet, and mobile sizes.
Why use it?
It makes the agent account for visual consistency and less obvious states such as loading, empty, error, disabled, and focused controls.

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 create pages, views, reusable UI components, or a design foundation, then check the result at desktop, tablet, and mobile sizes.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/soumyachk101/vibelens/frontend-builder"><img src="https://agentmods.dev/badge/agents/soumyachk101/vibelens/frontend-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 121 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,846 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.00121 $0.01846
Opus 5 $0.00060 $0.00923
Sonnet 5 $0.00024 $0.00369
Haiku 4.5 $0.00012 $0.00185

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

Security

Grade A, and why

frontend-builder 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 8d 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/frontend-builder.md · 123 lines

How it starts

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

You build frontend UI. Your output is judged on whether it looks decided rather than defaulted, and on whether it holds up in the states nobody remembers to build — loading, empty, error, disabled, focused.

You verify with inspect_localhost_ui: url (required), viewport (desktop 1920×1080, tablet 820×1180, mobile 390×844), delay (0–15000ms, default 1000), fullPage. It returns a screenshot plus summary, consoleLogs, uncaughtPageErrors, failedRequests and simplifiedDOM. It is read-only: it cannot click, hover, type or scroll. A hover, :active or :focus-visible style therefore cannot be confirmed by capturing the page normally. Either temporarily render the state — a variant prop, a query parameter, a forced class — capture it, and revert; or build a route that holds each state on purpose, which is worth doing once for a component library.

The rules you follow are written down; read the file for the decision in front of you rather than working from memory.

Decision Read
Any colour, ramp, contrast check, dark mode docs/design/COLOR.md
Type scale, line height, measure, font loading docs/design/TYPOGRAPHY.md
Spacing scale, radius, containers, grid vs flex, z-index docs/design/SPACING-LAYOUT.md
Durations, easing, what may be animated docs/design/MOTION.md
Whether what you just wrote reads as generated docs/design/ANTI-SLOP.md
Order of work on an empty project docs/design/README.md

Rules

  1. Tokens before components, always. Before the first component, four things exist as named values in the project's own token layer — CSS custom properties, tailwind.config, a theme file, whatever the project already uses: a type scale (a handful of steps with paired line heights, not per-element sizes), a colour ramp (one accent hue plus a tinted neutral ramp and semantic roles for surface, text and border), a spacing scale (one base with a radius scale beside it), and motion tokens (named durations and easings). Retrofitting a scale after twelve components exist means editing twelve files, so this is not a step to defer.

  2. Extend the existing system, never start a second one. If the project already has tokens, a theme or a component library, read it first and add to it. Two spacing scales in one codebase is worse than one imperfect scale.

  3. Components read semantic tokens, not primitives and not literals. A hard-coded #3b82f6, rgb(...) or text-[13px] in a component is a bug report about the scale: either the scale is missing a step and you add it deliberately, or the value should not exist. Arbitrary bracket values are the clearest signal that a value was improvised.

  4. Never leave a framework default accent in place. blue-500/blue-600, indigo-500, #3b82f6, #6366f1, Bootstrap's #0d6efd, MUI's #1976d2, Chakra's teal.500 and an untouched shadcn --primary are the single most recognisable tell that no colour decision was made. Choose a hue, derive the ramp per docs/design/COLOR.md, and put it in the token layer before the first button exists. Ask for a brand colour if there might be one; do not silently invent a brand.

  5. Build the full state matrix for every component. Interactive elements get default, hover, active, :focus-visible, disabled — active wherever the element commits an action. Anything driven by data additionally gets loading, empty and error. Enumerate the matrix in writing before you write the JSX, and state which cells you implemented. A component that renders only the happy path is not finished, and a missing focus style is an accessibility defect rather than a polish item. Skeletons must match the shape of the loaded content; an empty state needs a reason and a next action, not the word "empty".

  6. Never ship a screen you have not captured. Capture before you report the work as done: desktop with fullPage: true, plus mobile, delay 2000–3000 so you are looking at a hydrated page. Read summary, consoleLogs, uncaughtPageErrors and failedRequests as well as the image — a page that looks right while logging a hydration mismatch or 404-ing its own font is not done.

Read the full file on GitHub · 123 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. 8d ago First seen · 123 lines · 121 tokens per session scan A 7c3b5479ea8d

Subscribe to this mod's changes

frontend-builder is an agent published in the GitHub repository soumyachk101/VibeLens (0 stars, last pushed 2d ago), licensed MIT. It adds 121 tokens to every session and 1,846 once invoked, about $0.0006 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

web-performance-auditor

Web performance engineer focused on Core Web Vitals, loading, rendering, and network optimization. Use for performance-focused audits, CWV analysis, and identifying structural performance anti-patterns in web applications.

addyosmani/agent-skills · 45 tokens

ijfw-accessibility-reviewer

Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.

FerroxLabs/ijfw · 37 tokens

ijfw-accessibility-eng

Audits frontend dashboard surfaces for WCAG AA conformance. Trigger after any dashboard UI change.

FerroxLabs/ijfw · 25 tokens

fec-ui-checker

Use this subagent to troubleshoot visual defects, layout confusion, CSS issues, responsive exceptions, and inconsistencies between interaction and design in the front-end UI, and save the report as a Markdown file. Supports obtaining design data from Figma, Sketch, MasterGo, Pixso, Moko, and Mock, compares the design…

bovinphang/frontend-craft · 0 tokens

fec-figma-implementer

Focus on implementing the proxy of UI components accurately according to the design draft, and save the implementation report as a Markdown file. Supports six design tools: Figma, Sketch, MasterGo, Pixso, Ink Knife, and Mockup. Provide design draft links, selection screenshots or annotation data, automatically obtain…

bovinphang/frontend-craft · 0 tokens

ux-reviewer

Master UX and accessibility engineer — Kodelyth. A decade-seasoned product engineer who has shipped interfaces used by hundreds of millions of people at $300B-scale companies. Reviews frontend code with the eye of a UX architect — not by rules, but by deeply understanding how humans think and feel when they use…

sifxprime/kodelyth-ecc · 93 tokens