
God Tibo Imagen
- 143 installs
- 40 repo stars
- Updated August 4, 2026
- akillness/oh-my-skills
Generate on-brand UI assets, marketing visuals, and agent-ready images via Imagen-style prompts when building sites, decks, or automated creative pipelines.
About
god-tibo-imagen guides Claude through Imagen-style image generation for product and marketing visuals. It encodes prompt conventions, asset intent, and reuse patterns so agents produce consistent UI imagery, hero art, and campaign graphics during active build work.
- Imagen-oriented prompt patterns for consistent visual output
- Fits oh-my-skills workflow for agent-driven asset creation
- Supports marketing and UI imagery without external design tools
- Useful for rapid prototype and landing-page visuals
- Pairs with content and SaaS builds needing custom graphics
God Tibo Imagen by the numbers
- 143 all-time installs (skills.sh)
- Ranked #729 of 1,335 Generative Media skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akillness/oh-my-skills --skill god-tibo-imagenAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 143 |
|---|---|
| repo stars | ★ 40 |
| Last updated | August 4, 2026 |
| Repository | akillness/oh-my-skills ↗ |
What it does
Generate on-brand UI assets, marketing visuals, and agent-ready images via Imagen-style prompts when building sites, decks, or automated creative pipelines.
Files
god-tibo-imagen — AI Image Generation via Codex Backend
Zero dependencies. Reuses your Codex login. Works from CLI, Node.js, or Python.
god-tibo-imagen generates images by sending requests to Codex's ChatGPT backend. It reads existing local authentication from ~/.codex/auth.json — no separate API key setup required if you already use Codex CLI.
Installation
Plugin (Claude Code)
claude plugin marketplace add NomaDamas/god-tibo-imagennpm (CLI — global)
npm install -g god-tibo-imagen
# Provides the `gti` commandnpm (Library)
npm install god-tibo-imagenPython SDK
pip install god-tibo-imagenSkill (any platform)
npx skills add https://github.com/akillness/jeo-skills --skill god-tibo-imagenRequirements
- Node.js 20+ (CLI / library)
- Python 3.10+ (Python SDK)
- Existing Codex CLI login at
~/.codex/auth.json
When to use
- Generate AI images without a separate API key — reuses Codex auth
- Automate image generation from shell scripts, Node.js, or Python workflows
- Use reference images as context for guided generation (up to multiple images)
- Run dry-run validation before submitting real generation requests
- Integrate image generation into agent pipelines via the Python
Clientclass
Do not use when
- You need a supported public API (this uses an undocumented internal backend — may change)
- You do not have an active Codex / ChatGPT subscription with a valid
~/.codex/auth.json - You need guaranteed SLA or production-grade image generation → use DALL-E API or Stable Diffusion
CLI usage
# 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 --debugNode.js library
import { createProvider, resolveConfig } from 'god-tibo-imagen'
const config = await resolveConfig()
const provider = createProvider(config)
const result = await provider.generate({ prompt: 'abstract art' })Python SDK
from god_tibo_imagen import Client
client = Client()
client.generate_image(
prompt="blue square icon",
output="./out.png"
)Supported formats
| Format | Input | Output |
|---|---|---|
| PNG | ✅ | ✅ |
| JPG | ✅ | ✅ |
| GIF | ✅ | — |
| WebP | ✅ | — |
Operating rules
1. Verify ~/.codex/auth.json exists and is valid before running 2. Use --dry-run to validate prompt and config without consuming quota 3. Treat the backend as undocumented — avoid hard dependencies in production code 4. Use --debug to inspect request shape; sensitive tokens are automatically redacted 5. Pass multiple --input flags for multi-image reference context
References
Source: NomaDamas/god-tibo-imagen — MIT License
god-tibo-imagen|god-tibo-imagen,gti,image generation,codex image,chatgpt image,ai image generation,gpt image,ai image|Generate images via Codex ChatGPT backend with zero deps. CLI: gti --prompt "..." --output out.png. Reuses ~/.codex/auth.json — no new credentials. npm install -g god-tibo-imagen. Python: pip install god-tibo-imagen. Supports PNG/JPG/GIF/WebP input, dry-run, debug mode.|NomaDamas/god-tibo-imagen|MIT|latest