with one click
nextjs-react-expert
React and Next.js performance optimization from Vercel Engineering.
Menu
React and Next.js performance optimization from Vercel Engineering.
Master backend logic, APIs, and microservices architectures. Covers REST, GraphQL, caching, and database transactions.
Principal AI Architect and Machine Learning Engineer.
Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creating social media content, analyzing brand voice, optimizing SEO, planning content calendars, or when user mentions content creation, brand voice, SEO optimization, social media marketing, or content strategy.
MASTER DEPLOY: CI/CD Pipelines, Docker, K8s, GitOps.
Multi-agent autonomous startup system for Claude Code. Triggers on "Loki Mode". Orchestrates 100+ specialized agents across engineering, QA, DevOps, security, data/ML, business operations, marketing, HR, and customer success. Takes PRD to fully deployed, revenue-generating product with zero human intervention. Features Task tool for subagent dispatch, parallel code review with 3 specialized reviewers, severity-based issue triage, distributed task queue with dead letter handling, automatic deployment to cloud providers, A/B testing, customer feedback loops, incident response, circuit breakers, and self-healing. Handles rate limits via distributed state checkpoints and auto-resume with exponential backoff. Requires --dangerously-skip-permissions flag.
MASTER MALWARE ANALYSIS: Threat Intelligence, Phishing Detection.
| name | nextjs-react-expert |
| description | React and Next.js performance optimization from Vercel Engineering. |
| category | development |
| version | 4.1.0-fractal |
| layer | master-skill |
From Vercel Engineering - 57 optimization rules prioritized by impact Philosophy: Eliminate waterfalls first, optimize bundles second, then micro-optimize.
Read ONLY sections relevant to your task! Check the content map below and load what you need.
š“ For performance reviews: Start with CRITICAL sections (1-2), then move to HIGH/MEDIUM.
| File | Impact | Rules | When to Read |
|---|---|---|---|
1-async-eliminating-waterfalls.md | š“ CRITICAL | 5 rules | Slow page loads, sequential API calls, data fetching waterfalls |
2-bundle-bundle-size-optimization.md | š“ CRITICAL | 5 rules | Large bundle size, slow Time to Interactive, First Load issues |
3-server-server-side-performance.md | š HIGH | 7 rules | Slow SSR, API route optimization, server-side waterfalls |
4-client-client-side-data-fetching.md | š” MEDIUM-HIGH | 4 rules | Client data management, SWR patterns, deduplication |
5-rerender-re-render-optimization.md | š” MEDIUM | 12 rules | Excessive re-renders, React performance, memoization |
6-rendering-rendering-performance.md | š” MEDIUM | 9 rules | Rendering bottlenecks, virtualization, image optimization |
7-js-javascript-performance.md | āŖ LOW-MEDIUM | 12 rules | Micro-optimizations, caching, loop performance |
8-advanced-advanced-patterns.md | šµ VARIABLE | 3 rules | Advanced React patterns, useLatest, init-once |
Total: 57 rules across 8 categories
What's your performance issue?
š Slow page loads / Long Time to Interactive
ā Read Section 1: Eliminating Waterfalls
ā Read Section 2: Bundle Size Optimization
š¦ Large bundle size (> 200KB)
ā Read Section 2: Bundle Size Optimization
ā Check: Dynamic imports, barrel imports, tree-shaking
š„ļø Slow Server-Side Rendering
ā Read Section 3: Server-Side Performance
ā Check: Parallel data fetching, streaming
š Too many re-renders / UI lag
ā Read Section 5: Re-render Optimization
ā Check: React.memo, useMemo, useCallback
šØ Rendering performance issues
ā Read Section 6: Rendering Performance
ā Check: Virtualization, layout thrashing
š Client-side data fetching problems
ā Read Section 4: Client-Side Data Fetching
ā Check: SWR deduplication, localStorage
⨠Need advanced patterns
ā Read Section 8: Advanced Patterns
Use this order when doing comprehensive optimization:
1ļøā£ CRITICAL (Biggest Gains - Do First):
āā Section 1: Eliminating Waterfalls
ā āā Each waterfall adds full network latency (100-500ms+)
āā Section 2: Bundle Size Optimization
āā Affects Time to Interactive and Largest Contentful Paint
2ļøā£ HIGH (Significant Impact - Do Second):
āā Section 3: Server-Side Performance
āā Eliminates server-side waterfalls, faster response times
3ļøā£ MEDIUM (Moderate Gains - Do Third):
āā Section 4: Client-Side Data Fetching
āā Section 5: Re-render Optimization
āā Section 6: Rendering Performance
4ļøā£ LOW (Polish - Do Last):
āā Section 7: JavaScript Performance
āā Section 8: Advanced Patterns
| Need | Skill |
|---|---|
| API design patterns | @[skills/api-patterns] |
| Database optimization | @[skills/database-design] |
| Testing strategies | @[skills/testing-patterns] |
| UI/UX design principles | @[skills/frontend-design] |
| TypeScript patterns | @[skills/typescript-expert] |
| Deployment & DevOps | @[skills/deployment-procedures] |
Before shipping to production:
Critical (Must Fix):
High Priority:
Medium Priority:
Low Priority (Polish):
DON'T:
await for independent operationsindex.ts re-exports) in app codeDO:
Promise.all()const Comp = dynamic(() => import('./Heavy'))import { specific } from 'library/specific'