Quick Start¶
Get your first Cloud Agent VM running in 5 minutes.
1. Deploy a Repository¶
From inside a git repository:
Or specify a repository:
First Run
The first deployment takes a few minutes as Terraform provisions the VM and installs dependencies.
2. SSH into Your VM¶
You'll be dropped into a tmux session on your VM.
3. Start the AI Agent¶
# Navigate to your repo
cd /workspace/your-repo
# Start the agent
auggie # or 'claude' for Claude Code
4. Detach and Go¶
Press Ctrl+B then D to detach from tmux. Your agent keeps running!
Later, reconnect with:
Common Workflows¶
Deploy Multiple Repos¶
Use a Different Agent¶
Add a Repo to Existing VM¶
Check VM Status¶
Stop Your VM (Save Costs)¶
Resume Later¶
Clean Up¶
Example Session¶
$ ca git@github.com:myorg/myapp.git
🔍 Detecting public IP...
✅ Your IP: 203.0.113.42
🚀 Creating VM cloud-agent-jsmith...
✅ VM created successfully
📦 Cloning repositories...
✅ Cloned myapp
🔐 Transferring credentials...
✅ SSH key transferred
✅ Auggie credentials transferred
🎉 Ready! Connect with: ca ssh
$ ca ssh
# Now on the VM in tmux
$ cd /workspace/myapp
$ auggie "Fix all the TODO comments in this project"