rsc-data-optimizer
Installation
SKILL.md
RSC Data Fetching Optimizer
Optimize slow client-side data fetching to instant server-side rendering.
Quick Diagnosis
Search for these anti-patterns in the codebase:
# Find client-side fetching patterns
rg -n "useEffect.*fetch|useState.*loading|useStore\(\)" --type tsx
rg -n '"use client"' app/ --type tsx
Red flags:
"use client"+useEffect+fetch()= slow initial loaduseState(true)forisLoading= user sees spinneruseStore()oruseContextfor initial page data = waterfall fetching