@auv-js/cli-linux-arm64-gnu

NAPI bindings and the platform-matched AUV command-line executable


Keywords
auv, automation, cli, electron, napi-rs, agent-memory, agent-skills, computer-use, gui-automation, os-automation, phone-use
License
Apache-2.0
Install
npm install @auv-js/cli-linux-arm64-gnu@0.0.18

Documentation

logo of auv

AUV

License

AUV means Application Use Via ....

Think of it as a programmable computer use, without agents.

Table of Contents

Getting Started

Install

Install directly from GitHub:

cargo install --git https://github.com/moeru-ai/auv auv-cli --bin auv
auv --help

Third-party Protobuf sources are included in the repository; Cargo installs do not require Buf or a separate Protobuf dependency-generation step. See the macOS Git-install verification.

After installation, use the auv CLI directly:

auv --help
auv invoke --help

Setup

macOS

OS permissions are required to be granted to the process that launches AUV, usually your terminal app.

Open System Settings -> Privacy & Security and enable:

Permission Needed for
Accessibility AX tree reads, focused element control, keyboard/pointer automation.
Screen Recording Screenshots, OCR, visual inspection, and evidence capture.
Automation AppleScript/System Events app activation and foreground fallback paths.

After changing permissions, restart the terminal process and rerun:

auv doctor
auv invoke app.probePermissions

Understand AUV

For Cua, agent-browser, and similar computer-use projects, it is common to execute screenshot, read image, click, type, wait, and follow-up verification steps in sequence, then ask LLMs or agents to judge the next move.

flowchart LR
  A[Agent] --> B[screenshot]
  B --> C[read image]
  C --> D[decide next step]
  D --> E[click]
  E --> F[wait]
  F --> G[type]
  G --> H[verify]
  H --> D
Loading

Many of those repeated sequences can be squashed into reusable GUI operations. Opening an app, waiting for readiness, filling a form, and checking the result should be callable as one command instead of spending tokens on the same step-by-step loop every time.

Modern agents often use skills or project instructions to orchestrate tool calls, CLIs, and scripts. But built-in computer-use surfaces, such as OpenAI Computer Use or Claude Computer Use, are still primarily interactive model-tool loops, not scriptable GUI automation libraries.

Similar to Playwright, what if we could organize those actions into executable scripts, reusable?

Tool-call loop Rust scripts
• Ran screenshot
  └ saved screen.png
• Ran read image screen.png
  └ form is visible
• Ran click "Email"
  └ clicked
• Ran type "user@example.com"
  └ typed
• Ran screenshot
  └ saved after.png
• Ran verify form state
  └ ready
pub fn open_and_fill_form(
  app: &mut AppSession,
  data: FormData,
) -> AuvResult<OperationResult> {
  app.open()?;
  app.wait_for_ready()?;
  app.fill(data)?;
  app.verify_submitted()
}
• Ran screenshot
  └ saved page-1.png
• Ran OCR visible rows
  └ 12 rows
• Ran scroll
  └ scrolled down
• Ran OCR visible rows
  └ 10 rows, 4 repeated
• Ran guess when to stop
  └ uncertain
pub fn scan_visible_rows(
  region: &mut WindowRegion,
) -> AuvResult<ScrollScanArtifact> {
  region.scan_rows_until_stop()
}
• Ran click target
  └ clicked
• Ran screenshot
  └ saved after-click.png
• Ran semantic check
  └ mismatch
• Ran retry manually
  └ repeated tool loop
pub fn verify_and_retry<F>(
  mut operation: F,
) -> AuvResult<OperationResult>
where
  F: FnMut() -> AuvResult<OperationResult>,
{
  retry_until_verified(&mut operation)
}

AUV expects agents to write, test, and improve reusable GUI automation for E2E tests and rapid application actions.

In fact, AUV is not a computer-use agent. It does not ship an agent or harness. It offers tools, CLIs, drivers, and verifiable observable results so agents can build reusable GUI operations.

AUV is meant to work with coding agents and agent products such as:

That means:

  • If your agent can call a CLI, AUV can be used as computer use.
  • If your agent can write code, AUV can move repeated GUI work into reusable Rust or JavaScript/TypeScript operations. Python bindings remain planned. Once a GUI flow is finalized as an operation, repeated execution can approach zero reasoning-token cost.

Why even build AUV?

AUV born from the grounding knowledge of building general gaming agents for Project AIRI, since 2024, we tried to build agents to allow LLMs to play the following games, you can find how we implement the agents in the following repos:

There are more games we implemented where you can find in Project AIRI organization, but these four requires YOLO, OCR, screen understanding, and computer-use capabilities.

Now you have the framework to build for any applications, games.

Since Vercel published the agent-browser, we fell in love with it and have it assisted agents to build many web projects, but we found that the loop it requires for agents to call agent-browser CLI to execute the commands is too slow and inefficient, while in computer use world, many operations can be repeated thousands of times, just like how Playwright/Vitest would allow us to write E2E test for applications, why don't we expand this idea of writing code to control application to computer use world?

Capability Matrix

What AUV can do, compared to other computer-use projects.

  • ✅: implemented and exposed by a current public repository surface.
  • ⚠️: implemented with the limit shown in the table or notes.
  • ⏳: planned, but not implemented.
Capability AUV Cua OpenBridge (KWWK core) Playwright
Agent model 💡 BYOA 💡 BYOA + built-in agent 💡 OpenBridge built-in agent
KWWK is agent-free
💡 BYOA + built-in Test Agents
Scriptable ✅ Rust + JS/TS
⏳ Python
✅ Python/TypeScript/Rust SDKs ✅ Swift package ✅ JS/TS/Python/Java/.NET
Native desktop drivers ✅ macOS/Linux/Windows
⏳ Android/iOS
✅ macOS/Linux/Windows ⚠️ macOS only ❌ browser only
CLI
MCP ✅ browser MCP
Run / trace recording ✅ runs + tracing + artifacts + OTEL export ✅ per-action trajectories ⚠️ test traces + artifacts
Display / window capture ✅ macOS/Linux/Windows ✅ macOS/Linux/Windows ✅ macOS ✅ browser only
OCR ✅ macOS Vision/Linux Tesseract/Windows OCR ⚠️ BYOK
Template image localization ⚠️ typed result contract only ⚠️ no dedicated tool ⚠️ visual snapshot comparison only
Accessibility tree ✅ macOS AX/Linux AT-SPI/Windows UIA ✅ macOS AX/Linux AT-SPI/Windows UIA ✅ macOS AX ⚠️ browser only
Accessibility actions ⚠️ platform-specific focus/select paths ⚠️ browser only
Mouse / click ✅ macOS/Linux/Windows ⚠️ browser only
Background pointer input ✅ macOS
❌ Linux/Windows
✅ macOS/Linux/Windows, best effort ✅ macOS background ⚠️ browser only
Foreground pointer input ✅ macOS/Linux/Windows ⚠️ browser only
Keyboard ✅ macOS/Linux/Windows ⚠️ browser only
Scroll ✅ macOS/Linux/Windows ⚠️ browser only
Scroll native lists ⚠️ reusable library and app integrations
Generic CLI deferred
⚠️ no dedicated tool ⚠️ browser only
Action evidence ✅ attempts + fallback + disturbance + separate verification ✅ structured tool outputs + trajectories ⚠️ structured metadata ⚠️ assertions + traces
YOLO / Custom Models
  • Scroll scan is a major reason AUV exists. Most desktop automation stacks can scroll or read a screenshot, but they do not turn a native app's visual list into page records, row candidates, crop artifacts, OCR fragments, and inspectable stop reasons. AUV's current scroll-scan implementation is still contract work, so the old public scan window-region CLI was removed until the reusable API is clear.
  • Feedback means the automation returns machine-readable evidence after an attempt: what input path was used, what changed, what artifacts were captured, whether verification passed, and why an operation should retry, stop, or fail.

Development

auv

cargo fmt --check
cargo check
cargo test

To update vendored Protobuf dependencies, see the Protobuf source distribution reference.

@auv-js/sdk

Prerequisites

Note

If you use proto, then

proto install buf
proto install node
proto install pnpm

, this should help you install necessary tools.

pnpm install
pnpm generate:proto
pnpm exec playwright install chromium
pnpm build
pnpm test:run
pnpm lint
pnpm typecheck

Documentation

After you change headings in the root or package READMEs, run pnpm docs:update. This command updates all three tables of contents.

Useful entrypoints:

auv doctor
auv invoke <command-id> --help
auv serve --help
auv devices list
auv runner --help
auv run --help
auv mcp serve
auv plugin list

Use docs/TERMS_AND_CONCEPTS.md for shared vocabulary. Durable design and evidence notes live under docs/ai/references/.

Related

Note

This project is part of the Project AIRI ecosystem.

Acknowledgements

Special Thanks

Special thanks to all contributors for their contributions to auv ❤️

AUV contributors

Star History

Star History Chart

License

Apache License 2.0