web-design-guidelines

Reviews UI code against accessibility, performance, and visual design guidelines.

Updated Apr 13, 2026
One-click install
npx skills add https://github.com/JenilRevaliya/ARGUS --skill web-design-guidelines-jenilrevaliya
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: web-design-guidelines
Source: https://github.com/JenilRevaliya/ARGUS/tree/main/.agent/skills/web-design-guidelines
Command: npx skills add https://github.com/JenilRevaliya/ARGUS --skill web-design-guidelines-jenilrevaliya

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? UI code often ships with accessibility violations, poor Core Web Vitals, and inconsistent visual design that manual review misses. This Skill provides a structured audit framework covering WCAG 3.0/APCA contrast, Core Web Vitals targets, energy efficiency, and interaction quality so reviews are consistent and thorough. ## Core Features & Use Cases - Accessibility Audits: Checks APCA contrast ratios, keyboard focus states, touch target sizes (48px minimum), and reduced-motion support. - Performance Review: Evaluates LCP, INP, and CLS against modern targets and flags issues like missing fetchpriority or layout shifts. - Visual Quality Assessment: Flags arbitrary spacing, non-fluid typography, flat shadows, and overused design clichés. - Use Case: Before shipping a new landing page, ask for a UI review and receive a structured report with blockers, warnings, and concrete fixes organized by category. ## Quick Start Review my UI code in the current page component against web design best practices and list all blockers and warnings.

Frequently Asked Questions about web-design-guidelines

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review my UI for accessibility compliance?▼

Request a UI review and the audit checks APCA contrast ratios (Lc > 75 for body text), keyboard focus visibility, semantic HTML, and touch targets of at least 48px. Findings are reported as blockers or warnings with specific fixes.

What Core Web Vitals targets does a UI audit check?▼

The audit evaluates LCP under 1.5 seconds, INP under 100 milliseconds, and CLS of 0.00. It flags common failures like missing fetchpriority on hero images, main-thread blocking hydration, and images without width and height attributes.

Does the review check mobile touch target sizes?▼

Yes, the audit verifies touch targets meet the 48x48dp Material Design minimum (44x44px Apple HIG). Undersized targets are flagged as high-severity findings with fixes like increased padding or min-height.

Why are animations using margin or width flagged in reviews?▼

Animating layout properties like margin or width forces expensive CPU recalculations and harms battery life. The audit recommends GPU-accelerated properties like transform and opacity instead, with spring-based cubic-bezier easing.

What are the limitations of an automated UI guidelines review?▼

The review analyzes code statically and cannot measure real runtime metrics like actual LCP or INP in production. It also cannot judge subjective brand fit, so visual findings like color palette choices should be weighed against brand requirements.