$22
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionui-design-patternsExecute the skills CLI command in your project's root directory to begin installation:
Fetches ui-design-patterns from manutej/luxor-claude-marketplace 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 ui-design-patterns. Access via /ui-design-patterns 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
0
total installs
0
this week
49
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
49
stars
A comprehensive guide to common user interface design patterns, component patterns, interaction patterns, and accessibility best practices for building modern web and mobile applications.
Use this skill when you need to:
UI patterns are reusable solutions to common design problems. They provide:
A design system is a collection of reusable components, patterns, and guidelines:
Breaking interfaces into atomic units:
Organize content into multiple panels shown one at a time.
When to Use:
Anatomy:
[Tab 1] [Tab 2] [Tab 3]
─────────────────────────
Content for active tab
Best Practices:
Accessibility:
role="tablist", role="tab", role="tabpanel"aria-selected and aria-controlsExample HTML:
<div role="tablist" aria-label="Content sections">
<button role="tab" aria-selected="true" aria-controls="panel-1" id="tab-1">
Overview
</button>
<button role="tab" aria-selected="false" aria-controls="panel-2" id="tab-2">
Details
</button>
<button role="tab" aria-selected="false" aria-controls="panel-3" id="tab-3">
Settings
</button>
</div>
<div role="tabpanel" id="panel-1" aria-labelledby="tab-1">
Overview content...
</div>
Vertically stacked sections with expand/collapse functionality.
When to Use:
Types:
Best Practices:
Accessibility:
<button> for headersaria-expanded attributearia-controls to link header and panelExample Structure:
<div class="accordion">
<h3>
<button aria-expanded="false" aria-controls="section-1">
Section Title
<span class="icon" aria-hidden="true">▼</span>
</button>
</h3>
<div id="section-1" hidden>
<p>Section content...</p>
</div>
</div>
Show user's location in site hierarchy.
When to Use:
Best Practices:
Accessibility:
<nav> with aria-label="Breadcrumb"aria-current="page"Example:
<nav aria-label="Breadcrumb">
<ol>
<li><a href="/">Home</a></li>
<li><a href="/products">Products</a></li>
<li><a href="/products/electronics">Electronics</a></li>
<li aria-current="page">Laptops</li>
</ol>
</nav>
Navigate through large sets of content split across pages.
Types:
When to Use:
Best Practices:
Accessibility:
<nav> with aria-label="Pagination"aria-current="page"Reveals additional options on click or hover.
Best Practices:
Large dropdown showing multiple columns and categories.
When to Use:
Best Practices:
Collapsible menu for mobile navigation.
Best Practices:
Accessibility:
Provide feedback on user input correctness.
Validation Types:
Timing:
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ 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.
anthropics/claude-code
sickn33/antigravity-awesome-skills
leonxlnx/taste-skill
erichowens/some_claude_skills
hyperb1iss/hyperskills
omer-metin/skills-for-antigravity
Solid pick for teams standardizing on skills: ui-design-patterns is focused, and the summary matches what you get after install.
Keeps context tight: ui-design-patterns is the kind of skill you can hand to a new teammate without a long onboarding doc.
We added ui-design-patterns from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in ui-design-patterns — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
ui-design-patterns has been reliable in day-to-day use. Documentation quality is above average for community skills.
Keeps context tight: ui-design-patterns is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in ui-design-patterns — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
ui-design-patterns is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
ui-design-patterns has been reliable in day-to-day use. Documentation quality is above average for community skills.
ui-design-patterns reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 66