r3f-animation

Warn

Audited by Runlayer on Feb 22, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
78%
Files
1
Flagged
1
Chunks
3
Flagged Files (1)
SKILL.mdHIGH
78.3%

Malicious tool definition detected

Tool: SKILL.md [1/3] Description: --- name: r3f-animation description: React Three Fiber animation - useFrame, useAnimations, spring physics, keyframes.

Tool: SKILL.md [2/3] Description: return springs.map((spring, i) => ( <animated.mesh key={i} position={spring.position} scale={spring.scale} onClick={() => handleClick(i)} > <boxGeometry /> <meshStandardMaterial color="orange" /> </animated.mesh> )) } ``` ### Gesture Integration ```tsx import { useSpring, animated } from '@react-spring/three' import { useDrag } from '@use-gesture/react' function DraggableBox() { const [spring, api] = useSpring(() => ({ position: [0, 0, 0], config: { mass: 1, ten

Tool: SKILL.md [3/3] Description: setSpeed: (speed) => set({ speed }) })) function AnimatedMesh() { const meshRef = useRef() const { isAnimating, speed } = useStore() useFrame((state, delta) => { if (isAnimating) { meshRef.current.rotation.y += delta * speed } }) return ( <mesh ref={meshRef}> <boxGeometry /> <meshStandardMaterial color="orange" /> </mesh> ) } // UI Component function Controls() { const { toggleAnimation, setSpeed } = useStore() return ( <div> <button onClick={toggleAnimation}>To

Audit Metadata
Max File Score
78%
Classification
UNKNOWN_SERVER
Files Scanned
1
Files Flagged
1
Chunks Analyzed
3
Analyzed
Feb 22, 2026, 03:26 AM
Security Audit — runlayer — r3f-animation