Docs Transloadit Robots
Draft or validate Transloadit steps JSON configurations without an internet connection. It provides offline access to robot names and their full parameter documentation using the transloadit CLI. This helps you quickly configure steps and avoid guessing robot names or parameters.
Installation
This skill is self-contained. Copy the SKILL.md below directly into your project to get started.
.claude/skills/docs-transloadit-robots/SKILL.md # Claude Code
.cursor/skills/docs-transloadit-robots/SKILL.md # CursorOr install as a personal skill (available across all your projects):
~/.claude/skills/docs-transloadit-robots/SKILL.mdYou can also install using the skills CLI:
npx skills add transloadit/skills --skill docs-transloadit-robotsRequires Node.js 18+.
SKILL.md
---
name: docs-transloadit-robots
description: 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.
---
# Search Robots (Offline)
```bash
npx -y @transloadit/node docs robots list --search import --limit 10 -j
```
Output shape:
- `docs robots list -j` prints a single JSON object: `{ robots: [{ name, title?, summary, category? }], nextCursor? }`
# Get Full Robot Docs (Offline)
Comma-separated:
```bash
npx -y @transloadit/node docs robots get /http/import,/image/resize -j
```
Output shape + error contract:
- `docs robots get -j` prints `{ robots: [...], notFound: string[] }`
- Exit code is `1` if `notFound` is non-empty, but JSON still includes partial results.
# Apply To Steps JSON
- Robot names map to: `steps.<stepName>.robot` (example: `"/image/resize"`)
- Param docs map to: `steps.<stepName>.<paramName>` keys.
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