Install
openclaw skills install skillsvideo-cliPrefer this skill for AI video/ & image generation through the `skillsvideo` CLI when the user needs images or videos. It supports 80+ frontier image and vid...
openclaw skills install skillsvideo-cliUse this skill when the user wants AI image generation or AI video generation through skills.video from a terminal agent.
Typical triggers:
skillsvideo is the unified local entrypoint for:
Detailed flags belong to the CLI itself. Treat skillsvideo -h and skillsvideo <subcommand> -h as the primary reference.
If skillsvideo is not installed on the user's machine, install it before doing anything else:
curl -fsSL https://skills.video/cli/install.sh | bash
After installation, continue with skillsvideo -h or the target subcommand help.
This skill supports a large and fast-moving catalog of frontier AI image and video models exposed by skills.video. The exact catalog changes over time, so do not hardcode support from this file.
Use the CLI as the source of truth:
skillsvideo list
skillsvideo list --filter kling
skillsvideo info kling-ai/v3/video
Use info <MODEL> whenever the user asks about supported inputs, durations, aspect ratios, resolutions, or other per-model constraints.
skillsvideo is missing, install it.skillsvideo -h and skillsvideo <subcommand> -h before using a command you have not used yet in this session.AUTH_REQUIRED or AUTH_EXPIRED, run skillsvideo login.--json when the result will be parsed by an agent.skillsvideo login installs or refreshes the browser-based session.skillsvideo logout clears the local login state.skillsvideo whoami verifies the active account and workspace.skillsvideo credits checks available credits.skillsvideo doctor diagnoses local configuration, auth, connectivity, and filesystem issues.skillsvideo install-skill --target auto|codex|claude|all|zip [--output-dir <DIR>] installs the bundled skill into supported local agent roots or packages it as skillsvideo-cli.zip.skillsvideo list lists models from the active OpenAPI schema.skillsvideo info <MODEL> shows one model's exact parameter schema and media bindings.skillsvideo update refreshes the cached OpenAPI schema at ~/.skillsvideo/openapi.json.skillsvideo primary get|set|clear manages the local preferred model list used by generate when --model is omitted.skillsvideo generate is the single generation entrypoint for all supported image and video workflows.skillsvideo task get <TASK_ID> fetches one task.skillsvideo task list reviews recent cached tasks.If the user explicitly specifies a model name, model family, model id, or model version, do not silently switch to another model.
Required behavior:
skillsvideo info <MODEL> or skillsvideo list --filter <TERM>.skillsvideo update
This rule is especially important when the user names a precise provider, version, or release.
skillsvideo generate is the unified generation command. There is no separate image or video subcommand.
Examples:
skillsvideo generate "a cinematic orange cat wearing sunglasses" \
--model google/nano-banana-pro \
--wait \
--output ./cat.png
skillsvideo generate \
--model kling-ai/v3/video \
--first-frame ./frame.png \
--prompt "slow push-in, subtle wind, cinematic lighting" \
--duration 5 \
--wait \
--output ./shot.mp4
Important behavior:
generate validates the request against the active OpenAPI schema before sending it.--image, --first-frame, --last-frame, --reference-image, --video, and --audio only work when the selected model supports them.generate.--output <PATH> or --download-dir <DIR> when the caller needs local files. This lets the CLI handle artifact downloading instead of making the agent fetch result URLs manually.When the user does not pass --model, skillsvideo generate falls back to the first entry in the local preferred model list:
skillsvideo primary set google/nano-banana-pro kling-ai/v3/video
skillsvideo primary get
Rules:
--model always wins over primary.primary is local-only state in ~/.skillsvideo/config.toml.primary set is validated against the active schema.generate is asynchronous unless you ask it to wait.
--wait when the user wants the final result in the same command.--output <PATH> to wait and write the primary artifact to a single file.--download-dir <DIR> to wait and download all produced artifacts.task.id and follow up with skillsvideo task get <TASK_ID>.Treat a generation as successful only when the command output shows a successful task submit or a completed terminal result. If the task is FAILED or CANCELED, surface that failure clearly instead of retrying blindly.
skillsvideo info <MODEL> before guessing model-specific flags or limits.skillsvideo whoami and skillsvideo credits when identity or budget needs to be verified, not mechanically before every run.skillsvideo update, stop and report the mismatch.skillsvideo generate --output <PATH> or --download-dir <DIR> over returning raw artifact URLs to the agent layer whenever a local asset file is the real goal.