One-off image generation (prompt -> image file) using Transloadit via the `transloadit` CLI. Prefer builtin templates (`builtin/generate-image@latest`) and download outputs locally via `-o`.
Add this skill
npx mdskills install transloadit/transform-generate-image-with-transloaditClear CLI command template for image generation with useful debug steps and template discovery.
1---2name: transform-generate-image-with-transloadit3description: One-off image generation (prompt -> image file) using Transloadit via the `transloadit` CLI. Prefer builtin templates (`builtin/generate-image@latest`) and download outputs locally via `-o`.4---56# Run (No Input File)78Do not use `--watch` for inputless templates.910```bash11npx -y @transloadit/node assemblies create \12 --template builtin/generate-image@latest \13 -f prompt='A minimal product photo of a chameleon on white background' \14 -o ./out/ \15 -j16```1718Footnote (discover more builtin templates):19```bash20npx -y @transloadit/node templates list --include-builtin exclusively-latest --fields id,name --json21```2223# Debug If It Fails2425```bash26npx -y @transloadit/node assemblies get <assemblyIdOrUrl> -j27```2829Notes:30- Some generator/AI robots can be account-gated; if the assembly fails with capability/availability errors, switch templates or confirm the feature is enabled for your account.31
Full transparency — inspect the skill content before installing.