vercel-react-best-practices

vercel-react-best-practices is a skill for Claude Code, Codex from Kevin-Liu-01/Agent-Machines. It costs 96 tokens per session (1,559 once invoked), scanned A, original, MIT.

A guide to improving the performance of React and Next.js applications. React is a JavaScript interface library, while Next.js is a framework built around React.

In plain words
What is it for?
Use it when writing, reviewing, or refactoring React components and Next.js pages, especially when working on data loading, bundle size, or page speed.
Why use it?
It helps identify common causes of slow pages, such as unnecessary rendering, oversized bundles, and waiting for independent data requests one after another.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when writing, reviewing, or refactoring React components and Next.js pages, especially when working on data loading, bundle size, or page speed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kevin-liu-01/agent-machines/vercel-react-best-practices
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Kevin-Liu-01/Agent-Machines --skill vercel-react-best-practices
Clone the repo
git clone --depth 1 https://github.com/Kevin-Liu-01/Agent-Machines

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vercel-react-best-practices

README.md
[![agentmods](https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/vercel-react-best-practices/github.svg)](https://agentmods.dev/skills/kevin-liu-01/agent-machines/vercel-react-best-practices)
Your own site
<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/vercel-react-best-practices"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/vercel-react-best-practices/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vercel-react-best-practices

Your own site · 80×15
<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/vercel-react-best-practices"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/vercel-react-best-practices.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,559 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00096 $0.01559
Opus 5 $0.00048 $0.00779
Sonnet 5 $0.00019 $0.00312
Haiku 4.5 $0.00010 $0.00156

Measured 9d ago against content hash 3bc93fe7abbd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

vercel-react-best-practices scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

knowledge/skills/vercel-react-best-practices/SKILL.md · 123 lines

How it starts

The opening of the file, as written. The whole thing — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Vercel React Best Practices

Performance optimization guide for React and Next.js, maintained by Vercel. 69 rules across 8 categories, prioritized by impact.

When to Apply

  • Writing new React components or Next.js pages
  • Implementing data fetching (client or server-side)
  • Reviewing code for performance issues
  • Refactoring existing React/Next.js code
  • Optimizing bundle size or load times

Rule Categories by Priority

Priority Category Impact Prefix
1 Eliminating Waterfalls CRITICAL async-
2 Bundle Size Optimization CRITICAL bundle-
3 Server-Side Performance HIGH server-
4 Client-Side Data Fetching MEDIUM-HIGH client-
5 Re-render Optimization MEDIUM rerender-
6 Rendering Performance MEDIUM rendering-
7 JavaScript Performance LOW-MEDIUM js-
8 Advanced Patterns LOW advanced-

1. Eliminating Waterfalls (CRITICAL)

  • async-cheap-condition-before-await — Check cheap sync conditions before awaiting flags or remote values
  • async-defer-await — Move await into branches where actually used
  • async-parallel — Use Promise.all() for independent operations
  • async-dependencies — Use better-all for partial dependencies
  • async-api-routes — Start promises early, await late in API routes
  • async-suspense-boundaries — Use Suspense to stream content

2. Bundle Size Optimization (CRITICAL)

  • bundle-barrel-imports — Import directly, avoid barrel files
  • bundle-dynamic-imports — Use next/dynamic for heavy components
  • bundle-defer-third-party — Load analytics/logging after hydration
  • bundle-conditional — Load modules only when feature is activated
  • bundle-preload — Preload on hover/focus for perceived speed

3. Server-Side Performance (HIGH)

  • server-auth-actions — Authenticate server actions like API routes
  • server-cache-react — Use React.cache() for per-request deduplication
  • server-cache-lru — Use LRU cache for cross-request caching
  • server-dedup-props — Avoid duplicate serialization in RSC props
  • server-hoist-static-io — Hoist static I/O (fonts, logos) to module level
  • server-no-shared-module-state — Avoid module-level mutable request state in RSC/SSR
  • server-serialization — Minimize data passed to client components
  • server-parallel-fetching — Restructure components to parallelize fetches
  • server-parallel-nested-fetching — Chain nested fetches per item in Promise.all
  • server-after-nonblocking — Use after() for non-blocking operations

Read the full file on GitHub · 123 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 123 lines · 96 tokens per session scan A 3bc93fe7abbd

Subscribe to this mod's changes

vercel-react-best-practices is a skill published in the GitHub repository Kevin-Liu-01/Agent-Machines (30 stars, last pushed yesterday), licensed MIT. It adds 96 tokens to every session and 1,559 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

21st-ui

Find, install, and generate UI with 21st.dev. Use when the user asks for a UI component (pricing table, hero, navbar, dashboard, form, etc.), wants design inspiration, needs a brand logo as an SVG component, or wants to generate new UI from a prompt.

21st-dev/magic-mcp · 63 tokens

hunt-nextjs

Hunt Next.js specific vulnerabilities — Server Actions arbitrary function execution, Middleware auth bypass via static asset paths, ISR cache poisoning, Image Optimization SSRF (/next/image), RSC payload leakage, getServerSideProps injection, source map exposure, debug endpoint leakage. Use when target runs Next.js…

uphiago/recon-skills · 75 tokens

remotion

Create editable AI video projects with Remotion and React, then preview and render them to MP4. Use for vertical short videos, product demos, story-driven animations, HUD/tech visuals, feed ads, tutorial videos, subtitles, voiceover, sound effects, and code-based video iteration.

EKKOLearnAI/hermes-studio · 61 tokens

webmcp-add-tool

Scaffolds a new WebMCP tool component using useMcpTool with Zod schema, handler, annotations, and wires it into the WebMCPProvider tree. Use when the user wants to expose functionality as an MCP tool, make something callable by AI, add a new tool, or create an AI-accessible action.

agentcathq/webmcp-react · 73 tokens

webmcp-setup

Bootstraps webmcp-react into an existing React or Next.js app. Installs dependencies, adds WebMCPProvider, creates a first tool, and configures the MCP client bridge. Use when the user wants to set up WebMCP, add MCP tools to their app, integrate webmcp-react, or make their React app accessible to AI agents.

agentcathq/webmcp-react · 80 tokens

add-widget

Add a new widget (React UI + MCP tool) to this template. Use when asked to "add a widget", "add a new tool with UI", "create a new widget", "scaffold a widget", or "build a new MCP App feature".

pomerium/mcp-app-typescript-template · 56 tokens