Skills vercel-react-best-practices
๐Ÿ“ฆ

vercel-react-best-practices

v1.0.0 Content revision r1 Medium Risk โšก Contains scriptsโš™๏ธ External commands๐ŸŒ Network access

Optimize React and Next.js Performance

React and Next.js teams need consistent performance guidance during coding and review. This skill applies Vercel-style rules for data fetching, bundles, rendering, and re-renders.

Supports: Claude Codex Code(CC)
๐Ÿ“Š 72 Adequate

Install with my Agent

Copy this request to your Agent. It includes the canonical Skill page and manifest.

Agent request
Review the Skillstore skill "vercel-react-best-practices" from https://skillstore.io/skills/zhanlincui-vercel-react-best-practices.md and its manifest at https://skillstore.io/api/skills/zhanlincui-vercel-react-best-practices/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.

Your Agent should still show its plan and request any confirmation required by the security policy.

Test it

Using "vercel-react-best-practices". Review a dashboard page with sequential data fetching and broad icon imports.

Expected outcome:

  • The review identifies independent requests that can start together.
  • It recommends direct icon imports or configured package import optimization.
  • It suggests Suspense boundaries for panels that do not affect the first layout.

Using "vercel-react-best-practices". Explain why a search component renders too often.

Expected outcome:

The analysis traces broad state subscriptions, unstable callbacks, and effect dependencies, then recommends narrower reads and functional state updates.

Using "vercel-react-best-practices". Create a performance checklist for a Next.js feature launch.

Expected outcome:

  • Server work starts as early as possible and avoids sequential awaits.
  • Client components receive only the fields they render.
  • Heavy editors, analytics, and optional tools load outside the initial path.

Security Audit

Medium Risk
v4 โ€ข 7/8/2026 Open versioned report

All 172 static findings were adjudicated as false positives from Markdown documentation, code examples, inline backticks, or public reference links. No prompt injection, credential handling, command execution, or unauthorized network intent was found. One medium content-trust issue remains because a community source uses official Vercel attribution that should be clarified before publication.

53
Files scanned
5,215
Lines analyzed
0
Review items
0
False positives ignored

Confirmed security concerns (1)

Medium
Unverified Official Affiliation Claim
The community-sourced skill presents itself with official Vercel attribution, including Vercel Engineering, author vercel, and maintained by Vercel language. This can mislead users about provenance and review authority.
The report source type is community, but multiple files state or imply official Vercel ownership. This is a provenance and marketplace trust issue rather than executable malware.

Risk Factors

โšก Contains scripts (12)
โš™๏ธ External commands (79)
๐ŸŒ Network access (15)
Audited by: codex View Audit History โ†’
Share & cite this report

Share the versioned assessment report, neutral badge, embed card, and citations. Skillstore reports evidence without deciding whether this Skill is safe.

Open versioned report
Security Assessment

Copy report link

https://skillstore.io/skills/zhanlincui-vercel-react-best-practices/audits/4?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_report

Markdown badge

[![Skillstore security assessment](https://skillstore.io/badges/skills/zhanlincui-vercel-react-best-practices/security.svg)](https://skillstore.io/skills/zhanlincui-vercel-react-best-practices?utm_source=security_passport_badge)

HTML badge

<a href="https://skillstore.io/skills/zhanlincui-vercel-react-best-practices?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/zhanlincui-vercel-react-best-practices/security.svg" alt="Skillstore security assessment" loading="lazy"></a>

Embed card

<iframe src="https://skillstore.io/embed/skills/zhanlincui-vercel-react-best-practices.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>
Academic citations (APA ยท BibTeX ยท CFF)

APA citation

ZhanlinCui. (2026). vercel-react-best-practices security audit report (audit version 4) [Author version 1.0.0]. Skillstore. https://skillstore.io/skills/zhanlincui-vercel-react-best-practices/audits/4

BibTeX citation

@techreport{zhanlincui-zhanlincui-vercel-react-best-practices-2026, author = {ZhanlinCui}, title = {vercel-react-best-practices security audit report (audit version 4)}, institution = {Skillstore}, year = {2026}, number = {4}, url = {https://skillstore.io/skills/zhanlincui-vercel-react-best-practices/audits/4}, note = {Author version 1.0.0} }

CITATION.cff

cff-version: 1.2.0 message: "If you use this Skill, cite its author and this versioned security audit report." title: "vercel-react-best-practices security audit report (audit version 4)" version: "1.0.0" type: report authors: - name: "ZhanlinCui" date-released: "2026-07-08" url: "https://skillstore.io/skills/zhanlincui-vercel-react-best-practices/audits/4" identifiers: - type: other value: "skillstore:zhanlincui-vercel-react-best-practices:audit:4" description: "Skillstore immutable audit report identifier"

Compare variants

4 installable variants

Each author remains a separate installable skill. The recommended variant is ranked by Skillstore evidence.

Why this variant is first

Highest Skillstore Score
vercel-labs Recommended

vercel-labs-vercel-react-best-practices

Skillstore Score 80
Evidence Confidence High
Skillstore usage 31
Updated

2026-08-21

am-will-vercel-react-best-practices

Skillstore Score 79
Evidence Confidence High
Skillstore usage 26
Updated

2026-08-21

sickn33-vercel-react-best-practices

Skillstore Score 78
Evidence Confidence High
Skillstore usage 9
Updated

2026-08-21

ZhanlinCui Current

zhanlincui-vercel-react-best-practices

Skillstore Score 72
Evidence Confidence High
Skillstore usage 102
Updated

2026-08-21

Skillstore Score

Why this score Evidence Confidence: High
55
Architecture
100
Maintainability
87
Content
71
Community
83
Spec Compliance

What You Can Build

Review a Pull Request

Find data waterfalls, large imports, broad client props, and avoidable re-renders before code merges.

Refactor a Next.js Page

Convert sequential server work into parallel fetching, Suspense boundaries, and smaller client payloads.

Create Team Performance Standards

Turn Vercel-style rules into repeatable guidance for reviews, migrations, and feature planning.

Try These Prompts

Find Quick Wins
Review this React or Next.js code with the vercel-react-best-practices skill. Focus on async waterfalls, bundle size, and needless re-renders. Explain each recommendation in plain language.
Refactor a Page
Refactor this Next.js page using the skill. Preserve behavior while improving data fetching parallelism, Suspense boundaries, and RSC serialization. List the trade-offs you make.
Plan Bundle Improvements
Audit this feature for bundle size using the skill. Identify barrel imports, heavy client components, third-party libraries, and preload opportunities. Prioritize fixes by user impact.
Run Architecture Review
Analyze this workflow end to end with the skill. Cover server data flow, client fetching, storage use, event listeners, rendering costs, and JavaScript hot paths. Return a prioritized remediation plan.

Best Practices

  • Start independent data work early and await results only when they are needed.
  • Keep client boundaries small and pass only fields that client components use.
  • Treat examples as patterns and measure important changes in the target application.

Avoid

  • Awaiting unrelated server work in sequence inside pages, actions, or route handlers.
  • Importing entire icon or component libraries through broad barrel entry points.
  • Memoizing everything without first narrowing state reads and effect dependencies.

Frequently Asked Questions

What does this skill help with?
It helps agents review and improve React and Next.js performance using structured Vercel-style guidance.
Does it require deployment on Vercel?
No. Many rules apply to any React or Next.js application, although some examples reference Vercel and Next.js APIs.
Can it replace profiling tools?
No. It gives review guidance and refactor patterns. You should still measure important changes with real application data.
Which topics are covered?
It covers async waterfalls, bundle size, server rendering, client fetching, re-renders, rendering costs, and JavaScript loops.
Are the examples executable by the skill?
No. The repository is documentation. Agents read the examples and apply the ideas to your project.
Can teams use it for code review standards?
Yes. The rule files can support consistent review comments, migration plans, and performance checklists.

Developer Details

Author

ZhanlinCui

License

MIT

Author version

v1.0.0

Skillstore revision

r1

Ref

88a205c7f635a966e31156313b590d59007c5caa

Maintenance freshness

7/18/2026

Usage

100 downloads ยท 287 views

File structure

๐Ÿ“ rules/

๐Ÿ“„ _sections.md

๐Ÿ“„ _template.md

๐Ÿ“„ advanced-event-handler-refs.md

๐Ÿ“„ advanced-use-latest.md

๐Ÿ“„ async-api-routes.md

๐Ÿ“„ async-defer-await.md

๐Ÿ“„ async-dependencies.md

๐Ÿ“„ async-parallel.md

๐Ÿ“„ async-suspense-boundaries.md

๐Ÿ“„ bundle-barrel-imports.md

๐Ÿ“„ bundle-conditional.md

๐Ÿ“„ bundle-defer-third-party.md

๐Ÿ“„ bundle-dynamic-imports.md

๐Ÿ“„ bundle-preload.md

๐Ÿ“„ client-event-listeners.md

๐Ÿ“„ client-localstorage-schema.md

๐Ÿ“„ client-passive-event-listeners.md

๐Ÿ“„ client-swr-dedup.md

๐Ÿ“„ js-batch-dom-css.md

๐Ÿ“„ js-cache-function-results.md

๐Ÿ“„ js-cache-property-access.md

๐Ÿ“„ js-cache-storage.md

๐Ÿ“„ js-combine-iterations.md

๐Ÿ“„ js-early-exit.md

๐Ÿ“„ js-hoist-regexp.md

๐Ÿ“„ js-index-maps.md

๐Ÿ“„ js-length-check-first.md

๐Ÿ“„ js-min-max-loop.md

๐Ÿ“„ js-set-map-lookups.md

๐Ÿ“„ js-tosorted-immutable.md

๐Ÿ“„ rendering-activity.md

๐Ÿ“„ rendering-animate-svg-wrapper.md

๐Ÿ“„ rendering-conditional-render.md

๐Ÿ“„ rendering-content-visibility.md

๐Ÿ“„ rendering-hoist-jsx.md

๐Ÿ“„ rendering-hydration-no-flicker.md

๐Ÿ“„ rendering-svg-precision.md

๐Ÿ“„ rerender-defer-reads.md

๐Ÿ“„ rerender-dependencies.md

๐Ÿ“„ rerender-derived-state.md

๐Ÿ“„ rerender-functional-setstate.md

๐Ÿ“„ rerender-lazy-state-init.md

๐Ÿ“„ rerender-memo.md

๐Ÿ“„ rerender-transitions.md

๐Ÿ“„ server-after-nonblocking.md

๐Ÿ“„ server-cache-lru.md

๐Ÿ“„ server-cache-react.md

๐Ÿ“„ server-parallel-fetching.md

๐Ÿ“„ server-serialization.md

๐Ÿ“„ AGENTS.md

๐Ÿ“„ metadata.json

๐Ÿ“„ README.md

๐Ÿ“„ SKILL.md