with one click
image-generate
Generate images using DALL-E via OpenAI API
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate images using DALL-E via OpenAI API
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Execute a single agent step with custom system prompt and wait for completion.
Control the CARNELIAN browser control server (status/start/stop/tabs/snapshot/screenshot/navigate/act). Routes to the local browser control HTTP server.
Render canvas graphics and visualizations via Carnelian gateway node.invoke API
Communicate with Windsurf Cascade via JSONL channel files (message/delegate/request_help/share_context/status).
Manage Gateway cron jobs (status/list/add/update/remove/run/runs) and send wake events.
Send a message to a Discord channel via the Discord REST API
| name | image-generate |
| description | Generate images using DALL-E via OpenAI API |
| metadata | {"CARNELIAN":{"emoji":"🎨","requires":{"env":["OPENAI_API_KEY"]},"primaryEnv":"OPENAI_API_KEY"},"carnelian":{"runtime":"node","version":"1.0.0","sandbox":{"network":"full","resourceLimits":{"maxMemoryMB":128,"maxCpuPercent":25,"timeoutSecs":60},"env":{"OPENAI_API_KEY":"${OPENAI_API_KEY}"}},"capabilities":["net.http"]}} |
Generate images using DALL-E via OpenAI API.
Ported from CARNELIAN image-tool.ts.
{
prompt: string; // Required: text description of the image
model?: string; // Optional: model to use (default "dall-e-3")
size?: string; // Optional: image size (default "1024x1024")
quality?: "standard" | "hd"; // Optional: image quality (default "standard")
n?: number; // Optional: number of images (default 1)
response_format?: "url" | "b64_json"; // Optional: response format (default "url")
}
1024x1024, 1024x1792, 1792x1024256x256, 512x512, 1024x1024URL format:
{
url: string; // Image URL (expires after 1 hour)
revised_prompt?: string; // DALL-E 3 revised prompt
}
Base64 format:
{
b64_json: string; // Base64-encoded image data
revised_prompt?: string; // DALL-E 3 revised prompt
}
b64_json for persistent storageOPENAI_API_KEY environment variable