agentsclimarketplace

React effects audit

Skill fusengine/agents/plugins/ai-pilot/skills/react-effects-audit

Audit React components for unnecessary useEffect patterns. Detects 9 anti-patterns from "You Might Not Need an Effect" and proposes fixes with severity levels. Use when: auditing React or Next.js components for unnecessary or unsafe useEffect usage.From its SKILL.md

Install
npx -y skills add fusengine/agents --skill react-effects-audit

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

4.5 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it

Target: $ARGUMENTS

React Effects Audit

Overview

Scan React codebases to detect unnecessary useEffect usage based on official React documentation ("You Might Not Need an Effect"). Reports anti-patterns with severity, location, and recommended fixes.


Agent Workflow (MANDATORY)

PHASE 1: Scan target files (Glob *.tsx, *.jsx, *.ts, *.js)
PHASE 2: Detect anti-patterns (Grep detection rules)
PHASE 3: Analyze context (Read flagged files)
PHASE 4: Generate report with fixes

Anti-Pattern Summary

#Anti-PatternSeverityDetection
1Derived state in EffectWARNINGuseEffect + setState from other state/props
2Expensive calculation in EffectWARNINGuseEffect + setState with filter/map/reduce
3State reset via EffectWARNINGuseEffect resets state when prop changes
4Event logic in EffectCRITICALUser interaction logic inside useEffect
5Parent notification via EffectWARNINGuseEffect calls parent onChange/onUpdate
6Effect chainsCRITICALMultiple useEffect triggering each other
7Missing cleanup in fetchCRITICALuseEffect fetch without cleanup/AbortController
8Manual store subscriptionWARNINGaddEventListener/subscribe in useEffect
9App init in EffectINFOOne-time init logic in useEffect(fn, [])

Severity Levels

LevelMeaningAction
CRITICALBugs, race conditions, memory leaksFix immediately
WARNINGPerformance issues, unnecessary re-rendersFix same session
INFOReadability, minor inefficiencyFix if time allows

Reference Guide

Skill References

ReferenceWhen to Consult
anti-patterns.mdUnderstanding each anti-pattern
detection-rules.mdGrep patterns for scanning
fix-patterns-core.mdFix examples #1-5
fix-patterns-advanced.mdFix examples #6-9
report-format.mdGenerating audit report

SOLID Cross-References (MANDATORY)

This audit complements existing SOLID skills. Always cross-reference:

Project TypeSOLID SkillKey Rule
Next.jsfuse-nextjs:solid-nextjsNo useEffect for data fetching; use Server Components
Reactfuse-react:solid-reactNo useEffect for data fetching; use TanStack Query

Integration: When auditing a Next.js or React project, also load the corresponding SOLID skill to check architecture-level violations (file size, interface separation, business logic in components).


Quick Start

1. Glob **/*.{tsx,jsx} in target directory
2. Detect project type (next.config.* → Next.js, package.json → React)
3. Load corresponding SOLID skill references if applicable
4. For each detection rule in detection-rules.md:
   → Grep pattern across all files
   → Read flagged files for context analysis
   → Confirm or dismiss (false positive check)
5. For each confirmed finding:
   → Identify severity from anti-patterns.md
   → Propose fix from fix-patterns-core.md or fix-patterns-advanced.md
   → Cross-check with SOLID rules (SRP, file size, hooks separation)
6. Output report using report-format.md

React 19+ Considerations

FeatureImpact on Audit
React CompilerAuto-memoizes; useMemo less needed but Effect anti-patterns still apply
useEffectEventStable in 19.2; solves stale closure in Effects without adding deps
Activity APIAlternative to conditional rendering; reduces mount/unmount Effects
useSyncExternalStoreReplaces manual subscription Effects (anti-pattern #8)
Server ComponentsEliminates many data-fetching Effects entirely

Forbidden Behaviors

  • Do NOT auto-fix without showing the finding first
  • Do NOT flag Effects that synchronize with external systems (valid use)
  • Do NOT flag data fetching Effects that have proper cleanup
  • Do NOT ignore context: always Read the file before confirming a finding

What ships with it: 5 files

14.9 KB alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.