From openclaudia-openclaudia-skills
Generates AI images from text prompts using OpenAI gpt-image-1 or Stability AI SD 3.5 Large via Python CLI. Supports sizes, quality levels, transparent backgrounds; useful for illustrations, logos, banners.
npx claudepluginhub joshuarweaver/cascade-communication --plugin openclaudia-openclaudia-skillsThis skill is limited to using the following tools:
Generate images from text prompts using OpenAI GPT Image (gpt-image-1) or Stability AI (SD 3.5 Large).
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Generate images from text prompts using OpenAI GPT Image (gpt-image-1) or Stability AI (SD 3.5 Large).
~/.agents/tools/generate-image.py~/.agents/tools/.env (contains OPENAI_API_KEY and STABILITY_API_KEY)python ~/.agents/tools/generate-image.py \
--prompt "a sunset over mountains, oil painting style" \
--output ./sunset.png
python ~/.agents/tools/generate-image.py \
--prompt "modern logo design for a tech company" \
--output ./logo.png \
--size 1024x1024 \
--quality high
python ~/.agents/tools/generate-image.py \
--prompt "abstract digital art with blue tones" \
--output ./banner.png \
--size 1536x1024
python ~/.agents/tools/generate-image.py \
--prompt "portrait of a futuristic city" \
--output ./city.png \
--size 1024x1536
python ~/.agents/tools/generate-image.py \
--prompt "a minimalist cat icon, flat design" \
--output ./icon.png \
--background transparent
python ~/.agents/tools/generate-image.py \
--prompt "watercolor painting of a garden" \
--output ./garden.png \
--provider stability
| Option | Description |
|---|---|
--prompt, -p | (Required) Text prompt describing the desired image |
--output, -o | (Required) Output file path |
--provider | openai (default) or stability |
--size | Image size for OpenAI: 1024x1024 (default), 1536x1024 (wide), 1024x1536 (tall) |
--quality | OpenAI quality: low, medium (default), or high |
--background | OpenAI background: auto (default), transparent, or opaque |
--model | Override model (default: gpt-image-1 for OpenAI, sd3.5-large for Stability) |
| Feature | OpenAI GPT Image | Stability AI SD 3.5 |
|---|---|---|
| Default model | gpt-image-1 | sd3.5-large |
| Prompt adherence | Excellent | Good |
| Size options | 1024x1024, 1536x1024, 1024x1536 | 1024x1024 |
| Quality options | low, medium, high | N/A |
| Transparent bg | Yes | No |
| Style | Photorealistic + artistic | Artistic + photorealistic |
requests (for API calls)Install if needed:
pip install requests
The script prints: