Offline lookup for Transloadit Robots and their parameter docs/examples via the `transloadit` CLI. Use to draft or validate `steps` JSON without guessing robot names/params.
Add this skill
npx mdskills install transloadit/docs-transloadit-robotsProvides offline CLI-based lookup for Transloadit robot docs with clear JSON contracts and examples
1---2name: docs-transloadit-robots3description: Offline lookup for Transloadit Robots and their parameter docs/examples via the `transloadit` CLI. Use to draft or validate `steps` JSON without guessing robot names/params.4---56# Search Robots (Offline)78```bash9npx -y @transloadit/node docs robots list --search import --limit 10 -j10```1112Output shape:13- `docs robots list -j` prints a single JSON object: `{ robots: [{ name, title?, summary, category? }], nextCursor? }`1415# Get Full Robot Docs (Offline)1617Comma-separated:18```bash19npx -y @transloadit/node docs robots get /http/import,/image/resize -j20```2122Output shape + error contract:23- `docs robots get -j` prints `{ robots: [...], notFound: string[] }`24- Exit code is `1` if `notFound` is non-empty, but JSON still includes partial results.2526# Apply To Steps JSON2728- Robot names map to: `steps.<stepName>.robot` (example: `"/image/resize"`)29- Param docs map to: `steps.<stepName>.<paramName>` keys.30
Full transparency — inspect the skill content before installing.