web-performance
Web Performance Skill
Version: 1.0 Stack: Apollo Client/Server + Redis + CloudFront + S3
Performance problems are invisible during development. Local servers are fast. Test data is small. You don't notice the 3MB bundle, the N+1 queries, or the full-table scan until real users on real connections with real data report that the page takes 8 seconds to load. By then, fixing it requires rearchitecting the caching layer, splitting the bundle, and rewriting queries — all at once, under pressure.
Performance patterns applied from the start are cheap. Performance fixes applied after launch are expensive. These rules are the cheap version.
Core Principles
- Measure First — Profile before optimizing. Don't guess.
- Cache at Every Layer — CDN → API → Database → In-Memory.
- Minimize Payload — Send only what's needed.
- Defer Non-Critical — Load critical path first, everything else later.
- Perceived Performance — Optimistic UI makes things feel faster.
More from alexanderstephenthompson/claude-hub
unity-csharp
C# patterns for Unity - MonoBehaviour, async, architecture, and VR/mobile performance optimization
49design
Design and UI standards for accessibility, semantic HTML, and responsive layouts
35architecture
Architecture principles, module boundaries, folder structure, and project type profiles
33vrc-udon
VRChat Udon and UdonSharp patterns - networking, sync, interactions
32data-python
Python patterns for data processing - pandas, polars, pyspark
32web-css
CSS architecture for vanilla CSS - organization, design tokens, responsive patterns
29