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.
Add this skill
npx mdskills install transloadit/transloaditWell-organized router skill that delegates to specialized Transloadit sub-skills with clear CLI conventions
1---2name: transloadit3description: 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.4---56# Quick Routing781. Need reference (robot params/examples, no API calls): `docs-transloadit-robots`92. Need a one-off transform (download outputs locally): `transform-*`103. Need an end-to-end code integration (real app integration steps): `integrate-*`1112Concrete entry points:131. `docs-transloadit-robots`142. `transform-generate-image-with-transloadit`153. `transform-encode-hls-video-with-transloadit`164. `integrate-uppy-transloadit-s3-uploading-to-nextjs`175. `integrate-asset-delivery-with-transloadit-smartcdn-in-nextjs`1819## Install companion skills2021If the skills above are not available in your environment, install all of them at once:2223```bash24npx -y skills add https://github.com/transloadit/skills --all25```2627Or install a single skill:2829```bash30npx -y skills add https://github.com/transloadit/skills/tree/main/skills/<skill-name>31```3233Replace `<skill-name>` with one of: `docs-transloadit-robots`,34`transform-generate-image-with-transloadit`, `transform-encode-hls-video-with-transloadit`,35`integrate-uppy-transloadit-s3-uploading-to-nextjs`,36`integrate-asset-delivery-with-transloadit-smartcdn-in-nextjs`.3738# CLI Baseline (Recommended)3940Most skills in this repo prefer using the `@transloadit/node` CLI via:4142```bash43npx -y @transloadit/node ...44```4546If a command errors with "Unsupported option name" or a missing subcommand, update to a newer `@transloadit/node`.4748Builtin template discovery (token-efficient NDJSON):49```bash50npx -y @transloadit/node templates list --include-builtin exclusively-latest --fields id,name --json51```52
Full transparency — inspect the skill content before installing.