motiscope-analyze
Analyze a screen recording of an animation to characterize its motion — timing, easing, transforms, and sequencing — so it can be recreated as web code. Use…
Rebuild a whole landing page / multi-section website from a screen recording that scrolls or walks through it. Use when the user has a recording of an ENTIRE page (not a single animation) and wants the full page recreated — layout, sections, copy, design system, and scroll
$ npx -y skills add KumarSashank/motiscope --skill rebuild-site --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/rebuild-siteContext preview
The summary Claude sees to decide when to auto-load this skill.
Rebuild a whole landing page / multi-section website from a screen recording that scrolls or walks through it. Use when the user has a recording of an ENTIRE page (not a single animation) and wants the full page recreated — layout, sections, copy, design system, and scroll
name: rebuild-site description: Rebuild a whole landing page / multi-section website from a screen recording that scrolls or walks through it. Use when the user has a recording of an ENTIRE page (not a single animation) and wants the full page recreated — layout, sections, copy, design system, and scroll animations. Orchestrates analyze (measured timing + section structure + curated frames) + asset generation + a full multi-section build. For one isolated animation, use /motiscope:recreate instead. argument-hint: "[path-to-video] [gsap|css|framer]" allowed-tools: Bash, Read, Write, Edit, AskUserQuestion user-invocable: true
Rebuild a whole landing page from a walkthrough recording. This is `analyze` + `recreate` applied to an entire page, and it leans on the same division of labor:
transitions, and per-section entrance easing, and curates the frames that show each section.
system, and *what kind* of animation each uses (open vocabulary — scroll reveals, pins, masks, draws, whatever you see).
It's a team effort: measured timing + curated frames + your vision + generated assets → a full page. Be honest about which is which in the final summary.
<!-- motiscope:preamble:start -->
SCRIPTS="${CLAUDE_PLUGIN_ROOT:-}/scripts"; REFS="${CLAUDE_PLUGIN_ROOT:-}/references"
[ -f "$SCRIPTS/ingest.py" ] || { SCRIPTS="<abs dir of this SKILL.md>/../../scripts"; REFS="<...>/../../references"; }(Windows: `python`.) <!-- motiscope:preamble:end -->
python3 "$SCRIPTS/mvsetup.py" --check # exit 0 = ready; else hand to /motiscope:doctor
Resolve the video from `$1`, else scan `animations/` (as in `analyze`).
python3 "$SCRIPTS/ingest.py" "<video>" --preset landing
`landing` gives readable 1280px frames and auto-decomposes onto the motion. The result:
**stagger timing**, and curated frames covering each section.
For a long clip, note it may exceed one pass; you can also re-run focused on a range (`--start/--end`) to get denser frames for a specific section.
`Read` `report.md` (the measured timeline) and **every curated frame** (parallel Reads). Then reconstruct — this is your vision doing the work — and present a **site plan** to the user:
1. **Design system:** palette (hexes), typography (name the actual fonts if you can — e.g. *Martian Mono*), spacing/scale, brand/logo, light/dark. 2. **Sections in order:** for each — a name (hero / features / how-it-works / pricing / FAQ / footer / …), its **layout**, its **copy transcribed verbatim** from the frames, and the **imagery** it contains. 3. **Motion per section:** what animates and *how* (scroll-reveal, pin+scrub, stagger, mask, draw, parallax — name what you see), wired to the **measured timing** (durations, `bezier`, stagger `each_ms`) from the segment table. Landing walkthroughs are almost always **scroll-driven** — assume ScrollTrigger unless the frames say otherwise.
Show the plan and let the user correct it before building.
List the **photographic** assets the design needs (hero shots, feature photos, backgrounds — anything that isn't UI you can build in CSS/SVG). Then ask the user (`AskUserQuestion`): (a) point at their own files, (b) generate, or (c) placeholders. For (b), generate with the real provider:
python3 "$SCRIPTS/assetgen.py" --check # confirm a key (gemini) is set python3 "$SCRIPTS/assetgen.py" generate --type image --provider gemini \ --prompt "<match the shot + the design's grade>" --out assets/hero.png --aspect-ratio 16:9 # then shrink for the web: ffmpeg -i assets/hero.png -vf scale=1200:-2 -q:v 5 assets/hero.jpg
Match each prompt to what the frame shows and the design's color grade. If no key, hand to `/motiscope:doctor`. Never write keys into output or commit them.
Default target **GSAP + ScrollTrigger** (`$2` overrides: `css` | `framer`). Read `"$REFS/easing-map.md"` and `"$REFS/targets/<target>.md"`. <!-- motiscope:claude-only:gsap-skills:start --> For GSAP, **defer to the official gsap-* skills** (gsap-timeline, gsap-core, **gsap-scrolltrigger** for the scroll reveals/pins, gsap-react if the project is React, gsap-utils for stagger). <!-- motiscope:claude-only:gsap-skills:end -->
Build one **standalone page** (`index.html` + `assets/`) with:
stagger — not guessed values,
Keep the timing measured; build the effects from what you saw.
Write to `./motiscope-output/site/`. Then:
frames; photos = generated (Imagen); fonts = identified.* Flag what to fine-tune.
company's site), add a **prominent credit** in the footer (link the original), f
Recreate any web animation from a screen recording. A motion-design plugin: analyzes motion (timing, easing, stagger, loops) and rebuilds it as GSAP / CSS / Framer Motion / Lottie code.
Repo: KumarSashank/motiscope
Analyze a screen recording of an animation to characterize its motion — timing, easing, transforms, and sequencing — so it can be recreated as web code. Use…
Check and configure motiscope — verify ffmpeg/ffprobe are installed and scaffold the API-key config used for optional (stubbed) asset generation. Use for…
Rebuild a whole landing page / multi-section website from a screen recording that scrolls or walks through it. Use when the user has a recording of an ENTIRE…
Recreate an analyzed animation as working web code — GSAP (JavaScript), CSS/Web Animations, Framer Motion (React), or Lottie/SVG. Use after…
Analyze a screen recording of an animation to characterize its motion — timing, easing, transforms, and sequencing — so it can be recreated as web code. Use…
Check and configure motiscope — verify ffmpeg/ffprobe are installed and scaffold the API-key config used for optional (stubbed) asset generation. Use for…