Skip to content
OpenSmartRoute
Skillv1.0.0

god-tibo-imagen

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)

by akillness(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from akillness/jeo-skills (.agent-skills/god-tibo-imagen/SKILL.md). Install upstream with npx skills add akillness/jeo-skills --skill god-tibo-imagen. Copyright stays with the author.

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-imagen

npm (CLI — global)

npm install -g god-tibo-imagen
# Provides the `gti` command

npm (Library)

npm install god-tibo-imagen

Python SDK

pip install god-tibo-imagen

Skill (any platform)

npx skills add https://github.com/akillness/jeo-skills --skill god-tibo-imagen

Requirements

  • 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 Client class

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 --debug

Node.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

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/akillness-jeo-skills-god-tibo-imagen/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

akillness-jeo-skills-god-tibo-imagen.ocm.jsonjson
{
  "ocm": "1",
  "id": "akillness-jeo-skills-god-tibo-imagen",
  "kind": "skill",
  "name": "god-tibo-imagen",
  "description": "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.",
  "publisher": "akillness",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "image-generation",
      "ai-image",
      "codex",
      "chatgpt",
      "gti",
      "cli",
      "npm",
      "python",
      "multimodal"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/akillness/jeo-skills",
      "path": ".agent-skills/god-tibo-imagen/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/akillness/jeo-skills/blob/HEAD/.agent-skills/god-tibo-imagen/SKILL.md",
      "key": "akillness/jeo-skills/.agent-skills/god-tibo-imagen/SKILL.md"
    },
    "allowed_tools": [
      "Read",
      "Write",
      "Bash",
      "Grep",
      "Glob",
      "WebFetch"
    ]
  },
  "instructions": "# god-tibo-imagen — AI Image Generation via Codex Backend\n\n> Zero dependencies. Reuses your Codex login. Works from CLI, Node.js, or Python.\n\n`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.\n\n## Installation\n\n### Plugin (Claude Code)\n```bash\nclaude plugin marketplace add NomaDamas/god-tibo-imagen\n```\n\n### npm (CLI — global)\n```bash\nnpm install -g god-tibo-imagen\n# Provides the `gti` command\n```\n\n### npm (Library)\n```bash\nnpm insta",
  "cost": {
    "context_tokens": 835
  }
}

Fetch it by URL: GET /api/v1/registry/akillness-jeo-skills-god-tibo-imagen/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.