Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
vasilyu1983 avatar

Software Ui Ux Design

  • 623 installs
  • 73 repo stars
  • Updated July 13, 2026
  • vasilyu1983/ai-agents-public

software-ui-ux-design is a design skill that generates consistent, high-quality UI/UX designs and implementation guidance for web applications and interfaces.

About

software-ui-ux-design is a UI/UX design skill from vasilyu1983/ai-agents-public listed on skills.sh with 505 installs. It helps developers produce consistent, high-quality interface designs and practical implementation guidance for web applications. Developers reach for software-ui-ux-design when they need structured UX decisions and visual direction before or during frontend implementation, rather than improvising layouts component by component. The skill focuses on web application interfaces where design consistency and developer-ready guidance matter.

  • Generates complete UI/UX specifications from natural language prompts
  • Produces component hierarchies, color systems, typography scales and interaction patterns
  • Creates implementation-ready designs optimized for Claude, Cursor and modern frontend stacks
  • Enforces design system consistency across multiple screens and states

Software Ui Ux Design by the numbers

  • 623 all-time installs (skills.sh)
  • +16 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #524 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/vasilyu1983/ai-agents-public --skill software-ui-ux-design

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs623
repo stars73
Last updatedJuly 13, 2026
Repositoryvasilyu1983/ai-agents-public

How do you design consistent web app UI/UX?

Generate consistent, high-quality UI/UX designs and implementation guidance for web applications and interfaces.

Who is it for?

Developers building web applications who need consistent UI/UX design direction and implementation-ready guidance without a dedicated design team.

Skip if: Native mobile-only UI work, pure backend services with no interface, or teams with finalized Figma files requiring only pixel-perfect CSS translation.

When should I use this skill?

The user asks for web UI/UX design, interface consistency, or implementation guidance for application screens and flows.

What you get

UI/UX design specifications and implementation guidance documents for web application interfaces

  • UI/UX design specs
  • implementation guidance

By the numbers

  • 505 installs on skills.sh
  • Source repository: vasilyu1983/ai-agents-public

Files

SKILL.mdMarkdownGitHub ↗

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

GoalDoAvoid
ClarityOne primary action per viewCompeting CTAs
AffordancesNative controls, strong signifiersClickable divs, hover-only
FeedbackImmediate visual responseSilent taps
Error preventionConstrain inputs, show examplesSubmit-then-fail
Error recoverySpecific message + next step"Something went wrong"
ConsistencyReuse patterns and termsSame term, different meanings

---

State Matrix

StateTreatmentWhen
LoadingPlaceholder matching layoutData fetching
EmptyMessage + CTAZero items
ErrorAlert + retry actionRequest fails
OfflineBanner + cached indicatorNo network
DegradedWarning + limited functionalityPartial 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

RequirementImplementation
Focus not obscuredKeep focus visible with sticky UI
Focus appearanceClear visible indicator
Dragging movementsNon-drag alternatives
Target size≥24×24 CSS px
Redundant entryDon't re-request known info
Accessible authAvoid 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"
    }
  }
}
LayerExamplesPurpose
Primitiveblue-500, 16pxRaw values
Semanticcolor-primaryIntent-based
Componentbutton-bgComponent-specific

---

Resources

ResourcePurpose
references/implementation-research-workflow.mdResearch before building
references/design-systems.mdDesign system patterns
references/component-library-comparison.mdshadcn, MUI, Radix
references/nielsen-heuristics.mdHeuristic evaluation
references/wcag-accessibility.mdWCAG compliance
references/demographic-inclusive-design.mdAge-specific UX
references/neurodiversity-design.mdADHD, autism, dyslexia
references/ui-generation-workflows.mdUI from scratch
references/ai-design-tools-2025.mdFigma AI, v0
references/cro-framework.mdConversion optimization
references/mobile-ux-patterns.mdMobile UX: thumb zone, navigation, gestures, platform patterns
references/form-design-patterns.mdForm UX: layout, validation, multi-step, accessibility
references/dark-mode-theming.mdDark mode & multi-theme: tokens, CSS, platform implementation
references/ai-automation-ux.mdAI/automation UX: chatbots, agents, progressive disclosure
references/cultural-design-patterns.mdCross-cultural design: RTL, CJK, color semiotics, locale UX
references/frontend-aesthetics-2025.mdVisual design trends 2025: glassmorphism, variable fonts, 3D
references/simplification-patterns.mdInterface simplification for non-technical users, digital literacy spectrum
references/modern-ux-patterns-2025.mdModern UX patterns: command palettes, skeleton states, dark mode, 2026 trends
references/data-visualization-ux.mdData viz: chart selection, dashboards, accessible charts
references/typography-systems.mdType scales, font pairing, variable fonts, design tokens
references/performance-ux-vitals.mdCore Web Vitals UX, perceived performance, loading patterns
references/prototype-to-production.mdPrototype-to-production alignment, dashboard QA, design-to-ship checks
references/operational-playbook.mdDecision frameworks

Templates

TemplatePurpose
assets/design-brief.mdDesign brief
assets/ux-review-checklist.mdUX review
assets/ui-generation/full-ui-spec.mdUI spec
assets/audits/cro-audit-template.mdCRO audit
assets/accessibility/template-wcag-testing.mdWCAG testing
assets/audits/simplification-audit-template.mdSimplification audit
assets/design-systems/template-design-system.mdDesign system setup
assets/component-libraries/template-shadcn-ui.mdshadcn/ui integration
assets/component-libraries/template-mui-material-ui.mdMUI / Material UI
assets/interaction-patterns/template-micro-interactions.mdMicro-interactions

Pattern Inspiration

Related Skills

SkillPurpose
software-ux-researchResearch (use first)
software-frontendImplementation
software-mobileMobile patterns
product-managementProduct 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.

Related skills

How it compares

Use software-ui-ux-design for web UX specs and guidance; choose Tailwind or component skills when the design is set and you only need CSS implementation patterns.

FAQ

What does software-ui-ux-design produce?

software-ui-ux-design generates consistent UI/UX designs and implementation guidance for web applications and interfaces. Output targets developers who need design direction before or during frontend build work.

How popular is software-ui-ux-design on skills.sh?

software-ui-ux-design from vasilyu1983/ai-agents-public shows 505 installs on skills.sh, indicating community adoption for web UI/UX design and implementation guidance workflows.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.