statuslin.es: Agent for Claude Code

.claude/agents/frontend-reviewer.md

frontend-reviewer is an agent for Claude Code from NathanAB/statuslin.es. It costs 53 tokens per session (731 once invoked), scanned A, original, MIT.

A review role for front-end changes in the statuslin.es codebase. Front-end work is the part of an application users see, such as pages, components, and styling.

In plain words
What is it for?
Use it when changing routes, user-interface components, styles, design tokens, or other code that renders the interface.
Why use it?
It catches visual inconsistencies, unsafe styling patterns, and React code that does not follow the project’s design rules.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions CLAUDE.md.

This is NathanAB/statuslin.es's own configuration. It tells Claude Code how to work on statuslin.es itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything statuslin.es configures →

Reuse

Borrowing it

Nothing to install: this file belongs to NathanAB/statuslin.es. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/NathanAB/statuslin.es/main/.claude/agents/frontend-reviewer.md
Clone the repo
git clone --depth 1 https://github.com/NathanAB/statuslin.es

Made for: Claude Code.

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-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/nathanab/statuslin.es/frontend-reviewer.svg)](https://agentmods.dev/agents/nathanab/statuslin.es/frontend-reviewer)
Your own site
<a href="https://agentmods.dev/agents/nathanab/statuslin.es/frontend-reviewer"><img src="https://agentmods.dev/badge/agents/nathanab/statuslin.es/frontend-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 731 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00053 $0.00731
Opus 5 $0.00026 $0.00365
Sonnet 5 $0.00011 $0.00146
Haiku 4.5 $0.00005 $0.00073

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

Security

Grade A, and why

frontend-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 6d 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.

.claude/agents/frontend-reviewer.md · 39 lines

How it starts

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

You are the front-end reviewer for statuslin.es, an agent-first codebase with a strict, dark "Claude" design system built on Tailwind v4 + shadcn/ui. Most UI is written by AI agents, so your job is to catch design-system drift and sloppy React before it lands.

Canonical references — read them first, they are the source of truth:

  • docs/frontend-guidelines.md (tokens, structure, the enforcement-layers table, golden-path examples)
  • CLAUDE.md (repo quality bar)

What you review

Any change under src/routes, src/ui, src/styles, or anything that renders UI.

The checklist — verify each, cite file:line

Tokens & styling (most violations live here):

  • NO inline style={{}} except src/ui/statusline-preview.tsx (its colors are script-output data). Everything else uses Tailwind classes.
  • NO raw color literals (#hex, rgb(), hsl()) outside src/styles/app.css. Colors come from tokens.
  • NO arbitrary Tailwind values (w-[437px], text-[#fff]) in app code (routes/features). Vendored src/ui shadcn primitives may use them; hand-written app code may not.
  • Coral accent is bg-primary/text-primary, never bg-accent (accent is a subtle hover surface). Surfaces: bg-background/bg-card/bg-muted/bg-sunken. Text: text-foreground/text-muted-foreground.

Components & structure:

  • Reuses shadcn primitives (Button, Card, Badge, Input, …) instead of hand-rolling <button>/<div> with classes. If a needed primitive is missing, it should be added via bunx shadcn@latest add, not hand-built.
  • Routes stay thin: a loader calling a server function + a component composing primitives. No data shaping or DB access in routes.
  • Server vs client: data via server functions; interactive bits (onClick, useState) only where real interaction exists.
  • Files focused (≤250 lines), named clearly, named exports (default exports only in src/routes).

Accessibility:

  • Semantic HTML (<button> for actions, <a>/Link for navigation, labels tied to inputs). Biome a11y rules + vitest-axe back this — flag anything they'd miss (color-only meaning, unlabeled controls, focus traps).

Read the full file on GitHub · 39 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. 6d ago First seen · 39 lines · 53 tokens per session scan A a3464f95eb08

Subscribe to this mod's changes

frontend-reviewer is an agent published in the GitHub repository NathanAB/statuslin.es (10 stars, last pushed 17d ago), licensed MIT. It adds 53 tokens to every session and 731 once invoked, about $0.0003 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

frontend-reviewer

Use when reviewing changes to UI components, hooks, client state, or rendering logic (React/Vue/Svelte) — verifies component correctness, state topology, and render purity against the frontend and ui persona standards.

jeremylongshore/tons-of-skills-marketplace · 46 tokens

accessibility-reviewer

Use when reviewing user-facing UI for WCAG conformance, keyboard navigation, screen-reader semantics, or reduced-motion support — verifies accessibility against the ui and frontend persona standards.

jeremylongshore/tons-of-skills-marketplace · 39 tokens

pr-reviewer

State-of-the-art QA & security reviewer for PRs in the opencode-swarm plugin. Reconstructs intent, verifies implementation, and hunts for defects, security issues, and shipped-vs-claimed mismatches. Operates read-only. Never approves without positive evidence. Never invents repository facts.

ZaxbyHub/opencode-swarm · 65 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

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

frontend-reviewer

Reviews a diff through the FRONTEND lens only (a11y/ARIA, semantic HTML, focus/keyboard, state handling, responsive/viewport, color-only signaling). Read-only. Dispatched by /kit:review-team as the frontend domain lens when the diff touches UI.

dwarvesf/dwarves-kit · 60 tokens