Loading...
Loading...
Generate images using Codex's ChatGPT backend with zero production dependencies. Reuses existing local Codex authentication (~/.codex/auth.json) — no new credentials needed. Supports CLI (gti command), Node.js library, and Python SDK. Accepts text prompts with optional reference images (PNG/JPG/GIF/WebP). Includes dry-run mode and debug output. Triggers on: god-tibo-imagen, gti, image generation, codex image, chatgpt image, ai image, gpt image generation.
npx skill4agent add akillness/oh-my-skills god-tibo-imagenZero dependencies. Reuses your Codex login. Works from CLI, Node.js, or Python.
god-tibo-imagen~/.codex/auth.jsonclaude plugin marketplace add NomaDamas/god-tibo-imagennpm install -g god-tibo-imagen
# Provides the `gti` commandnpm install god-tibo-imagenpip install god-tibo-imagennpx skills add https://github.com/akillness/oh-my-skills --skill god-tibo-imagen~/.codex/auth.jsonClient~/.codex/auth.json# Basic generation
gti --prompt "blue square icon on white background" --output ./out.png
# With reference image(s)
gti --prompt "make it round" --input ./ref1.png --input ./ref2.jpg --output ./out.png
# Dry-run (validate without generating)
gti --prompt "sunset over mountains" --dry-run
# Debug output (redacts sensitive data)
gti --prompt "cartoon cat" --output ./cat.png --debugimport { createProvider, resolveConfig } from 'god-tibo-imagen'
const config = await resolveConfig()
const provider = createProvider(config)
const result = await provider.generate({ prompt: 'abstract art' })from god_tibo_imagen import Client
client = Client()
client.generate_image(
prompt="blue square icon",
output="./out.png"
)| Format | Input | Output |
|---|---|---|
| PNG | ✅ | ✅ |
| JPG | ✅ | ✅ |
| GIF | ✅ | — |
| WebP | ✅ | — |
~/.codex/auth.json--dry-run--debug--input