PluginBench
Skill
Official
Review
Audit score 70

react-best-practices

mastra-ai/mastra

React performance optimization guidelines covering waterfalls, bundle size, data fetching, and re-renders.

What is react-best-practices?

A priority-ordered collection of 17 React best practices rules from Mastra Engineering organized across 8 categories. Use this skill when writing, reviewing, or refactoring React code to ensure optimal performance patterns, particularly for component design, data fetching, bundle optimization, and rendering efficiency.

  • Eliminate waterfall async patterns with Promise.all() and parallel execution
  • Reduce bundle size by avoiding barrel imports and deferring non-critical libraries
  • Optimize re-renders using lazy state initialization, startTransition, and useEffect patterns
  • Implement client-side request deduplication with Tanstack Query
  • Apply component structure best practices including single responsibility and proper naming conventions
  • Improve rendering performance with content-visibility and SVG animation techniques

How to install react-best-practices

npx skills add https://github.com/mastra-ai/mastra --skill react-best-practices
Claude Code
Cursor
Windsurf
Cline

How to use react-best-practices

  1. 1.Identify the category matching your task (e.g., waterfalls, bundle size, re-renders)
  2. 2.Consult the priority-ordered guidelines table to understand impact levels
  3. 3.Load the relevant rule file from references/rules/ for detailed guidance and examples
  4. 4.Apply the specific pattern to your code (e.g., use Promise.all for async operations)
  5. 5.Review the rule's anti-patterns and code smells to catch similar issues in reviews

Use cases

Good for
  • Writing new React components to follow performance-first patterns from the start
  • Reviewing existing React code for performance bottlenecks and anti-patterns
  • Refactoring bloated components into smaller, single-responsibility units
  • Optimizing bundle size by identifying and fixing barrel import usage
  • Implementing data fetching with proper deduplication and waterfall elimination
Who it's for
  • React developers writing performance-critical applications
  • Code reviewers evaluating React component quality and efficiency
  • Frontend engineers optimizing bundle size and load times
  • Teams adopting Mastra's engineering standards and practices
  • QA engineers writing integration tests for React + Tanstack Query stacks

react-best-practices FAQ

Which rules should I apply first?

Start with Critical Priority rules: eliminate waterfalls using Promise.all() and reduce bundle size by avoiding barrel imports and deferring third-party libraries. These have the highest performance impact.

How do I find rules for a specific pattern?

Use grep to search the references/rules/ directory, e.g., `grep -l "Promise.all" references/rules/` or `grep -l "barrel" references/rules/` to locate relevant rule files.

Should I mock Mastra hooks and services in tests?

No. Follow the BDD testing pattern: mock only the network layer and drive tests against the real @mastra/client-js, React Query stack, and SDK. Never vi.mock your own hooks, services, or auth gating.

What should I do with expensive state initialization?

Use lazy state initialization in useState to defer computation until the component actually mounts, avoiding unnecessary calculations on every render.

How do I handle non-urgent UI updates?

Wrap non-critical updates with startTransition to mark them as lower priority, allowing React to keep the UI responsive for urgent interactions.

Full instructions (SKILL.md)

Source of truth, from mastra-ai/mastra.


name: react-best-practices description: React performance optimization guidelines from Mastra Engineering. This skill should be used when writing, reviewing, or refactoring React code to ensure optimal performance patterns. Triggers on tasks involving React components, data fetching, bundle optimization, or performance improvements.

React Best Practices

Overview

Routing and priority guide for React performance and quality, containing 17 rules across 8 categories. Rule files hold the detailed explanations, examples, review smells, and impact metrics.

When to Apply

Reference these guidelines when:

  • Writing new React components
  • Implementing data fetching
  • Reviewing code for performance issues
  • Refactoring existing React code
  • Optimizing bundle size or load times

Priority-Ordered Guidelines

Rules are prioritized by impact:

PriorityCategoryImpact
1Eliminating WaterfallsCRITICAL
2Bundle Size OptimizationCRITICAL
3Client-Side Data FetchingMEDIUM-HIGH
4Re-render OptimizationMEDIUM
5Rendering PerformanceMEDIUM
6JavaScript PerformanceLOW-MEDIUM
7Component StructureMEDIUM-HIGH (maintainability)
8TestingMEDIUM-HIGH (correctness)

Quick Reference

Critical Patterns (Apply First)

Eliminate Waterfalls:

  • Use Promise.all() for independent async operations (async-parallel)

Reduce Bundle Size:

  • Avoid barrel file imports, import directly from source (bundle-barrel-imports)
  • Defer non-critical third-party libraries (bundle-defer-third-party)

Medium-Impact Patterns

Client-Side Data Fetching:

  • Use Tanstack Query for automatic request deduplication (client-request-dedupe)

Re-render Optimization:

  • Use lazy state initialization for expensive values (rerender-lazy-state-init)
  • Apply startTransition for non-urgent updates (rerender-transitions)
  • Minimize useEffect function calls (rerender-useeffect-function-calls)
  • Never reset state with useEffect; lift the discriminant and remount the branch (rerender-no-useeffect-state-reset)

Component Structure:

  • One domain component/hook per file, one responsibility each — split bloated components (structure-single-responsibility)
  • Use PascalCase components for JSX-returning helpers; keep lowercase helpers for non-JSX values (structure-component-naming)
  • Derive props/params instead of accepting a value computable from another arg (structure-derive-dont-duplicate)

Testing:

  • BDD tests that drive the real @mastra/client-js + React Query stack and mock only the network; never vi.mock our own hooks/services/auth gating or the SDK (testing-bdd-no-mocks)

Rendering Patterns

  • Animate SVG wrappers, not SVG elements directly (rendering-animate-svg-wrapper)
  • Use content-visibility: auto for long lists (rendering-content-visibility)

JavaScript Patterns

  • Use Set/Map for repeated lookups (js-set-map-lookups)
  • Use toSorted() instead of sort() for immutability (js-tosorted-immutable)
  • Early length check for array comparisons (js-length-check-first)

References

Rule files are the canonical source for detailed guidance and examples:

  • references/react-best-practices-reference.md - Rule catalog with category order and rule-file paths
  • references/rules/ - Canonical individual rule files organized by category

Load only the relevant rule file when implementing or reviewing a specific pattern. Use the catalog to choose the right rule without loading every example.

To look up a specific pattern, grep the rules directory:

grep -l "Promise.all" references/rules/
grep -l "barrel" references/rules/
grep -l "Tanstack" references/rules/

Rule Categories in references/rules/

  • async-* - Waterfall elimination (1 rule)
  • bundle-* - Bundle size optimization (2 rules)
  • client-* - Client-side data fetching (1 rule)
  • rerender-* - Re-render optimization (4 rules)
  • rendering-* - DOM rendering performance (2 rules)
  • js-* - JavaScript micro-optimizations (3 rules)
  • structure-* - Component/hook structure (3 rules)
  • testing-* - BDD tests + mock-only-the-network policy (1 rule)