This skill encodes the design philosophy behind Family — a product widely praised for feeling alive, welcoming, and intentional. Originally documented by Benji Taylor at benji.org/family-values.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondesign-with-tasteExecute the skills CLI command in your project's root directory to begin installation:
Fetches design-with-taste from cristicretu/family-taste-skill and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate design-with-taste. Access via /design-with-taste in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
2
total installs
2
this week
8
GitHub stars
0
upvotes
Run in your terminal
2
installs
2
this week
8
stars
This skill encodes the design philosophy behind Family — a product widely praised for feeling alive, welcoming, and intentional. Originally documented by Benji Taylor at benji.org/family-values.
Read this before writing any UI code. Every time.
The user wants something built. Your job is to make it feel like a human who gives a shit designed it.
Ordered by priority. You cannot have Delight without Fluidity, and you cannot have Fluidity without Simplicity.
"Each action by the user makes the interface unfold and evolve, much like walking through a series of interconnected rooms."
The problem: Most UIs dump everything at once — every feature, every option, every edge case, all visible, all the time. This transfers cognitive burden from the designer to the user.
The principle: Show only what matters right now. The interface should feel like walking through rooms — you glimpse what's next before you arrive.
Rules:
// GOOD: Progressive tray — compact, focused, context-aware
<Sheet>
<SheetTrigger>Confirm Send</SheetTrigger>
<SheetContent className="h-[45vh]"> {/* height varies from parent */}
<SheetHeader>
<SheetTitle>Review Transaction</SheetTitle>
<DismissButton />
</SheetHeader>
{/* Core info only — no extras */}
<Button>Send $42.00</Button>
</SheetContent>
</Sheet>
Self-check: Can the user tell within 1 second what to do next? If not, simplify.
"We fly instead of teleport."
The problem: Static transitions make products feel dead. A dead product feels uncared for. Instant cuts destroy spatial orientation — where did that come from? Where did it go?
The principle: Treat your app as a space with unbreakable physical rules. Know why a transition makes sense architecturally before adding it. Every element moves from somewhere to somewhere.
Rules:
npm i torph) — dependency-free, works with React/Vue/Svelte. Crossfade is the minimum fallback; shared-letter morphing is the ideal.→ becomes a ← on back-navigation. An accordion chevron rotates on expand.// Text morphing — use torph
import { TextMorph } from 'torph/react';
<TextMorph>{label}</TextMorph> // handles shared-letter animation automatically
// Directional tab transitions
const direction = newIndex > currentIndex ? 1 : -1;
<motion.div
key={currentTab}
initial={{ x: direction * 20, opacity: 0 }}
animate={{ x: 0, opacity: 1 }}
exit={{ x: -direction * 20, opacity: 0 }}
transition={{ duration: 0.3, ease: [0.16, 1, 0.3, 1] }}
/>
// Shared element: card → detail view
<motion.div
layoutId={`card-${id}`}
className={isExpanded ? "fixed inset-0 rounded-none" : "rounded-xl"}
transition={{ duration: 0.4, ease: [0.16, 1, 0.3, 1] }}
/>
The golden easing curve: cubic-bezier(0.16, 1, 0.3, 1) — fast start, gentle settle. Default for all entrances and morphs. Use ease-in (cubic-bezier(0.4, 0, 1, 1)) for exits only. Never use linear.
Self-check: Record your screen and play back at 0.5x speed. Can you follow every element's journey? Anything that teleports needs a transition.
"Mastering delight is mastering selective emphasis."
The problem: Either zero personality (corporate slop) or everything bounces and sparkles (annoying). Both miss the point.
The principle: The Delight-Impact Curve — the less frequently a feature is used, the more delightful it should be. Daily actions need efficiency with subtle touches. Rare moments deserve theatrical ones.
Delight ↑
| * (rare features: theatrical)
| *
| *
| * * (medium: memorable)
| * *
|* * * (frequent: subtle)
+------------------→ Feature frequency
Rules:
npm i liveline) — one canvas, no dependencies beyond React 18, 60fps interpolation. For 60fps value overlays, update the DOM directly rather than through React state to avoid re-render overhead.Delight pattern library — concrete moments proven to work:
| Feature | Frequency | Delight Level | Pattern |
|---|---|---|---|
| Number input | Daily | Subtle | Commas shift position as digits are typed |
| Tab/chart navigation | Daily | Subtle | Arrow icon flips direction with value change |
| Empty state | First visit | Medium | Animated arrow + floating illustration |
| Item reorder | Occasional | Medium | Stacking animation + smooth drop |
| Delete/trash | Occasional | Medium | Item tumbles into skeuomorphic trash + sound |
| First feature use | Once | High | Animated guide arrow in empty state |
| Critical completion (backup, onboarding) | Once | Theatrical | Confetti explosion + celebratory sound |
| Easter egg (QR, hidden gesture) | Rare | Theatrical | Ripple on tap → sequin effect on swipe |
// Animated number with smooth comma shifting
function AnimatedNumber({ value }) {
const spring = useSpring(value, Implementation Guide
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Steps
- 1Install skill using provided installation command
- 2Test with simple use case relevant to your work
- 3Evaluate output quality and relevance
- 4Iterate on prompts to improve results
- 5Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Related Skills
frontend-design
633anthropics/claude-code
Frontendtag: designhigh-end-visual-design
182leonxlnx/taste-skill
Frontendtag: designantigravity-design-expert
181sickn33/antigravity-awesome-skills
Frontendtag: designinterior-design-expert
133erichowens/some_claude_skills
Frontendtag: designtui-design
95hyperb1iss/hyperskills
Frontendtag: designgame-ui-design
53omer-metin/skills-for-antigravity
Frontendtag: designReviews
4.4★★★★★41 reviews- YYuki Okafor★★★★★Dec 12, 2024
design-with-taste reduced setup friction for our internal harness; good balance of opinion and flexibility.
- WWilliam Huang★★★★★Dec 12, 2024
Useful defaults in design-with-taste — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- GGanesh Mohane★★★★★Dec 8, 2024
design-with-taste has been reliable in day-to-day use. Documentation quality is above average for community skills.
- IIshan Flores★★★★★Dec 8, 2024
We added design-with-taste from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- RRahul Santra★★★★★Nov 27, 2024
Keeps context tight: design-with-taste is the kind of skill you can hand to a new teammate without a long onboarding doc.
- EEvelyn Sanchez★★★★★Nov 27, 2024
design-with-taste fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- IIshan Rahman★★★★★Nov 27, 2024
design-with-taste is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- SSakshi Patil★★★★★Nov 15, 2024
design-with-taste reduced setup friction for our internal harness; good balance of opinion and flexibility.
- AAva Smith★★★★★Nov 3, 2024
I recommend design-with-taste for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- LLi Haddad★★★★★Oct 22, 2024
Solid pick for teams standardizing on skills: design-with-taste is focused, and the summary matches what you get after install.
showing 1-10 of 41
1 / 5Discussion
Comments — not star reviews- No comments yet — start the thread.