performance-audit
Installation
SKILL.md
Performance Audit
A practical performance review for web applications. Identifies the most impactful optimizations without premature micro-optimization.
When to Use
- App feels slow or sluggish
- Before launching to production
- After adding significant features
- When users complain about speed
- Planning optimization work
The 80/20 Rule
Most performance issues come from a few common causes:
- Too much JavaScript (bundle size)
- Too many re-renders (React)
- Slow data fetching (waterfalls, no caching)
- Large images (unoptimized assets)