mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-12 05:51:44 +08:00
1.3 KiB
1.3 KiB
name, description
| name | description |
|---|---|
| codex-image2-fallback | Fallback behavior when OpenAI API credentials are absent but Codex/native image generation is available |
Codex Image2 Fallback
The openai provider can fail with:
OPENAI_API_KEY is required. Codex/ChatGPT desktop login does not automatically grant OpenAI Images API access to this script.
This is expected. The openai provider uses the public OpenAI Images API and needs OPENAI_API_KEY. Codex / ChatGPT image2 entitlement is a separate runtime-native path.
Practical fallback pattern
- Try this skill when provider credentials are available.
- If it fails only because
OPENAI_API_KEYis missing, do not leave the user waiting. - Prefer a Codex/native raster backend in this order:
- Codex runtime native
imagegenskill/tool, if available. - Repo-level
scripts/codex-imagegen.sh, ifcodexCLI is installed/logged in and the calling skill supports the wrapper. - Hermes native
image_generate, if available.
- Codex runtime native
- Be transparent about reference-image behavior:
- If the fallback backend accepts references, pass the reference images.
- If it does not, derive a concise identity-preserving prompt from the references and state that it is a text-description fallback, not strict reference-image editing.
- Return the generated media path or structured backend error promptly.