skills/user-profile/SKILL.md
Use when implementing user profile and account management.
npx skillsauth add thedaviddias/ux-patterns-for-developers user-profileInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
User profile and account management
User Profile is the interface that displays a user's identity, activity, and public or personal information. Profiles serve as both an identity card (how others see the user) and a self-management tool (how the user views and edits their own data). A well-designed profile balances information density with visual clarity, supports both viewing and editing modes, and respects privacy by giving users control over what information is visible to others.
Use User Profile to display and manage user identity, activity, and personal information. Common scenarios include:
references/pattern.md, then choose the smallest viable variation.Do's ✅
alt text on avatar images that includes the user's name<time> elements with datetime attributes for datesResponsive Avatar Sizes
<img
src="/avatars/jane-96.jpg"
srcset="/avatars/jane-192.jpg 2x"
alt="Jane Doe"
width="96"
height="96"
loading="eager"
/>
The Problem: Users without a profile picture see a broken image or empty space, making the profile look broken.
How to Fix It: Show a fallback: initials-based avatar (first and last initials with a background color) or a generic silhouette icon.
The Problem: A new user's profile page shows blank sections with no guidance on what to add.
How to Fix It: Show prompts for empty fields: "Add a bio to introduce yourself", "Upload a profile picture". These disappear once the user fills in the data.
The Problem: Clicking "Edit profile" navigates to a separate page, losing the user's context and requiring a page load.
How to Fix It: Use inline editing (click to edit fields in place) or a modal overlay. Keep the edit experience on the same page as the view.
For full implementation detail, examples, and testing notes, see references/pattern.md.
Pattern page: https://uxpatterns.dev/patterns/authentication/user-profile
tools
Use when implementing multi-step forms and processes.
content-media
Use when implementing video playback with controls.
development
Use when choosing, comparing, or implementing UX patterns across the UX Patterns for Developers corpus.
tools
Use when implementing two-factor authentication setup and verification.