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.
npx skills add whitebeardit/.cursor --skill skill-frontend-qa-friendlygit clone --depth 1 https://github.com/whitebeardit/.cursorWrote 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.
[](https://agentmods.dev/skills/whitebeardit/.cursor/skill-frontend-qa-friendly)<a href="https://agentmods.dev/skills/whitebeardit/.cursor/skill-frontend-qa-friendly"><img src="https://agentmods.dev/badge/skills/whitebeardit/.cursor/skill-frontend-qa-friendly.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00050 | $0.00881 |
| Opus 5 | $0.00025 | $0.00441 |
| Sonnet 5 | $0.00010 | $0.00176 |
| Haiku 4.5 | $0.00005 | $0.00088 |
Grade A, and why
frontend-qa-friendly 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.
How it starts
The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frontend QA-friendly
When writing or reviewing frontend code that will be tested by QA (e.g. Playwright), ensure markup allows stable, fast locators: getByRole, getByLabel, getByTestId. Avoid selectors that depend on DOM position or styling.
Goal
Frontend that lets tests locate and fill elements quickly and reliably, without brittle XPaths like div[1]/div[2]/input.
Forms
- Labels: Always associate each input with a label:
<label for="id">andidon the input, or wrap the input inside<label>. - Avoid inputs with no associated label; tests rely on
getByLabel('Label text')orgetByRole('textbox', { name: 'Label text' }). - Placeholder: If using placeholder as fallback, keep it stable or document it; tests may use
getByPlaceholder().
Buttons and links
- Use visible text or a stable
aria-labelso tests can usegetByRole('button', { name: '...' })orgetByRole('link', { name: '...' }). - Avoid buttons/links with no accessible name (e.g. icon-only without aria-label).
Checkboxes and radios
- Associate each control with a label or
aria-labelso tests can usegetByRole('checkbox', { name: '...' })orgetByRole('radio', { name: '...' }).
Combos and selects
- Prefer native
<select>or components that expose proper roles and names (e.g. combobox + option). - Avoid custom dropdowns that are only targetable by "first button in second div"; expose role and accessible name so tests can use
getByRole('combobox', { name: '...' })andgetByRole('option', { name: '...' }).
IDs
- Use stable, unique IDs when you use
id; avoid auto-generated IDs that change every build. - Prefer semantic hooks (role + label) over IDs for test locators when possible.
data-testid
- Use
data-testidwhen role/label are not enough (e.g. inner regions, dynamic lists, complex components). - Use a stable, documented convention (e.g.
data-testid="form-nome",data-testid="btn-enviar"). - Tests can then use
getByTestId('form-nome'). Do not overuse; prefer accessible markup first.
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.
- 8d ago First seen · 65 lines · 0 tokens per session scan A 13b4c08556b0
frontend-qa-friendly is a skill published in the GitHub repository whitebeardit/.cursor (12 stars, last pushed 6mo ago), licensed MIT. It adds 50 tokens to every session and 881 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-30.
Other skills, from other repositories
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
playwright-component-testing
Set up component testing with Playwright using a story gallery — scaffold stories and a gallery dev page driven by the built-in mount fixture, no dedicated component-testing runtime. Use when asked to test React or Vue components in isolation with Playwright, or to migrate off @playwright/experimental-ct-react / -vue.
screen-reader-testing
Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues, or ensuring assistive technology support.
vscode-visual-regression
Write Storybook stories and visual regression tests for the Kilo VS Code extension webview UI.
verify
Build, launch, drive, and screenshot the OpenNOW Electron settings UI on Windows.
break
Renders a component you choose in every state and scenario on a temporary page and stress tests it.