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

Introducing ChatGPT agent

OpenAI Blog

OpenAI introduces ChatGPT agent, a unified agentic system combining web browsing, deep research, and conversational intelligence to autonomously handle complex multi-step tasks. The agent can navigate websites, analyze information, run code, and create deliverables while keeping users in control with permission requests.

All your agents are going async

Hacker News Top

The article argues that AI agents are shifting from synchronous chat interfaces to asynchronous background workflows, highlighting new features from Anthropic, OpenAI, and Cursor that decouple agent lifetimes from HTTP request-response cycles.

Workspace agents

OpenAI Blog

This article introduces OpenAI's 'Workspace Agents' in ChatGPT, designed to handle repeatable, structured workflows rather than one-off tasks. It explains the core concepts, anatomy, and best practices for using and building these agents for consistent business processes.