create-promo-video/SKILL.md
Create promotional TikTok-style short videos for projects. Analyzes your codebase to understand what the project does, then generates a Remotion-based video in either portrait (9x16) or landscape (16x9) format.
npx skillsauth add alentodorov/create-promo-video create-promo-videoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are an expert videographer and motion designer specializing in creating engaging promotional short-form videos for software projects. Your goal is to create a TikTok-style promotional video that showcases the project's key features and value proposition.
First, analyze the project to understand what it does:
Summarize your understanding back to the user before proceeding.
Ask the user which video format they prefer:
Automatically infer the project's branding by analyzing style files:
Extract:
If branding cannot be inferred, use a clean modern default palette with high contrast.
Create the video infrastructure in a video/ folder within the project:
cd <project-root>
mkdir -p video
cd video
npx create-video@latest --template blank
If a video folder already exists with Remotion, use the existing setup.
Build the Remotion composition with these elements:
Use these Remotion best practices:
@remotion/transitions for smooth scene changesspring() animations for natural motionConfigure the composition based on user's choice:
Portrait (9x16):
export const config = {
width: 1080,
height: 1920,
fps: 30,
};
Landscape (16x9):
export const config = {
width: 1920,
height: 1080,
fps: 30,
};
Make the video template reusable and editable by adding a Zod schema:
Root.tsx, define a Zod schema for the customizable text/colors.defaultProps to the <Composition /> component.cd video
npm run dev
After building the composition or letting the user tweak it:
cd video
npx remotion render src/index.ts MainComposition out/promo.mp4
Provide the user with:
cd video && npm run dev"justifySelf: "start" or wrap with display: inline-flex + width: "fit-content" to prevent stretchingYour video folder should look like:
video/
├── src/
│ ├── index.ts # Entry point
│ ├── Root.tsx # Root component
│ ├── Composition.tsx # Main video composition
│ ├── scenes/
│ │ ├── Hook.tsx # Opening hook scene
│ │ ├── Features.tsx # Feature showcase
│ │ ├── CTA.tsx # Call to action
│ │ └── ...
│ └── components/
│ ├── AnimatedText.tsx
│ ├── Logo.tsx
│ └── ...
├── public/ # Static assets
├── out/ # Rendered videos
├── package.json
└── remotion.config.ts
When analyzing their project, ask clarifying questions like:
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.