WuyinKeji GPT-Image-2

v1.0.0

Generate images using the WuyinKeji GPT-Image-2 API (速创科技). Supports text-to-image, reference images, multiple aspect ratios, and async result polling. Use w...

0· 111·0 current·0 all-time
byAlexShen@alex-shen1121

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for alex-shen1121/wuyin-gpt-image2.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "WuyinKeji GPT-Image-2" (alex-shen1121/wuyin-gpt-image2) from ClawHub.
Skill page: https://clawhub.ai/alex-shen1121/wuyin-gpt-image2
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install wuyin-gpt-image2

ClawHub CLI

Package manager switcher

npx clawhub@latest install wuyin-gpt-image2
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, SKILL.md, and the provided Bash script all align: they submit an async image-generation task to api.wuyinkeji.com, poll for results, and download the image. No unrelated services, binaries, or credentials are requested.
Instruction Scope
Instructions stay within the image-generation flow (submit → poll → download). Minor oddity: the SKILL.md explicitly says to use the skill when the user mentions a specific API key string or the domain; and it includes an example API key literal. That is a documentation/activation hint rather than functional scope creep, but the presence of a literal key in docs is worth checking (could be an example, a leaked/test key, or sensitive).
Install Mechanism
No install spec; this is instruction-only plus a small helper script. Nothing is downloaded or written during install. Low install risk.
Credentials
The skill declares no required env vars or primary credential; the script accepts an API key as a CLI argument, which is appropriate. However, the SKILL.md contains a literal API key example (DG97rZEqdfTvNTMGG5iFuHUVvm). Verify whether that key is a harmless example or an active secret before using it.
Persistence & Privilege
Skill is not always-enabled and does not request system-wide persistence or modify other skills. Default autonomous invocation is unchanged and appropriate for a user-invoked integration.
Assessment
This skill appears to do exactly what it says: call WuyinKeji's async image API and download results. Before installing or using it: (1) do not paste any real API keys into chat; supply your key only via the script argument or a secure input method; (2) verify that the example API key in SKILL.md is not an active/secret key — treat it as suspect until confirmed; (3) confirm you trust the domain https://api.wuyinkeji.com and the provider's terms/privacy if you will send sensitive reference images; (4) review network egress policies if your environment restricts outbound calls. If you need higher assurance, ask the skill author for provenance of the example key or a publisher/homepage link.

Like a lobster shell, security has layers — review code before you run it.

latestvk97161tkv9dpyh7pydwmpczze585ackt
111downloads
0stars
1versions
Updated 6d ago
v1.0.0
MIT-0

WuyinKeji GPT-Image-2 Image Generation

This skill wraps the WuyinKeji (速创科技) GPT-Image-2 async image generation API.

API Endpoints

ActionMethodURL
Submit taskPOSThttps://api.wuyinkeji.com/api/async/image_gpt
Query resultGEThttps://api.wuyinkeji.com/api/async/detail?id=<task_id>&key=<key>

Authentication

  • Header: Authorization: <api_key>
  • Body: also include "key": "<api_key>" in JSON payload

1. Submit Generation Task

Request

curl -s -X POST "https://api.wuyinkeji.com/api/async/image_gpt" \
  -H "Content-Type: application/json" \
  -H "Authorization: <API_KEY>" \
  -d '{
    "key": "<API_KEY>",
    "prompt": "Your image generation prompt here",
    "size": "16:9",
    "urls": ["http://example.com/ref.jpg"]
  }'

Parameters

FieldRequiredTypeDescription
keyYesstringAPI key
promptYesstringGeneration prompt
sizeNostringAspect ratio: auto, 16:9, 9:16, 1:1, 3:2, 2:3 (default: auto)
urlsNoarrayReference image URLs (up to 14 images supported by the model)

Response

{
  "code": 200,
  "msg": "成功",
  "data": {
    "id": "image_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "count": "1"
  }
}

Save the data.id — this is the async task ID.

2. Query Result (Polling)

curl -s "https://api.wuyinkeji.com/api/async/detail?id=<TASK_ID>&key=<API_KEY>"

Response Fields

FieldMeaning
status: 0Task submitted, waiting to start
status: 1Generating in progress
status: 2Done — check data.result[0] for image URL

Example (completed)

{
  "code": 200,
  "data": {
    "status": 2,
    "result": ["https://openpt1.wuyinkeji.com/xxxx.png"],
    "created_at": "2026-04-22 13:42:01",
    "updated_at": "2026-04-22 13:43:17"
  }
}

3. Download Image

curl -sL "<RESULT_URL>" -o output.png

Typical resolution: 1672×941 (the API output is fixed at this resolution regardless of the size parameter; use the size parameter mainly for aspect ratio hints).

Model Capabilities

  • Text rendering: Good Chinese/English text support in images (prompt explicitly for sharp, readable typography)
  • Reference images: Supports up to 14 reference URLs for style/person consistency
  • Realism: Improved skin texture, hair, facial details over earlier DALL·E models
  • Color accuracy: Reduced yellow/orange color cast compared to DALL·E

Tips for Quality

  1. For sharp text: Explicitly prompt "sharp, crisp, perfectly legible Chinese typography" and specify font style
  2. For person consistency: Include a clear reference photo URL in urls
  3. For billboard/posters: Prompt "billboard quality", "high contrast", "professional advertising photography"
  4. Output resolution is fixed at ~1672×941 — upscaling must be done client-side if 4K is needed

Helper Script

A Bash helper script is available at scripts/generate.sh:

./scripts/generate.sh \
  -k "<API_KEY>" \
  -p "A beautiful sunset over mountains" \
  -s "16:9" \
  -r "http://example.com/ref.jpg" \
  -o "output.png"

The script handles submit → poll → download in one command.

Comments

Loading comments...