A home for
    your agents.

    Agents shouldn't die with the process. OpenComputer is an open durable runtime — crash, disconnect, redeploy, and the run picks up where it left off.

    Persistent VMs are live. Talk to us about agents →

    oc agents
    $ oc init my-agent
    created agent.md
    $ oc dev
    local control plane on :4180 · no cloud attached
    $ oc session "triage my inbox"
    session s_9f2c · durable · streaming
    $ oc deploy
    artifact sha256:81aa… → vm oc-4c21 · live in 0.8s
    $
    seq 42
    turn.start
    seq 43
    tool.call
    seq 44
    tool.result
    seq 45
    msg.delta
    seq 46
    tool.call
    runtime crash
    replay 42–46
    resume
    seq 47
    tool.result

    Agents as code.

    An agent is a source-controlled project. Its identity, instructions, tools, connections, and runtime configuration live together in a normal directory you can review and commit. A stable agent ID points to immutable deployments — deploying again just moves an alias like production.

    Develop it locally with OpenCode before deploying. In the cloud it runs in an isolated sandbox while the platform manages lifecycle, persistence, and connected services.

    gmail-summarizer/
    opencomputer.toml# stable identity
    agent.ts
    instructions.md# role + rules
    tools/gmail.ts
    connections/google.json# scopes, not secrets
    channels/# slack, and more
    skills/
    workspace/# durable files
    evals/

    The compute underneath

    Every session runs on a real computer.

    Full filesystem, full OS access, a persistent mounted workspace — a real virtual machine, not a container or a throwaway sandbox. Sessions hibernate between turns and wake in milliseconds with state intact. And it's the same VM you can get bare: for your own harness, your own platform, the machines are a product on their own.

    Persistent

    Always-on, hibernate when idle, wake with state exactly where you left it.

    Elastic

    Resize memory and CPU while the VM is running. No restart.

    Checkpoints

    Instant snapshots. Fork or restore to any point in a second.

    Agent friendly

    Purpose built for harnesses like Claude Agent SDK and OpenCode.

    Just need VMs? Log in and create one

    VM pricing

    4 GB1 vCPU

    1 GB16 GB
    per minute$0.004
    per hour$0.24
    per month$168.72
    disk / GB-second$0.0000001

    20 GB disk included. Pay only while running. Talk to us for volume discounts.

    Your agent should outlive
    the process that started it.