# Send Qwen Image to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "qwen-image",
    "name": "Qwen Image",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Robin797860/qwen-image",
    "canonicalUrl": "https://clawhub.ai/Robin797860/qwen-image",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/qwen-image",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qwen-image",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/generate_image.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "qwen-image",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T20:26:24.533Z",
      "expiresAt": "2026-05-14T20:26:24.533Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qwen-image",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qwen-image",
        "contentDisposition": "attachment; filename=\"qwen-image-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "qwen-image"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/qwen-image"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/qwen-image",
    "downloadUrl": "https://openagent3.xyz/downloads/qwen-image",
    "agentUrl": "https://openagent3.xyz/skills/qwen-image/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qwen-image/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qwen-image/agent.md"
  }
}
```
## Documentation

### Qwen Image

Generate high-quality images using Alibaba Cloud's Qwen Image API (通义万相).

### Usage

Generate an image (returns URL only):

uv run {baseDir}/scripts/generate_image.py --prompt "一副典雅庄重的对联悬挂于厅堂之中" --size "1664*928" --api-key sk-xxx

Generate and save locally:

uv run {baseDir}/scripts/generate_image.py --prompt "一副典雅庄重的对联悬挂于厅堂之中" --size "1664*928" --api-key sk-xxx

With custom model:
Support qwen-image-max-2025-12-30 qwen-image-plus-2026-01-09 qwen-image-plus

uv run {baseDir}/scripts/generate_image.py --prompt "a beautiful sunset over mountains" --model qwen-image-plus-2026-01-09 --api-key sk-xxx

### API Key

You can obtain the API key and run the image generation command in the following order.

Get apiKey from models.providers.bailian.apiKey in ~/.openclaw/openclaw.json
Or get from skills."qwen-image".apiKey in ~/.openclaw/openclaw.json
Or get from DASHSCOPE_API_KEY environment variable
Or Get your API key from: https://dashscope.console.aliyun.com/

### Options

Sizes:

1664*928 (default) - 16:9 landscape
1024*1024 - Square format
720*1280 - 9:16 portrait
1280*720 - 16:9 landscape (smaller)

Additional flags:

--negative-prompt "unwanted elements" - Specify what to avoid
--no-prompt-extend - Disable automatic prompt enhancement
--watermark - Add watermark to generated image
--no-verify-ssl - Disable SSL certificate verification (use when behind corporate proxy)

### Workflow

Execute the generate_image.py script with the user's prompt
Parse the script output and find the line starting with MEDIA_URL:
Extract the image URL from that line (format: MEDIA_URL: https://...)
Display the image to the user using markdown syntax: ![Generated Image](URL)
Do NOT download or save the image unless the user specifically requests it

### Notes

Supports both Chinese and English prompts
By default, returns image URL directly without downloading
The script prints MEDIA_URL: in the output - extract this URL and display it using markdown image syntax: ![generated image](URL)
Always look for the line starting with MEDIA_URL: in the script output and render the image for the user
Default negative prompt helps avoid common AI artifacts
Images are hosted on Alibaba Cloud OSS with temporary access URLs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Robin797860
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T20:26:24.533Z
- Expires at: 2026-05-14T20:26:24.533Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/qwen-image)
- [Send to Agent page](https://openagent3.xyz/skills/qwen-image/agent)
- [JSON manifest](https://openagent3.xyz/skills/qwen-image/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/qwen-image/agent.md)
- [Download page](https://openagent3.xyz/downloads/qwen-image)