OpenAI image generation and other skills for Claude Code
npx claudepluginhub thejacedev/claude-code-skillsGenerate images using OpenAI's gpt-image-1.5 model via the Images API.
Generate pixel art PNGs from text descriptions. Claude designs the art and renders it via a bundled Python script.
Auto-crop images by trimming blank/transparent space around the content.
A collection of Claude Code plugins for image generation and creative tasks.
Generate images from text prompts using OpenAI's gpt-image-1.5 model.
OPENAI_API_KEY and the openai Python packageGenerate pixel art PNGs from text descriptions. Claude designs the art itself — no external API needed.
Pillow Python package1. Add the marketplace
/plugin marketplace add thejacedev/claude-code-skills
2. Install a plugin
/plugin install openai-image-gen@thejacedev-skills
/plugin install pixel-art-gen@thejacedev-skills
3. Install dependencies
pip install openai # for openai-image-gen
pip install Pillow # for pixel-art-gen
4. Go
Open Claude Code and ask it to generate an image or create pixel art.
.claude-plugin/
marketplace.json # Marketplace registry
plugins/
openai-image-gen/ # OpenAI image generation plugin
.claude-plugin/plugin.json
skills/openai-image-gen/
SKILL.md
scripts/generate_image.py
references/api-usage.md
pixel-art-gen/ # Pixel art generation plugin
.claude-plugin/plugin.json
skills/pixel-art-gen/
SKILL.md
scripts/render_pixel_art.py
references/pixel-art-guide.md
MIT