tyrchen/claude-skills · Archived

ai-image

Generate AI images using OpenAI's gpt-image-1 model with customizable aspect ratios and artistic themes.

First seen Jan 24, 2026

Installation

$ npx skills add tyrchen/claude-skills --skill ai-image

Summary

  • Generate AI images using OpenAI's gpt-image-1 model with customizable aspect ratios and artistic themes.
  • Use when the user wants to create images, generate artwork, or mentions image generation with specific styles like Ghibli, futuristic, Pixar, oil painting, or Chinese painting.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

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 tyrchen/claude-skills.

npx skills add tyrchen/claude-skills

Browse all from tyrchen/claude-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 45
License MIT
Default branch master
Open issues 1
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,721 B
  • docs README.md 3,297 B
  • docs SUMMARY.md 297 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 29 installs

SKILL.md

AI Image Generation Skill

Generate high-quality AI images using OpenAI's gpt-image-1 model with customizable styles and themes.

When to Use This Skill

Use this skill when the user wants to:

  • Generate images from text descriptions
  • Create artwork with specific artistic styles
  • Generate images with particular aspect ratios (vertical, horizontal, square)
  • Apply themed visual styles (Studio Ghibli, futuristic, Pixar, oil painting, Chinese painting)

Instructions

  1. Check for API Key: Verify that the OPENAIAPIKEY environment variable is set
  2. Gather Requirements: Ask the user for:

- Image prompt (required) - Style/aspect ratio: vertical (1024x1536), horizontal (1536x1024), or square (1024x1024) - Theme: ghibli, futuristic, pixar, oil-paint, or chinese-paint (optional) - Output location (optional, defaults to ./generated_image.png)

  1. Run the CLI: Execute the main.py script with the appropriate parameters
  2. Report Results: Show the user where the image was saved and any relevant details

Available Options

Aspect Ratios (--style)

  • vertical: 1024x1536 pixels (portrait orientation)
  • horizontal: 1536x1024 pixels (landscape orientation)
  • square: 1024x1024 pixels (default)

Artistic Themes (--theme)

  • ghibli: Studio Ghibli animation style with whimsical, dreamlike aesthetics
  • futuristic: Sci-fi style with sleek designs and neon lights
  • pixar: Vibrant 3D animation style with expressive characters
  • oil-paint: Classical oil painting with rich textures and brushstrokes
  • chinese-paint: Traditional Chinese ink painting with delicate brushwork

Usage Examples

Basic Usage

uv run main.py --prompt "a cat sitting on a tree"

With Style and Theme

uv run main.py --prompt "a sunset over mountains" --style horizontal --theme oil-paint --output ./sunset.png

Futuristic Portrait

uv run main.py --prompt "a robot in a city" --style vertical --theme futuristic --output ./robot.png

Studio Ghibli Landscape

uv run main.py --prompt "a magical forest with spirits" --style horizontal --theme ghibli --output ./forest.png

Setup Requirements

This skill requires an OpenAI API key with access to the gpt-image-1 model:

export OPENAI_API_KEY='your-api-key-here'

Note: Using gpt-image-1 requires organization verification on the OpenAI platform.

Technical Details

  • Model: OpenAI gpt-image-1 (released April 2025)
  • Response Format: Base64 encoded images (b64_json)
  • Supported Sizes: 1024x1024, 1024x1536, 1536x1024
  • Maximum Resolution: Up to 4096x4096 pixels
  • Dependencies: openai>=2.7.1

Pricing Information

Usage is priced per token:

  • Text tokens: $5 per million
  • Image input tokens: $10 per million
  • Image output tokens: $40 per million

Approximate costs per generated image:

  • Low quality square: ~$0.02
  • Medium quality square: ~$0.07
  • High quality square: ~$0.19

Troubleshooting

API Key Not Set

If you see "Error: OPENAIAPIKEY environment variable not set", ensure your API key is exported in your shell session.

Organization Not Verified

gpt-image-1 requires organization verification on platform.openai.com. Visit your OpenAI account settings to complete verification.

Invalid Size Error

Ensure you're using one of the supported sizes: 1024x1024, 1024x1536, or 1536x1024.