Agent skill · Frontend

ux-feedback

Add appropriate user feedback states (loading, success, error, empty) to a component or page

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill ux-feedback --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/ux-feedback/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# UX Feedback States Generator ## When to Use Use this skill when you need add appropriate user feedback states (loading, success, error, empty) to a component or page. ## When NOT to use - For only the words inside a state → use `/ss-copy` - For accessibility issues in existing states → use `/ss-a11y` - For brand-new component creation → use `/ss-component` - For analytics or error-logging plumbing — UI presentation only Target: **$ARGUMENTS** ## Instructions 1. Read the target file and identify all data-dependent areas. 2. Read the design language reference: - `DESIGN-LANGUAGE.md` sections on Loading States (Skeleton), Empty States, Error States 3. For each data-dependent area, implement ALL 4 states: ### State 1: Loading (Skeleton) ```tsx // Skeleton must match the final layout shape <div className="bg-card rounded-2xl p-6 shadow-[var(--shadow-card)]"> <div className="flex items-center gap-2 mb-3"> <div className="size-7 bg-surface-muted rounded-lg animate-pulse" /> <div className="h-3 w-16 bg-surface-muted rounded animate-pulse" /> </div> <div className="h-9 w-24 bg-surface-muted rounded-lg animate-pulse mb-3" /> <div className="h-3 w-12 bg-surface-muted rounded animate-pulse"

What's inside
Steps it walks through
  1. When to Use
  2. When NOT to use
  3. Instructions
  4. State 1: Loading (Skeleton)
  5. State 2: Empty (Zero Data)
  6. State 3: Error (Load Failed)
  7. State 4: Success (Action Feedback)
  8. Limitations
More from agentic-awesome-skills
All skills →
About this skill
What does the ux-feedback skill do?

Add appropriate user feedback states (loading, success, error, empty) to a component or page

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill ux-feedback --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going