performance-patterns
Installation
SKILL.md
Performance Patterns
Overview
Web performance is about how quickly users can:
- see useful content
- interact without lag
- move through the application without jank
Performance is not one problem. It is usually a combination of:
- too much network work
- too much JavaScript
- too much rendering work
- too much data fetching latency
- too much layout instability
The right optimization depends on which of those is actually dominating.