transloadit/skills

transform-generate-image-with-transloadit

One-off image generation (prompt -> image file) using Transloadit via the `transloadit` CLI. Prefer `image generate` for text-only and input-guided generation, and use `--output` when you need a deterministic path.

First seen Feb 12, 2026

Installation

$ npx skills add transloadit/skills --skill transform-generate-image-with-transloadit

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from transloadit/skills · top by installs.

npx skills add transloadit/skills

Browse all from transloadit/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 3
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,450 B
  • docs SUMMARY.md 263 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 81 installs

SKILL.md

Run

Use the image generate intent for quick image generation from a prompt.

npx -y @transloadit/node image generate \
  --prompt 'A minimal product photo of a chameleon on white background' \
  --output ./out.png

Run With OpenAI gpt-image-2

Use this when the user explicitly asks for openai/gpt-image-2, gpt-image-2, or OpenAI image generation. Keep it opt-in for now; the CLI default remains google/nano-banana-2.

npx -y @transloadit/node image generate \
  --model openai/gpt-image-2 \
  --width 1024 \
  --height 1024 \
  --prompt 'A ceramic coffee mug on a white seamless studio background' \
  --output ./out.png

Run With Input Images

You can also guide generation with one or more input images. Prefer meaningful filenames and refer to them in the prompt.

npx -y @transloadit/node image generate \
  --input ./person1.jpg \
  --input ./person2.jpg \
  --input ./background.jpg \
  --prompt 'Place person1.jpg feeding person2.jpg in front of background.jpg' \
  --output ./out.png

Notes:

  • The CLI defaults to google/nano-banana-2.
  • Use --model openai/gpt-image-2 for OpenAI image generation. The older gpt-image-2 spelling is

still accepted by API2 for backwards compatibility.

  • Repeated --input values are bundled into a single /image/generate assembly.
  • Prompt-only generation still works without any --input.
  • Without --output, prompt-only and multi-input runs default to the current working directory.

Debug If It Fails

npx -y @transloadit/node assemblies get <assemblyIdOrUrl> -j

Notes:

  • Some generator/AI robots can be account-gated; if the assembly fails with capability or

availability errors, switch models or confirm the feature is enabled for your account.