We built persistent cloud computers for agents. Here’s what changed vs normal chat-based agents

Reddit r/ArtificialInteligence Products

Summary

The author introduces Computer Agents, a platform providing persistent cloud environments with file and terminal access to enhance AI agent reliability and context retention across sessions.

Disclosure: I’m part of the team that built [Computer Agents](https://computer-agents.com). The product is an agentic compute platform: instead of giving an AI agent only a chat history, we give it a persistent cloud computer, files, terminal/browser access, project tasks, and saved execution history. **The problem we were trying to solve:** A lot of agent demos work because the task is short. Real work is messier. The agent needs to inspect files, install dependencies, run commands, fail, read logs, patch something, save outputs, and continue later. If the environment disappears every time, the agent repeats setup work and loses useful state. **Our technical approach:** * Each agent run can happen inside an isolated cloud environment * Files and execution context persist across sessions * Work can be organized into projects/tasks instead of one long chat * Tasks can have reviewers, artifacts, logs, comments, and status * Developers can use Python/TypeScript SDKs to create agents, threads, computers, projects, schedules, and webhooks * Model routing is separated from workspace execution, so cheaper models can do high-volume steps like triage or repo search while stronger models handle harder reasoning/review **What worked better than expected:** The biggest reliability improvement was not always a smarter model. It was giving the agent a stable workspace and a narrow ticket. “Fix this vague product area” performs poorly. “Reproduce this bug, don’t touch auth, run this command, summarize changed files” performs much better. Limitations: * I would not trust agents to merge production changes unsupervised * Broad refactors still need human review * Security-critical changes need strict permissions * Parallel agents need file/task isolation or they create review chaos Demo/docs: [https://computer-agents.com](https://computer-agents.com) I’m curious how others here are handling persistence for agents: do you keep state in chat history, vector memory, workflow graphs, containers, git worktrees, or full cloud workspaces?
Original Article

Similar Articles

@geekbb: Cloudflare releases a "computer" for AI agents — Giving agents a workspace that never disappears. Files stored in SQLite, with three environments (full container / shell / JS) available anytime; switch environments without switching files.

X AI KOLs Timeline

Cloudflare Computer is a virtual filesystem inside a Durable Object that gives AI agents a persistent workspace, using SQLite for storage and pluggable runtimes (container, shell, JavaScript). It's a preview-only open-source package.

Lessons Learned from Building Cloud Agents (12 minute read)

TLDR AI

Cursor shares key lessons from building cloud agents, emphasizing that providing a full development environment is critical for agent output quality, and that long-running agents require durable execution and enterprise-like infrastructure.