TopRank Skills

Home / Claw Skills / Crawler / shellbot-video-generator
Official OpenClaw rules 54%

shellbot-video-generator

AI video production workflow using Remotion. Use when creating videos, short films, commercials, or motion graphics. Triggers on requests to make promotional videos, product demos, social media videos, animated explainers, or any programmatic video content. Produces polished motion graphics, not slideshows. Requires FIRECRAWL_API_KEY for website scraping and brand asset extraction.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 shellbot-video-generator 技能。 若已安装,则直接安装 shellbot-video-generator 技能。

Overview

Skill Key
cohnen/shellbot-video-generator
Author
cohnen
Source Repo
openclaw/skills
Version
-
Source Path
skills/cohnen/shellbot-video-generator
Latest Commit SHA
d69813c2225ca0ea2f749b893b97a4664cb2adbf

Extracted Content

SKILL.md excerpt

# Video Generator (Remotion)

Create professional motion graphics videos programmatically with React and Remotion.

## Non-Negotiable Story Structure (AIDA)

Every video MUST follow the AIDA arc in order:

1. **Attention** — Establish the problem being solved. High-impact hook in the first 3 seconds.
2. **Interest** — Introduce the solution. Show what it is and why it matters.
3. **Desire** — Show use cases, not feature lists. Demonstrate real scenarios the viewer relates to.
4. **Action** — End with a CTA that includes an incentive (discount, free trial, limited offer).

## Default Workflow (ALWAYS follow this)

1. **Scrape brand data** (if featuring a product) using Firecrawl
2. **Create the project** from the local template:
   ```bash
   cd output && bash ../scripts/remotion.sh init <project-name>
   ```
3. **Install dependencies** with `npm install`
4. **Build all scenes** with proper motion graphics
5. **Start Remotion Studio** as a background process:
   ```bash
   cd output/<project-name> && npm run dev
   ```
   Wait for "Server ready" on port 3000.
6. **Expose via Cloudflare tunnel** so user can access it:
   ```bash
   bash skills/cloudflare-tunnel/scripts/tunnel.sh start 3000
   ```
7. **Send the user the public URL** (e.g. `https://xxx.trycloudflare.com`)

The user will preview in their browser, request changes, and you edit the source files. Remotion hot-reloads automatically.

### Rendering (only when user explicitly asks to export):
```bash
cd output/<project-name>
npx remotion render CompositionName out/video.mp4
```

## Quick Start

```bash
# Scaffold project from local template (no network needed)
cd output && bash ../scripts/remotion.sh init my-video
cd my-video && npm install

# Add motion libraries
npm install lucide-react

# Start dev server
npm run dev

# Expose publicly
bash skills/cloudflare-tunnel/scripts/tunnel.sh start 3000
```

## Collecting Visual Assets

**MANDATORY:** Every video needs visual assets — logos, screenshots, product imag...

Related Claw Skills