← All skills
Tencent SkillHub Β· AI

Azure Image Gen

Generate images using Azure OpenAI DALL-E. Supports batch generation, custom prompts, and outputs a gallery.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Generate images using Azure OpenAI DALL-E. Supports batch generation, custom prompts, and outputs a gallery.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/generate.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Azure Image Gen

Generate images using Azure OpenAI's DALL-E deployment.

Required Environment Variables

export AZURE_OPENAI_ENDPOINT="https://your-resource.openai.azure.com" export AZURE_OPENAI_API_KEY="your-api-key" export AZURE_OPENAI_DALLE_DEPLOYMENT="your-dalle-deployment-name" Or create a .env file in the skill directory.

API Version

Default: 2024-02-01 (supports DALL-E 3)

Basic Generation

python3 /Users/abhi/clawd/skills/azure-image-gen/scripts/generate.py --prompt "A futuristic city at sunset"

Multiple Images

python3 /Users/abhi/clawd/skills/azure-image-gen/scripts/generate.py \ --prompt "Professional blog header for a tech startup" \ --count 4

Custom Size & Quality

python3 /Users/abhi/clawd/skills/azure-image-gen/scripts/generate.py \ --prompt "Minimalist illustration of cloud computing" \ --size 1792x1024 \ --quality hd

Specify Output Directory

python3 /Users/abhi/clawd/skills/azure-image-gen/scripts/generate.py \ --prompt "Abstract data visualization" \ --out-dir ./blog-images

Options

FlagDefaultDescription--promptRequiredImage description--count1Number of images to generate--size1024x1024Image size: 1024x1024, 1792x1024, 1024x1792--qualitystandardQuality: standard or hd--stylevividStyle: vivid or natural--out-dir./azure-imagesOutput directory--api-version2024-02-01Azure OpenAI API version

Output

PNG images saved to output directory manifest.json with prompt-to-file mapping index.html gallery for easy preview

Blog Image Prompts

For blog headers, try prompts like: # Tech/SaaS "Minimalist isometric illustration of cloud migration, blue and white color scheme, clean lines, professional" # Comparison posts "Split screen illustration showing old vs new technology, warm vs cool colors, modern flat design" # How-to guides "Clean illustration of a step-by-step process, numbered steps floating in space, soft gradients" # Cost/pricing "Abstract visualization of savings and growth, upward arrows, green accents, professional business style"

Troubleshooting

401 Unauthorized: Check your AZURE_OPENAI_API_KEY 404 Not Found: Verify your AZURE_OPENAI_DALLE_DEPLOYMENT name matches exactly Content Policy: Azure has strict content filters. Rephrase prompts that get blocked.

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/generate.py Scripts