skills/transform-generate-image-with-transloadit/SKILL.md
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.
npx skillsauth add transloadit/skills transform-generate-image-with-transloaditInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
4 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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
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
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:
google/nano-banana-2.--model openai/gpt-image-2 for OpenAI image generation. The older gpt-image-2 spelling is
still accepted by API2 for backwards compatibility.--input values are bundled into a single /image/generate assembly.--input.--output, prompt-only and multi-input runs default to the current working directory.npx -y @transloadit/node assemblies get <assemblyIdOrUrl> -j
Notes:
tools
One-off AI image upscaling (local image -> upscaled image) using Transloadit via the `transloadit` CLI. Prefer the `image upscale` intent and use `--output` for a deterministic path.
development
Launch and steer a sibling Codex agent in a new tmux pane using the same or explicitly requested model, reasoning effort, sandbox, approval policy, and working directory. Use when the user asks to open a new tmux pane/window, start another Codex, delegate a bounded task to it, communicate with that Codex, monitor it, or make future parallel Codex handoffs smoother. Also use when the user mentions ACP for local Codex-to-Codex coordination but tmux interaction is sufficient or more reliable.
tools
One-off polaroid-stack photo collage (N local images -> single image) using the official `@transloadit/node` CLI. Uses the `/image/merge` Robot's `polaroid-stack` effect and downloads the result to an explicit output path via `--output`.
tools
One-off justified mosaic photo collage (N local images -> single image) using the official `@transloadit/node` CLI. Uses the `/image/merge` Robot's `mosaic` effect to build a tiled layout that keeps every photo fully visible, and downloads the result to an explicit output path via `--output`.