From acedatacloud-content
Generates and edits images using OpenAI gpt-image-2 via AceDataCloud. Supports text-to-image and compositing existing images (logos/QR/screenshots) into scenes with faithful editing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/acedatacloud-content:gpt-image-2The summary Claude sees in its skill listing — used to decide when to auto-load this skill
OpenAI `gpt-image-2` through AceDataCloud. Two endpoints, both **synchronous** (return image url(s) directly). Its standout is **editing**: feed real images (logos, QR codes, product shots, screenshots) and it composites/restyles them faithfully — great for on-brand video assets and character consistency.
OpenAI gpt-image-2 through AceDataCloud. Two endpoints, both synchronous (return image url(s) directly). Its standout is editing: feed real images (logos, QR codes, product shots, screenshots) and it composites/restyles them faithfully — great for on-brand video assets and character consistency.
Setup: See authentication for token setup.
curl -X POST https://api.acedata.cloud/openai/images/generations \
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-image-2","prompt":"a clean dark tech hero background with a glowing API hub, lots of negative space","size":"1792x1024","n":1}'
Multipart. Pass one or more source images via repeated image[] (local files with
@, or URLs). Use it to fuse a real logo/QR into a generated scene, keep a subject
consistent across scenes, or restyle a screenshot.
curl -X POST https://api.acedata.cloud/openai/images/edits \
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
-F "model=gpt-image-2" \
-F "prompt=Place this logo crisply in the top-left on the tech background; keep the logo's exact colors and shape." \
-F "image[][email protected]" \
-F "image[][email protected]" \
-F "size=1792x1024" \
-F "n=1"
Response (both endpoints): {"data":[{"url":"https://...png"}]} → download data[0].url.
size is WxH (a preset) or "auto". Common presets:
| Aspect | Sizes |
|---|---|
| 16:9 | 1792x1024 (HD), 2048x1152, 3840x2160 (4K) |
| 9:16 | 1024x1792, 1152x2048, 2160x3840 |
| 1:1 | 1024x1024, 2048x2048, 4096x4096 |
(Omit size or use "auto" to let the model pick. Invalid sizes 400.)
image[] and say "keep its exact colors/shape, do not redraw it".edits it per beat instead of regenerating from scratch./tasks polling.npx claudepluginhub acedatacloud/skills --plugin acedatacloud-contentGenerates and edits images via OpenAI's GPT Image v2 on the EachLabs API. Handles text-to-image and instruction-based editing with high-fidelity photorealism and accurate in-image text.
Generates and edits images using gpt-image-2 via a configurable OpenAI-compatible API. Use when creating visual assets, illustrations, or image variations.
Generates and edits images using OpenAI's gpt-image-2 model via CLI or agent skill. Includes 162 curated prompts, inpainting, and reference image compositing. Triggered by image generation requests.