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.

Assign a task or ask me a question
Developer
Default

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.

example.ts
import { ComputerAgentsClient } from 'computer-agents';
const client = new ComputerAgentsClient({
apiKey: process.env.COMPUTER_AGENTS_API_KEY
});
// Clone your repo into a persistent environment
const env = await client.environments.create({
name: 'my-project',
gitRepo: 'https://github.com/acme/webapp.git'
});
// Let the agent refactor across your entire codebase
const 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 changes
const 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

AI Reasoning
Code Execution
Persistent Files
Managed Infra
Claude API
Claude Code
Local only
OpenAI Agents SDK
You build
You build
Computer Agents API

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 agent

Persistent 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 workspaces

Code 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 environments

Skills 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 skills

Multi-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 threads

Any 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 formats

Deep 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 action

Web 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 search

Built-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 integrations
MCP Tool Servers

MCP 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 servers

Image 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 generation

Scheduled 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 schedules

What You Can Build

From automated workflows to full-featured AI products—see what developers are building with the API.

Architecture
Empowered by AI.

A London-based architect uses our API to generate professional floor plans in minutes. From concept to client presentation.

Professional Floor Plans
Minutes, Not Hours
Client-Ready Presentations

Customer Support
powered by API.

FireChatbot uses our SDK and Mail integration to build custom Customer Support Chatbots and Email Assistants.

Handles real customer Emails
35% reduced Support Workload
80% Automation Rate