pamelafox/presentation-skills

generate-images-mai

Generate or edit bitmap images with Microsoft MAI-Image-2.5 through the Azure AI image APIs.

Installation

$ npx skills add pamelafox/presentation-skills --skill generate-images-mai

Summary

  • Generate or edit bitmap images with Microsoft MAI-Image-2.5 through the Azure AI image APIs.
  • Use for text-to-image generation, image-to-image edits, object removal or replacement, inpainting, text updates, artifact cleanup, reference-image transformations, posters, thumbnails, and concept art.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from pamelafox/presentation-skills · top by installs.

npx skills add pamelafox/presentation-skills

Browse all from pamelafox/presentation-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 117
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 5,831 B
  • docs SUMMARY.md 321 B

History

  1. First recorded snapshot · 8 installs

SKILL.md

Generate and edit images with MAI-Image-2.5

Create an image from text or edit a supplied JPEG or PNG, save the result, and verify that the output is usable.

Requirements

  • Python 3.10+.
  • A .env file in the current directory or one of its parents:
AZURE_API_KEY=your-key
AZURE_IMAGE_ENDPOINT=https://your-resource.services.ai.azure.com/mai/v1/images/generations

The endpoint can be the resource root, /mai/v1/images, /generations, or /edits; the script selects the operation-specific path.

Never read, print, return, commit, or embed the API key in generated files, commands, logs, or chat. Do not create a .env containing a real secret. If configuration is missing, tell the user which variable to add without asking them to send its value through chat.

Procedure

  1. Determine the requested subject or edit, intended use, output path, dimensions, and visual constraints from the conversation.
  2. For an edit, confirm that the input is a readable JPEG or PNG. Preserve the original composition or identity unless the request says otherwise.
  3. If the prompt is underspecified, preserve the user's intent and add only useful visual detail: medium, composition, environment, lighting, palette, camera or rendering style, and important exclusions. Do not introduce brands, people, text, or sensitive attributes the user did not request.
  4. Default to 1024x1024 and generated_image.png for generation. Generation dimensions must each be at least 768 pixels and contain no more than 1,048,576 total pixels. Edit output is always PNG and dimensions are controlled by the service.
  5. Run [generateimage.py](./scripts/generateimage.py) with the refined prompt. Pass arguments as separate shell tokens and quote all user-provided values.

Text-to-image generation:

python3 .agents/skills/generate-images-mai/scripts/generate_image.py \
  --prompt "A photograph of a red fox in an autumn forest" \
  --width 1024 \
  --height 1024 \
  --output generated_image.png

Image-to-image edit:

python3 .agents/skills/generate-images-mai/scripts/generate_image.py \
  --prompt "Replace the lawn with a native wildflower garden while preserving the house and paths" \
  --input-image garden.png \
  --output edited_garden.png
  1. If the destination exists, do not overwrite it unless the user explicitly requested replacement; use a new descriptive filename or pass --force only with that permission.
  2. Verify the output exists, is non-empty, and can be decoded as an image. Use the image-viewing tool to inspect it when available.
  3. Check that the result matches the requested subject or edit, composition, legibility, and safety constraints. Regenerate with a targeted prompt adjustment when the image is blank, malformed, materially off-topic, or has obvious layout defects.
  4. Report the saved path and, when available, final dimensions. Mention prompt changes only when they materially affect the user's request.

Options

  • --prompt: Required image description or editing instruction.
  • --input-image: Optional JPEG or PNG image to edit. When present, the script uses the MAI image edits API.
  • --output: Output PNG path; defaults to generated_image.png.
  • --width and --height: Generation dimensions; each defaults to 1024. Ignored for edits.
  • --model: Deployment name; defaults to MAI-Image-2.5.
  • --endpoint: Azure resource or image API endpoint; overrides AZUREIMAGEENDPOINT.
  • --env-file: Loads a specific .env file instead of searching parent directories.
  • --force: Permits replacing an existing output file.

Environment variables already present in the process take precedence over values in .env.

API behavior

  • Text generation sends JSON to /mai/v1/images/generations.
  • Image editing sends prompt, model, and one image as multipart form data to /mai/v1/images/edits.
  • Image edits accept JPEG or PNG input and return PNG output.
  • MAI-Image-2.5 image editing is currently a public-preview feature and isn't recommended for production workloads without accounting for preview limitations.

Failure handling

  • Missing configuration: Identify AZUREAPIKEY or AZUREIMAGEENDPOINT and stop.
  • Invalid input image: Report that image edits require a readable JPEG or PNG.
  • HTTP authentication failure: Tell the user to verify AZUREAPIKEY locally; never request the key in chat.
  • HTTP endpoint or deployment failure: Report the status and sanitized API message, then verify the endpoint and deployment name.
  • Invalid or absent b64_json: Do not create an output file; report the response-shape problem.
  • Content-policy rejection: Explain that the service rejected the prompt and offer a compliant revision.
  • Corrupt or empty image: Remove the incomplete output and retry once with the same request before changing the prompt.

Completion checks

  • The secret was not exposed.
  • The requested output was created without overwriting unrelated work.
  • The file is a decodable image.
  • Visual inspection confirms the primary subject and requested edits are present.
  • The user receives a clickable path to the image.

Reference