A computer-use agent is an AI system that operates a computer the way a person does: it looks at the screen through screenshots and acts through mouse clicks and keyboard input instead of calling an API. You can use one today to fill out forms, run repetitive desktop and web workflows, test software through its own interface, and gather information across sites that have no API. The practical options in 2026 fall into three groups: vendor model capabilities such as Anthropic's computer use toolset, Google's computer use tool on Gemini models, and OpenAI's computer use support; no-code platforms such as Microsoft Copilot Studio's computer use tool; and open-source stacks such as Cua and browser-use. Every vendor documents the same essential caution: run the agent in an isolated VM or container, because it inherits access to whatever is on the screen, and treat content on that screen as untrusted input.
What is a computer-use agent, and what can you do with one?
A computer-use agent is a model loop that looks at screenshots of a screen and returns mouse and keyboard actions to finish tasks in ordinary software instead of through APIs. Anthropic, Google, and OpenAI all ship computer-use capabilities in 2026, Microsoft exposes a no-code version in Copilot Studio, and open-source stacks like Cua and browser-use cover browser and desktop automation. The documented guidance from every vendor converges on the same rules: run these agents in an isolated VM or container, treat everything visible on the screen as untrusted input, confirm consequential actions, and verify the outcome instead of trusting the agent's report.
Published · Updated · Evidence-linked, not search-volume ranked.
Why this question is current
Exact query-volume data was unavailable, so RepoRadar uses these as current demand and intent signals rather than a claimed volume ranking.
- computer use agent · Google Suggest (autocomplete) via suggestqueries.google.com · United States, English (gl=us, hl=en) · checked 2026-09-11T22:33:00Z
A saturated completion set spanning vendors and evaluation terms: computer use agents, computer use agents copilot studio, computer use agents github, computer use agent benchmark, computer use agent claude, computer use agents copilot, computer use agent open source, computer use agents microsoft, computer use agent codex, computer use agent leaderboard. People are not only asking what the term means; they are comparing named options and asking how to measure them. A current demand and intent signal from live autocomplete, not an exact search-volume figure. - claude computer use · Google Suggest (autocomplete) via suggestqueries.google.com · United States, English (gl=us, hl=en) · checked 2026-09-11T22:34:00Z
A full ten-completion cluster around one vendor implementation: windows, mac, linux, api, agent, tool, skill, reddit, plus the base term. The per-platform variants show setup-level intent, meaning people are trying to run this on their own machines rather than only reading about it. Intent evidence, not a volume figure. - computer use · Google Suggest (autocomplete) via suggestqueries.google.com · United States, English (gl=us, hl=en) · checked 2026-09-11T22:34:00Z
The broader term also resolves toward the AI meaning in autocomplete: computer use agents, computer use codex, computer use claude, computer use mcp, computer use models all appear alongside ordinary computing results. The computer use mcp completion points at people wiring these agents into existing agent stacks. Intent evidence, not a volume figure. - computer-use agent, stories · Hacker News Algolia search API · global English-language developer community · checked 2026-09-11T22:34:00Z
All-time nbHits 205 with a telling recent-week cluster: Launch HN: Cua (172 points, id 43773563, 2025-04-23), Launch HN: Coasty (44 points, id 48922706, 2026-07-15), Run Minecraft in a Windows sandbox for computer use agents (2026-08-25), Is controllability becoming the real bottleneck for computer-use agents? (2026-09-04), Show HN: Isle, managed application environments for computer-use agents (2026-09-07), and Blender in Docker for computer-use agents (2026-09-09). The recent items cluster on sandboxes and environments rather than demos, a sign the ecosystem is moving from showcase to infrastructure. Corroboration, not an exact search volume.
Who this helps
- developers automating workflows in software that has no usable API
- teams evaluating desktop or browser automation for real operations
- AI-curious readers trying to understand what agentic computer control can and cannot do today
- anyone about to give an agent credentials or access to a real account
The loop, and how it differs from API agents
A computer-use agent runs a loop that looks surprisingly human. The model receives a screenshot of a screen, decides what to do, and returns an action: click at these coordinates, type this text, scroll, press a key. Your application executes the action in a real browser or desktop, captures a new screenshot, and sends it back. The loop repeats until the task is done or something stops it. Anthropic's documentation calls this the agent loop; OpenAI notes that you provide the environment and execute the model's requests; Google requires the same client-side execution environment and returns an explanation field called intent with each suggested action.
The phrase agentic computer control covers two integration styles, and the difference is worth knowing before you read a tutorial. In one, the model returns structured actions that your code translates into mouse and keyboard input. In the other, the model writes code, for example Playwright in a browser or PyAutoGUI on a desktop, and your sandbox runs that code and returns the output, including screenshots. OpenAI's documentation recommends the code-execution style for GPT-6 Astra and keeps the structured computer tool as an alternative; both end up in the same screenshot-decide-act loop.
What separates this from the API agents most developers already use is the surface it operates on. An API agent calls functions with defined contracts. A computer-use agent works through the same interface a person uses, which is why it can operate software that has no API at all, and also why its mistakes are visible as wrong clicks in your real applications rather than as a failed JSON call.
What you can actually do with one
The documented use cases are refreshingly mundane, which is a good sign for usefulness. Microsoft's documentation lists automated data entry, invoice processing, and data extraction, and sums the pitch up as: if a person can use an app or website, computer use can too. Google lists filling forms and repetitive data entry, automated testing of web applications and user flows, and research that gathers information across sites such as prices and reviews. OpenAI lists filling out forms, testing user flows, and completing tasks through an application's interface.
The pattern underneath all of those: workflows trapped behind a GUI. Legacy desktop software, vendor portals with no API, internal admin tools, and websites that forbid or do not offer automation. That is exactly where a computer-use agent earns its keep, because the alternative is brittle scripts tied to pixel positions or a human doing the clicks.
It is equally important to say what this is not. If a workflow has a good API, calling the API remains faster, cheaper, and more reliable, and nothing in the vendor documentation argues otherwise. These agents are also not fire-and-forget in 2026: the documentation we read is full of environment hygiene, confirmation gates, and verification steps, for reasons the next sections cover. A reasonable mental model is a capable contractor who works through your screen and needs supervision around anything consequential.
- Good fits: no-API software, form and data-entry workflows, cross-site research, UI-level test automation.
- Bad fits: anything with a solid API, high-volume deterministic jobs, and workflows involving sensitive accounts until you have isolation in place.
- Reality check: every documented deployment pattern includes supervision and verification, not autonomy at any cost.
The options in 2026
Anthropic ships computer use as a toolset on the Claude API. One entry in the tools array adds 17 member tools such as screenshot, left_click, type, and zoom, and your application runs each call in an environment you control. Supported models per the documentation include Fable 5, Mythos 5, Opus 4.8 and 5, and Sonnet 5, with Amazon Bedrock and Microsoft Foundry available in beta, and a Docker-based reference implementation for getting started. Anthropic's engineering blog adds an unusually candid set of integration notes, including that screenshot resolution and coordinate scaling are where most click accuracy is won or lost.
Google's computer use tool runs on Gemini models, with Gemini 3.8 Flash documented as the recommended model. It supports browser, mobile, and desktop environments, and Gemini 3.x adds per-action intent explanations plus configurable safety policies and opt-in screenshot scanning for hidden prompt-injection instructions. Google's docs point at a Docker-based reference implementation for the execution environment and a Playwright-based handler example.
OpenAI supports computer use on its models with two integration paths: code execution, which it recommends for GPT-6 Astra, and the structured computer tool. A public sample app implements both browser (Playwright) and desktop (PyAutoGUI) workflows. Microsoft is the no-code on-ramp: Copilot Studio exposes computer use as a configurable tool where you describe the task in plain language and pick a model, currently including OpenAI's Computer-Using Agent and Anthropic's Claude Sonnet 4.5 with newer Anthropic models marked experimental in that platform.
The open-source branch is real and moving quickly. Cua describes itself as infrastructure for scaling computer-use with drivers, cross-OS fleets, sandboxes, and benchmarks, and it is MIT licensed with about 22,500 stars and commits the hour of our check. browser-use is the browser-focused library, MIT licensed, around 114,000 stars, with a macOS harness and a benchmark project in the same family. We have not run any of these; they are listed as options to evaluate, and the sandbox vendors build is the part that matters most for safety.
The safety rules every vendor writes down
Read the four major documentation sets and a consensus emerges, which is rare enough to be worth repeating. First, the screen is untrusted input. OpenAI's guidance states it plainly: text in a page, document, or tool result cannot grant permission or override the user's instructions. Anthropic warns that Claude can in some circumstances follow commands found in content even when they conflict with your instructions, and runs classifiers that flag suspected prompt injection in screenshots and steer the model to ask for confirmation. Google offers opt-in prompt-injection scanning of screenshots. Our own answer on prompt injection covers the general defenses; here the point is that a computer-use agent gives injected instructions a path to your actual desktop.
Second, isolate the environment. Google tells developers to run the agent in a sandboxed VM or container. OpenAI says to restrict it to an isolated browser or VM with an allow list of sites and actions. Anthropic says to isolate the model from sensitive data and actions. Microsoft's version runs on a machine you configure for the agent, with credentials either maker-provided or end-user provided, and a documented warning that sharing an agent with maker-provided credentials lets anyone who uses it act with the original author's access. That is the same blast-radius logic as sandboxing a coding agent, applied to a whole desktop.
Third, gate and bound the run. OpenAI lists confirming consequential actions, keeping humans in control of purchases, data transmission, and destructive changes, and treating typed sensitive information as transmission. Microsoft sends a human-supervision email when it detects potentially harmful instructions, with a response time limit. Fourth, verify outcomes instead of trusting the final message, and log what the agent actually did, which Google's guidance makes explicit. None of this is optional advice in the vendor documents; it is the expected deployment shape.
- Treat everything on the screen as untrusted input that cannot grant permission.
- Run the agent in an isolated VM or container with an allow list, not on your logged-in desktop.
- Confirm consequential actions: purchases, sending data, typing credentials, irreversible changes.
- Bound each run with step, time, and cost limits, and verify the real outcome afterward.
What it costs and what it takes to run
Budget for tokens, infrastructure, and integration time, in that order. Anthropic's documentation says the computer use toolset adds about 4,500 input tokens of overhead to every request once member tools are attached, and screenshots returned in tool results bill as image input on top. Those screenshots are not incidental; they are the loop's whole sensory channel, which means token bills scale with how often the model looks at the screen.
The no-code route has the most legible pricing: Copilot Studio bills computer use at 5 Copilot credits per step, 15 with a premium model, and the docs walk through a four-step form example costing 20 or 60 credits. If you are inside the Microsoft ecosystem, that is close to a per-task price you can forecast.
The hidden cost is the environment. OpenAI states that you provide the environment and execute the model's requests; Google requires you to implement the client-side execution environment; Anthropic's best-practices post is largely about the unglamorous engineering of resolution, coordinate scaling, and screenshot handling. Expect real work on action handlers, sandbox images, session state, logging, and a test harness before the first useful task completes, and measure success rate on your actual tasks rather than trusting a demo.
Where it breaks today
The honest failure modes are known and documented. Long-horizon reliability is the common thread in community discussion; a September 2026 Hacker News thread framed controllability, not raw capability, as the bottleneck for computer-use agents, and the recent Show HN cluster we found was mostly builders selling sandboxes and managed environments for exactly this reason. Treat those as community signals rather than results; they are directionally useful but not benchmarks.
Concrete brittleness is also documented. Google's guidance notes that unexpected pop-ups, notifications, or layout changes can confuse the model and recommends starting each task from a clean state. Microsoft's docs flag whole app categories, including Electron, Java, Unity, games, command-line interfaces, and virtualized environments such as Citrix, as possibly unsupported. Click accuracy needs engineering; screenshots in the wrong coordinate space produce consistently wrong clicks. Some vendor channels are still beta, and model availability differs by platform, so the same task can behave differently in Anthropic's API, Google's, OpenAI's, and Microsoft's versions.
The largest risk is social rather than technical: an agent that operates your real browser profile, email, or admin console has the keys to everything those sessions can touch. That is why every vendor's first instruction is isolation rather than a model setting. RepoRadar has not run any of these agents end to end, so treat this article as a map of documented capability and documented caution, not as hands-on test results.
A useful next action
Try the smallest safe version this week. Pick one reference implementation, Anthropic's or Google's Docker-based demos are the most self-contained starting points, and run it inside a container or throwaway VM rather than on your working machine. Use a fresh browser profile or a test account, never a profile that is logged into your real services, and write down the sites and actions the agent is allowed to touch before the first run.
Then measure one thing honestly: give the agent five to ten real tasks from your own workflow, count how many complete correctly without intervention, and note where the failures cluster. That success rate, plus the token and credit math from the previous section, is the number that decides whether computer use is a tool you deploy or a demo you watch. If it holds up, escalate to a supervised production pattern: isolated environment, human confirmation on consequential steps, and logging on. If it does not, you have spent an afternoon, not a quarter.
Sources checked
- Anthropic - Computer use tool (Claude Platform documentation) ↗ checked · global vendor documentation
Primary vendor documentation. Claude interacts with computer environments through a computer use toolset that provides screenshot capability and mouse and keyboard control; one toolset entry gives the model 17 member tools such as screenshot, left_click, type, and zoom, and the developer's application runs every call in an environment they control. Multiple actions can arrive as a batch that applications execute in order. The security section states that Claude can in some circumstances follow commands found in content over your instructions, instructs developers to isolate the model from sensitive data, and documents automatic classifiers that flag suspected prompt injection in screenshots and steer the model to ask for confirmation. Also documents roughly 4,500 tokens of toolset overhead per request, supported models (Fable 5 and 5.1, Mythos 5 and 5.1, Opus 4.8 and 5, Sonnet 5), platform availability with Bedrock and Microsoft Foundry in beta, ZDR eligibility, and a Docker-based reference implementation.
- Anthropic - Best practices for computer and browser use with Claude (engineering blog, 2026-05-13) ↗ checked · global vendor engineering blog
What production integration actually requires. Documents the screenshot pipeline constraints: images exceeding an API limit (1568-pixel long edge or 1.15 megapixels on the 4.6 family; 2576 pixels and 3.75 megapixels on Opus 4.7) are silently downscaled, and clicks then land in the wrong coordinate space, which the post calls the primary cause of click inaccuracy. Recommends pre-downscaling to 1280x720 as a default, scaling returned coordinates back to the real screen, and placing the text instruction before the image. Includes a click-failure diagnostic table and internal findings that Sonnet 4.6 is more mechanically precise at clicking while Opus brings reasoning strength.
- Google - Computer use (Gemini API documentation) ↗ checked · global vendor documentation, last updated 2026-09-04
Primary vendor documentation. The Computer Use tool builds browser, mobile, and desktop control agents; the model reads screenshots and returns UI actions such as clicks and keystrokes that the developer's client-side environment executes. Gemini 3.x models add an intent field explaining the reasoning behind each action, configurable safety policies, and opt-in prompt-injection detection that scans screenshots. Recommends running the agent in a sandboxed VM or container to isolate it from the host, links a Docker-based reference implementation, and lists Gemini 3.8 Flash as the recommended model. Implementation guidance includes allowlists and blocklists, logging every executed action, and starting each task from a known clean environment because pop-ups and notifications can confuse the model.
- OpenAI - Computer use (API documentation) ↗ checked · global vendor documentation
Primary vendor documentation. Computer use lets a model operate browser and desktop interfaces to fill out forms, test user flows, or complete tasks through an application's UI. Two integration modes: the model writes code (for example PyAutoGUI on desktop or Playwright in a browser) that your application executes, which the docs recommend for GPT-6 Astra, or the model returns structured mouse and keyboard actions through the computer tool. The sample app ships JavaScript and Python implementations. The run-safely section instructs developers to restrict the environment to an isolated browser or VM with an allow list, treat screen content as untrusted because text in a page or document cannot grant permission or override instructions, confirm consequential actions such as purchases and destructive changes (typing sensitive information into a form counts as transmission), and bound and verify each run with step, time, or cost limits.
- Microsoft - Automate web and desktop apps with computer use (Copilot Studio documentation) ↗ checked · global vendor documentation, last updated 2026-07-03
Primary documentation for the no-code route. Computer use is a Copilot Studio tool that lets an agent operate a Windows computer through a virtual mouse and keyboard on websites and desktop apps, with plain-language instructions and no code required; the docs state that if a person can use an app or website, computer use can too. Model options include OpenAI's Computer-Using Agent (generally available) and Anthropic Claude Sonnet 4.5 (generally available, standard tier) with Sonnet 4.6 and Opus 4.6 listed as experimental. Billing is 5 Copilot credits per step, or 15 with a premium model, with a four-step form example costing 20 or 60 credits. Documents human supervision by email when potentially harmful instructions are detected, maker-provided versus end-user credentials, stored credentials in Power Platform storage or an Azure Key Vault, a warning that sharing an agent with maker-provided credentials lets others act with the author's access, and that some app types such as Electron, Java, Unity, games, and command-line interfaces might not be supported.
- trycua/cua (open-source computer-use infrastructure) ↗ checked · global open-source repository
Open-source ecosystem evidence. The repository describes itself as infrastructure to scale computer-use with open-source drivers, cross-OS fleets, and benchmarks for training, evaluation, and data generation; MIT licensed, about 22,500 stars, and actively developed (commits within the hour of the check). Launched on Hacker News in April 2025. Cited as a maturity signal for the sandbox-and-fleet layer, not as a RepoRadar endorsement; RepoRadar has not run it.
- browser-use/browser-use (open-source browser agents) ↗ checked · global open-source repository
The browser-focused branch of the open-source ecosystem: a library for agents that control a browser, MIT licensed, about 114,000 stars and actively developed. The project also lists a macOS harness for controlling Mac apps, browsers, and files, and a benchmark repository used to compare agent performance. Cited as ecosystem evidence; RepoRadar has not run it.
RepoRadar separates factual source claims from analysis. Recheck vendor docs before purchase, deployment, or policy decisions.