by Alexwtlf
Create polished product demo videos with AI coding agents and Remotion. The UI is code, not a screen recording.
# Add to your Claude Code skills
git clone https://github.com/Alexwtlf/agentic-product-demoGuides for using ai agents skills like agentic-product-demo.
agentic-product-demo is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Alexwtlf. Create polished product demo videos with AI coding agents and Remotion. The UI is code, not a screen recording. It has 51 GitHub stars.
agentic-product-demo's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/Alexwtlf/agentic-product-demo" and add it to your Claude Code skills directory (see the Installation section above).
agentic-product-demo is primarily written in TypeScript. It is open-source under Alexwtlf on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agentic-product-demo against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
Point your coding agent at your product and get a demo video back — built in React, not recorded off a screen.
What's in it · Your first clip · Motion rules · Working with an agent · The frame gate · Licensing
The hard part is not making a video. It is making one that does not look like a screen recording. This repo is the motion vocabulary, the render pipeline and the frame gate that got mine there, plus the skill file that makes an agent follow them instead of improvising.

src/compositions/Demo.tsx — sixteen seconds, exactly what npm run render
gives you on a fresh clone. Nothing on screen snaps between frames: the counter
counts, the rows stagger, the pointer stops before it presses. A screen
recording of a real app shows every one of those as a teleport.
npm install
npm run adopt ../src/app/globals.css # take your product's real tokens
npm run studio # preview at localhost:3000
npm run preview # stills on every beat + a contact sheet — seconds
npm run render # renders, stitches, and gates the result
Node 20+. First render downloads a headless Chromium (~100 MB); if that fails see Troubleshooting.
Works with Claude Code, Cursor, or anything else that loads a skill file. It reads your product, puts up a shot list, and waits for you to correct it — what that looks like. Then it writes the composition, renders it, and refuses to pass a render it cannot verify.

The same pipeline, cut for Athana — five movements, one flow, no screen recorder. It runs on that product's own assets, which is why the composition that ships here is the generic one above.
src/motion.ts |
The vocabulary. Curves, durations, stagger, and the helpers that stop states teleporting. Imports nothing. |
src/title-card.tsx |
The cold open — words rising out of per-word masks. |
src/chrome.tsx |
The fake app window, the pointer, the click beats. |
src/compositions/Demo.tsx |
A worked example. Copy this, change the flow. |
scripts/preview.sh |
Stills on every beat, plus a contact sheet. What the gate cannot see. |
scripts/render.sh |
Sequence render → 1536×960 mp4 + poster → gate. |
scripts/check-frames.mjs |
The frame gate. See below. |
scripts/add-sfx.sh |
Optional sound pass over the finished mp4. |
scripts/beats/ |
One beat file per clip — where the sound is scored. |
.claude/skills/product-demo/ |
The skill: the playbook an agent reads before touching any of it. |
AGENTS.md |
What an agent needs on arrival — commands, and the rules it would otherwise break. |
AGENTS.md at the root is read natively by Claude Code, Codex, Cursor, Aider,
Copilot, Gemini CLI and Windsurf — an agent opening this folder is oriented
before you say anything. CLAUDE.md points at it rather than repeating it.
Cursor users who want the skill loaded as a skill: copy
.claude/skills/product-demo/ to .cursor/skills/. Same file either way.
A composition is a pure function of the frame number. useCurrentFrame()
hands you N, you return what the screen looks like at frame N. Nothing is
stateful and nothing animates on its own — if a value is not derived from the
frame, it does not move.
That is why every clip starts with a beat sheet: a block of named
constants for the frame each thing happens on. Look at the top of
src/compositions/Demo.tsx — FIELD_CLICK = 20, RUN_CLICK = 88,
TOAST_AT = 282. Decide those before you write any JSX, because every
entrance, colour change and cursor move is anchored to one of them.
Elements are positioned in absolute pixels rather than with flexbox. A demo is choreography: you need to know where a button is in order to put a pointer on it at frame 214.
cp src/compositions/Demo.tsx src/compositions/MyClip.tsx
Rename the export Demo → MyClip and DEMO_LEN → MYCLIP_LEN.
src/Root.tsx currently returns a single <Composition>. Wrap it in a
fragment and add yours next to it:
import { MyClip, MYCLIP_LEN } from "./compositions/MyClip";
return (
<>
<Composition id="demo" /* … */ />
<Composition
id="myclip"
component={() => (
<Clip body={<MyClip />} name="My Product" kicker="One line of promise" />
)}
durationInFrames={MYCLIP_LEN + TITLE_LEN}
fps={FPS}
width={WIDTH}
height={HEIGHT}
/>
</>
);
npm run studio # localhost:3000, pick "myclip", scrub the timeline
Scrubbing is where the work happens. Jump to a beat, look at it, adjust the constant, look again.
sh scripts/preview.sh myclip
Reads the beat sheet out of your composition and shoots a still on each beat
and again twelve frames later, then tiles them into
out/myclip-preview/contact.jpg. Seconds, where a render is minutes.
Do this before every render. The gate that runs afterwards measures two numbers per frame and cannot see whether the picture is right — a panel over the header, a phase drawn empty, a pointer pressing the number above the button all sail through it. Looking is the only thing that catches those, and this makes looking cheap.
It cannot see time, though. Rhythm only exists in motion, so watch the mp4 when it comes out.
sh scripts/render.sh myclip 366 # 366 = which frame becomes the poster
npm run render is just this with demo. Output lands in out/.
The example runs 480 frames — 16 seconds. That is a default, not a ceiling.
Length follows your flow rather than a template. Budget one step, add 66 for
the title and ~30 for the outro, and set MYCLIP_LEN to the total:
| pace | simple step | movement with its own beats |
|---|---|---|
| punchy | 70 | 170 |
| standard | 100 | 240 |
| cinematic | 140 | 330 |
A three-step flow lands near 14 seconds; a five-movement product story runs past 40. Nothing in the pipeline cares which you pick — the render, the gate and the sound pass all read the length off the composition.
Working with an agent, you do not do this arithmetic: it derives the number from the flow you described and shows its working, so you can answer "punchy" in one word instead of counting frames.
bash scripts/add-sfx.sh myclip # out/myclip-sound.mp4
A clip autoplaying in a page has to stay muted — browsers block autoplay with audio, and a scored file simply will not start. So for a page loop the silent mp4 is the deliverable and the scored one is an extra.
For a launch video nobody autoplays: sound can be the point, and the scored file is the one you ship. Either way the pass writes a new file and the silent original is never overwritten.
The pass runs over the already-rendered mp4 and copies the video stream byte
for byte (-c:v copy), so no frame is redrawn and the gate does not need
re-running. Beats live in scripts/beats/<id>.txt, written against the
beat-sheet constants at the top of your composition. Nine sounds, chosen by
level of motion rather than by element — the palette and the rules are in
scripts/add-sfx.sh and in the skill.
Run this first, before you draw anything:
npm run adopt # finds your stylesheet
npm run adopt ../src/app/globals.css # or name it
npm run adopt ../app/globals.css --curves --dry-run
It reads your stylesheet and rewrites src/theme.css with your tokens —
--primary becomes the kit's --brand, a --poster/--backdrop becomes
--ground, and anything with no counterpart is derived from what did match
rather than left as a stranger's purple. --curves also copies your
cubic-bezier easings into src/motion.ts, so the film moves the way your
product moves. --dry-run reports and writes nothing.
It prints what it matched and what it could not, so a half-adopted palette is visible instead of silent:
✓ --brand --primary taken
~ --brand-soft — derived from --brand
! --ground — PLACEHOLDER — no match
Handles Tailwind 3 and 4, :root / .dark / [data-theme] /
prefers-color-scheme, and one level of var() indirection. It takes the
dark palette by default — the title card, the ground and the loop seam all
sit on a dark stage — so pass --mode=light for a light demo.
It copies, it does not link. Remotion cannot import an app stylesheet: that
pulls Tailwind plugins and font files that live on the app's own serving path.
So these are snapshots, the written file records its source and date, and a
token you change in the app afterwards needs a rerun. Hand-edits to
src/theme.css do not survive the next run — put a deliberate override in a
composition, or add your name to ALIASES in the script.
Then, by hand:
src/fonts.ts — swap the face. The script tells you which one your
stylesheet asks for, but cannot swap it for you: the family has to exist in
@remotion/google-fonts or be wired up as a local file. A fontFamily
string alone loads nothing; skip loadFont() and every frame silently
renders in a system fallback.MyClip.tsx — replace the flow with the real steps of your product, in the
real order, with copy taken from the live UI. A demo that walks a flow the
product doesn't have proves nothing, however good it looks.The palette is the cheap half. The copy is what makes a frame recognisable as your software — t