{
  "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": {
    "downloadMode": "redirect",
    "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",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/generate_image.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/qwen-image-plus-sophnet",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Qwen-Image-Plus (Sophnet) Image Generation",
        "body": "Use the Sophnet image generator API to create an image task, poll until it\nfinishes, then return the image URL."
      },
      {
        "title": "Quick Start",
        "body": "Set the API key (preferred):\n\nexport SOPHNET_API_KEY=\"YOUR_API_KEY\"\n\nRun the script with an absolute path (do NOT cd to the skill directory):\n\nbash /home/shutongshan/.openclaw/workspace/skills/qwen-image-plus-sophnet/scripts/generate_image.sh --prompt \"your prompt\""
      },
      {
        "title": "Script Options",
        "body": "--prompt (required): user prompt\n--negative-prompt (optional)\n--size (optional, default 1024*1024)\n--n (optional, default 1)\n--watermark (optional, default false)\n--prompt-extend (optional, default true)\n--api-key (optional, overrides SOPHNET_API_KEY)\n--poll-interval (optional, default 2)\n--max-wait (optional, default 300)"
      },
      {
        "title": "Output Contract",
        "body": "The script prints:\n\nTASK_ID=...\nSTATUS=succeeded\nIMAGE_URL=... (one or more lines)\n\nUse the IMAGE_URL value to respond to the user."
      },
      {
        "title": "Workflow",
        "body": "POST create-task with model=Qwen-Image-Plus and user prompt\nPoll GET task status until SUCCEEDED\nExtract url and return to the user"
      },
      {
        "title": "Real Example (captured run)",
        "body": "Prompt:\n\nA scenic mountain landscape in ink wash style\n\nCommand:\n\nbash /home/shutongshan/.openclaw/workspace/skills/qwen-image-plus-sophnet/scripts/generate_image.sh \\\n  --prompt \"A scenic mountain landscape in ink wash style\" \\\n  --negative-prompt \"blurry, low quality\" \\\n  --size \"1024*1024\" \\\n  --n 1 \\\n  --watermark false \\\n  --prompt-extend true\n\nOutput:\n\nTASK_ID=7BWFICt0zgLvuaTKg8ZoDg\nSTATUS=succeeded\nIMAGE_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"
      },
      {
        "title": "Common Errors",
        "body": "Error: No API key provided. -> set SOPHNET_API_KEY or pass --api-key\nSTATUS=failed -> check key permissions/quota or prompt parameters\nError: url not found in response -> inspect API response manually"
      }
    ],
    "body": "Qwen-Image-Plus (Sophnet) Image Generation\n\nUse the Sophnet image generator API to create an image task, poll until it finishes, then return the image URL.\n\nQuick Start\n\nSet the API key (preferred):\n\nexport SOPHNET_API_KEY=\"YOUR_API_KEY\"\n\n\nRun the script with an absolute path (do NOT cd to the skill directory):\n\nbash /home/shutongshan/.openclaw/workspace/skills/qwen-image-plus-sophnet/scripts/generate_image.sh --prompt \"your prompt\"\n\nScript Options\n--prompt (required): user prompt\n--negative-prompt (optional)\n--size (optional, default 1024*1024)\n--n (optional, default 1)\n--watermark (optional, default false)\n--prompt-extend (optional, default true)\n--api-key (optional, overrides SOPHNET_API_KEY)\n--poll-interval (optional, default 2)\n--max-wait (optional, default 300)\nOutput Contract\n\nThe script prints:\n\nTASK_ID=...\nSTATUS=succeeded\nIMAGE_URL=... (one or more lines)\n\nUse the IMAGE_URL value to respond to the user.\n\nWorkflow\nPOST create-task with model=Qwen-Image-Plus and user prompt\nPoll GET task status until SUCCEEDED\nExtract url and return to the user\nReal Example (captured run)\n\nPrompt:\n\nA scenic mountain landscape in ink wash style\n\n\nCommand:\n\nbash /home/shutongshan/.openclaw/workspace/skills/qwen-image-plus-sophnet/scripts/generate_image.sh \\\n  --prompt \"A scenic mountain landscape in ink wash style\" \\\n  --negative-prompt \"blurry, low quality\" \\\n  --size \"1024*1024\" \\\n  --n 1 \\\n  --watermark false \\\n  --prompt-extend true\n\n\nOutput:\n\nTASK_ID=7BWFICt0zgLvuaTKg8ZoDg\nSTATUS=succeeded\nIMAGE_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\n\nCommon Errors\nError: No API key provided. -> set SOPHNET_API_KEY or pass --api-key\nSTATUS=failed -> check key permissions/quota or prompt parameters\nError: url not found in response -> inspect API response manually"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/DuffyCoder/qwen-image-plus-sophnet",
    "publisherUrl": "https://clawhub.ai/DuffyCoder/qwen-image-plus-sophnet",
    "owner": "DuffyCoder",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}