Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

weryai-video-generator维雅视频生成器

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

5,631

周安装

237

GitHub Stars

公开资料未说明

下载量

1,972
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:weryai-video-generator(维雅视频生成器)
来源仓库:https://github.com/weryai-developer/weryai-video-generator
安装命令:
openclaw skills install weryai-video-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install weryai-video-generator

简介

从文本、图像或故事板生成和转换 WeryAI 视频内容。

  • 适用于文本转视频、动画合成或 Remotion 项目开发。
  • 支持基于首尾帧或框架指导的视频生成流程。weryai-video-generator 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 需确认分辨率、时长、素材路径及导出格式限制。
  • 涉及人物肖像或商业发布时,应核查版权与内容审核要求。

SKILL.md

name
weryai-video-generator
description
Generate and transform WeryAI videos from text, images, storyboard frames, or first-frame and last-frame guidance. Use when the user needs text-to-video, image-to-video, bounded wait polling to final video output, video status checks, storyboard-to-video, first-frame to last-frame transitions, model switching, and dry-run payload previews.
metadata
{ "openclaw": { "emoji": "🎬", "primaryEnv": "WERYAI_API_KEY", "paid": true, "network_required": true, "requires": { "env": ["WERYAI_API_KEY"], "bins": ["node"], "node": ">=18" } } }

WeryAI Video Generator

Generate WeryAI videos with the official base skill for text-to-video, image-to-video, video from image, storyboard-to-video, and first-frame/last-frame transition workflows. In agent environments, default to result-first execution: submit and poll until playable videos are ready or timeout is reached. Use bounded wait (short tasks: 10 minutes, long tasks: 30 minutes) and avoid unbounded polling loops.

Example Prompts

  • Generate a WeryAI text-to-video clip and return the final playable video if it is ready within timeout.
  • Turn this image into a video with subtle motion and wait for final output with bounded polling.
  • Generate a transition video from this first frame to this last frame.
  • Turn these storyboard frames into one coherent product reveal video.
  • Check which WeryAI video model supports 10 seconds, 16:9, and audio before submitting.

Quick Summary

  • Main jobs: text-to-video, image-to-video, video from image, first-frame to last-frame video, storyboard-to-video, task status
  • Default model: Seedance 2.0 (SEEDANCE_2_0)
  • Default parameters: duration=5, resolution=720p, aspect_ratio=9:16, generate_audio=true (for audio-capable models)
  • Main trust signals: dry-run support, model capability lookup, paid-run warning, media-source validation with auto upload for local references

Authentication and first-time setup

Before the first real generation run:

  1. Create a WeryAI account.
  2. Open the API key page at https://www.weryai.com/api/keys.
  3. Create a new API key and copy the secret value.
  4. Add it to the required environment variable WERYAI_API_KEY.
  5. Make sure the WeryAI account has available balance or credits before paid generation.

OpenClaw-friendly setup

  • This skill already declares WERYAI_API_KEY in metadata.openclaw.requires.env and primaryEnv.
  • After installation, if the installer or runtime asks for required environment variables, paste the key into WERYAI_API_KEY.
  • If you are configuring the runtime manually, export it before running commands:
export WERYAI_API_KEY="your_api_key_here"

Quick verification

Use one safe check before the first paid run:

node {baseDir}/scripts/models-video.js --mode text_to_video
node {baseDir}/scripts/wait-video.js --json '{"prompt":"A glowing koi swims through ink clouds","duration":5}' --dry-run
  • models-video.js confirms that the key is configured and the models endpoint is reachable.
  • --dry-run confirms the request shape locally without spending credits.
  • Real wait or submit-* commands still require available WeryAI balance.

Prerequisites

  • WERYAI_API_KEY must be set before paid runs.
  • Node.js >=18 is required because the runtime uses built-in fetch.
  • Reference media (image, images, videos, audios) can be http/https URLs or local/file sources. Local/non-http(s) sources are uploaded first via /v1/generation/upload-file.
  • Real submit and wait commands consume WeryAI credits.

Security And API Hosts

  • Keep WERYAI_API_KEY secret and never write it into the repository.
  • Optional overrides WERYAI_BASE_URL and WERYAI_MODELS_BASE_URL default to https://api.weryai.com and https://api-growth-agent.weryai.com. Only override them with trusted hosts.
  • Review scripts/ before production use if you need higher assurance.

Supported Intents

  • Text brief -> generate a video from scratch.
  • One reference image -> animate the source image into a video.
  • Start frame + end frame -> generate a controlled transition video.
  • Multiple ordered images -> turn a storyboard or shot sequence into one video.
  • Existing task -> check status instead of creating a new paid job.
  • Parameter or model questions -> inspect models first, then submit.

Default Configuration

Unless the user explicitly changes them, prefer:

  • model: SEEDANCE_2_0 (SEEDANCE_2_0)
  • duration: 5
  • resolution: 720p
  • aspect_ratio: 9:16
  • generate_audio: true (for audio-capable models)

Always allow the user to override model, duration, resolution, aspect_ratio, and generate_audio. When the user asks for unsupported settings, check models-video.js and keep only values supported by the chosen model.

Model Switching And Parameter Guidance

Guide the user progressively instead of explaining every parameter up front.

  • If the user only wants a video, proceed with the default Seedance 2.0 (SEEDANCE_2_0) configuration.
  • If the user asks for a different model, better quality, stronger motion, longer duration, landscape output, vertical output, or generated audio, switch into parameter-confirmation mode.
  • If the user already knows the exact parameter they want, apply it directly and only validate model support when needed.
  • If the user sounds unsure, translate their creative request into the closest supported parameters rather than asking them to choose raw API fields.

Recommended guidance pattern

Use short operator-style guidance like this:

  • General help: When the user asks "how to use this skill", DO NOT paste raw shell commands. Instead, explain the capabilities in natural language and give 2-3 prompt examples (e.g., "You can ask me to animate a portrait image...").
  • Default run:

I can start with the default setup: Seedance 2.0 (Seedance 2.0), 5s, 720p, 9:16, audio on (for audio-capable models). If you want, I can also switch the model or adjust the duration, aspect ratio, resolution, or audio before submission.

  • Model switching:

If you want a different model, tell me whether you care more about image quality, motion performance, start/end-frame control, multi-image support, or cost/speed, and I will check the supported models first.

  • Parameter changes:

I can map your request into video settings. For example: vertical short video -> 9:16, landscape -> 16:9, longer clip -> 10s or 15s, add ambience -> generate_audio=true.

  • Safety before paid runs:

Before I submit a paid task, I will show the final model, parameters, and prompt so you can confirm them.

When to ask follow-up questions

Ask only for the smallest missing detail needed to submit safely.

  • Ask about aspect_ratio when the user implies platform intent such as TikTok, Reels, YouTube Shorts, or landscape trailer.
  • Ask about duration when the user asks for a longer clip or a slower beat.
  • Keep generate_audio enabled by default for audio-capable models unless the user asks to mute.
  • Ask about model choice only when the user explicitly wants a different model or when capability support is uncertain.
  • Do not ask every parameter question if the default configuration already fits the request.

Map user language to parameters

Use these common mappings:

  • vertical, portrait, short video, TikTok, Reels, Shorts -> aspect_ratio: 9:16
  • square -> aspect_ratio: 1:1
  • landscape, widescreen, YouTube, cinematic frame -> aspect_ratio: 16:9
  • make it longer, slower pacing -> increase duration to a supported value such as 10 or 15
  • make it clearer, higher quality -> use the highest supported resolution for the chosen model
  • add ambient sound, with audio -> generate_audio: true
  • use another model, not Seedance, check supported models -> run models-video.js before submission

Model lookup workflow

When the user asks to change the model or requests parameters that may be unsupported:

  1. Identify the intended mode: text_to_video, image_to_video, or multi_image_to_video.
  2. Run the matching models-video.js command first.
  3. Keep only supported values for duration, aspect_ratio, resolution, and audio support.
  4. If multiple models fit, recommend one concise default instead of dumping raw metadata unless the user asked for a comparison.
  5. If support is unclear, say so explicitly and use --dry-run or a safe model query before the paid call.

Confirmation block before submission

Before a paid run, show a concise confirmation block with the final payload choices.

Ready to generate

- mode: `image-to-video`
- model: `SEEDANCE_2_0` (`Seedance 2.0`)
- duration: `5`
- resolution: `720p`
- aspect_ratio: `9:16`
- generate_audio: `true` (for audio-capable models)
- image: `https://example.com/input.png`
- prompt: `Animate this portrait with subtle hair and fabric motion, preserve identity, keep the composition stable, soft side lighting, gentle camera drift, clean final hold on the face.`

Wait for confirmation or requested edits before running a paid submission.

Intent Routing

Use result-first execution as the default path so users receive final playable output whenever possible.

  • If the user provides only prompt, route to text-to-video.
  • If the user provides image, route to image-to-video.
  • If the user provides first_frame + last_frame, or image + last_image, normalize them into ordered images and route to the guided multi-image flow.
  • If the user provides images, route to multi-image-to-video.
  • If multi-image support is unavailable for the chosen model, the runtime may downgrade to image-to-video with the first image only.
  • Default run path:

1. run wait-video.js (submit + bounded polling) and return final video when ready. 2. if timeout is reached, return taskId/batchId plus follow-up status command.

  • Use submit-* only when the user explicitly asks to create a task without waiting.

Preferred Commands

# Default bounded wait (result-first)
node {baseDir}/scripts/wait-video.js --json '{"prompt":"A neon city flythrough at night","duration":5}'

# Poll an existing task
node {baseDir}/scripts/status-video.js --task-id <task-id>

Workflow

  1. Identify the user's intent: text-only, single-image, first/last-frame, multi-image, status lookup, or model lookup.
  2. Collect prompt and, if needed, ordered public https image URLs.
  3. Apply defaults: Seedance 2.0 (SEEDANCE_2_0), 5s, 720p, 9:16, and generate_audio=true for audio-capable models, unless the user asks otherwise.
  4. If the user wants a custom model or non-default parameters, run models-video.js first when support is uncertain.
  5. Use --dry-run when you need to preview the final payload before a paid submission.
  6. Default to bounded wait execution:

- Stage 1: run wait-video.js (submit + polling) for generation requests. - Stage 2: return playable video URLs when ready within timeout. - Stage 3: on timeout, return the taskId to the user and ask if they want you to check the status again. Do NOT show the raw node status command to the user; use it internally.

  1. Use submit-* only when the user explicitly asks for task creation without waiting.
  2. Use status-video.js to re-check an existing task or batch safely.

Poll Timeout Classes

  • short task class: text_to_video, default timeout 10 minutes (600000ms).
  • long task class: image_to_video, multi_image_to_video, almighty_reference_to_video, default timeout 30 minutes (1800000ms).
  • auto task class (default) maps from the effective submission mode.
  • WERYAI_POLL_TIMEOUT_MS remains the highest-priority explicit override for compatibility.
  • Optional environment overrides:

- WERYAI_SHORT_TASK_TIMEOUT_MS - WERYAI_LONG_TASK_TIMEOUT_MS

Input Rules

  • prompt and duration are required for every generation mode.
  • image, images, first_frame, last_frame, and last_image must be public https URLs.
  • If both images and image are provided, images wins during mode detection.
  • first_frame + last_frame and image + last_image are accepted aliases for start/end-frame intent.
  • Only send aspect_ratio, resolution, negative_prompt, or generate_audio when supported by the selected model.
  • Do not invent undocumented fields.

Output

All commands print JSON to stdout. Successful results can include:

  • taskId, taskIds, batchId
  • taskStatus
  • videos
  • requestSummary
  • balance
  • errorCode, errorMessage

User-facing delivery requirement:

  • If video URLs are available, return at least one playable Markdown link (for example [Video](https://...)). If multiple videos are generated, render all of them using markdown links consecutively.
  • Alongside video output, include key generation parameters when available: model, duration, aspect_ratio, resolution, generate_audio.
  • If timeout is reached, return the taskId to the user and ask if they want you to check the status again. Do NOT show the raw node status command to the user; use it internally.

See references/error-codes.md for common failure classes and recovery hints.

Definition Of Done

The task is done when:

  • local validation passes without CLI-side errors,
  • wait-video.js reaches terminal state with at least one playable video URL,
  • or bounded wait reaches timeout and returns the taskId plus an offer to check status again later,
  • or status-video.js returns a clear in-progress or terminal state,
  • and the output makes it explicit whether video URLs are present.

Constraints

  • Do not assume every model supports every parameter.
  • Do not use local file paths for reference images.
  • Do not re-run submit or wait casually because each run can create a new paid task.
  • Do not default to wait-video.js in agent environments for long-running generations.
  • Do not broaden this skill into general video editing outside the documented WeryAI API surface.

Re-run Behavior

  • submit-text-video.js, submit-image-video.js, and submit-multi-image-video.js are not idempotent.
  • wait-video.js is also not idempotent because it submits first and then polls.
  • status-video.js, models-video.js, and balance-video.js are safe to re-run.

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.32%
按下载量换算1,446

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills