GoAI Video Gen

v1.0.0

Generate AI videos via GoAI API. Use when the user asks to create, generate, render, or make videos, animations, clips, shorts, or motion content, including...

0· 105·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for goai/goai-video-gen.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "GoAI  Video Gen" (goai/goai-video-gen) from ClawHub.
Skill page: https://clawhub.ai/goai/goai-video-gen
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: GOAI_API_KEY
Required binaries: uv
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install goai-video-gen

ClawHub CLI

Package manager switcher

npx clawhub@latest install goai-video-gen
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (GoAI video generation) align with requested env var (GOAI_API_KEY), the default API host (mustgoai.com), and the code which calls /api/v1/models/capabilities and /api/v2/videos endpoints. Required binary 'uv' is justified by the project using a 'uv run' Python entrypoint.
Instruction Scope
SKILL.md instructs the agent to forward the user's prompt unchanged (unless user asks otherwise), use 'uv' to run the included Python scripts, and always return both local file paths and public URLs. The instructions also say local image paths will be uploaded — the code implements upload behavior. This scope is appropriate for a video-generation skill, but note that uploading local image files means user-supplied filesystem paths will be read and transmitted to the GoAI backend.
Install Mechanism
No install spec in the registry; the skill runs via 'uv'. On first run 'uv' may create a local environment and download Python/dependencies automatically (pyproject specifies httpx). This is expected behavior for a uv-based Python project, but it does mean the runtime may fetch and write interpreter/dependency files to disk when first invoked.
Credentials
Only GOAI_API_KEY (and optional GOAI_BASE_URL) are required. These are proportional to contacting the GoAI service. The code does not request additional unrelated credentials or access other skill configs.
Persistence & Privilege
always is false and the skill does not request permanent platform presence or modify other skills. The bootstrap uses exec to run 'uv' but does not persist or alter unrelated system-wide settings.
Assessment
This skill appears to do what it says: it uses your GOAI_API_KEY to call mustgoai.com and will upload any local image files you tell it to use. Before installing, confirm you trust the mustgoai.com service and are comfortable with: (1) providing a GOAI API key (it will be sent as a Bearer token to the service), (2) local images you pass will be read and uploaded to the backend, and (3) the 'uv' runner may create a local virtual environment and download Python/dependencies on first run. Avoid passing sensitive files or private data as local image inputs. If you are unsure, review the scripts (generate_video.py and common.py) and only set the GOAI_API_KEY when you are ready to allow the service to handle your media.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🎬 Clawdis
OSmacOS · Linux · Windows
Binsuv
EnvGOAI_API_KEY
Primary envGOAI_API_KEY
latestvk97dg9nay79329dxn7e54wb30983s7sa
105downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0
macOS, Linux, Windows

When To Use

Use this skill when the user wants text-to-video or image-to-video generation through GoAI, especially for prompts like 生成视频, 做视频, 出视频, 文生视频, 图生视频, and 做个动画.

Pass the user's video prompt through as-is unless the user explicitly asks for prompt optimization, prompt polishing, rewriting, translation, or additional creative detail. Do not silently embellish short prompts.

Do not translate the user's prompt to another language. If the user writes in Chinese, pass Chinese to --prompt. If the user writes in English, pass English to --prompt. You may strip only lightweight request wrappers such as 帮我, 给我, , 生成, or 做个, but do not rewrite the core prompt content.

Examples:

  • User: 给我生成一段狮子奔跑的视频 -> --prompt "一段狮子奔跑的视频" or --prompt "给我生成一段狮子奔跑的视频"
  • User: 做个海浪视频 -> --prompt "做个海浪视频" or --prompt "海浪视频"
  • Never turn 给我生成一段狮子奔跑的视频 into a lion running video unless the user explicitly asks for English translation.

Default Behavior

This package currently targets the production environment at https://mustgoai.com. Override GOAI_BASE_URL only when you intentionally need a different endpoint.

This skill now uses a single cross-platform Python entrypoint through uv. If the user does not specify a model, the script queries /api/v1/models/capabilities, sorts enabled video models by display.priority, filters them by the requested video_mode, and picks the highest-priority compatible model. When the user omits video parameters, the script derives default aspect ratio, duration, and resolution from the same capability response.

Treat uv as the only runtime dependency the user needs to install manually. On first run, uv may create a local environment, install httpx, and download Python if the machine does not already have a usable interpreter. That first-run setup is expected and should not be described as an error.

If the user provides local image paths, the script uploads them first and sends the resulting URLs as images. If the user provides remote URLs, the script passes them through unchanged.

Script Rules

Always use the Python entrypoint through uv:

uv run --project . python scripts/generate_video.py \
  --prompt "..." \
  [--model "..."] \
  [--aspect-ratio "..."] \
  [--duration "8"] \
  [--resolution "1080p"] \
  [--video-mode "frames"] \
  [--image "/path/to/image.png"] \
  [--image "https://example.com/image.png"]

The Python path validates GOAI_API_KEY, defaults to https://mustgoai.com unless GOAI_BASE_URL is set, and treats 401, 402, 429, content blocking, missing task_id, missing video_url, and backend terminal failure states as hard failures. Polling follows the web client behavior: it checks every 3 seconds, retries transient polling errors, and waits for a backend terminal status instead of enforcing a client-side timeout.

The Python entrypoint self-heals into uv run if it is accidentally invoked as python scripts/generate_video.py ... or python3 scripts/generate_video.py .... Do not try to repair the system Python environment for this skill.

When invoking this skill through OpenClaw's exec tool, always use timeout=600 to allow up to 10 minutes for long-running video generation. Do not describe the run as timed out or killed unless the script itself exits non-zero or the backend reports a terminal failure state.

If uv is missing, explicitly guide the user to install it first:

  • macOS: brew install uv
  • Windows: winget install astral-sh.uv

After uv is installed, rerun the same command. Do not ask the user to install Python packages by hand; uv is responsible for preparing Python and the skill dependencies.

If execution reports a missing Python module such as httpx, do not run pip install, pip install --user, or pip install --break-system-packages. Re-run the skill through uv; the dependency set comes only from pyproject.toml and uv.lock.

If GOAI_API_KEY is missing, explicitly guide the user to visit https://mustgoai.com, register or log in, open Settings -> API Key, create a key, and then configure the skill env in ~/.openclaw/openclaw.json.

Output Contract

On success, print all four lines below in this order:

  • MEDIA:/absolute/path/to/generated-file
  • MEDIA_URL:https://...
  • RESULT_PATH:/absolute/path/to/generated-file
  • RESULT_URL:https://...

When responding to the user after a successful run, always include both the exact local file path and the exact public URL in plain text, even if OpenClaw already rendered or read the local media file. Do not omit the URL just because the media preview succeeded. On failure, exit non-zero and print a concise error message. Do not inline the binary output back into the conversation.

Comments

Loading comments...