ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

vidau video generator

Use Vidau Open API to generate short videos with Veo3, Sora2, and other models, or query account credits. Register at superaiglobal.com and configure API Key.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/bigjoehuang/vidau-video-generator
Or

Vidau Video Generator

Version: 1.0.8

When to use

  • User asks to "generate a video", "create a short video with Veo3/Sora", "generate video from this prompt/image", "make a clip from this script", etc.
  • User asks "how many credits do I have", "check my Vidau balance", "query Vidau credits", etc.
  • User asks to "check my video task status", "has my Vidau task finished", "query task by UUID", etc.

When NOT to use

  • User only wants to edit or process existing local video files (e.g. trim, merge, transcode) without calling any cloud API.
  • User asks for a different video API (e.g. Runway, Pika) by name; use that provider’s skill if available.
  • User has not mentioned Vidau/Veo/Sora/Seedance or "generate video" / "create video" and is only discussing concepts or other tools.

Reply language

When returning results (video link, credits, or error message) to the user, use the same language as the user’s question (e.g. Simplified Chinese if they asked in Chinese, English if they asked in English).

Output format (task success)

When a video task succeeds, return:

  • Video URL (verbatim, from [VIDAU_VIDEO_URL][/VIDAU_VIDEO_URL])
  • Thumbnail URL (verbatim, from [VIDAU_THUMB_PATH][/VIDAU_THUMB_PATH])

Always present both URLs in a code block so they are preserved verbatim and less likely to be altered by downstream processing. Example:

Video URL: <paste exact URL from script output>
Thumbnail URL: <paste exact URL from script output>

Do not rewrite, truncate, or wrap the URLs in other markup; copy them exactly from the script output.

Prerequisites

Environment variable VIDAU_API_KEY must be set (injected by OpenClaw from skills.entries.vidau.apiKey or env). If the user has no API key, they must register at https://www.superaiglobal.com/ to get one. Do not trigger this skill if it is not configured.

Environment check

Before running any script, ensure Python 3 is available:

  1. Run python3 --version or python --version. If either succeeds, use that command when invoking the scripts below.
  2. If both fail, try to install Python for the current platform:
    • macOS: brew install python3 (requires Homebrew).
    • Linux (Debian/Ubuntu): sudo apt-get update && sudo apt-get install -y python3.
    • Windows: winget install Python.Python.3.12 if available; otherwise tell the user to download and run the installer from python.org.
  3. If install fails (e.g. no permission or unsupported OS), reply with a short message that Python 3 is required and link to python.org/downloads, then stop. Do not run the Vidau scripts until Python is available.

The scripts use only the standard library; no pip packages are required.

Available scripts

Metadata

Stars4473
Views1
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-bigjoehuang-vidau-video-generator": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.