frontend-design

Designs and audits web interfaces for visual quality, usability, and accessibility.

22|Updated Sep 10, 2026
One-click install
npx skills add https://github.com/Lynricsy/HyperSkills --skill frontend-design-lynricsy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: frontend-design
Source: https://github.com/Lynricsy/HyperSkills/tree/main/skills/frontend-design
Command: npx skills add https://github.com/Lynricsy/HyperSkills --skill frontend-design-lynricsy

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires modern-web-guidance, and includes references (resource) components.

What problem does it solve? Web interfaces built or reviewed without a systematic design process tend to drift toward generic, machine-generated looks, miss WCAG accessibility requirements, and ship layout or motion defects that only surface on real devices. This Skill provides a disciplined workflow for planning visual direction, reviewing existing UI code, modernizing CSS platform features, and redesigning existing pages. ## Core Features & Use Cases - Design direction planning: Produces a one-line design read, variance/motion/density dial settings, a four-part plan (color, type, layout, principles), and a cliché gate that checks the plan against five generated-design clusters before any code is written. - UI code review: Walks a category-by-category checklist covering accessibility, focus, forms, content handling, animation, performance, touch, theming, and locale, emitting findings grouped by file as path:line - problem plus a concrete replacement. - CSS modernization and redesign: Verifies Baseline support for modern CSS/HTML features via the modern-web-guidance CLI with fallback policies, and runs a preserve-versus-overhaul redesign workflow that protects URLs, navigation labels, and existing accessibility behavior. - Use Case: Given a nine-section marketing page that reads as machine-generated, the Skill counts eyebrow labels against the ceil(sections/3) budget, flags consecutive image-and-text splits, theme inversions, and em dashes in copy, and returns a per-file fix list. ## Quick Start Ask the agent to review your landing page HTML file for accessibility, generated-look tells, and motion issues, with findings reported per file and line number.

Frequently Asked Questions about frontend-design

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

FAQPage Schema
How do I review UI code for accessibility and design issues?

Run the review-ui workflow: read each file end to end, walk the review checklist category by category, and report findings grouped by file as path:line plus a concrete replacement. Order findings by impact, starting with keyboard and assistive-technology breakage.

What is the WCAG 2.2 minimum target size for buttons?

WCAG 2.2 SC 2.5.8 Target Size (Minimum) is Level AA and requires at least 24 by 24 CSS pixels, with exceptions for spacing, equivalent controls, inline targets, user-agent defaults, and essential cases. The 44 by 44 figure is SC 2.5.5 at Level AAA, not the AA floor.

How do I avoid AI-generated looking landing pages?

State a one-line design read, set variance, motion, and density dials, then run the cliché gate against the five generated-design clusters such as cream-plus-serif-plus-terracotta and uniform rounded card grids. Revise or justify every axis the brief did not decide.

Does this skill cover React or Next.js component APIs?

No. Framework APIs, hooks, rendering models, and bundling are explicitly out of scope and belong to the react, vue, svelte, and astro skills. This skill covers framework-agnostic visual direction, accessibility, motion, and CSS platform features.

How do I check if a modern CSS feature is safe to use?

Run npx modern-web-guidance search with your goal phrased as an action, retrieve the matching guide, and apply its fallback policy. Baseline Widely available features ship directly; anything newer ships with the guide's prescribed fallback.

Why does my animation feel slow even at short durations?

Ease-in curves start slow and delay the moment the user is watching, so an ease-out at the same duration feels faster. Keep UI animation under 300ms, animate only transform and opacity, and provide a prefers-reduced-motion variant.