# Send Qwen Image Plus Sophnet 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-plus-sophnet",
    "name": "Qwen Image Plus Sophnet",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/DuffyCoder/qwen-image-plus-sophnet",
    "canonicalUrl": "https://clawhub.ai/DuffyCoder/qwen-image-plus-sophnet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/qwen-image-plus-sophnet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qwen-image-plus-sophnet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/generate_image.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "qwen-image-plus-sophnet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T20:28:45.880Z",
      "expiresAt": "2026-05-14T20:28:45.880Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qwen-image-plus-sophnet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qwen-image-plus-sophnet",
        "contentDisposition": "attachment; filename=\"qwen-image-plus-sophnet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "qwen-image-plus-sophnet"
      },
      "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-plus-sophnet"
    },
    "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-plus-sophnet",
    "downloadUrl": "https://openagent3.xyz/downloads/qwen-image-plus-sophnet",
    "agentUrl": "https://openagent3.xyz/skills/qwen-image-plus-sophnet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qwen-image-plus-sophnet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qwen-image-plus-sophnet/agent.md"
  }
}
```
## Documentation

### Qwen-Image-Plus (Sophnet) Image Generation

Use the Sophnet image generator API to create an image task, poll until it
finishes, then return the image URL.

### Quick Start

Set the API key (preferred):

export SOPHNET_API_KEY="YOUR_API_KEY"

Run the script with an absolute path (do NOT cd to the skill directory):

bash /home/shutongshan/.openclaw/workspace/skills/qwen-image-plus-sophnet/scripts/generate_image.sh --prompt "your prompt"

### Script Options

--prompt (required): user prompt
--negative-prompt (optional)
--size (optional, default 1024*1024)
--n (optional, default 1)
--watermark (optional, default false)
--prompt-extend (optional, default true)
--api-key (optional, overrides SOPHNET_API_KEY)
--poll-interval (optional, default 2)
--max-wait (optional, default 300)

### Output Contract

The script prints:

TASK_ID=...
STATUS=succeeded
IMAGE_URL=... (one or more lines)

Use the IMAGE_URL value to respond to the user.

### Workflow

POST create-task with model=Qwen-Image-Plus and user prompt
Poll GET task status until SUCCEEDED
Extract url and return to the user

### Real Example (captured run)

Prompt:

A scenic mountain landscape in ink wash style

Command:

bash /home/shutongshan/.openclaw/workspace/skills/qwen-image-plus-sophnet/scripts/generate_image.sh \\
  --prompt "A scenic mountain landscape in ink wash style" \\
  --negative-prompt "blurry, low quality" \\
  --size "1024*1024" \\
  --n 1 \\
  --watermark false \\
  --prompt-extend true

Output:

TASK_ID=7BWFICt0zgLvuaTKg8ZoDg
STATUS=succeeded
IMAGE_URL=https://dashscope-result-wlcb-acdr-1.oss-cn-wulanchabu-acdr-1.aliyuncs.com/7d/d5/20260203/cfc32567/f0e3ac18-31f6-4a1a-b680-a71d3e6bcbe03032414431.png?Expires=1770714400&OSSAccessKeyId=LTAI5tKPD3TMqf2Lna1fASuh&Signature=fF12GZ7RgGsC7OpEkGCapkBUXws%3D

### Common Errors

Error: No API key provided. -> set SOPHNET_API_KEY or pass --api-key
STATUS=failed -> check key permissions/quota or prompt parameters
Error: url not found in response -> inspect API response manually
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: DuffyCoder
- 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:28:45.880Z
- Expires at: 2026-05-14T20:28:45.880Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/qwen-image-plus-sophnet)
- [Send to Agent page](https://openagent3.xyz/skills/qwen-image-plus-sophnet/agent)
- [JSON manifest](https://openagent3.xyz/skills/qwen-image-plus-sophnet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/qwen-image-plus-sophnet/agent.md)
- [Download page](https://openagent3.xyz/downloads/qwen-image-plus-sophnet)