VxCloud
vxcloud CLI

Install vxcli in one command

Provision multi-cloud infrastructure, deploy apps over SSH, and run AI agents straight from your terminal. One static binary, no package manager, checksum-verified on the way in.

install vxcli
$curl -fsSL https://vxcloud.io/download/cli/install.sh | sh

Installs to ~/.local/bin. Apple Silicon (arm64) and Intel (amd64) supported.

Then verify
vxcli version
Pin a version
VXCLI_VERSION=2026.8.14 curl -fsSL …/install.sh | sh

Prefer to read first? install.sh · install.ps1 · each download is sha256-verified before it touches your machine.

Site down? Grab a prebuilt binary from the GitHub mirror.

What you can do from the terminal

vxcli is the full vxcloud control plane — scriptable, CI-friendly, and identical to what the web app drives.

Provision across 5 clouds

Spin up VMs on AWS, GCP, Azure, Alibaba and Linode with one consistent command set — or bring your own.

Deploy over SSH

Push Docker containers and 14 source-code stacks (FastAPI, Next.js, Go, Rust…) to any VM, with Let's Encrypt SSL.

Run AI agents

Drive VxAI and AgentControl from the CLI — let agents plan and execute cloud ops, with full audit logs.

Databases & networks

Create managed Postgres (MetalDB), configure networks, VPNs and security groups without leaving the shell.

CI/CD native

The same commands wire into GitHub Actions, GitLab CI, Jenkins and Drone — same output, same audit trail.

Vault-managed secrets

SSH keys and credentials live in workspace Vault, referenced by name. Per-key RBAC, rotate without touching scripts.

A few real commands

Provision a VM and deploy to itbash
# Create a VM on AWS
vxcli vm create --name api --cloud aws --region us-east-1 \
  --instance-type t3.small --key-pair-name AWSPRODKEY1

# Deploy FastAPI to it with HTTPS
vxcli deploy fastapi --source-dir ./ --app-name api \
  --enable-ssl --domain api.example.com --ssl-email [email protected] \
  --host <ip> --ssh-user ubuntu --key-pair-name AWSPRODKEY1
Manage running services from anywherebash
vxcli services list    --host <ip> --ssh-user ubuntu --key-pair-name AWSPRODKEY1
vxcli services logs api --tail 200 --host <ip> --ssh-user ubuntu --key-pair-name AWSPRODKEY1
vxcli services rollback api --host <ip> --ssh-user ubuntu --key-pair-name AWSPRODKEY1

CLI install FAQ

Bring the whole platform to your terminal

Free to start — provision, deploy, and run agents from one binary. Prefer a window? Get the desktop app.

Related pages