Everything-react-native-expo erne-perf
ERNE — Performance profiling and optimization using the performance-profiler agent
install
source · Clone the upstream repo
git clone https://github.com/JubaKitiashvili/everything-react-native-expo
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/JubaKitiashvili/everything-react-native-expo "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/erne-perf" ~/.claude/skills/jubakitiashvili-everything-react-native-expo-erne-perf && rm -rf "$T"
manifest:
.claude/skills/erne-perf/SKILL.mdsource content
/erne-perf — Performance Profiling
You are executing the
/erne-perf command. Use the performance-profiler agent to diagnose and fix performance issues.
Diagnostic Areas
1. Rendering Performance (FPS)
- Check for unnecessary re-renders with React DevTools Profiler
- Identify components re-rendering without prop changes
- Look for missing
,React.memo
,useCallbackuseMemo - Detect inline function/object creation in render
2. Time to Interactive (TTI)
- Analyze app startup sequence
- Check for heavy
chains on mountuseEffect - Identify blocking operations on main thread
- Verify Hermes bytecode compilation
3. Bundle Size
- Run
npx react-native-bundle-visualizer - Identify large dependencies
- Check for unused imports and dead code
- Verify tree-shaking is working
4. Memory
- Check for listener/subscription cleanup in
useEffect - Identify large objects retained in closures
- Look for image caching issues
- Detect circular references
5. Animations
- Verify all animations use Reanimated (not Animated API)
- Check for JS thread bottlenecks in animation callbacks
- Identify layout thrashing during animations
- Measure actual FPS during animations
6. Hermes Engine
- Verify Hermes is enabled
- Check for unsupported JS features
- Profile with Hermes sampling profiler
- Analyze bytecode compilation output
Output Format
## Performance Metrics | Metric | Current | Target | Status | |--------|---------|--------|--------| | JS FPS | 45 | 60 | ⚠️ | | UI FPS | 58 | 60 | ✅ | | TTI | 3.2s | <2s | ❌ | | Bundle | 8.2MB | <5MB | ❌ | ## Critical Issues [Issues that must be fixed] ## Optimization Opportunities [Improvements ranked by impact]
Notes
- If agent-device is available, measure actual FPS on device
- Reference
for optimization patternsrules/common/performance.md - Profile on real devices, not simulator/emulator