design-taste-frontend-v1

Generates React and Tailwind frontend code following opinionated design and motion rules.

Updated Jul 10, 2026
One-click install
npx skills add https://github.com/noticesfromchat/macos-app-digest --skill design-taste-frontend-v1-noticesfromchat
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: design-taste-frontend-v1
Source: https://github.com/noticesfromchat/macos-app-digest/tree/main/.agents/skills/taste-skill-v1
Command: npx skills add https://github.com/noticesfromchat/macos-app-digest --skill design-taste-frontend-v1-noticesfromchat

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI-generated frontend code often falls into generic visual clichés such as centered hero sections, purple gradients, Inter font, and three-column card rows. This Skill enforces a structured set of design engineering directives so generated React and Tailwind interfaces follow consistent typography, color, layout, motion, and performance rules. ## Core Features & Use Cases - Design Baseline Configuration: Drives output through three tunable dials (DESIGN_VARIANCE, MOTION_INTENSITY, VISUAL_DENSITY) that control layout asymmetry, animation intensity, and information density. - Anti-Cliché Rules: Bans common AI design tells such as neon glows, pure black, gradient text, generic placeholder names, and default shadcn/ui styling. - Motion & Bento Patterns: Provides Framer Motion spring physics specs, staggered orchestration, and five animated Bento card archetypes for SaaS dashboards. - Use Case: Ask for a SaaS dashboard landing page and receive Next.js code with asymmetric layouts, Geist typography, liquid glass panels, and isolated client components for perpetual micro-animations. ## Quick Start Generate a React dashboard landing page using the design taste baseline with Tailwind styling and Framer Motion animations.

Frequently Asked Questions about design-taste-frontend-v1

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

FAQPage Schema
How do I avoid generic AI-generated frontend designs?

Apply explicit design constraints covering typography, color, and layout rather than accepting defaults. This Skill bans patterns like Inter font, purple gradients, centered heroes, and three-column card rows, replacing them with asymmetric grids, curated font stacks, and single-accent palettes.

How to add Framer Motion animations to a Next.js dashboard?

Extract interactive components into isolated leaf components with 'use client' at the top, since Server Components cannot hold animation state. Use spring physics with stiffness 100 and damping 20, and memoize perpetual animations to prevent parent re-renders.

Does this work with Tailwind CSS v3 and v4?

Yes, but you must check package.json first because the syntax differs between versions. For v4, do not use the tailwindcss plugin in postcss.config.js; use @tailwindcss/postcss or the Vite plugin instead.

Can I use shadcn/ui components with these design rules?

Yes, shadcn/ui is allowed but never in its generic default state. You must customize the radii, colors, and shadows to match the project's aesthetic before shipping the components.

Why should I avoid h-screen for hero sections?

Using h-screen causes layout jumping on mobile browsers like iOS Safari because the viewport height changes when browser chrome appears. Use min-h-[100dvh] instead for stable full-height sections.

When should I use GSAP instead of Framer Motion?

Use GSAP or ThreeJS only for isolated full-page scrolltelling or canvas backgrounds, wrapped in useEffect cleanup blocks. Never mix them with Framer Motion in the same component tree; Framer Motion remains the default for UI and Bento interactions.