What problem does it solve? Interfaces built for idealized demo data break in production when users enter long text, lose connectivity, switch languages, or trigger unexpected errors. This Skill systematically hardens UI components against real-world edge cases before they reach users. ## Core Features & Use Cases - Text Overflow & i18n Handling: Applies truncation, line-clamping, logical CSS properties for RTL languages, and Intl API formatting for dates, numbers, and currencies. - Error & Edge Case Coverage: Implements network failure recovery, per-status-code API error handling, empty/loading states, and concurrent operation safeguards like double-submit prevention. - Accessibility & Performance Resilience: Adds keyboard navigation, screen reader support, reduced-motion handling, debouncing, and memory leak cleanup. - Use Case: Before shipping a checkout form, run this Skill to test it with 100-character names, emoji input, German translations, throttled 3G connections, and forced 500 errors, then apply the recommended fixes. ## Quick Start Harden the checkout form component against long text, RTL languages, network failures, and empty states.