software-ui-ux-design
Design intuitive, accessible, user-centered interfaces.
Works with
1
total installs
1
this week
53
GitHub stars
0
upvotes
Install Skill
Run in your terminal
1
installs
1
this week
53
stars
Installation Guide
How to use software-ui-ux-design on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your machine
- ›Node.js 16+ with npm — verify with
node --version - ›Active project directory where you want to add
software-ui-ux-design
Run the install command
Execute the skills CLI command in your project's root directory to begin installation:
Fetches software-ui-ux-design from vasilyu1983/ai-agents-public and configures it for Cursor.
Select Cursor when prompted
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate software-ui-ux-design. Access via /software-ui-ux-design in your agent's command palette.
Security Notice
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.
Documentation
Software UI/UX Design
Design intuitive, accessible, user-centered interfaces.
Baselines (Mar 2026):
- Accessibility: WCAG 2.2 Level AA — W3C
- Performance: Core Web Vitals (LCP ≤2.5s, INP ≤200ms, CLS ≤0.1) — web.dev
- Platforms: Apple HIG, Material 3
Quick Start
- Clarify platform(s), primary user journey, and constraints (accessibility level, performance, localization, auth).
- Choose track: audit an existing UI (heuristics + state matrix + WCAG) or design a new UI (IA + flows + UI spec).
- Produce artifacts: recommendations, acceptance criteria, and a handoff spec (components, states, copy, tokens).
Decision Tree
Design challenge:
├─ What to build? → Use software-ux-research first
├─ Improving existing UI?
│ ├─ Usability issues → Heuristic review
│ ├─ Accessibility gaps → WCAG 2.2 audit
│ ├─ Inconsistency → Design system alignment
│ └─ Conversion issues → CRO audit
├─ Building new UI?
│ └─ references/ui-generation-workflows.md
├─ Non-technical users / simplification?
│ └─ references/simplification-patterns.md
├─ Specific demographics?
│ └─ references/demographic-inclusive-design.md
└─ Platform constraints?
├─ Web → semantics + focus + reflow
├─ iOS → system nav + Dynamic Type
└─ Android → Material + edge-to-edge
Interaction Checklist
| Goal | Do | Avoid |
|---|---|---|
| Clarity | One primary action per view | Competing CTAs |
| Affordances | Native controls, strong signifiers | Clickable divs, hover-only |
| Feedback | Immediate visual response | Silent taps |
| Error prevention | Constrain inputs, show examples | Submit-then-fail |
| Error recovery | Specific message + next step | "Something went wrong" |
| Consistency | Reuse patterns and terms | Same term, different meanings |
State Matrix
| State | Treatment | When |
|---|---|---|
| Loading | Placeholder matching layout | Data fetching |
| Empty | Message + CTA | Zero items |
| Error | Alert + retry action | Request fails |
| Offline | Banner + cached indicator | No network |
| Degraded | Warning + limited functionality | Partial failure |
Platform Constraints
Web
- Semantic HTML first (no "div soup")
- ARIA only when needed
- Manage focus on SPA navigation
- Reflow at 320 CSS px (WCAG 1.4.10)
- Target size ≥24px (WCAG 2.5.8)
iOS
- System navigation (tab bar, nav bar)
- Dynamic Type support
- Dark mode + system materials
- Handle Safe Areas
Android
- Material 3 components
- Dynamic Color (Material You)
- Edge-to-edge content
- Handle predictive back
WCAG 2.2 Key Changes
| Requirement | Implementation |
|---|---|
| Focus not obscured | Keep focus visible with sticky UI |
| Focus appearance | Clear visible indicator |
| Dragging movements | Non-drag alternatives |
| Target size | ≥24×24 CSS px |
| Redundant entry | Don't re-request known info |
| Accessible auth | Avoid cognitive tests |
Reduced Motion
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
Design Tokens
{
"color": {
"primary": {
"$value": "#0066cc",
"$type": "color"
}
},
"spacing": {
"sm": {
"$value": "8px",
"$type": "dimension"
}
}
}
| Layer | Examples | Purpose |
|---|---|---|
| Primitive | blue-500, 16px |
Raw values |
| Semantic | color-primary |
Intent-based |
| Component | button-bg |
Component-specific |
Resources
| Resource | Purpose |
|---|---|
| references/implementation-research-workflow.md | Research before building |
| references/design-systems.md | Design system patterns |
| references/component-library-comparison.md | shadcn, MUI, Radix |
| references/nielsen-heuristics.md | Heuristic evaluation |
| references/wcag-accessibility.md | WCAG compliance |
| references/demographic-inclusive-design.md | Age-specific UX |
| references/neurodiversity-design.md | ADHD, autism, dyslexia |
| references/ui-generation-workflows.md | UI from scratch |
| references/ai-design-tools-2025.md | Figma AI, v0 |
| references/cro-framework.md | Conversion optimization |
| references/mobile-ux-patterns.md | Mobile UX: thumb zone, navigation, gestures, platform patterns |
| references/form-design-patterns.md | Form UX: layout, validation, multi-step, accessibility |
| references/dark-mode-theming.md | Dark mode & multi-theme: tokens, CSS, platform implementation |
| references/ai-automation-ux.md | AI/automation UX: chatbots, agents, progressive disclosure |
| references/cultural-design-patterns.md | Cross-cultural design: RTL, CJK, color semiotics, locale UX |
| references/frontend-aesthetics-2025.md | Visual design trends 2025: glassmorphism, variable fonts, 3D |
| references/simplification-patterns.md | Interface simplification for non-technical users, digital literacy spectrum |
| references/modern-ux-patterns-2025.md | Modern UX patterns: command palettes, skeleton states, dark mode, 2026 trends |
| references/data-visualization-ux.md | Data viz: chart selection, dashboards, accessible charts |
| references/typography-systems.md | Type scales, font pairing, variable fonts, design tokens |
| references/performance-ux-vitals.md | Core Web Vitals UX, perceived performance, loading patterns |
| references/prototype-to-production.md | Prototype-to-production alignment, dashboard QA, design-to-ship checks |
| references/operational-playbook.md | Decision frameworks |
Templates
| Template | Purpose |
|---|---|
| assets/design-brief.md | Design brief |
| assets/ux-review-checklist.md | UX review |
| assets/ui-generation/full-ui-spec.md | UI spec |
| assets/audits/cro-audit-template.md | CRO audit |
| assets/accessibility/template-wcag-testing.md | WCAG testing |
| assets/audits/simplification-audit-template.md | Simplification audit |
| assets/design-systems/template-design-system.md | Design system setup |
| assets/component-libraries/template-shadcn-ui.md | shadcn/ui integration |
| assets/component-libraries/template-mui-material-ui.md | MUI / Material UI |
| assets/interaction-patterns/template-micro-interactions.md | Micro-interactions |
Pattern Inspiration
- Mobbin — 300k+ screenshots
- Page Flows — User flow recordings
- Refero Design — Web design references
Related Skills
| Skill | Purpose |
|---|---|
| software-ux-research | Research (use first) |
| software-frontend | Implementation |
| software-mobile | Mobile patterns |
| product-management | Product strategy |
Fact-Checking
- Use web search/web fetch to verify current external facts, versions, pricing, deadlines, regulations, or platform behavior before final answers.
- Prefer primary sources; report source links and dates for volatile information.
- If web access is unavailable, state the limitation and mark guidance as unverified.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
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
457anthropics/claude-code
high-end-visual-design
141leonxlnx/taste-skill
antigravity-design-expert
88sickn33/antigravity-awesome-skills
interior-design-expert
80erichowens/some_claude_skills
tui-design
61hyperb1iss/hyperskills
design-motion-principles
47kylezantos/design-motion-principles
Reviews
- NNoah Rahman★★★★★Dec 28, 2024
software-ui-ux-design fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- GGanesh Mohane★★★★★Dec 24, 2024
software-ui-ux-design is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ZZaid Tandon★★★★★Dec 20, 2024
Useful defaults in software-ui-ux-design — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- WWilliam Smith★★★★★Dec 20, 2024
software-ui-ux-design has been reliable in day-to-day use. Documentation quality is above average for community skills.
- KKabir Bhatia★★★★★Dec 8, 2024
I recommend software-ui-ux-design for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- WWilliam Malhotra★★★★★Nov 27, 2024
Keeps context tight: software-ui-ux-design is the kind of skill you can hand to a new teammate without a long onboarding doc.
- IIsabella Jackson★★★★★Nov 15, 2024
software-ui-ux-design is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- LLayla White★★★★★Nov 11, 2024
We added software-ui-ux-design from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- SSophia Rahman★★★★★Nov 11, 2024
Solid pick for teams standardizing on skills: software-ui-ux-design is focused, and the summary matches what you get after install.
- LLucas Iyer★★★★★Oct 18, 2024
Registry listing for software-ui-ux-design matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 57
Discussion
Comments — not star reviews- No comments yet — start the thread.