Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

rn-reanimatedrn 复活

Agent Skill

rn-reanimated 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

588

周安装

25

GitHub Stars

1

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rn-reanimated(rn 复活)
来源仓库:https://github.com/imfa-solutions/skills
仓库路径:skills/rn-reanimated
安装命令:
npx skills add https://github.com/imfa-solutions/skills --skill rn-reanimated
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/imfa-solutions/skills --skill rn-reanimated

简介

用于 React Native Reanimated 动画库的资料检索。

  • 适合查找手势处理、共享元素或性能优化方案。
  • 可辅助分析动画曲线和线程调度模式。rn-reanimated 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前建议确认是否会触发网络请求或文件操作。
  • 需结合项目原生模块配置验证使用方式。

SKILL.md

React Native Reanimated — Best Practices & 60fps Guide

Reanimated 4.x / Worklets 0.7.x / React Native 0.80+ (New Architecture required)

Critical Rules

  1. Babel plugin must be LAST in babel.config.js plugins array.
  2. Never use React state (useState) for values that drive animations. Use useSharedValue.
  3. Never call withTiming/withSpring inside gesture .onUpdate callbacks. Assign the event value directly for smooth tracking; use spring/timing only in .onEnd.
  4. Always cancel animations before starting new ones when gestures begin: cancelAnimation(sv).
  5. Always pass velocity from gesture events into withSpring for natural feel.
  6. Always wrap the app in <GestureHandlerRootView style={{flex: 1}}>. Gestures won't work without it.
  7. Always cancel animations on unmount via useEffect cleanup.
  8. Respect reduced motion — use ReduceMotion.System or useReducedMotion().

Code Review & Upgrade Action

When the user asks to review, check, audit, or upgrade their Reanimated code, follow this procedure:

  1. Scan all files containing Reanimated imports (react-native-reanimated, react-native-gesture-handler).
  2. Check each file against every rule below and the Anti-Patterns table. For each violation found, collect: file path, line number, what's wrong, and the fix.
  3. Report findings to the user in a clear table format:
| File | Line | Issue | Severity | Fix |
|------|------|-------|----------|-----|
| src/Card.tsx | 12 | useState driving animation | HIGH | Replace with useSharedValue |
| src/Sheet.tsx | 45 | Missing cancelAnimation in onBegin | HIGH | Add cancelAnimation(sv) |
| src/List.tsx | 78 | Math.random() as key | MEDIUM | Use stable unique ID |
  1. Severity levels:

- CRITICAL: Will crash or break animations (missing GestureHandlerRootView, hooks in worklets, Babel plugin order wrong) - HIGH: Causes jank/dropped frames (useState for animation, withSpring in onUpdate, missing cancelAnimation, missing velocity) - MEDIUM: Sub-optimal but works (no reduced motion support, no animation cleanup on unmount, shadow on Android) - LOW: Style/convention (missing spring presets, could use better easing)

  1. Ask the user: "I found X issues in Y files. Want me to fix all of them automatically?" — then apply all fixes if confirmed.
  2. After fixing, re-scan to confirm zero remaining violations and report:

- Total issues found → fixed - Files modified - Expected performance improvement (e.g., "Removed 3 JS-thread bottlenecks — gestures should now track at 60fps")

What to Check (scan checklist)

  • useState/setState used for values that drive animations → replace with useSharedValue
  • withTiming/withSpring called inside gesture .onUpdate → replace with direct assignment
  • .value read directly in JSX render → wrap in useAnimatedStyle
  • Animation created in render return → move to handler/effect
  • Missing cancelAnimation in gesture .onBegin → add it
  • Missing velocity in withSpring after gesture .onEnd → add {velocity: e.velocityX}
  • Shadow properties animated on Android → switch to elevation
  • Math.random() used as list item key → use stable ID
  • Large staggered delays on 100+ items → cap with Math.min()
  • Missing GestureHandlerRootView wrapping the app
  • Missing animation cleanup in useEffect return
  • Missing mounted guard for runOnJS in useAnimatedReaction
  • 'worklet' directive missing in custom worklet functions
  • React hooks used inside worklets
  • async/await inside worklets
  • Large objects/arrays captured in worklet closures
  • Babel plugin not last in plugins array
  • Animating borderWidth, shadowOffset, shadowRadius on Android
  • Missing overflow: 'hidden' for borderRadius animation on Android
  • No reduced motion handling (ReduceMotion.System or useReducedMotion())
  • Animated.FlatList missing skipEnteringExitingAnimations for initial render

Installation

npm install react-native-reanimated react-native-worklets react-native-gesture-handler
// babel.config.js
module.exports = {
  presets: ['module:metro-react-native-babel-preset'],
  plugins: ['react-native-reanimated/plugin'], // MUST be last
};

After install: clear Metro cache (npx react-native start --reset-cache), rebuild native (pod install / gradlew clean).

Core Pattern — The Only Pattern You Need

const offset = useSharedValue(0);

const animatedStyle = useAnimatedStyle(() => ({
  transform: [{ translateX: offset.value }],
}));

const animate = () => {
  offset.value = withSpring(100, { damping: 15, stiffness: 150 });
};

<Animated.View style={[styles.box, animatedStyle]} />;

Animation Function Selection

ContextUseWhy
During gesture (finger down)Direct assignmentFollows finger at 60fps
Gesture releasewithSpring + velocityNatural physics feel
Fixed-duration transitionwithTiming (200-500ms)Predictable timing
Momentum/flingwithDecayNatural deceleration
Toggle statewithSpringBouncy feedback

Spring Presets

const SPRING = {
  gentle:  { damping: 15, stiffness: 50 },   // Slow, smooth
  normal:  { damping: 10, stiffness: 100 },  // Balanced
  snappy:  { damping: 20, stiffness: 300 },  // Quick, snappy
  noBounce:{ damping: 30, stiffness: 200 },  // Critically damped
};

Gesture Pattern (Pan with Spring Back)

const offsetX = useSharedValue(0);
const startX = useSharedValue(0);

const pan = Gesture.Pan()
  .onBegin(() => {
    cancelAnimation(offsetX);
    startX.value = offsetX.value;
  })
  .onUpdate((e) => {
    offsetX.value = startX.value + e.translationX; // Direct assignment
  })
  .onEnd((e) => {
    offsetX.value = withSpring(0, { velocity: e.velocityX, damping: 15 });
  });

Performance Targets

  • Frame budget: 16.67ms (60fps) / 8.33ms (120fps ProMotion)
  • JS thread: < 8ms per frame
  • UI thread: < 10ms per frame
  • Animated properties per component: Keep to 2-4 max

Anti-Patterns to Fix on Sight

Anti-PatternFix
useState driving animation valuesReplace with useSharedValue
withTiming(event.translationX) in .onUpdateDirect assign: sv.value = event.translationX
Reading sv.value in JSX renderUse useAnimatedStyle
Creating withTiming() in render returnMove to event handler / useEffect
Missing cancelAnimation on gesture beginAdd cancelAnimation(sv) in .onBegin
Missing velocity on spring after gestureAdd {velocity: event.velocityX}
Shadow animation on AndroidUse elevation instead
Math.random() as list item keyUse stable unique IDs
100+ items with FadeIn.delay(i * 10)Cap delay: Math.min(i * 50, 1000)

Platform-Specific Rules

Android

  • Use elevation instead of shadow properties for animated shadows.
  • Use overflow: 'hidden' on parent for smooth borderRadius animation.
  • Reduce animation complexity on low-end devices (skip rotation, limit properties).
  • Avoid animating borderWidth, shadowOffset, shadowRadius — they jank on Android.

iOS

  • Shadow properties (shadowOpacity, shadowRadius, shadowOffset) are animatable.
  • ProMotion displays support 120fps — use spring animations to benefit from variable refresh.
  • Use enableLayoutAnimations(true) (enabled by default).

Memory Management

useEffect(() => {
  return () => {
    cancelAnimation(offset);
    cancelAnimation(scale);
  };
}, []);

For reactions that call runOnJS, guard with a mounted flag:

const isMounted = useSharedValue(true);
useEffect(() => () => { isMounted.value = false; }, []);

useAnimatedReaction(
  () => progress.value,
  (val) => {
    if (val >= 1 && isMounted.value) runOnJS(onComplete)();
  }
);

Worklet Rules

  • 'worklet' directive must be the first statement in the function body.
  • Auto-workletized contexts (no manual directive needed): useAnimatedStyle, useAnimatedProps, useDerivedValue, useAnimatedReaction, useAnimatedScrollHandler, gesture callbacks.
  • Never use React hooks, async/await, DOM APIs, or localStorage inside worklets.
  • Never close over large arrays/objects — they get copied to the UI thread.
  • Use runOnJS(fn)(args) to call JS from worklets; use runOnUI(fn)(args) to call worklets from JS.

Layout Animations Quick Reference

<Animated.View
  entering={FadeInUp.delay(index * 50).springify().damping(12)}
  exiting={FadeOut.duration(200)}
  layout={Layout.springify()}
/>
  • Use staggered delays for lists: delay(index * 50).
  • Use stable unique keys — never Math.random().
  • Use skipEnteringExitingAnimations on Animated.FlatList for initial render.
  • Handle reduced motion: entering={reducedMotion? undefined: FadeIn}.

Debugging Checklist

  1. Babel plugin is last in plugins array
  2. Metro cache cleared (--reset-cache)
  3. Native code rebuilt (pod install / gradlew clean)
  4. 'worklet' directive present in custom worklet functions
  5. Hooks only at component top level (never in worklets)
  6. Shared values used for animation state
  7. GestureHandlerRootView wraps the app
  8. Animation functions assigned to .value (not called standalone)
  9. Previous animations cancelled before new ones

Reference Files

For detailed API docs, examples, and patterns, read these files as needed:

  • Fundamentals & Getting Started: Installation, prerequisites, New Architecture setup, core concepts (Shared Values, Animated Styles, Animated Components), first animation walkthrough, architecture overview.
  • Animation Functions: withTiming, withSpring, withDecay, modifiers (withDelay, withRepeat, withSequence, withClamp), easing functions, spring physics, callbacks.
  • Hooks & Utilities: All hooks (useSharedValue, useAnimatedStyle, useAnimatedProps, useDerivedValue, useAnimatedReaction, useAnimatedRef, useAnimatedScrollHandler, useScrollViewOffset, useAnimatedKeyboard, useAnimatedSensor, useFrameCallback), utility functions (runOnJS, runOnUI, cancelAnimation, interpolate, interpolateColor, clamp).
  • Worklets Deep Dive: Threading model, 'worklet' directive rules, closure capture, custom runtimes, thread communication (runOnUI, runOnJS, runOnUISync), scheduling, debugging worklets.
  • Layout Animations: Entering/exiting animations (Fade, Slide, Zoom, Bounce, Flip, Rotate, etc.), layout transitions, keyframe animations, list animations, shared element transitions.
  • Gestures Integration: All gesture types (Tap, Pan, Pinch, Rotation, Fling, LongPress), gesture configuration, composition (Simultaneous, Exclusive, Race), common patterns (swipeable item, bottom sheet, pull-to-refresh, carousel, photo viewer).
  • Best Practices & Performance: 60fps performance principles, animation optimization patterns, anti-patterns to avoid, debugging strategies, platform-specific guidelines (Android/iOS), memory management, complex animation patterns.
  • Troubleshooting: Installation issues, build errors, runtime errors, animation issues, gesture issues, performance issues, platform-specific issues, error message reference.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.37%
按下载量换算77

Claude

31.64%
按下载量换算65

Cursor

17.77%
按下载量换算37

Gemini CLI

9.94%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills