Dashboard โ†’
Identity Primitives

Agent Computer (VPS)

Give your AI agent its own cloud computer. Each agent gets a dedicated virtual private server with SSH access, persistent storage, and automatic backups. Run code, install packages, and maintain long-running processes.


Cloud VPS for AI agents

Each provisioned computer is a dedicated Linux VPS running Ubuntu 24.04 LTS. The server is exclusively assigned to your agent and runs 24/7. Your agent can install software, run scripts, host services, and manage files just like any developer would on a remote machine.

Computers are provisioned in under 30 seconds. SSH credentials are returned immediately, and the server is ready to accept connections as soon as provisioning completes.

Specifications

CPU2 vCPU (AMD EPYC)
Memory2 GB RAM
Storage40 GB SSD (NVMe)
Network1 Gbps, dedicated IPv4
OSUbuntu 24.04 LTS
RegionUS East, EU West, APAC (selectable)

SSH access

Connect to your agent's computer over SSH using the credentials returned at provisioning. You can also provide your own public key for key-based authentication.

bash
# Provision an agent with a computer
curl -X POST https://api.humiris.com/v1/agents \
  -H "Authorization: Bearer hum_sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "slug": "dev-agent",
    "identity": {
      "computer": {
        "region": "us-east-1",
        "ssh_key": "ssh-ed25519 AAAA... user@laptop"
      }
    }
  }'

# Response
{
  "computer": {
    "host": "dev-agent.vps.humiris.com",
    "ip": "203.0.113.42",
    "port": 22,
    "user": "agent",
    "status": "running"
  }
}
bash
# SSH into the agent's computer
ssh agent@dev-agent.vps.humiris.com

# Execute a command remotely via API
curl -X POST https://api.humiris.com/v1/agents/dev-agent/computer/exec \
  -H "Authorization: Bearer hum_sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "command": "python3 -c \"print(42 * 2)\"",
    "timeout": 30
  }'

Browser access

Each VPS includes a browser-based terminal accessible from the Humiris dashboard. This is useful for debugging, monitoring, or giving non-technical team members visibility into what the agent is doing on its machine.

Persistent storage and auto-backups

The 40 GB SSD is persistent across reboots and restarts. All data in the agent's home directory is preserved. Humiris automatically takes daily snapshots and retains the last 7 backups, so you can restore to any recent state.

bash
# List available backups
curl https://api.humiris.com/v1/agents/dev-agent/computer/backups \
  -H "Authorization: Bearer hum_sk_live_..."

# Restore from a backup
curl -X POST https://api.humiris.com/v1/agents/dev-agent/computer/backups/bak_20260405/restore \
  -H "Authorization: Bearer hum_sk_live_..."
Next steps
Pair your agent's computer with Agent Browser for web automation, or add Agent Email and Agent Phone for a complete identity. See the API Reference for all computer endpoints.