Create videos with AI

Install the SuperImg skill. Ask your AI to make a video. Done.

npx skills add https://github.com/anaptfox/superimg
Works with:Cursor·Claude Code·Windsurf

How it works

Three steps to AI-generated videos

Step 1

Install the skill

Add SuperImg to your AI coding assistant with a single command

Step 2

Describe your video

Tell your AI what you want: "Create a countdown timer" or "Make a text animation"

Step 3

Preview and export

AI generates the code, you see the result instantly, export when ready

Or write code directly

For developers who prefer full control, write templates in JavaScript or TypeScript

template.js
export function render(ctx) {
  const { sceneFrame, width, height } = ctx;

  return `
    <div style="width: ${width}px; height: ${height}px;">
      <h1>Frame ${sceneFrame}</h1>
    </div>
  `;
}