Agent skill · Frontend

ss-feedback

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

kiwiman852★ · +42/wk · 1 repos on radarProfile →
claude-codecodexcursorcan modify filesMIT
Install
npx skills add bitjaru/styleseed --skill ss-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: 3 KB
Bundled scripts: none
Allowed tools: ReadWriteEditGrepGlob
Path: engine/.claude/skills/ss-feedback/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 867 · +15 this week
Language: TypeScript
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 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" /> </div> ``` Rules: - Show skeleton for 300ms minimum (prevent flash) - Delay skeleton display by 300ms (fast loads skip skeleton entirel

What's inside
Steps it walks through
  1. When NOT to use
  2. Instructions
  3. State 1: Loading (Skeleton)
  4. State 2: Empty (Zero Data)
  5. State 3: Error (Load Failed)
  6. State 4: Success (Action Feedback)
More from styleseed
All skills →
About this skill
What does the ss-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 bitjaru/styleseed --skill ss-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 bitjaru/styleseed, a repository with 867 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