Skip to main content
computer usebrowser agentsai agentsautomationanthropicopenai

Computer-use agents: where clicking-the-screen AI actually works

A no-hype operator guide to Anthropic Computer Use, ChatGPT Atlas, and browser agents—benchmarks, failure modes, and safe use cases.

Mark Lighty · Editor in Chief ·

The promise is seductive: point an AI at your screen, describe the task, go get coffee. The reality in mid-2026 is more nuanced. Computer-use and browser agents have moved from party-trick demo to genuinely deployable — but only in the right conditions. Here’s what operators actually need to know before wiring one of these into a workflow.


The landscape, briefly

Three distinct layers now exist in this space, and conflating them will waste your time.

Full desktop/OS control — An AI sees your screen via screenshots, outputs mouse coordinates and keystrokes, and can touch anything a human user can. Anthropic’s Computer Use API is the canonical example here.

Browser-only agents — Scoped to the web, these navigate pages, fill forms, and click elements within a managed browser environment. Browser Use (open-source) and the CUA model inside ChatGPT Atlas live here.

AI-native browsers — Purpose-built products like Perplexity Comet that fuse a full Chromium shell with agentic capabilities, targeting end-users more than developers.


Benchmarks: what the numbers actually mean

Anthropic’s Computer Use API was released in public beta in October 2024 , making Claude one of the earliest frontier models to expose autonomous desktop control. Anthropic has described it as their best model for coding, agents, and computer use.

On the OpenAI side, the story has shifted. OpenAI Operator launched as a limited-access research preview to ChatGPT Pro subscribers in February 2025 — and was deprecated after the release of ChatGPT Agent, shutting down on August 31, 2025.

Its capabilities were absorbed into ChatGPT Agent, the rebranded successor running inside the main ChatGPT product surface.

The OSWorld benchmark (which tests real Ubuntu desktop tasks) is the clearest signal we have for OS-level competence. In mid-2025, the state of the art on OSWorld sat at 34.5%, held by Simular’s Agent S2, with OpenAI’s computer-use models around 32.6% on the 50-step split. The ceiling has moved dramatically since: the Steel.dev cross-benchmark leaderboard now shows Claude Mythos Preview at 85.4% on OSWorld-Verified, with Claude Fable 5 at 85.0%, both comfortably above the ~72% human baseline.

Browser-scoped benchmarks tell a similar story of rapid improvement. Browser Use has achieved an 89.1% success rate on the WebVoyager benchmark across 586 diverse web tasks. But read the fine print: WebVoyager tasks run on live websites in cooperative conditions — no aggressive bot protection, no Cloudflare, no DataDome — and real-world success rates on protected production sites will be lower than benchmark scores for all agents.

The honest summary: top-tier models now beat human baselines on controlled benchmarks. They do not reliably do so on your actual production stack.


Failure modes operators keep hitting

Cascading step errors are the most expensive surprise. A 95% per-step accuracy sounds excellent until you chain it: twenty steps at 95% accuracy yields a 36% chance of end-to-end failure, and fifty steps drops you below 8% success. Long-horizon workflows are where computer-use agents fall apart quietly — each sub-step looks fine in isolation; the final output is wrong.

CAPTCHA, session management, and complex checkout flows are structural walls. The shutdown of standalone Operator was partially driven by reliability gaps on complex flows — purchases, CAPTCHA, session management — and the product’s headline use case of booking a flight or ordering a product had a sub-50% success rate on real-world sites.

Constant confirmation requests frustrate operators expecting true autonomy. A core problem that shows up in every honest review is that these agents stop constantly to ask for permission — hitting a login screen and pausing, encountering a dropdown they’re unsure about and asking you to confirm, reaching a checkout page and wanting to double-check before acting.

Prompt injection is the security failure mode most teams underestimate. Computer-use agents hold significant potential to transform digital workflows, but this comes with elevated risk as they are deployed in high-stakes scenarios like file management, system administration, and software engineering, where inadvertent safety risks can cause substantial harm. A malicious webpage can instruct the agent mid-task — and the agent may comply.

Benchmark inflation is worth flagging for anyone evaluating vendors. Every project in this category quotes the benchmark that flatters it, and none of them are lying — they are simply reporting different tests. Normalized comparisons are rare; always ask which suite, which harness, and whether tasks were pre-filtered.


Where it actually works today

The use cases that produce reliable outcomes share a pattern: bounded scope, idempotent actions, and human checkpoints at the exit.

Internal tooling with no API — Legacy desktop software (ERPs, older CRMs, niche industry tools) that have no API surface are where Computer Use justifies its overhead. Computer Use eliminates the bottleneck of custom integrations by teaching Claude to interact with any software interface — web browsers, desktop applications, command-line tools — without needing API access for each tool.

Structured data extraction from authenticated web portals — Logged-in portals (supplier dashboards, regulatory databases, government sites) that block scraping but allow browser control. Tasks with a defined end state and a human review step before anything writes to a system of record.

Research compilation across multiple public web sources — Agent Mode can research a topic, compare products across multiple sites, and build structured outputs — the user retains control and can pause, interrupt, or take over, but the AI completes sequences of actions that would otherwise require manual clicking and typing. This pattern works precisely because errors are visible before they propagate.

Workflow automation on sandboxed environments — Running Computer Use in virtual machines or containers with minimal privileges is the recommended deployment pattern to mitigate security risks like jailbreaking and prompt injection. Teams that scope agents to a dedicated VM with read-only access to sensitive systems report the fewest production incidents.


Choosing your layer

For API-first teams who want maximum control, Anthropic Computer Use is the most capable and most composable option. As of April 2026, Anthropic’s current Computer Use path uses the computer-use-2025-11-24 beta header with supported Claude 4.x models. Pricing flows through the standard Claude API: Sonnet 4.6 at $3/$15 per million tokens is the balanced workhorse; Opus 4.7 and 4.8 at $5/$25 target flagship vision and long-horizon agents. See our Claude Code vs. Devin breakdown for related context on where Anthropic’s agentic surface sits against specialist competitors.

For browser-scoped use cases, Browser Use gives Python teams a well-maintained open-source foundation. It is free and open-source — you only need to choose an LLM provider like OpenAI, Google, or run local models with Ollama.

It is a strong choice for experimentation, prototypes, and teams that prefer Python; the main consideration is how much of the surrounding stack you want to manage.

For ChatGPT-native teams, ChatGPT Atlas adds browser agent capability without a new vendor relationship. Atlas itself is free; Agent Mode and advanced features are gated by ChatGPT subscription level — and for users already paying for Plus or Pro, it’s essentially free incremental value. Agent Mode is still in preview as of mid-2026. See our ChatGPT Atlas vs. OpenAI Operator page for a head-to-head of the two OpenAI surfaces.


Governance checklist before you ship

The OWASP Top 10 for Agentic Applications 2026 — released in December 2025 with input from 100+ security researchers and AI providers — names ten risk categories directly applicable to computer-use deployments. The minimum viable governance set for any production computer-use deployment:

  • Isolated credentials — per-agent service accounts, never shared logins
  • Sandboxed environment — VM or container with minimum required permissions
  • Human-in-the-loop at irreversible actions — file deletes, form submissions, purchases
  • Full session recording — replay what the agent did; don’t rely on logs alone
  • Prompt injection monitoring — treat every page the agent reads as untrusted input

The EU AI Act — which entered enforcement in stages throughout 2025 and 2026 — classifies AI systems by risk level, and an AI that can autonomously control a computer could fall under “high-risk” classification, requiring additional compliance measures including human oversight requirements, technical documentation, and conformity assessments.


Bottom line

Computer-use agents went from benchmark curiosity to production-viable in roughly eighteen months — but “viable” means bounded tasks, sandboxed environments, and human checkpoints, not autonomous end-to-end replacements for human operators. The benchmark ceiling has cleared 85% on OSWorld; your particular workflow, with its CAPTCHAs, JavaScript quirks, and session management edge cases, will settle considerably lower until you’ve invested in hardening the surrounding stack. Start narrow, instrument everything, and expand scope only after you trust the failure modes.

About the author

Mark Lighty

Editor in Chief

Mark Lighty is the Editor in Chief of AI Runs My Company. He's an independent operator and software engineer who builds production AI agent systems across legal-tech, growth, and outbound automation, and writes here about the patterns separating working deployments from demos. He works daily with Claude Code, the Anthropic API, MCP-based tool surfaces, Clay-style enrichment workflows, and the agent-orchestration patterns this site covers.

Get in touch

Pitch a tool, send a correction, or just say hi — we read everything.

Contact us