Kimeur

Motion Launch Videos — Development skill for Claude Code

Development community

Claude Code plugin + skill: turn a short brief into a looping kinetic-typography launch video.

How to install Motion Launch Videos

This entry records only its repository, not the path inside it, so there is no exact command to give. Open Kimeur/motion-launch-videos and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Motion Launch Videos does

Claude Code plugin + skill: turn a short brief into a looping kinetic-typography launch video. One self-contained HTML file with a pure seek(t), closed-form springs, per-glyph motion, real motion blur and a pixel-exact loop, rendered to MP4 with Playwright + ffmpeg.

Alternatives in Development

  • Epic Unblock — Sweep blocked epic issues and reopen anything whose dependencies are closed 243.5k ★
  • Mono Color Skill — One-ink editorial print image skill — warm paper, halftone photography, active negative space, and restrained 3k ★
  • Maestro Ralph — Closed-loop policy over the canonical Session/Run chain 530 ★

README

motion-launch-videos

Turn a short brief into a looping kinetic-typography launch video with Claude Code: one self-contained HTML file, rendered to MP4 with real motion blur and a seamless loop.

![A 12 second launch bumper for Crux, made with this skill](examples/crux-launch/preview.gif)

Made with this skill: a 12 s launch bumper for [Crux](https://cruxpost.com), the author's product. Every word on screen is taken from the live site, with sources in [BRIEF.md](examples/crux-launch/BRIEF.md). Files: [MP4](examples/crux-launch/crux-launch.mp4), [the single HTML file](examples/crux-launch/crux-launch.html), [design spec](examples/crux-launch/DESIGN.md).

You give it a product and what the film should say, or just a URL. Claude reads the product's site, writes 3 to 5 beats of at most four words each, lays every beat out on a baseline grid, and writes the whole film as one HTML canvas page that can draw any frame from the time alone. Then it checks the film for cramped type, missing glyphs, off-palette colours and loop errors, renders it frame by frame with subframe motion blur, and verifies the MP4 it delivers.

Install

As a plugin, from this repo's marketplace (run these inside Claude Code):

/plugin marketplace add Kimeur/motion-launch-videos
/plugin install motion-launch-videos@motion-launch-videos

Without the plugin system, clone the repo and put the skill where Claude Code looks for personal skills:

git clone https://github.com/Kimeur/motion-launch-videos
mkdir -p ~/.claude/skills
cp -R motion-launch-videos/plugins/motion-launch-videos/skills/motion-launch-videos ~/.claude/skills/

For a whole team, check the same folder into the project as `.claude/skills/motion-launch-videos/` instead.

Requirements

  • Node 20 or newer. The scripts need one package, playwright-core; Claude installs it next to the scripts with npm install --prefix --no-package-lock, or you add it to your project with `npm i -D playwright-core