ring:checking-frontend-quality

ring:checking-frontend-quality is a skill for Claude Code, Codex from LerianStudio/ring. It costs 102 tokens per session (846 once invoked), scanned A, original, Apache-2.0.

A set of checks for user interfaces, covering accessibility, appearance, browser-based user flows, and loading speed. Accessibility means making software usable by people with disabilities.

In plain words
What is it for?
Running accessibility scans, visual snapshot checks, Playwright end-to-end tests, performance checks, or all of these against changed frontend code.
Why use it?
It helps find problems in changed screens before users encounter them, such as keyboard issues, visual regressions, broken flows, or slow pages.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/lerianstudio/ring/checking-frontend-quality
Any agent
npx skills add LerianStudio/ring --skill checking-frontend-quality
Clone the repo
git clone --depth 1 https://github.com/LerianStudio/ring

Made for: Claude Code, Codex.

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 ring:checking-frontend-quality

README.md
[![agentmods](https://agentmods.dev/badge/skills/lerianstudio/ring/checking-frontend-quality.svg)](https://agentmods.dev/skills/lerianstudio/ring/checking-frontend-quality)
Your own site
<a href="https://agentmods.dev/skills/lerianstudio/ring/checking-frontend-quality"><img src="https://agentmods.dev/badge/skills/lerianstudio/ring/checking-frontend-quality.svg" alt="Measured on agentmods" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 846 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 $0.00102 $0.00846
Opus 5 $0.00051 $0.00423
Sonnet 5 $0.00020 $0.00169
Haiku 4.5 $0.00010 $0.00085

Measured 4d ago against content hash 32b9b941be02, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ring:checking-frontend-quality 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 4d 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.

dev-team/skills/checking-frontend-quality/SKILL.md · 84 lines

How it starts

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

Frontend Quality Checks

When to use

  • A frontend task needs standalone quality validation outside ring:running-dev-cycle-frontend (which owns these checks in Gate 0).
  • You want to run one specific check (a11y, visual, e2e, or performance) against changed UI components, or all of them at once.

Skip when

  • Backend-only project with no UI components.
  • Task is documentation-only, configuration-only, or non-code.
  • Changes limited to build tooling, CI/CD, or infrastructure.
  • Inside ring:running-dev-cycle-frontend — that orchestrator already runs these in Gate 0.

Complementary: ring:running-dev-cycle-frontend, ring:qa-frontend

Modes

Mode What it checks
accessibility axe-core automated scans, zero WCAG 2.1 AA critical/serious violations, keyboard nav, focus management
visual Snapshot tests across all component states and viewports (mobile 375px / tablet 768px / desktop 1280px)
e2e Playwright user-flow tests across Chromium, Firefox, and WebKit (happy + error paths)
performance Lighthouse > 90 and Core Web Vitals (LCP < 2.5s, CLS < 0.1, INP < 200ms), bundle budget
all Runs all four modes in parallel and aggregates the verdicts

The deep per-mode requirements live in the agent's mode files (dev-team/agents/qa-frontend-modes/{accessibility,visual,e2e,performance}.md). Do not duplicate them here.

Step 1: Validate Input

Required: unit_id (TASK id), implementation_files, gate0_handoffs. Required: mode — one of accessibility | visual | e2e | performance | all. Optional: components_list, user_flows_path, performance_baseline.

Step 2: Dispatch

For a single mode, dispatch the QA analyst with the selected mode:

Task:
  subagent_type: "ring:qa-frontend"
  description: "Frontend {mode} checks for {unit_id}"
  prompt: |
    mode: {mode}
    unit_id: {unit_id}
    implementation_files: {implementation_files filtered to UI files}
    gate0_handoffs: {gate0_handoffs}
    # optional, when relevant to the mode:
    # user_flows_path, performance_baseline, components_list

    Load qa-frontend-modes/{mode}.md and follow it.

Read the full file on GitHub · 84 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. 4d ago First seen · 84 lines · 102 tokens per session scan A 32b9b941be02

Subscribe to this mod's changes

ring:checking-frontend-quality is a skill published in the GitHub repository LerianStudio/ring (210 stars, last pushed 14d ago), licensed Apache-2.0. It adds 102 tokens to every session and 846 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-30.

Related

Other skills, from other repositories

brainstorm

Explores a codebase, researches the problem space, and produces an approved design specification before any code is written. Use when the user wants to create a new feature, add significant functionality, redesign a subsystem, or build something that touches multiple parts of the project.

greglas75/zuvo · 56 tokens

a11y-audit

Dedicated WCAG 2.2 AA/AAA accessibility audit across 10 dimensions (A1-A10) covering semantic HTML, keyboard navigation, ARIA patterns, color contrast, forms, images/media, responsive/zoom, motion/animation, reading/content, and legal compliance. Goes far beyond surface-level design-review checks with deep…

greglas75/zuvo · 147 tokens

api-audit

API and endpoint integrity audit across 10 dimensions (D1-D10) plus optional contract stability (D11) and optional OWASP API Security Top 10 (D12: BOLA/BOPLA/BFLA, mass assignment, JWT alg-confusion, GraphQL introspection). Covers validation, payloads, pagination, errors, caching, HTTP semantics, waterfalls, rate…

greglas75/zuvo · 135 tokens

debug

Systematic bug investigation with a five-phase framework: reproduce, narrow, diagnose, fix, verify. Supports automated regression bisect via --regression flag. Produces a structured debug report with root cause analysis, regression test, and CQ/Q self-evaluations.

greglas75/zuvo · 55 tokens

incident

Incident response and postmortem generation from git/deploy context. When something breaks in production, this skill builds a timeline, identifies the probable cause, and generates a structured postmortem document. Flags: --since, --service, --sev, --revert, --comms, --dry-run.

greglas75/zuvo · 64 tokens

performance-audit

Full-stack performance health check across 12 dimensions. Rendering, bundles, assets, API/network, algorithms, memory, database, caching, Web Vitals, backend runtime, concurrency, and framework-specific pathologies. Evidence-based Impact Models with confidence tiers and a prioritized optimization roadmap. Switches…

greglas75/zuvo · 90 tokens