Skills docs-transloadit-robots
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.
install
source · Clone the upstream repo
git clone https://github.com/transloadit/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/transloadit/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/docs-transloadit-robots" ~/.claude/skills/transloadit-skills-docs-transloadit-robots && rm -rf "$T"
manifest:
skills/docs-transloadit-robots/SKILL.mdsource content
Search Robots (Offline)
npx -y @transloadit/node docs robots list --search import --limit 10 -j
Output shape:
prints a single JSON object:docs robots list -j{ robots: [{ name, title?, summary, category? }], nextCursor? }
Get Full Robot Docs (Offline)
Comma-separated:
npx -y @transloadit/node docs robots get /http/import,/image/resize -j
Output shape + error contract:
printsdocs robots get -j{ robots: [...], notFound: string[] }- Exit code is
if1
is non-empty, but JSON still includes partial results.notFound
Apply To Steps JSON
- Robot names map to:
(example:steps.<stepName>.robot
)"/image/resize" - Param docs map to:
keys.steps.<stepName>.<paramName>