skills/transform-upscale-image-with-transloadit/SKILL.md
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.
npx skillsauth add transloadit/skills transform-upscale-image-with-transloaditInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 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 upscale intent for quick AI upscaling of a local image.
npx -y @transloadit/node image upscale \
--input ./photo.jpg \
--output ./photo-upscaled.png
Defaults: --model nightmareai/real-esrgan, --scale 2, --face-enhance false.
npx -y @transloadit/node image upscale \
--input ./photo.jpg \
--scale 4 \
--output ./photo-upscaled.png
Use when the input contains human faces that should be sharpened. Pair with gfpgan or codeformer
for dedicated face restoration, or keep real-esrgan + --face-enhance for a general upscale that
also improves faces.
--face-enhance is a boolean flag — pass it bare, not with true.
npx -y @transloadit/node image upscale \
--input ./portrait.jpg \
--face-enhance \
--output ./portrait-upscaled.png
nightmareai/real-esrgan (default): general-purpose SOTA upscaler for photos and illustrations.tencentarc/gfpgan: specialized face restoration; best for portraits with damaged or low-quality faces.sczhou/codeformer: alternative face restoration with more control over fidelity vs. quality.npx -y @transloadit/node image upscale \
--input ./portrait.jpg \
--model tencentarc/gfpgan \
--output ./portrait-restored.png
Notes:
--scale.--output, the CLI writes next to the input file using the intent's default extension.--scale only accepts 2 or 4.npx -y @transloadit/node assemblies get <assemblyIdOrUrl> -j
Notes:
/image/upscale is enabled for your account or switch --model.--scale 4 can exceed per-account limits; try --scale 2 first.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`.
tools
One-off image description using the official `@transloadit/node` CLI. Use `image describe --fields labels` for object-style labels, or `image describe --for wordpress` for structured alt text, title, caption, and description JSON.