Skip to main content

Documentation Index

Fetch the complete documentation index at: https://runcrate.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

SSH into any running instance. The CLI handles key management automatically (keyless).
runcrate ssh <instance-name-or-id>

Run a command and exit

runcrate ssh my-gpu -- nvidia-smi
runcrate ssh my-gpu -- python train.py
runcrate ssh my-gpu -- df -h
runcrate ssh my-gpu -- cat logs/train.log

File Transfer

Copy files to and from instances using cp. Works like scp but handles authentication for you.
# Upload a file
runcrate cp ./model.pt instance:/root/

# Download a file
runcrate cp instance:/root/results.csv ./

# Upload a directory
runcrate cp -r ./my-project instance:/root/