Agent Skill · Amplitude

launch-video

Plan and produce video and visual assets for product launches — demo videos, GIFs, screenshots, and programmatic video with Remotion. Use this skill whenever someone asks to create a demo video, record a product walkthrough, make a launch GIF, plan visual assets for a launch, or decide what media to create for an announcement. Also trigger for "what should our demo video show," "how do we record the product," "I need visuals for the launch," "make a video for this launch," or any request about creating non-text media tied to a product release. Covers video scripting, recording, programmatic video (Remotion), GIF creation, screenshot best practices, and per-platform format guidance.

Provider: Amplitude Path in repo: launch-skills/skills/launch-video/SKILL.md

Skill body

Launch Video & Visuals

This skill covers the creation of visual and video assets for product launches. These are the highest-impact assets you’ll create — a great demo video or GIF stops the scroll, communicates value faster than words, and gets shared. A bad one can actively undermine the launch by making the product look confusing or unpolished.

The media hierarchy

For most launches, the decision of what to create follows this order:

  1. Demo video — Shows the product in action with context. Best for explaining how something works.
  2. Animated GIF or screen recording loop — Shorter, auto-plays inline on social. Best for showing a specific interaction.
  3. Annotated screenshot — Static, fast to produce, good for showing a specific state or feature.
  4. Diagram or illustration — For architecture, concepts, or things that can’t be screenshotted.

In general: use video when the flow matters, GIF when a single interaction communicates the value, and screenshots when one specific state is the point.

Demo video

Length by platform

Platform Target length Hard limit
Product Hunt 60-90 seconds 3 minutes
Landing page hero 60-90 seconds 2 minutes
X/Twitter embedded 30-45 seconds 2 minutes 20 seconds
LinkedIn 45-90 seconds 10 minutes
YouTube (full demo) 3-5 minutes

The platform hard limits aren’t just technical — engagement drops sharply beyond them. A 4-minute PH video is effectively no video.

Script structure (for short-form demo)

Keep this to 5-7 beats:

  1. Problem (5-10 seconds) — State the problem being solved. One sentence. Not a long setup.
  2. Introduce the solution (5-10 seconds) — Name the product and the core value prop.
  3. Demo: happy path (30-60 seconds) — Show the primary use case working end-to-end. This is the heart of the video.
  4. Key capabilities (10-20 seconds) — 2-3 quick cuts showing secondary features. Keep it fast.
  5. Proof point (5-10 seconds) — A metric, customer quote, or benchmark. One slide or voiceover line.
  6. CTA (5 seconds) — One action. “Try it free at [URL]” or “Sign up at [URL].”

Avoid: long intros, animated logos (audiences click away), slow product startup screens, and anything that doesn’t show the product doing something.

Recording tips

Voiceover vs. silent

Both work. The choice depends on context:

If you’re unsure: record the demo silently, add text overlays for key moments, then decide whether to add voiceover based on the platform.

Tooling

Programmatic video with Remotion

For teams that ship fast and don’t want to wait on a motion designer for every launch, programmatic video lets you write React components and render them as MP4 files. The video is code: version-controlled, parametrized, and iteratable without a timeline editor.

When to use programmatic video

Works well for:

Less suited for:

For major Tier 1 launches, you might combine approaches: programmatic video for social clips and a professional motion designer for the hero video.

Remotion setup

npx create-video@latest my-launch-video
cd my-launch-video
npm start  # Opens Remotion Studio for preview

Key concepts:

Scene planning template

Before writing code, plan the video scene by scene:

Field Description
Scene # Sequential number
Duration Seconds (e.g., “3s”)
Purpose What this scene communicates (one sentence)
Text content Exact text that appears on screen
Visual elements Screenshots, icons, code snippets, diagrams
Animation style Fade in, slide from left, typewriter, scale up, etc.
Transition out How this scene exits (fade, cut, slide)

Code patterns

Sequenced scenes:

<Sequence from={0} durationInFrames={90}>
  <HookScene />
</Sequence>
<Sequence from={90} durationInFrames={120}>
  <DemoScene />
</Sequence>
<Sequence from={210} durationInFrames={90}>
  <CTAScene />
</Sequence>

Text reveal:

const frame = useCurrentFrame();
const opacity = interpolate(frame, [0, 20], [0, 1], {
  extrapolateRight: 'clamp',
});

return <h1 style={{ opacity }}>Your primary value prop here</h1>;

Iteration workflow

  1. Plan scenes using the template above
  2. Collect assets — screenshots, logos, product images → public/ folder
  3. Write or prompt the first draft — get the structure and content right
  4. Preview in Studio — watch it through, note timing and visual issues
  5. Iterate — adjust timing, animation, and content. Usually takes 2-4 rounds
  6. Rendernpx remotion render src/index.ts MyComposition out/video.mp4
  7. Check platform specs — verify resolution and file size work for your target platform

GIFs and short loops

GIFs auto-play on most platforms and are ideal for showing a single interaction — a UI state change, a CLI command output, an API response. They’re faster to produce than video and often more effective for social posts.

When to use GIF vs. video

Use GIF when:

Use video when:

Recording GIFs

Optimizing GIF file size

Screenshots

Screenshots are underused in launches. A well-composed screenshot with clear annotation communicates a feature faster than a paragraph.

Composition

Annotation tools

Browser framing

For web products, use a browser frame to make screenshots look intentional rather than raw. Tools like Screely, Browserframe, or custom Figma templates add a browser chrome overlay.

Multiple screenshots for feature grids

Landing pages and Product Hunt galleries often need 3-5 screenshots showing different aspects of the product. Plan these as a set:

Asset checklist by tier

Tier 1

Tier 2

Tier 3

Open Graph images

Every piece of content that gets shared as a link (blog post, landing page, changelog entry) should have a custom Open Graph (OG) image. The OG image is what appears when the link is pasted into Twitter, Slack, iMessage, or LinkedIn.

Video specs by platform

Platform Resolution Max length Format Notes
X/Twitter 1280×720 or 1920×1080 2:20 MP4 (H.264) Autoplay muted — add captions
LinkedIn 1920×1080 10 min MP4 (H.264) Square (1080×1080) works well in feed
Product Hunt 1920×1080 90 sec MP4 Keep under 50MB
Website hero 1920×1080 No limit MP4/WebM Consider autoplay loop (no audio)

Companion skills

Skill frontmatter

suggest_when: User asks to create a demo video, record a walkthrough, make a launch GIF, plan visual assets, "what should our demo video show", "I need visuals for the launch", "make a video for this launch", or any request about creating non-text media for a product launch.