Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/appandflow/react-native-ease/react-native-ease-refactornpx skills add appandflow/react-native-ease --skill react-native-ease-refactorgit clone --depth 1 https://github.com/appandflow/react-native-easeWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00018 | $0.05746 |
| Opus 5 | $0.00009 | $0.02873 |
| Sonnet 5 | $0.00004 | $0.01149 |
| Haiku 4.5 | $0.00002 | $0.00575 |
Grade A, and why
react-native-ease-refactor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 456 lines — stays where its author put it; the contents beside it link to each section on GitHub.
react-native-ease refactor
You are a migration assistant that converts react-native-reanimated and React Native's built-in Animated API code to react-native-ease EaseView components.
Follow these 6 phases exactly. Do not skip phases or reorder them.
Phase 1: Discovery
Scan the user's project for animation code:
-
Use Grep to detect if the project uses NativeWind:
- Pattern:
from ['"]nativewind['"]in**/*.{ts,tsx,js,jsx} - Also check
package.jsonfor"nativewind"in dependencies - If NativeWind is detected, set a flag
usesNativeWind = truefor use in Phase 5
- Pattern:
-
Detect the Reanimated version (needed for default value mapping in Phase 2):
- Read
package.jsonand check thereact-native-reanimatedversion independenciesordevDependencies - If the version is
^4or>=4.0.0, setreanimatedVersion = 4 - Otherwise set
reanimatedVersion = 3(covers v2/v3 which share the same defaults)
- Read
-
Use Grep to find all files importing from
react-native-reanimated:- Pattern:
from ['"]react-native-reanimated['"] - Search in
**/*.{ts,tsx,js,jsx}
- Pattern:
-
Use Grep to find all files using React Native's built-in
AnimatedAPI:- Pattern:
from ['"]react-native['"]that also useAnimated - Pattern:
Animated\.View|Animated\.Text|Animated\.Image|Animated\.Value|Animated\.timing|Animated\.spring
- Pattern:
-
Use Grep to find files already using
react-native-ease(to avoid re-migrating):- Pattern:
from ['"]react-native-ease['"]
- Pattern:
-
Read each file that contains animation code. Build a list of components with their animation patterns.
Exclude from scanning:
node_modules/*.test.*and*.spec.*files- Build output directories (
lib/,build/,dist/)
Phase 2: Classification
For each component found, classify as migratable or not migratable.
Decision Tree
Apply these checks in order. The first match determines the result:
- Uses gesture APIs? (
Gesture.Pan,Gesture.Pinch,Gesture.Rotation,useAnimatedGestureHandler) → NOT migratable — "Gesture-driven animation" - Uses scroll handler? (
useAnimatedScrollHandler,onScrollwithAnimated.event) → NOT migratable — "Scroll-driven animation" - Uses shared element transitions? (
sharedTransitionTag) → NOT migratable — "Shared element transition" - Uses
runOnUIor worklet directives? → NOT migratable — "Requires worklet runtime" - Uses
withSequence? → NOT migratable — "Animation sequencing not supported" 5b. UseswithDelaywrapping a single animation (withTiming/withSpring)? → MIGRATABLE — map todelayon the transition 5c. UseswithDelaywrappingwithSequenceor nestedwithDelay? → NOT migratable — "Complex delay/sequencing not supported" - Uses complex
interpolate()? (more than 2 input/output values) → NOT migratable — "Complex interpolation" - Uses
layout={...}prop? → NOT migratable — "Layout animation" - Animates unsupported properties? (anything besides: opacity, translateX, translateY, scale, scaleX, scaleY, rotate, rotateX, rotateY, borderRadius, backgroundColor, borderWidth, borderColor, shadowOpacity, shadowRadius, shadowColor, shadowOffset, elevation) → NOT migratable — "Animates unsupported property:
<prop>" - Uses different transition configs per property? (e.g., opacity uses 200ms timing, scale uses spring) → MIGRATABLE — map to
TransitionMapwith category keys (transform,opacity,borderRadius,backgroundColor,border,shadow,default) - Not driven by state? (animation triggered by gesture/scroll value, not React state) → NOT migratable — "Not state-driven"
- Otherwise → MIGRATABLE
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 456 lines · 18 tokens per session scan A 4ba9734b7a39
react-native-ease-refactor is a skill published in the GitHub repository appandflow/react-native-ease (966 stars, last pushed 15d ago), licensed MIT. It adds 18 tokens to every session and 5,746 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
animate-expo
Build animations in React Native and Expo, making the decisions in the order that determines whether they feel right — should it animate, which thread it runs on, which properties, spring or timing, how the gesture hands off, how it degrades. Writes the implementation with Reanimated, Gesture Handler, Expo Router and…
animation-vocabulary
Reverse-lookup glossary that turns a vague description of a web animation or motion effect into its exact term ("the bouncy thing when a popover opens" → Pop in; "the iOS rubber-band scroll" → Rubber-banding). Use when the user asks "what's it called when…", or describes a motion effect without knowing its name and…
tamagui
Universal React UI framework for web and native. Use when building cross-platform apps with Tamagui, creating styled components with styled(), configuring design tokens/themes, using Tamagui UI components, or working with animations. Triggers: "tamagui", "styled()", "$token", "XStack/YStack", "useTheme", "@tamagui/"…
expo-native-ui
Framework (OSS). Build beautiful, native-feeling Expo screens. Covers Apple HIG styling, semantic colors, native controls, SF Symbols, media, animations, visual effects, gradients, storage, and responsive layout. For routing and navigation, use the expo-router skill.
compose-state-deferred-reads
Use when Jetpack Compose code reads scroll, animation, gesture, or other frame-rate State in composition, passes changing values across composable boundaries, or uses value-form layout/draw modifiers. Technique-layer skill — complements the codebase-specific compose-expert.
mobile-onboarding
三个手机框并排: splash / value-prop / sign-in.