Motion.dev Complete Documentation

Complete Motion.dev documentation - modern animation library for React, JavaScript, and Vue (formerly Framer Motion)

MIT-0 · Free to use, modify, and redistribute. No attribution required.
3 · 1.5k · 3 current installs · 3 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description say 'Motion.dev documentation' and the SKILL.md and included docs provide quick-start and reference content for Motion/Framer Motion; there are no unrelated credentials, binaries, or capabilities requested.
Instruction Scope
SKILL.md contains only documentation, usage examples, and a 'read_when' guide for when to use the skill; it does not instruct the agent to read unrelated files, access environment variables, or transmit data to unexpected endpoints.
Install Mechanism
There is no install spec and no code files; this instruction-only skill does not write or execute files on disk.
Credentials
The skill declares no required environment variables, credentials, or config paths — proportionate for a documentation-only skill.
Persistence & Privilege
No 'always' flag is set and no special privileges are requested. Model invocation is enabled by default (normal for skills), but the skill does not request persistent credentials or elevated access.
Assessment
This skill is low-risk: it's instruction-only documentation for the Motion.dev library with no installs or credential requests. Before installing, you may want to: (1) verify the content and links point to the official Motion project (links shown are to motion.dev and a GitHub repo), (2) confirm you trust the skill publisher if provenance matters (registry metadata shows an owner id but no homepage), and (3) if you prefer the model not call the skill autonomously, require explicit invocation by disabling model invocation or adjusting agent policies.

Like a lobster shell, security has layers — review code before you run it.

Current versionv0.1.0
Download zip
animationvk975avwm7nz4x6xat27zdkg2h180q5pcdocumentationvk975avwm7nz4x6xat27zdkg2h180q5pcframer-motionvk975avwm7nz4x6xat27zdkg2h180q5pcgesturesvk975avwm7nz4x6xat27zdkg2h180q5pcjavascriptvk975avwm7nz4x6xat27zdkg2h180q5pckeyframesvk975avwm7nz4x6xat27zdkg2h180q5pclatestvk975avwm7nz4x6xat27zdkg2h180q5pcmotionvk975avwm7nz4x6xat27zdkg2h180q5pcreactvk975avwm7nz4x6xat27zdkg2h180q5pcscrollvk975avwm7nz4x6xat27zdkg2h180q5pcspringvk975avwm7nz4x6xat27zdkg2h180q5pctransitionsvk975avwm7nz4x6xat27zdkg2h180q5pcvuevk975avwm7nz4x6xat27zdkg2h180q5pc

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

Motion.dev Documentation

Motion is a modern animation library for React, JavaScript, and Vue. It's the evolution of Framer Motion, offering:

  • Tiny size: Just 2.3kb for the mini HTML/SVG version
  • High performance: Hardware-accelerated animations
  • Flexible: Animate HTML, SVG, WebGL, and JavaScript objects
  • Easy to use: Intuitive API with smart defaults
  • Spring physics: Natural, kinetic animations
  • Scroll animations: Link values to scroll position
  • Gestures: Drag, hover, tap, and more

Quick Reference

Installation

npm install motion

Basic Animation

import { animate } from "motion"

// Animate elements
animate(".box", { rotate: 360, scale: 1.2 })

// Spring animation
animate(element, { x: 100 }, { type: "spring", stiffness: 300 })

// Stagger multiple elements
animate("li", { opacity: 1 }, { delay: stagger(0.1) })

React

import { motion } from "motion/react"

<motion.div
  animate={{ rotate: 360 }}
  transition={{ duration: 2 }}
/>

Scroll Animations

import { scroll } from "motion"

scroll(animate(".box", { scale: [1, 2, 1] }))

Documentation Structure

  • quick-start.md - Installation and first animation
  • More docs to be added...

When to Use This Skill

Use this skill when:

  • Implementing animations in web applications
  • Optimizing animation performance
  • Creating scroll-based effects
  • Building interactive UI with gestures
  • Migrating from Framer Motion to Motion

External Resources

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…