Transloadit
Need to work with Transloadit? This skill serves as a central hub, routing you to specialized skills for documentation, one-off file transformations, or full code integrations. It prioritizes executing tasks via the @transloadit/node command-line interface, ensuring consistent behavior.
Installation
This skill is self-contained. Copy the SKILL.md below directly into your project to get started.
.claude/skills/transloadit/SKILL.md # Claude Code
.cursor/skills/transloadit/SKILL.md # CursorOr install as a personal skill (available across all your projects):
~/.claude/skills/transloadit/SKILL.mdYou can also install using the skills CLI:
npx skills add transloadit/skills --skill transloaditRequires Node.js 18+.
SKILL.md
---
name: transloadit
description: Main entry-point skill for Transloadit. Route to the right `integrate-*`, `transform-*`, or `docs-*` skill, and prefer executing via `npx -y @transloadit/node ...` (CLI) for deterministic behavior.
---
# Quick Routing
1. Need reference (robot params/examples, no API calls): `docs-transloadit-robots`
2. Need a one-off transform (download outputs locally): `transform-*`
3. Need an end-to-end code integration (real app integration steps): `integrate-*`
Concrete entry points:
1. `docs-transloadit-robots`
2. `transform-generate-image-with-transloadit`
3. `transform-encode-hls-video-with-transloadit`
4. `integrate-uppy-transloadit-s3-uploading-to-nextjs`
5. `integrate-asset-delivery-with-transloadit-smartcdn-in-nextjs`
## Install companion skills
If the skills above are not available in your environment, install all of them at once:
```bash
npx -y skills add https://github.com/transloadit/skills --all
```
Or install a single skill:
```bash
npx -y skills add https://github.com/transloadit/skills/tree/main/skills/<skill-name>
```
Replace `<skill-name>` with one of: `docs-transloadit-robots`,
`transform-generate-image-with-transloadit`, `transform-encode-hls-video-with-transloadit`,
`integrate-uppy-transloadit-s3-uploading-to-nextjs`,
`integrate-asset-delivery-with-transloadit-smartcdn-in-nextjs`.
# CLI Baseline (Recommended)
Most skills in this repo prefer using the `@transloadit/node` CLI via:
```bash
npx -y @transloadit/node ...
```
If a command errors with "Unsupported option name" or a missing subcommand, update to a newer `@transloadit/node`.
Builtin template discovery (token-efficient NDJSON):
```bash
npx -y @transloadit/node templates list --include-builtin exclusively-latest --fields id,name --json
```
Originally by Transloadit, adapted here as an Agent Skills compatible SKILL.md.
This skill follows the Agent Skills open standard, supported by Claude Code, Cursor, Codex, Gemini CLI, and 20+ more editors.
Works with
Agent Skills format — supported by 20+ editors. Learn more