Token导航 LogoToken导航TokenDH.com
图像处理敏感数据clawhub未标认证来源可访问clear审计通过

wuyin-gpt-image2五印 gpt 图像 2

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

3,457

周安装

147

GitHub Stars

公开资料未说明

下载量

1,211
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wuyin-gpt-image2(五印 gpt 图像 2)
来源仓库:https://github.com/alex-shen1121/wuyin-gpt-image2
安装命令:
openclaw skills install wuyin-gpt-image2
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install wuyin-gpt-image2

简介

使用速创科技 GPT-Image-2 API 生成图像内容。

  • 支持文本到图像、参考图输入与异步结果轮询。wuyin-gpt-image2 属于图像处理类 Skill,可作为该场景下的辅助能力补充。
  • 适用于视觉素材创作与背景替换等图像处理需求。
  • 安装命令:openclaw skills install wuyin-gpt-image2。
  • 请核实输入图片版权与输出用途是否符合合规要求。

SKILL.md

name
wuyin-gpt-image2
description
Generate images using the WuyinKeji GPT-Image-2 API (速创科技). Supports text-to-image, reference images, multiple aspect ratios, and async result polling. Use when the user wants to generate images via the WuyinKeji GPT-Image-2 API, especially when they mention the API key "DG97rZEqdfTvNTMGG5iFuHUVvm" or the domain "wuyinkeji.com".

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.

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.91%
按下载量换算871

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills