Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/google-labs-code/stitch-skills/remotion
remotion logo

remotion

google-labs-code/stitch-skills
30K installs6K stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/google-labs-code/stitch-skills --skill remotion

Summary

Generate walkthrough videos from Stitch projects using Remotion with smooth transitions, zooming, and text overlays

SKILL.md

Stitch to Remotion Walkthrough Videos

You are a video production specialist focused on creating engaging walkthrough videos from app designs. You combine Stitch's screen retrieval capabilities with Remotion's programmatic video generation to produce smooth, professional presentations.

Overview

This skill enables you to create walkthrough videos that showcase app screens with professional transitions, zoom effects, and contextual text overlays. The workflow retrieves screens from Stitch projects and orchestrates them into a Remotion video composition.

Prerequisites

Required:

  • Access to the Stitch MCP Server
  • Access to the Remotion MCP Server (or Remotion CLI)
  • Node.js and npm installed
  • A Stitch project with designed screens

Recommended:

  • Familiarity with Remotion's video capabilities
  • Understanding of React components (Remotion uses React)

Retrieval and Networking

Step 1: Discover Available MCP Servers

Run list_tools to identify available MCP servers and their prefixes:

  • Stitch MCP: Look for stitch: or mcp_stitch: prefix
  • Remotion MCP: Look for remotion: or mcp_remotion: prefix

Step 2: Retrieve Stitch Project Information

  1. Project lookup (if Project ID is not provided):
  • Call [stitch_prefix]:list_projects with filter: "view=owned"
  • Identify target project by title (e.g., "Calculator App")
  • Extract Project ID from name field (e.g., projects/13534454087919359824)
  1. Screen retrieval:
  • Call [stitch_prefix]:list_screens with the project ID (numeric only)
  • Review screen titles to identify all screens for the walkthrough
  • Extract Screen IDs from each screen's name field
  1. Screen metadata fetch:

For each screen:

  • Call [stitch_prefix]:get_screen with projectId and screenId
  • Retrieve:
  • screenshot.downloadUrl — Visual asset for the video
  • htmlCode.downloadUrl — Optional: for extracting text/content
  • width, height — Screen dimensions for proper scaling
  • Screen title and description for text overlays
  1. Asset download:
  • Use web_fetch or Bash with curl to download screenshots
  • Save to a staging directory: assets/screens/{screen-name}.png
  • Organize assets in order of the intended walkthrough flow

Step 3: Set Up Remotion Project

  1. Check for existing Remotion project:
  • Look for remotion.config.ts or package.json with Remotion dependencies
  • If exists, use the existing project structure
  1. Create new Remotion project (if needed):
   npm create video@latest -- --blank
  • Choose TypeScript template
  • Set up in a dedicated video/ directory
  1. Install dependencies:
   cd video
   npm install @remotion/transitions @remotion/animated-emoji

Video Composition Strategy

Architecture

Create a modular Remotion composition with these components:

  1. ScreenSlide.tsx — Individual screen display component
  • Props: imageSrc, title, description, width, height
  • Features: Zoom-in animation, fade transitions
  • Duration: Configurable (default 3-5 seconds per screen)
  1. WalkthroughComposition.tsx — Main video composition
  • Sequences multiple ScreenSlide components
  • Handles transitions between screens
  • Adds text overlays and annotations
  1. config.ts — Video configuration
  • Frame rate (default: 30 fps)
  • Video dimensions (match Stitch screen dimensions or scale appropriately)
  • Total duration calculation

Transition Effects

Use Remotion's @remotion/transitions for professional effects:

  • Fade: Smooth cross-fade between screens
  import {fade} from '@remotion/transitions/fade';
  • Slide: Directional slide transitions
  import {slide} from '@remotion/transitions/slide';
  • Zoom: Zoom in/out effects for emphasis
  • Use spring() animation for smooth zoom
  • Apply to important UI elements

Text Overlays

Add contextual information using Remotion's text rendering:

  1. Screen titles: Display at the top or bottom of each frame
  2. Feature callouts: Highlight specific UI elements with animated pointers
  3. Descriptions: Fade in descriptive text for each screen
  4. Progress indicator: Show current screen position in walkthrough

Execution Steps

Step 1: Gather Screen Assets

  1. Identify target Stitch project
  2. List all screens in the project
  3. Download screenshots for each screen
  4. Organize in order of walkthrough flow
  5. Create a manifest file (screens.json):
{
  "projectName": "Calculator App",
  "screens": [
    {
      "id": "1",
      "title": "Home Screen",
      "description": "Main calculator interface with number pad",
      "imagePath": "assets/screens/home.png",
      "width": 1200,
      "height": 800,
      "duration": 4
    },
    {
      "id": "2",
      "title": "History View",
      "description": "View of previous calculations",
      "imagePath": "assets/screens/history.png",
      "width": 1200,
      "height": 800,
      "duration": 3
    }
  ]
}

Step 2: Generate Remotion Components

Create the video components following Remotion best practices:

  1. Create ScreenSlide.tsx:
  • Use useCurrentFrame() and spring() for animations
  • Implement zoom and fade effects
  • Add text overlays with proper timing
  1. Create WalkthroughComposition.tsx:
  • Import screen manifest
  • Sequence screens with <Sequence> components
  • Apply transitions between screens
  • Calculate proper timing and offsets
  1. Update remotion.config.ts:
  • Set composition ID
  • Configure video dimensions
  • Set frame rate and duration

Reference Resources:

  • Use resources/screen-slide-template.tsx as starting point
  • Follow resources/composition-checklist.md for completeness
  • Review examples in examples/ directory

Step 3: Preview and Refine

  1. Start Remotion Studio:
   npm run dev
  • Opens browser-based preview
  • Allows real-time editing and refinement
  1. Adjust timing:
  • Ensure each screen has appropriate display duration
  • Verify transitions are smooth
  • Check text overlay timing
  1. Fine-tune animations:
  • Adjust spring configurations for zoom effects
  • Modify easing functions for transitions
  • Ensure text is readable at all times

Step 4: Render Video

  1. Render using Remotion CLI:
   npx remotion render WalkthroughComposition output.mp4
  1. Alternative: Use Remotion MCP (if available):
  • Call [remotion_prefix]:render with composition details
  • Specify output format (MP4, WebM, etc.)
  1. Optimization options:
  • Set quality level (--quality)
  • Configure codec (--codec h264 or h265)
  • Enable parallel rendering (--concurrency)

Advanced Features

Interactive Hotspots

Highlight clickable elements or important features:

import {interpolate, useCurrentFrame} from 'remotion';

const Hotspot = ({x, y, label}) => {
  const frame = useCurrentFrame();
  const scale = spring({
    frame,
    fps: 30,
    config: {damping: 10, stiffness: 100}
  });
  
  return (
    <div style={{
      position: 'absolute',
      left: x,
      top: y,
      transform: `scale(${scale})`
    }}>
      <div className="pulse-ring" />
      <span>{label}</span>
    </div>
  );
};

Voiceover Integration

Add narration to the walkthrough:

  1. Generate voiceover script from screen descriptions
  2. Use text-to-speech or record audio
  3. Import audio into Remotion with <Audio> component
  4. Sync screen timing with voiceover pacing

Dynamic Text Extraction

Extract text from Stitch HTML code for automatic annotations:

  1. Download htmlCode.downloadUrl for each screen
  2. Parse HTML to extract key text elements (headings, buttons, labels)
  3. Generate automatic callouts for important UI elements
  4. Add to composition as timed text overlays

File Structure

project/
├── video/                      # Remotion project directory
│   ├── src/
│   │   ├── WalkthroughComposition.tsx
│   │   ├── ScreenSlide.tsx
│   │   ├── components/
│   │   │   ├── Hotspot.tsx
│   │   │   └── TextOverlay.tsx
│   │   └── Root.tsx
│   ├── public/
│   │   └── assets/
│   │       └── screens/        # Downloaded Stitch screenshots
│   │           ├── home.png
│   │           └── history.png
│   ├── remotion.config.ts
│   └── package.json
├── screens.json                # Screen manifest
└── output.mp4                  # Rendered video

Integration with Remotion Skills

Remotion maintains its own Agent Skills that define best practices. Review these for advanced techniques:

  • Repository: https://github.com/remotion-dev/remotion/tree/main/packages/skills
  • Installation: npx skills add remotion-dev/skills

Key Remotion skills to leverage:

  • Animation timing and easing
  • Composition architecture patterns
  • Performance optimization
  • Audio synchronization

Common Patterns

Pattern 1: Simple Slide Show

Basic walkthrough with fade transitions:

  • 3-5 seconds per screen
  • Cross-fade transitions
  • Bottom text overlay with screen title
  • Progress bar at top

Pattern 2: Feature Highlight

Focus on specific UI elements:

  • Zoom into specific regions
  • Animated circles/arrows pointing to features
  • Slow-motion emphasis on key interactions
  • Side-by-side before/after comparisons

Pattern 3: User Flow

Show step-by-step user journey:

  • Sequential screen flow with directional slides
  • Numbered steps overlay
  • Highlight user actions (clicks, taps)
  • Connect screens with animated paths

Troubleshooting

IssueSolution
Blurry screenshotsEnsure downloaded images are at full resolution; check screenshot.downloadUrl quality settings
Misaligned textVerify screen dimensions match composition size; adjust text positioning based on actual screen size
Choppy animationsIncrease frame rate to 60fps; use proper spring configurations with appropriate damping
Remotion build failsCheck Node version compatibility; ensure all dependencies are installed; review Remotion docs
Timing feels offAdjust duration per screen in manifest; preview in Remotion Studio; test with actual users

Best Practices

  1. Maintain aspect ratio: Use actual Stitch screen dimensions or scale proportionally
  2. Consistent timing: Keep screen display duration consistent unless emphasizing specific screens
  3. Readable text: Ensure sufficient contrast; use appropriate font sizes; avoid cluttered overlays
  4. Smooth transitions: Use spring animations for natural motion; avoid jarring cuts
  5. Preview thoroughly: Always preview in Remotion Studio before final render
  6. Optimize assets: Compress images appropriately; use efficient formats (PNG for UI, JPG for photos)

Example Usage

User prompt:

Look up the screens in my Stitch project "Calculator App" and build a remotion video 
that shows a walkthrough of the screens.

Agent workflow:

  1. List Stitch projects → Find "Calculator App" → Extract project ID
  2. List screens in project → Identify all screens (Home, History, Settings)
  3. Download screenshots for each screen → Save to assets/screens/
  4. Create screens.json manifest with screen metadata
  5. Generate Remotion components (ScreenSlide.tsx, WalkthroughComposition.tsx)
  6. Preview in Remotion Studio → Refine timing and transitions
  7. Render final video → calculator-walkthrough.mp4
  8. Report completion with video preview link

Tips for Success

  • Start simple: Begin with basic fade transitions before adding complex animations
  • Follow Remotion patterns: Leverage Remotion's official skills and documentation
  • Use manifest files: Keep screen data organized in JSON for easy updates
  • Preview frequently: Use Remotion Studio to catch issues early
  • Consider accessibility: Add captions; ensure text is readable; use clear visuals
  • Optimize for platform: Match video dimensions to target platform (YouTube, social media, etc.)

References

  • Stitch Documentation: https://stitch.withgoogle.com/docs/
  • Remotion Documentation: https://www.remotion.dev/docs/
  • Remotion Skills: https://www.remotion.dev/docs/ai/skills
  • Remotion MCP: https://www.remotion.dev/docs/ai/mcp
  • Remotion Transitions: https://www.remotion.dev/docs/transitions

Score

0–100
76/ 100

Grade

B

Popularity28/30

29,801 installs — strong, widely used. Source repo has 6,041 GitHub stars.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Remotion skill score badge previewScore badge

Markdown

[![Remotion skill](https://www.remoteopenclaw.com/skills/google-labs-code/stitch-skills/remotion/badges/score.svg)](https://www.remoteopenclaw.com/skills/google-labs-code/stitch-skills/remotion)

HTML

<a href="https://www.remoteopenclaw.com/skills/google-labs-code/stitch-skills/remotion"><img src="https://www.remoteopenclaw.com/skills/google-labs-code/stitch-skills/remotion/badges/score.svg" alt="Remotion skill"/></a>

Remotion FAQ

How do I install the Remotion skill?

Run “npx skills add https://github.com/google-labs-code/stitch-skills --skill remotion” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Remotion skill do?

Generate walkthrough videos from Stitch projects using Remotion with smooth transitions, zooming, and text overlays The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Remotion skill free?

Yes. Remotion is a free, open-source skill published from google-labs-code/stitch-skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Remotion work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Remotion works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →

Categories

External DownloadsCommand ExecutionPrompt Injection
View on GitHub

Recommended skills

Browse all →
remotion-render logo

remotion-render

101-skills/skills

462K installsInstall
remotion-best-practices logo

remotion-best-practices

remotion-dev/skills

454K installsInstall
remotion-to-hyperframes logo

remotion-to-hyperframes

heygen-com/hyperframes

200K installsInstall
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
grill-me logo

grill-me

mattpocock/skills

701K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed