Agents in the Cloud.
With an SDK.
What if Claude Code had an API? And you could build real applications with it? That's Computer Agents.
Claude Code Power.
As an API.
Cloud Computers
Your agent runs in an isolated cloud container. No local setup, no Docker config, no infrastructure to manage.
Persistent Workspaces
Files survive across sessions. Come back days later—your code, data, and outputs are exactly where you left them.
Built-in Skills
Web search, deep research, image generation—pre-built capabilities your agent can use without any setup.
Real-time Streaming
SSE events stream as your agent works. See every tool call, file write, and thought in real-time.
import { ComputerAgentsClient } from 'computer-agents';const client = new ComputerAgentsClient({apiKey: process.env.COMPUTER_AGENTS_API_KEY});// Clone your repo into a persistent environmentconst env = await client.environments.create({name: 'my-project',gitRepo: 'https://github.com/acme/webapp.git'});// Let the agent refactor across your entire codebaseconst result = await client.run('Refactor all permission request components to share a common BasePermissionRequest component',{environmentId: env.id,onEvent: (event) => {if (event.type === 'file_change') {console.log(`Modified: ${event.path}`);}}});// Get the diff of all changesconst diff = await client.git.diff(env.id);console.log(diff);
Make powerful edits
Multi-file refactoring that works
Claude Code's understanding of your codebase enables powerful, multi-file edits that work. Refactor components, rename across files, update patterns—all in one API call.
How we Compare
All Features
Everything you need to build production-ready AI applications, included out of the box.
Custom Agents
Define agents with custom system prompts, model preferences, and tool configurations in seconds. Each agent gets its own isolated computer environment ready to execute tasks autonomously.
Create your first agentPersistent Workspaces
Every agent gets a dedicated workspace where files persist across sessions. Durable storage that survives restarts and scales automatically. Give agents their own computers!
Explore workspacesCode Execution
Run code in fully isolated containers with automatic dependency management. Your agents can write, execute, and iterate on code without you building Docker orchestration or managing sandboxes.
Learn about environmentsSkills System
Extend agent capabilities with pre-built skills like deep research, web search, and image generation. Skills are modular: Enable what you need and your agents automatically know when to use them.
Browse available skillsMulti-turn Threads
Maintain context across unlimited conversation turns with persistent threads. Your agents remember everything—previous instructions, generated files, and execution history—for truly continuous workflows.
Understand threadsAny File Type
Your agents can read, write, and transform any file format out of the box—PDFs, spreadsheets, images, documents, code files, and more. No file handling libraries to integrate or format converters to build.
See supported formatsDeep Research
Multi-step research that synthesizes information from dozens of sources. Your agents explore topics thoroughly, cross-reference findings, and produce comprehensive reports with citations.
See research in actionWeb Search
Real-time web search powered by multiple providers. Agents can find current information, verify facts, and gather data from across the internet without you integrating Brave, Perplexity, or Google.
Explore web searchBuilt-in Integrations
Connect your agents to Email, Telegram, OneDrive, Google Drive, Notion, GitHub, and more. All the integrations from aiOS are available via API—no separate OAuth flows or webhook handlers to build.
View all integrationsMCP Tool Servers
Connect any MCP-compatible tool server to extend agent capabilities. Integrate databases, custom APIs, and third-party services through a standardized protocol your agents understand natively.
Configure MCP serversImage Generation
Generate images on demand using state-of-the-art models. Your agents can create visuals, diagrams, and artwork as part of their workflows without separate Nano Banana or GPT-image integrations.
Explore image generationScheduled Execution
Run agents on any schedule with built-in cron support. Set up daily reports, weekly analyses, or triggered workflows without building your own job queue or scheduler infrastructure.
Set up schedulesWhat You Can Build
From automated workflows to full-featured AI products—see what developers are building with the API.
