performance-precision

Optimize React/Next.js web performance by improving Core Web Vitals and reducing runtime overhead.

Updated Jan 21, 2026
One-click install
npx skills add https://github.com/hoangminh46/mine-vibe --skill performance-precision
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: performance-precision
Source: https://github.com/hoangminh46/mine-vibe/tree/main/skills/performance-precision
Command: npx skills add https://github.com/hoangminh46/mine-vibe --skill performance-precision

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Web performance issues in React/Next.js apps slow user experience and degrade Lighthouse scores, requiring a structured approach to optimization.

Core Features & Use Cases

  • Core Web Vitals optimization (LCP, INP, CLS)
  • Code splitting, lazy loading, image optimization, render optimization (useMemo, useCallback, React.memo)
  • Memory management and bundle analysis
  • Use cases: when you need faster page loads, lower CLS, higher Lighthouse scores, or debugging memory leaks in production.

Quick Start

Audit a Next.js page for Core Web Vitals and implement initial LCP/CLS improvements.

Frequently Asked Questions about performance-precision

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I optimize Core Web Vitals like LCP and CLS in a Next.js application?

To optimize Core Web Vitals in Next.js, you must enforce Next.js image optimization, implement modern font strategies, and apply code-splitting to reduce runtime overhead and improve LCP, INP, and CLS metrics for faster page loads.

What is the best way to fix React render performance issues and reduce runtime overhead?

The best way to fix React render performance issues is by applying React memoization patterns including useMemo, useCallback, and React.memo to prevent unnecessary re-renders and reduce runtime overhead in complex page-level scenarios.

How do I debug memory leaks and analyze bundle size in a production React app?

To debug memory leaks and analyze bundle size in a production React app, you should perform bundle analysis and enforce strict memory management practices to identify heavy dependencies and eliminate runtime memory leaks.

Can I use this approach to optimize performance for complex page-level scenarios like dashboards?

Yes, this optimization approach explicitly targets page-level scenarios like dashboards, product pages, and content sites, applying structured code-splitting and render optimization to achieve more stable user experiences.

Why does my Next.js page still have poor Lighthouse scores after basic image optimization?

Poor Lighthouse scores may persist if you lack modern font strategies, fail to apply React memoization patterns, or ignore bundle analysis, all of which contribute to runtime overhead and degraded Core Web Vitals.