typescript/skills/openai-image-gen/SKILL.md
Generate images using OpenAI's DALL-E API.
npx skillsauth add kody-w/openrappter openai-image-genInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate images with DALL-E via the OpenAI API.
curl -s "https://api.openai.com/v1/images/generations" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "dall-e-3",
"prompt": "A serene mountain landscape at sunset",
"n": 1,
"size": "1024x1024"
}' | jq '.data[0].url'
curl -s "https://api.openai.com/v1/images/edits" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-F image="@original.png" \
-F mask="@mask.png" \
-F prompt="Add a rainbow in the sky" \
-F n=1 \
-F size="1024x1024" | jq '.data[0].url'
curl -s "https://api.openai.com/v1/images/variations" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-F image="@original.png" \
-F n=3 \
-F size="1024x1024" | jq '.data[].url'
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
content-media
Extract frames from video files using ffmpeg for analysis or processing.