skills/atman36/frontend-design/SKILL.md
Create distinctive, production-grade frontend interfaces with exceptional design quality. Use when building web components, pages, or applications that need creative, polished aesthetics.
npx skillsauth add aiskillstore/marketplace frontend-designInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Guide creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices that create memorable user experiences.
Invoke when:
Create interfaces that are unforgettable through intentional design choices. Both bold maximalism and refined minimalism work - the key is having a clear aesthetic direction and executing it with precision.
Anti-patterns to avoid:
Before writing any code, establish:
Pick a BOLD direction and commit to it:
Aesthetic Options (use for inspiration, create unique variations):
Ask: What makes this UNFORGETTABLE?
Critical: Choose fonts that are beautiful, unique, and interesting.
Avoid: Generic fonts (Arial, Inter, Roboto, system fonts)
Seek: Distinctive choices that elevate aesthetics
Strategy:
Examples:
/* Bold Display + Refined Body */
font-family: 'Syne', sans-serif; /* Display */
font-family: 'IBM Plex Sans', sans-serif; /* Body */
/* Editorial Style */
font-family: 'Playfair Display', serif; /* Display */
font-family: 'Work Sans', sans-serif; /* Body */
/* Modern Geometric */
font-family: 'Clash Display', sans-serif; /* Display */
font-family: 'Satoshi', sans-serif; /* Body */
Strategy: Commit to a cohesive aesthetic direction
Best practices:
Implementation:
:root {
/* Primary palette - be bold */
--color-primary: #FF6B35;
--color-accent: #004E89;
--color-neutral: #F7F7F2;
/* Atmospheric background */
--bg-gradient: linear-gradient(135deg,
var(--color-primary) 0%,
var(--color-accent) 100%);
/* Depth and layering */
--surface-glass: rgba(255, 255, 255, 0.1);
--surface-overlay: rgba(0, 0, 0, 0.05);
}
Philosophy: Prioritize high-impact moments over scattered micro-interactions
Strategies:
animation-delay for choreographyCSS-first approach (for HTML):
/* Staggered page load */
.hero-title {
animation: slideUp 0.6s ease-out;
}
.hero-subtitle {
animation: slideUp 0.6s ease-out 0.1s backwards;
}
.hero-cta {
animation: slideUp 0.6s ease-out 0.2s backwards;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
React with Motion library:
import { motion } from 'framer-motion';
const container = {
hidden: { opacity: 0 },
show: {
opacity: 1,
transition: {
staggerChildren: 0.1
}
}
};
const item = {
hidden: { opacity: 0, y: 20 },
show: { opacity: 1, y: 0 }
};
<motion.div variants={container} initial="hidden" animate="show">
<motion.h1 variants={item}>Title</motion.h1>
<motion.p variants={item}>Subtitle</motion.p>
<motion.button variants={item}>CTA</motion.button>
</motion.div>
Principles:
Techniques:
Goal: Create atmosphere and depth, not just solid colors
Creative approaches:
Example - Atmospheric background:
.hero {
position: relative;
background:
radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 50%, rgba(0, 78, 137, 0.3) 0%, transparent 50%),
linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
}
/* Noise overlay */
.hero::after {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
pointer-events: none;
}
IMPORTANT: Match code complexity to aesthetic vision
Need elaborate code with:
Need restraint with:
Remember: Elegance comes from executing the vision well, not from complexity level.
All implementations must be:
CRITICAL: No two designs should be the same
For each project, vary:
Remember: Claude is capable of extraordinary creative work. Don't hold back - show what can truly be created when thinking outside the box and committing fully to a distinctive vision.
import { motion } from 'framer-motion';
export function DistinctiveHero() {
return (
<section className="relative min-h-screen overflow-hidden bg-gradient-to-br from-amber-50 via-rose-50 to-violet-50">
{/* Atmospheric background effect */}
<div className="absolute inset-0 opacity-30">
<div className="absolute top-1/4 left-1/4 w-96 h-96 bg-amber-400 rounded-full mix-blend-multiply filter blur-3xl animate-blob" />
<div className="absolute top-1/3 right-1/4 w-96 h-96 bg-rose-400 rounded-full mix-blend-multiply filter blur-3xl animate-blob animation-delay-2000" />
<div className="absolute bottom-1/4 left-1/2 w-96 h-96 bg-violet-400 rounded-full mix-blend-multiply filter blur-3xl animate-blob animation-delay-4000" />
</div>
{/* Content with staggered animation */}
<motion.div
className="relative z-10 container mx-auto px-6 py-24"
initial="hidden"
animate="visible"
variants={{
hidden: { opacity: 0 },
visible: {
opacity: 1,
transition: { staggerChildren: 0.15 }
}
}}
>
<motion.h1
className="font-display text-7xl md:text-9xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-amber-600 via-rose-600 to-violet-600"
variants={{
hidden: { opacity: 0, y: 50 },
visible: { opacity: 1, y: 0 }
}}
>
Distinctive
</motion.h1>
<motion.p
className="font-body text-xl md:text-2xl text-gray-700 max-w-2xl mt-6"
variants={{
hidden: { opacity: 0, y: 50 },
visible: { opacity: 1, y: 0 }
}}
>
Breaking free from generic design patterns
</motion.p>
<motion.button
className="mt-12 px-8 py-4 bg-gradient-to-r from-amber-600 to-rose-600 text-white font-semibold rounded-full shadow-2xl hover:shadow-amber-500/50 transition-all duration-300 hover:scale-105"
variants={{
hidden: { opacity: 0, y: 50 },
visible: { opacity: 1, y: 0 }
}}
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
>
Explore Further
</motion.button>
</motion.div>
</section>
);
}
Before delivering:
Works well with:
quality-gates - Validate accessibility and performancereact-optimizer - Optimize React component performancenextjs-optimization - Build performant Next.js applicationsdesigner agent - Comprehensive design system workdevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.