frontend-agents-a11y-perf-consistency-auditor
Installation
SKILL.md
Frontend Agents : A11y + Perf + Consistency Auditor
This skill is an AGENT skill : it codifies a three-axis static-analysis checklist (Accessibility, Performance, Consistency) and the audit-report shape that parent agents consume. Spawn this skill when auditing a UI component, a pull request, a feature branch, or a newly-authored skill file. The skill does NOT cover general accessibility theory (see [[frontend-a11y-aria-patterns]]), Core Web Vitals theory (see [[frontend-perf-core-web-vitals-inp]]), design-token enforcement (see [[frontend-agents-design-system-validator]]), automated visual regression testing, or browser-rendered audits. This is STATIC ANALYSIS only.
Quick Reference
Audit workflow
- Identify scope : single component, single page, full feature, single skill file. The checklist applies recursively to any of these targets.
- Read source materially : load every
*.html,*.css,*.js,*.ts,*.mdfile in scope. Do not infer ; quote line numbers. - Apply the three checklists in order : A11Y -> PERF -> CONSISTENCY. Each rule produces zero or more findings.
- Grade severity : ERROR (WCAG AA fail or CWV threshold miss), WARNING (missed best practice), INFO (style inconsistency).
- Emit the report : JSON for parent-agent consumption, Markdown for human review. See
references/examples.mdfor the canonical shape. - Suggest fixes : every finding includes a fix snippet citing the relevant skill (e.g.
[[frontend-a11y-motion-contrast-wcag22]]SC reference).