← All skills
Tencent SkillHub · Content Creation

wan-image-gen

Generate images using Alibaba DashScope wan2.6-t2i model, download to Desktop, and upload to catbox.moe image hosting. Use when the user asks to generate, cr...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Generate images using Alibaba DashScope wan2.6-t2i model, download to Desktop, and upload to catbox.moe image hosting. Use when the user asks to generate, cr...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Wan Image Generation

通过阿里云 DashScope API 调用 wan2.6-t2i 模型生成图片,下载到本地桌面,并上传到 catbox.moe 图床获取公网链接。

环境变量

DASHSCOPE_API_KEY="需要此 KEY 时询问用户"

Step 1: 提交图片生成任务

调用 DashScope 同步接口生成图片: curl --location 'https://dashscope-intl.aliyuncs.com/api/v1/services/aigc/multimodal-generation/generation' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer $DASHSCOPE_API_KEY' \ --data '{ "model": "wan2.6-t2i", "input": { "messages": [ { "role": "user", "content": [ { "text": "<用户提示词>" } ] } ] }, "parameters": { "prompt_extend": true, "watermark": false, "n": 1, "negative_prompt": "", "size": "1280*1280" } }' 注意事项: size 格式使用 * 分隔(如 1280*1280),不是 x 可选尺寸:1024*1024、1280*1280、720*1280、1280*720 等 图片 URL 有过期时间,生成后必须立即下载

Step 2: 下载图片到桌面

从响应中提取图片 URL,下载到桌面目录: curl -o ~/Desktop/generated_image.png "<图片URL>" 下载路径:/home/{用户名}/Desktop/(Linux)或 ~/Desktop/(macOS) 下载完成后输出文件的绝对路径

Step 3: 上传到 catbox.moe 图床

将图片上传到 catbox.moe 获取公网永久链接: curl -F "reqtype=fileupload" -F "fileToUpload=@~/Desktop/generated_image.png" https://catbox.moe/user/api.php 上传成功后返回公网地址,格式如:https://files.catbox.moe/xxxx.png

完整流程示例

export DASHSCOPE_API_KEY="sk-ec70253d8fb14e53a679726ad2e1563c" # 1. 生成图片 RESPONSE=$(curl -s --location 'https://dashscope-intl.aliyuncs.com/api/v1/services/aigc/multimodal-generation/generation' \ --header 'Content-Type: application/json' \ --header "Authorization: Bearer $DASHSCOPE_API_KEY" \ --data '{ "model": "wan2.6-t2i", "input": { "messages": [{"role":"user","content":[{"text":"一只可爱的猫咪"}]}] }, "parameters": { "prompt_extend": true, "watermark": false, "n": 1, "negative_prompt": "", "size": "1280*1280" } }') # 2. 提取图片 URL 并下载 IMAGE_URL=$(echo "$RESPONSE" | python3 -c "import sys,json; print(json.load(sys.stdin)['output']['choices'][0]['message']['content'][0]['image'])") curl -o ~/Desktop/generated_image.png "$IMAGE_URL" echo "图片已下载到: $(cd ~/Desktop && pwd)/generated_image.png" # 3. 上传到 catbox.moe PUBLIC_URL=$(curl -s -F "reqtype=fileupload" -F "fileToUpload=@$HOME/Desktop/generated_image.png" https://catbox.moe/user/api.php) echo "公网地址: $PUBLIC_URL"

错误处理

若 API 返回错误码,检查 code 和 message 字段 若图片 URL 过期(下载返回 403),需重新提交生成任务 若 catbox.moe 上传失败,重试即可

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc