Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

aliyun-wan-animate-move阿里云万动画动起来

Agent Skill

aliyun-wan-animate-move 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

696

周安装

29

GitHub Stars

383

下载量

232
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:aliyun-wan-animate-move(阿里云万动画动起来)
来源仓库:https://github.com/cinience/alicloud-skills
仓库路径:skills/aliyun-wan-animate-move
安装命令:
npx skills add https://github.com/cinience/alicloud-skills --skill aliyun-wan-animate-move
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cinience/alicloud-skills --skill aliyun-wan-animate-move

简介

aliyun-wan-animate-move 实现图像到视频的动画生成(Image-to-Motion)。

  • 适用于万智模型驱动的短视频创作与动态效果制作。
  • 需安装 DashScope SDK 并设置 API 密钥,输出任务 ID 与视频链接。
  • 涉及人物或品牌内容时应核查版权授权与内容合规性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Wan 2.2 Animate Move (Image-to-Motion)

Validation

mkdir -p output/aliyun-wan-animate-move
python -m py_compile skills/ai/video/aliyun-wan-animate-move/scripts/generate_animate_move.py && echo "py_compile_ok" > output/aliyun-wan-animate-move/validate.txt

Pass criteria: command exits 0 and output/aliyun-wan-animate-move/validate.txt is generated.

Output And Evidence

  • Save task IDs, polling responses, and final video URLs to output/aliyun-wan-animate-move/.
  • Keep at least one end-to-end run log for troubleshooting.

Prerequisites

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

Critical model names

  • wan2.2-animate-move -- supports motion transfer from reference video to character image

Capabilities

CapabilityDescriptionRequired inputs
Motion transferTransfer actions/expressions from reference video to character imageimage_url + video_url

Service modes

ModeDescription
wan-stdStandard mode, faster generation, cost-effective, suitable for preview and basic animation
wan-proProfessional mode, smoother animation, better quality, longer processing time

API endpoint (async only)

POST https://dashscope.aliyuncs.com/api/v1/services/aigc/image2video/video-synthesis

Required headers:

  • Authorization: Bearer $DASHSCOPE_API_KEY
  • Content-Type: application/json
  • X-DashScope-Async: enable

Singapore endpoint: replace dashscope.aliyuncs.com with dashscope-intl.aliyuncs.com.

Normalized interface

Request

  • image_url (string, required) -- public HTTP/HTTPS URL of the character image
  • video_url (string, required) -- public HTTP/HTTPS URL of the reference motion video
  • watermark (boolean, optional) -- add watermark (default: false)
  • mode (string, required) -- wan-std or wan-pro
  • check_image (boolean, optional) -- whether to perform image detection (default: true)

Image input limits

  • Formats: JPG, JPEG, PNG, BMP, WEBP
  • Resolution: [200, 4096] pixels per side
  • Aspect ratio: 1:3 to 3:1
  • Max size: 5MB
  • Content: single person, facing camera, face fully visible, moderate proportion in frame

Video input limits

  • Formats: MP4, AVI, MOV
  • Duration: 2-30s
  • Resolution: [200, 2048] pixels per side
  • Aspect ratio: 1:3 to 3:1
  • Max size: 200MB
  • Content: single person, facing camera, face fully visible, moderate proportion in frame

Response (task creation)

  • output.task_id (string) -- use for polling, valid 24 hours
  • output.task_status (string) -- PENDING | RUNNING | SUCCEEDED | FAILED | CANCELED | UNKNOWN
  • request_id (string)

Response (task result)

  • output.video_url (string) -- generated video URL
  • usage.video_count (integer)
  • usage.video_duration (integer) -- duration in seconds

Quick start (Python + HTTP)

import os
import json
import time
import requests

API_KEY = os.getenv("DASHSCOPE_API_KEY")
BASE_URL = "https://dashscope.aliyuncs.com/api/v1"

def create_animate_move_task(image_url: str, video_url: str, mode: str = "wan-std") -> str:
    """Create an animate-move task and return task_id."""
    payload = {
        "model": "wan2.2-animate-move",
        "input": {
            "image_url": image_url,
            "video_url": video_url,
            "watermark": False,
        },
        "parameters": {
            "mode": mode,
        },
    }
    resp = requests.post(
        f"{BASE_URL}/services/aigc/image2video/video-synthesis",
        headers={
            "Authorization": f"Bearer {API_KEY}",
            "Content-Type": "application/json",
            "X-DashScope-Async": "enable",
        },
        json=payload,
    )
    resp.raise_for_status()
    data = resp.json()
    return data["output"]["task_id"]

def poll_task(task_id: str, interval: int = 15) -> dict:
    """Poll until task completes. Returns final response."""
    while True:
        resp = requests.get(
            f"{BASE_URL}/tasks/{task_id}",
            headers={"Authorization": f"Bearer {API_KEY}"},
        )
        resp.raise_for_status()
        data = resp.json()
        status = data["output"]["task_status"]
        if status in ("SUCCEEDED", "FAILED", "CANCELED"):
            return data
        time.sleep(interval)

Error handling

ErrorLikely causeAction
401/403Missing or invalid DASHSCOPE_API_KEYCheck env var or credentials file
400 InvalidParameterUnsupported image/video format, bad dimensions, missing fieldsValidate parameters
"does not support synchronous calls"Missing X-DashScope-Async: enable headerAdd required header
429Rate limit or quotaRetry with backoff

Output location

  • Default output: output/aliyun-wan-animate-move/videos/
  • Override base dir with OUTPUT_DIR.

Anti-patterns

  • Do not use model names other than wan2.2-animate-move.
  • Do not call this API synchronously -- async header is required.
  • Do not use multiple people in image or video -- single person only.
  • Video URLs expire after 24 hours; download and persist immediately.
  • Do not use images with occluded faces or extreme proportions.

Workflow

  1. Confirm user intent: transfer motion from reference video to character image.
  2. Select service mode: wan-std (fast/cheap) or wan-pro (high quality).
  3. Prepare image URL and video URL with valid formats and dimensions.
  4. Create async task and poll for results.
  5. Download and save generated video before URL expiration.

References

  • See references/api_reference.md for full HTTP API details.
  • See references/sources.md for source links.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.34%
按下载量换算80

Claude

29.25%
按下载量换算68

Cursor

19.61%
按下载量换算45

Gemini CLI

9.82%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills