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

Generic Fullstack Ux Designer

  • 129 installs
  • 86 repo stars
  • Updated July 17, 2026
  • travisjneuman/.claude

Use generic-fullstack-ux-designer for development tasks

About

generic-fullstack-ux-designer: A skill for development. This provides functionality for development workflows.

  • generic-fullstack-ux-designer

Generic Fullstack Ux Designer by the numbers

  • 129 all-time installs (skills.sh)
  • +3 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #2,750 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/travisjneuman/.claude --skill generic-fullstack-ux-designer

Add your badge

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

Listed on Skillselion
Installs129
repo stars86
Last updatedJuly 17, 2026
Repositorytravisjneuman/.claude

What it does

Use generic-fullstack-ux-designer for development tasks

Files

SKILL.mdMarkdownGitHub ↗

Fullstack UX Designer

Professional UX expertise for Next.js/NestJS full-stack applications.

Extends: Generic UX Designer - Read base skill for design thinking process, research methods, interaction patterns, and critique framework.

Full-Stack UX Considerations

Server-Side Rendering UX

ScenarioUX Pattern
Initial page loadHydration-safe skeleton screens
Data fetchingServer components for static, client for dynamic
AuthenticationProtected routes with redirect UX
Form submissionProgressive enhancement

Hydration-Safe Patterns

// ✓ Avoid hydration mismatch
function Timestamp({ date }: { date: Date }) {
  const [formatted, setFormatted] = useState("");

  useEffect(() => {
    setFormatted(date.toLocaleString()); // Client-side only
  }, [date]);

  return <span>{formatted || "Loading..."}</span>;
}

API Loading & Error States

Loading State Hierarchy

DurationPatternExample
< 100msNo indicatorButton click
100ms - 1sSubtle spinnerForm submit
1s - 5sSkeleton screenPage fetch
> 5sProgress barFile upload

Error State Design

API Error → Parse Error → User-Friendly Message → Recovery Action
Error TypeUser MessageRecovery
400 ValidationShow field errorsFix and retry
401 Unauthorized"Please log in"Redirect to login
404 Not Found"Item not found"Navigate back
500 Server Error"Something went wrong"Retry button

Optimistic UI Pattern

// Show immediate feedback, rollback on error
async function toggleLike(postId: string) {
  // 1. Update UI immediately
  setLiked(true);
  setLikeCount((c) => c + 1);

  try {
    // 2. Call API
    await api.like(postId);
  } catch {
    // 3. Rollback on failure
    setLiked(false);
    setLikeCount((c) => c - 1);
    showToast("Failed to like");
  }
}

When to Use Optimistic UI

ActionOptimistic?Why
Like/favoriteYesLow risk, common action
Add commentYesCan show pending state
Delete itemNoDestructive, needs confirm
PaymentNoCritical, must verify
Form submitMaybeDepends on complexity

Form Submission UX

Client → Server Flow

User Input → Client Validation → Submit → Server Validation → Response
     ↓              ↓              ↓              ↓              ↓
  Feedback    Inline errors   Loading...   Field errors    Success/Error

Multi-Step Forms

// Show progress and allow back navigation
<FormStepper
  steps={["Details", "Payment", "Confirm"]}
  currentStep={step}
  onBack={() => setStep((s) => s - 1)}
/>

Authentication UX

Login Flow Patterns

StateUX
Loading authFull-page skeleton
Not logged inShow login form
Logging inDisable form, show spinner
SuccessRedirect with toast
ErrorInline error, keep form data

Protected Route Pattern

// Redirect unauthenticated users
if (!user && !loading) {
  return <Navigate to="/login" state={{ from: location }} />;
}

Real-Time Updates

PatternUse Case
PollingLow-frequency updates (notifications)
WebSocketChat, live collaboration
SSEOne-way server updates

Presence Indicators

  • Online status dots
  • "User is typing..." indicators
  • Collaborative cursors

Full-Stack Design Critique

AspectQuestions
Loading statesWhat shows during API calls?
Error recoveryCan users recover from errors?
Offline behaviorWhat happens without network?
Auth transitionsSmooth login/logout experience?
Data freshnessIs stale data clearly indicated?

See Also

  • Generic UX Designer - Base methodology
  • UX Principles - Research methods, heuristics
  • Design Patterns - Visual patterns

Related skills

Backend & APIsbackendintegrations

This week in AI coding

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

unsubscribe anytime.