harden
Installation
SKILL.md
/harden — Production Resilience
Make the interface survive real-world conditions:
- Text overflow — Add text-overflow: ellipsis where needed. Handle long words with overflow-wrap: break-word.
- Error states — Form validation messages, failed API calls, empty results.
- Loading states — Skeleton screens, spinner on buttons, progressive loading.
- i18n readiness — No hardcoded widths that break with longer translations. RTL-safe spacing (use logical properties: padding-inline, margin-block).
- Missing content — Fallback for missing images, empty lists, null data.
- Browser support — Check for CSS feature support with @supports.