← 返回 Skills 市场
cinience

Alicloud Ai Video Wan R2v

作者 cinience · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
794
总下载
0
收藏
4
当前安装
2
版本数
在 OpenClaw 中安装
/install alicloud-ai-video-wan-r2v
功能描述
Generate reference-based videos with Alibaba Cloud Model Studio Wan R2V models (wan2.6-r2v-flash, wan2.6-r2v). Use when creating multi-shot videos from refer...
使用说明 (SKILL.md)

Category: provider

Model Studio Wan R2V

Validation

mkdir -p output/alicloud-ai-video-wan-r2v
python -m py_compile skills/ai/video/alicloud-ai-video-wan-r2v/scripts/prepare_r2v_request.py && echo "py_compile_ok" > output/alicloud-ai-video-wan-r2v/validate.txt

Pass criteria: command exits 0 and output/alicloud-ai-video-wan-r2v/validate.txt is generated.

Output And Evidence

  • Save reference input metadata, request payloads, and task outputs in output/alicloud-ai-video-wan-r2v/.
  • Keep at least one polling result snapshot.

Use Wan R2V for reference-to-video generation. This is different from i2v (single image to video).

Critical model names

Use one of these exact model strings:

  • wan2.6-r2v-flash
  • wan2.6-r2v

Prerequisites

  • Install SDK in a virtual environment:
python3 -m venv .venv
. .venv/bin/activate
python -m pip install dashscope
  • Set DASHSCOPE_API_KEY in your environment, or add dashscope_api_key to ~/.alibabacloud/credentials.

Normalized interface (video.generate_reference)

Request

  • prompt (string, required)
  • reference_video (string | bytes, required)
  • reference_image (string | bytes, optional)
  • duration (number, optional)
  • fps (number, optional)
  • size (string, optional)
  • seed (int, optional)

Response

  • video_url (string)
  • task_id (string, when async)
  • request_id (string)

Async handling

  • Prefer async submission for production traffic.
  • Poll task result with 15-20s intervals.
  • Stop polling when SUCCEEDED or terminal failure status is returned.

Local helper script

Prepare a normalized request JSON and validate response schema:

.venv/bin/python skills/ai/video/alicloud-ai-video-wan-r2v/scripts/prepare_r2v_request.py \
  --prompt "Generate a short montage with consistent character style" \
  --reference-video "https://example.com/reference.mp4"

Output location

  • Default output: output/alicloud-ai-video-wan-r2v/videos/
  • Override base dir with OUTPUT_DIR.

Workflow

  1. Confirm user intent, region, identifiers, and whether the operation is read-only or mutating.
  2. Run one minimal read-only query first to verify connectivity and permissions.
  3. Execute the target operation with explicit parameters and bounded scope.
  4. Verify results and save output/evidence files.

References

  • references/sources.md
安全使用建议
This skill mostly does what it says (prepare R2V requests for Alibaba Model Studio) but has practical inconsistencies you should resolve before trusting it with real credentials or production data. Specifically: - Do not assume metadata: SKILL.md requires DASHSCOPE_API_KEY or ~/.alibabacloud/credentials, but the registry metadata lists no required env vars — verify and provide credentials only after confirming the source. - Validate paths: the SKILL.md validation command references different paths and output directories than the included script; test the script in an isolated environment to confirm where files will be written and adjust the SKILL.md or script accordingly. - Inspect dashscope: verify the dashscope package origin (official docs or PyPI project) before pip installing and prefer creating a disposable virtual environment. - Sensitive-data caution: only provide API keys or credentials in a controlled environment (not shared terminals), and consider using a least-privilege key if possible. If you cannot confirm the author's identity or fix the path/metadata mismatches, run this skill in an isolated VM/container or avoid installing it. If you plan to use it, ask the publisher to correct the declared requirements and file paths so the behavior is transparent.
功能分析
Type: OpenClaw Skill Name: alicloud-ai-video-wan-r2v Version: 1.0.1 The skill bundle provides a legitimate interface for interacting with Alibaba Cloud's Wan R2V video generation models. It includes a helper script (scripts/prepare_r2v_request.py) for formatting API requests and instructions for using the official 'dashscope' SDK. No evidence of data exfiltration, malicious execution, or prompt injection was found.
能力评估
Purpose & Capability
The stated purpose (Alibaba Cloud Wan R2V reference-to-video generation) matches the included helper script and references to Alibaba docs; requesting an SDK/API key is coherent with that purpose. However, the registry metadata declares no required environment variables or primary credential while the SKILL.md explicitly requires a DASHSCOPE_API_KEY or credentials in ~/.alibabacloud/credentials — an inconsistency that should be resolved.
Instruction Scope
The SKILL.md instructs to install dashscope, set DASHSCOPE_API_KEY, prepare requests, and save outputs — which is within the claimed scope. However, there are multiple practical inconsistencies: the validation command references a path (skills/ai/video/alicloud-ai-video-wan-r2v/scripts/prepare_r2v_request.py) that does not match the provided script path, the expected validation/output directories differ (SKILL.md uses output/alicloud-ai-video-wan-r2v but the script writes to output/ai-video-wan-r2v), and the validation step expects a validate.txt file that the script will not produce. These make the runtime behavior unclear and may cause accidental data placement or failure.
Install Mechanism
There is no formal install spec (instruction-only), which is low-risk for packaging. SKILL.md tells users to create a venv and pip install dashscope — a reasonable, standard approach. The package source (dashscope) should be verified (official PyPI/project) before installation. No remote download/extract behavior is present in the skill itself.
Credentials
The skill's instructions require a DASHSCOPE_API_KEY or entries in ~/.alibabacloud/credentials, which is proportional to calling Alibaba APIs, but the skill metadata does not declare these environment/credential requirements. Requiring an API key without declaring it in metadata is an incoherence that could lead to unexpected secret exposure. The skill does not request unrelated credentials, but the omission in metadata reduces transparency.
Persistence & Privilege
The skill is instruction-only with no install spec and always:false. It does not request persistent system-wide configuration changes or special agent privileges. Autonomous invocation is allowed (platform default) but not combined with other high-risk factors here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install alicloud-ai-video-wan-r2v
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /alicloud-ai-video-wan-r2v 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
batch publish from alicloud-skills on 2026-03-11
v1.0.0
Initial release of alicloud-ai-video-wan-r2v skill: - Supports generating reference-based videos using Alibaba Cloud Model Studio Wan R2V (wan2.6-r2v-flash). - Provides a normalized interface for multi-shot, reference-style-preserving video generation. - Includes async task handling guidance and polling recommendations. - Offers setup instructions, helper script, and output directory details.
元数据
Slug alicloud-ai-video-wan-r2v
版本 1.0.1
许可证 MIT-0
累计安装 4
当前安装数 4
历史版本数 2
常见问题

Alicloud Ai Video Wan R2v 是什么?

Generate reference-based videos with Alibaba Cloud Model Studio Wan R2V models (wan2.6-r2v-flash, wan2.6-r2v). Use when creating multi-shot videos from refer... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 794 次。

如何安装 Alicloud Ai Video Wan R2v?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install alicloud-ai-video-wan-r2v」即可一键安装,无需额外配置。

Alicloud Ai Video Wan R2v 是免费的吗?

是的,Alicloud Ai Video Wan R2v 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Alicloud Ai Video Wan R2v 支持哪些平台?

Alicloud Ai Video Wan R2v 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Alicloud Ai Video Wan R2v?

由 cinience(@cinience)开发并维护,当前版本 v1.0.1。

💬 留言讨论