
Frontend Ui Ux Engineer
Polish web UI and UX with strong visual design when you have no Figma mockups or dedicated designer.
Overview
Frontend UI/UX Engineer is an agent skill most often used in Build (also Validate landing, Launch distribution surfaces) that upgrades live UI into polished, accessible experiences without requiring design mockups.
Install
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill frontend-ui-ux-engineerWhat is this skill?
- Designer-minded workflow for beautiful UI without design mockups
- Clear invoke vs do-not-invoke gates (backend-only, pure refactor, security-only)
- Core workflows for transforming functional UI into polished experiences
- Emphasis on micro-interactions, creative styling, and accessibility practices
- Prioritizes visual output when code structure is secondary
Adoption & trust: 2k installs on skills.sh; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
Your app functions but looks generic or untrustworthy because you have no designer and no high-fidelity mocks to implement from.
Who is it for?
Founders shipping marketing pages, dashboards, or MVPs who need standout UI when only rough wireframes or working HTML exist.
Skip if: Pure API/backend builds, performance-only tuning with no visual goals, security audits, or database/infrastructure tasks called out in the skill’s do-not-invoke list.
When should I use this skill?
Need to transform functional UI into visually stunning interfaces; design mockups don't exist but beautiful UI is required; visual polish and micro-interactions are priority.
What do I get? / Deliverables
You get agent-led visual and UX upgrades—layout, styling, motion, and accessibility—on real components instead of blank-slate backend work.
- Styled components and layout improvements
- UX-oriented interaction and accessibility adjustments
- Visual hierarchy and polish on target views
Recommended Skills
Journey fit
Spans multiple journey phases - primary shelf plus alternate fits below.
Primary shelf is build/frontend where components and pages get styled; the same lens applies when validating landing pages or refreshing growth surfaces. Focuses on transforming functional markup into stunning interfaces, micro-interactions, and accessible styling—not backend or infra.
Where it fits
Turn a plain validation landing into a credible hero, proof, and CTA layout before you collect signups.
Restyle a working dashboard so spacing, typography, and states feel product-grade.
Upgrade launch announcement or pricing page visuals for shareability without new mockups.
Improve readability and visual rhythm on in-app help or content hubs users revisit often.
How it compares
A visual polish workflow skill—not a component library installer and not a substitute for brand strategy or formal design systems.
Common Questions / FAQ
Who is frontend-ui-ux-engineer for?
Solo builders and indie teams who code their own frontend and need designer-level UI/UX output without hiring or complete Figma files.
When should I use frontend-ui-ux-engineer?
In build/frontend when elevating components; on validate/landing pages before launch; and on launch/growth pages when distribution creative needs a visual refresh—skip when the task is backend-only or non-visual refactor.
Is frontend-ui-ux-engineer safe to install?
It guides styling and structure in your repo; confirm source trust via the Security Audits panel on this page before granting broad filesystem or browser agent permissions.
SKILL.md
READMESKILL.md - Frontend Ui Ux Engineer
# Frontend UI/UX Engineer ## Purpose Provides frontend design and development expertise specializing in creating visually stunning, user-centric interfaces without requiring design mockups. Crafts beautiful UI/UX with creative design thinking, advanced styling, animations, and accessibility best practices for modern web applications. ## When to Use - Need to transform functional UI into visually stunning interfaces - Design mockups don't exist but beautiful UI is required - Visual polish and micro-interactions are priority - Component styling requires creative design thinking - User experience improvements needed without dedicated designer ## Quick Start **Invoke this skill when:** - Need to transform functional UI into visually stunning interfaces - Design mockups don't exist, but beautiful UI is required - Visual polish and micro-interactions are priority over code elegance - Component styling requires creative design thinking - User experience improvements needed without dedicated designer **Do NOT invoke when:** - Backend logic or API development needed - Pure code refactoring without visual changes - Performance optimization is sole priority - Security-focused development required - Database or infrastructure work --- --- ## Core Workflows ### Workflow 1: Transform Functional Component to Stunning UI **Use case:** Given a plain React component, make it visually exceptional **Input Example:** ```tsx // Before: Functional but plain function ProductCard({ product }: { product: Product }) { return ( <div> <img src={product.image} alt={product.name} /> <h3>{product.name}</h3> <p>${product.price}</p> <button>Add to Cart</button> </div> ); } ``` **Steps:** **1. Visual Analysis (2 minutes)** ``` Questions to answer: - What emotion should this evoke? (Premium? Playful? Trustworthy?) - What's the visual hierarchy? (Image > Name > Price > CTA) - What interactions delight users? (Hover effects, smooth transitions) - Where's the whitespace needed? (Breathing room around elements) ``` **2. Color & Typography Enhancement** ```tsx // After: Visual foundation established import { motion } from 'framer-motion'; function ProductCard({ product }: { product: Product }) { return ( <motion.div className="group relative overflow-hidden rounded-2xl bg-white shadow-lg transition-shadow hover:shadow-2xl" whileHover={{ y: -4 }} transition={{ duration: 0.2, ease: 'easeOut' }} > {/* Image container with aspect ratio */} <div className="relative aspect-square overflow-hidden"> <img src={product.image} alt={product.name} className="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" /> {/* Gradient overlay for readability */} <div className="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent opacity-0 transition-opacity group-hover:opacity-100" /> </div> {/* Content with proper spacing */} <div className="p-6 space-y-3"> <h3 className="text-xl font-semibold text-gray-900 line-clamp-2"> {product.name} </h3> <div className="flex items-baseline gap-2"> <span className="text-2xl font-bold text-blue-600"> ${product.price} </span> {product.compareAtPrice && ( <span className="text-sm text-gray-500 line-through"> ${product.compareAtPrice} </span> )} </div> {/* Enhanced CTA button */} <button className="w-full rounded-lg bg-blue-600 px-6 py-3 font-medium text-white transition-colors hover:bg-blue-700 active:bg-blue-800 disabled:bg-gray-300 disabled:cursor-not-allowed"> Add to Cart