Agent Desktop

Agent Desktop

Open-source Rust CLI that lets AI agents control desktop applications through accessibility APIs and stable element references, instead of screenshots or pixel matching.

🔗 Visit Agent Desktop
📁 AI & Machine Learning🗣️ English📅 August 30, 2026

Description

Screenshot-based AI automation has a basic problem: sending a picture of the whole screen to a model to figure out where to click burns a huge number of tokens and breaks the moment anything moves. Agent Desktop solves this by having the agent talk directly to the operating system's accessibility layer instead, the same system screen readers use, so it can reference "the Save button in this dialog" by a stable ID rather than by pixel coordinates.

It ships as a single compiled Rust binary with no runtime dependencies, exposing 54 commands (observe, interact, keyboard, mouse, clipboard, window management) and a snapshot system that assigns qualified references to UI elements (like @s8f3k2p9:e1) so an agent's actions stay deterministic across steps. A progressive "skeleton" traversal mode cuts token usage by 78-96% on dense interfaces compared to sending full accessibility trees, and C-ABI bindings let it be called from Python, Swift, Go, Ruby or Node, alongside native Chrome DevTools Protocol support for Chromium-based apps.

💬 Our review

The short version: Agent Desktop is a well-engineered, actively maintained take on accessibility-based desktop automation for AI agents, worth adopting if you're macOS-only today, but it can't help you if your automation needs to run on Windows or Linux right now.

Its core idea, structured element references instead of screenshots, is the same philosophy driving newer agent-automation tools broadly (and mirrors why Playwright/Puppeteer moved away from pure pixel matching for web automation years ago); Agent Desktop's specific edge is the token-efficiency work (skeleton traversal, up to 96% reduction) and genuinely broad language bindings via C-ABI. It's free and actively shipped (npm distribution, CI/CD, multiple channels), which is a good sign for a young project, but the macOS-only limitation is a hard blocker if your target is cross-platform; Windows and Linux support is listed as planned, not shipped.

💰 Pricing

GratuitOutil open-source gratuit, licence Apache-2.0
Open source $0

📊 Global score

53Average
🌐Availability15/100Faible

1 language · 0 platform

📄Profile90/100Excellent

Profile completeness

🤖 AI-enriched data

💰 Pricing model
🆓 Gratuit

Open-source, gratuit

👥 Target audienceDéveloppeurs d'agents IA nécessitant une automatisation macOS fiable et peu coûteuse en tokens
🗣️ Languagesen
🌍 Target countriesInternational
👍

Pros

références d'éléments déterministes, pas de fragilité liée aux captures d'écran

réduction extrême de tokens (78-96%) sur interfaces denses grâce au mode skeleton

binaire unique sans dépendance runtime

bindings multi-langages via FFI C-ABI (Python, Swift, Go, Ruby, Node)

maintenance active : CI/CD, releases régulières, distribution npm

👎

Cons

macOS uniquement pour l'instant (Windows/Linux annoncés, pas livrés)

modèle mental différent des outils screenshot-based (Playwright, Puppeteer)

dépend de la bonne implémentation de l'accessibilité par l'app cible

pas de repli pixel si une app n'expose pas correctement son accessibilité

❓ Frequently asked questions

What is Agent Desktop?
Is Agent Desktop free?
Which platforms does it support?
How does it avoid screenshot-based automation?
Can I use it from Python or Node instead of the CLI?
Is it worth using compared to alternatives?
Which tool should you pick for your case?