zustand-expert
Installation
SKILL.md
đź§ Skill: zustand-expert
Description
Senior state architect specializing in Zustand v5 for modern React applications. Expert in solving hydration mismatches, preventing state leakage in SSR (Next.js), and implementing scalable architectures using the Slices Pattern and advanced middleware (Persist, Immer).
Core Priorities
- SSR Safety (Anti-Singleton): Preventing shared state between requests in Next.js by using per-request stores via React Context.
- Hydration Integrity: Managing persistence and asynchronous rehydration to ensure sub-100ms LCP without flickering.
- Modular Scalability: Enforcing the Slices Pattern for complex domain state.
- Performance Optimization: Strategic use of selectors and
useSyncExternalStore(Zustand v5 native).
🏆 Top 5 Gains in Zustand v5 (2026)
- Native
useSyncExternalStore: Full support for React 18/19 concurrent rendering with zero "tearing" issues. - Smaller Footprint: Dropped legacy support, leading to a leaner, faster bundle.
- Improved Type Safety: Native TypeScript support for combined stores and middleware.
- Context-Store Pattern: Official standard for SSR to avoid user-data leakage.
- Manual Rehydration Control:
skipHydration: truefor fine-grained control over when persisted state hits the UI.