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.

install
source · Clone the upstream repo
git clone https://github.com/transloadit/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/transloadit/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/transform-generate-image-with-transloadit" ~/.claude/skills/transloadit-skills-transform-generate-image-with-transloadit && rm -rf "$T"
manifest: skills/transform-generate-image-with-transloadit/SKILL.md
source content

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