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.

CommandDescription
runcrate loginAuthenticate via browser
runcrate logoutClear credentials
Instances
runcrate psList instances (alias for instances list)
runcrate instances list [-q]List instances (-q for IDs only)
runcrate instances types [--gpu X]Browse GPUs and pricing
runcrate instances create --name X --gpu A100Deploy instance
runcrate instances info <name-or-id>Instance details (IP, GPU, cost)
runcrate instances status <name-or-id>Live status check
runcrate instances delete <name-or-id>Terminate instance
Access
runcrate ssh <instance>Interactive shell (keyless)
runcrate ssh <instance> -- <cmd>Run command and exit
runcrate cp ./local instance:/remoteUpload file
runcrate cp instance:/remote ./localDownload file
Volumes
runcrate volumes listList volumes
runcrate volumes create --name X --size 100Create volume (GB)
runcrate volumes resize <id> --size 200Resize volume
runcrate volumes delete <id>Delete volume
runcrate volumes regionsAvailable regions
SSH Keys
runcrate ssh-keys listList SSH keys
runcrate ssh-keys add --name X --file <path>Add SSH key
runcrate ssh-keys delete <id>Delete SSH key
Billing
runcrate billing balanceCurrent credit balance
runcrate billing usageSpending breakdown
Workspaces & Environments
runcrate workspacesList workspaces
runcrate workspaces switchSwitch active workspace
runcrate envsList environments
runcrate envs switch <name>Switch environment
runcrate envs create <name>Create environment
runcrate envs delete <name>Delete environment
Other
runcrate templatesList OS templates
runcrate config showShow CLI configuration
runcrate versionShow version
runcrate updateSelf-update

SSH Keys

Manage SSH keys for non-keyless access to instances.

List keys

runcrate ssh-keys list

Add a key

runcrate ssh-keys add --name work-laptop --file ~/.ssh/id_ed25519.pub

Delete a key

runcrate ssh-keys delete <id>

Billing

Check balance

runcrate billing balance    # Current credit balance

View usage

runcrate billing usage      # Spending breakdown

Workspaces & Environments

List and switch workspaces

runcrate workspaces              # List all workspaces
runcrate workspaces switch       # Switch active workspace

Manage environments

runcrate envs                    # List environments in current workspace
runcrate envs switch staging     # Switch to a different environment
runcrate envs create staging     # Create a new environment
runcrate envs delete staging     # Delete an environment

Other Commands

Templates

runcrate templates               # List OS templates for instances

Configuration

runcrate config show             # Show current CLI configuration

Self-update

runcrate update                  # Update to the latest version

Tips

  • Most list commands support --json for machine-readable output.
  • Common aliases work: ls, rm, -q.
  • Run runcrate <command> --help for detailed usage on any command.