ワンクリックで
image-gen
Generate images via DALL-E, Stable Diffusion, or free alternatives. Supports multi-channel delivery.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate images via DALL-E, Stable Diffusion, or free alternatives. Supports multi-channel delivery.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create and edit PowerPoint (.pptx) presentations programmatically. Requires python-pptx.
Create and edit Excel (.xlsx) workbooks with openpyxl. Supports formulas, charts, formatting, and data analysis.
Generate meme images with text overlays using Pillow. Pick templates or create custom image macros.
Execute Python code snippets in a sandboxed environment. Supports data analysis, visualization, and quick scripts.
GitHub CLI for issues, PRs, code search, CI logs, releases, and API queries. Requires gh CLI and auth.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | image-gen |
| description | Generate images via DALL-E, Stable Diffusion, or free alternatives. Supports multi-channel delivery. |
| version | 1.0.0 |
| metadata | {"echo":{"tags":["Image","Generation","DALL-E","StableDiffusion","Creative"],"requires":{"anyEnv":["OPENAI_API_KEY","STABILITY_API_KEY"]}}} |
Generate images from text prompts. Multiple provider options.
Requires OPENAI_API_KEY.
from openai import OpenAI
client = OpenAI()
response = client.images.generate(
model="dall-e-3",
prompt="A serene mountain lake at sunset, photorealistic",
size="1024x1024",
quality="standard", # or "hd"
n=1,
)
image_url = response.data[0].url
Sizes: 1024x1024, 1792x1024, 1024x1792
# Simple GET request - returns PNG
curl "https://image.pollinations.ai/prompt/A%20cat%20wearing%20sunglasses" -o output.png
# With parameters
curl "https://image.pollinations.ai/prompt/YOUR_PROMPT?width=1024&height=1024&seed=42" -o output.png
Requires STABILITY_API_KEY.
curl -X POST "https://api.stability.ai/v2beta/stable-image/generate/sd3" \
-H "authorization: Bearer $STABILITY_API_KEY" \
-H "accept: image/*" \
-F "prompt=lighthouse on a cliff" \
-F "output_format=png" \
-o output.png
python3 scripts/generate_image.py "A cat in space" --provider dalle --output /tmp/gen.png
python3 scripts/generate_image.py "Logo design" --provider dalle --size 1024x1024
python3 scripts/generate_image.py "Mountains" --provider stability --output landscape.png
Requires API key environment variable:
export OPENAI_API_KEY=sk-xxxexport STABILITY_API_KEY=sk-xxx