{"repo":"trycua/cua","free":true,"listed":false,"github":"https://github.com/trycua/cua","clone":"git clone https://github.com/trycua/cua.git","description":"Scale computer-use 2.0 with open-source drivers, cross-OS fleets, and benchmarks for training, evaluation, and data generation.","language":"HTML","stars":21421,"topics":["agent","ai-agent","apple","computer-use","computer-use-agent","containerization","cua","desktop-automation","hacktoberfest","lume","macos","manus","operator","swift","virtualization","virtualization-framework","windows","windows-sandbox"],"license":"MIT","category":"agent_infrastructure","readme_excerpt":"<div align=\"center\">\n  <a href=\"https://cua.ai\" target=\"_blank\" rel=\"noopener noreferrer\">\n    <picture>\n      <source media=\"(prefers-color-scheme: dark)\" alt=\"Cua logo\" width=\"150\" srcset=\"img/logo_white.svg\">\n      <source media=\"(prefers-color-scheme: light)\" alt=\"Cua logo\" width=\"150\" srcset=\"img/logo_black.svg\">\n      <img alt=\"Cua logo\" width=\"150\" src=\"img/logo_black.svg\">\n    </picture>\n  </a>\n\n  <p align=\"center\">Scale computer-use 2.0 with open-source drivers, cross-OS fleets, and benchmarks for training, evaluation, and data generation.</p>\n\n  <p align=\"center\">\n    <a href=\"https://cua.ai\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://img.shields.io/badge/cua.ai-0ea5e9\" alt=\"cua.ai\"></a>\n    <a href=\"https://discord.gg/mVnXXpdE85\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://img.shields.io/badge/Discord-Join%20Server-10b981?logo=discord&logoColor=white\" alt=\"Discord\"></a>\n    <a href=\"https://x.com/trycua\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://img.shields.io/twitter/follow/trycua?style=social\" alt=\"Twitter\"></a>\n    <a href=\"https://cua.ai/docs\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://img.shields.io/badge/Docs-0ea5e9.svg\" alt=\"Documentation\"></a>\n    <br>\n<a href=\"https://trendshift.io/repositories/13685\" target=\"_blank\"><img src=\"https://trendshift.io/api/badge/repositories/13685\" alt=\"trycua%2Fcua | Trendshift\" style=\"width: 250px; height: 55px;\" width=\"250\" height=\"55\"/></a>\n  </p>\n\n</div>\n\n## Choose Your Path\n\n<div align=\"center\">\n  <table>\n    <tr>\n      <td colspan=\"3\" align=\"center\">\n        <a href=\"#cua-drivers---background-computer-use-on-macos-and-windows-with-linux-pre-release\">\n          <img src=\"img/card-cua-driver.gif\" alt=\"Cua Drivers — background computer-use for any agent\" width=\"790\">\n        </a>\n      </td>\n    </tr>\n    <tr>\n      <td align=\"center\">\n        <a href=\"#cua---agent-ready-sandboxes-for-any-os\">\n          <img src=\"img/card-cua-sandbox.gif\" alt=\"Cua &amp; Cua Sandbox\" width=\"246\">\n        </a>\n      </td>\n      <td align=\"center\">\n        <a href=\"#cua-bench---benchmarks--rl-environments\">\n          <img src=\"img/card-cua-bench.gif\" alt=\"Cua Bench\" width=\"246\">\n        </a>\n      </td>\n      <td align=\"center\">\n        <a href=\"#lume---macos-virtualization\">\n          <img src=\"img/card-cua-lume.gif\" alt=\"Lume\" width=\"246\">\n        </a>\n      </td>\n    </tr>\n  </table>\n  <p>\n    <strong>Building your own agent?</strong> Start with <a href=\"#cua---agent-ready-sandboxes-for-any-os\">Cua</a> ·\n    <strong>Giving a coding agent a computer?</strong> <a href=\"#cua-drivers---background-computer-use-on-macos-and-windows-with-linux-pre-release\">Cua Drivers</a> ·\n    <strong>Evaluating or training models?</strong> <a href=\"#cua-bench---benchmarks--rl-environments\">Cua Bench</a> ·\n    <strong>Need macOS VMs?</strong> <a href=\"#lume---macos-virtualization\">Lume</a>\n  </p>\n</div>\n\n---\n\n## Cua Drivers - Background computer-use on macOS, Windows, and Linux\n\nDrive native desktop apps **in the background**. Agents click, type, and verify without stealing the cursor or focus. Use the same CLI and MCP server on macOS, Windows, and Linux from Claude Code, Cursor, Codex, OpenClaw, and custom clients. Linux supports X11 and compositor-specific Wayland routes with explicit limits for raw background input.\n\n**macOS / Linux**\n\n```sh\n/bin/bash -c \"$(curl -fsSL https://cua.ai/driver/install.sh)\"\n```\n\n**Windows (PowerShell)**\n\n```powershell\nirm https://cua.ai/driver/install.ps1 | iex\n```\n\nThen follow the post-install instructions.\n\n**[Drive your first app](https://cua.ai/docs/tutorials/drive-your-first-app)** | **[Installation](https://cua.ai/docs/how-to-guides/driver/install)** | **[CLI Reference](https://cua.ai/docs/reference/cua-driver/cli-reference)**\n\nSource documentation, architecture notes, and the optional agent skill pack live in [`libs/cua-driver/README.md`](libs/cua-driver/README.md).\n\n---\n\n## Cua - Agent-Ready Sandboxes for Any OS\n\nBuild agents that see screens, click buttons, and complete tasks autonomously. One API for any VM or container image — cloud or local.\n\n```sh\npip install cua\n```\n\n```python\n# Requires Python 3.11 or later\nfrom cua import Sandbox, Image\n\n# Same API regardless of OS or runtime\nasync with Sandbox.ephemeral(Image.linux()) as sb:   # or .macos() .windows() .android()\n    result = await sb.shell.run(\"echo hello\")\n    screenshot = await sb.screenshot()\n    await sb.mouse.click(100, 200)\n    await sb.keyboard.type(\"Hello from Cua!\")\n    await sb.mobile.gesture((100, 500), (100, 200))  # multi-touch gestures\n```\n\n|                    | Linux container | Linux VM | macOS | Windows | Android | BYOI (.qcow2, .iso) |\n| ------------------ | --------------- | -------- | ----- | ------- | ------- | ------------------- |\n| **Cloud (cua.ai)** | ✅              | ✅       | ✅    | ✅      | ✅      | 🔜 soon             |\n| **Local (QEMU)**   | ✅              | ✅       | ✅    | ✅      | ✅      | ✅                  |\n\n**[Get Started](https://cua.ai/docs/cua/guide/get-started/set-up-sandbox)** | **[Examples](https://cua.ai/docs/cua/examples)** | **[API Reference](https://cua.ai/docs/cua/reference/agent-sdk)**\n\n---\n\n## Cua-Bench - Benchmarks & RL Environments\n\nEvaluate computer-use agents on OSWorld, ScreenSpot, Windows Arena, and custom tasks. Export trajectories for training.\n\n```bash\n# Clone, install, and create base image\ngit clone https://github.com/trycua/cua && cd cua/cua-bench\nuv tool install -e . && cb image create linux-docker\n\n# Run benchmark with agent\ncb run dataset datasets/cua-bench-basic --agent cua-agent --max-parallel 4\n```\n\n**[Get Started](https://cua.ai/docs/cuabench/guide/getting-started/first-steps)** | **[Partner With Us](https://cuabench.ai/)** | **[Registry](https://cuabench.ai/registry)** | **[CLI Reference](https://cua.ai/docs/cuabench/reference/cli-reference)**\n\n---\n\n## Lume - macOS Virtualization\n\nCreate and manage macOS/Linux VMs with near-native performance on Apple Silicon using Apple's Virtualization.Framework.\n\n```bash\n# Install Lume\n/bin/bash -c \"$(curl -fsSL https://cua.ai/lume/install.sh)\"\n\n# Create and start a vanilla macOS VM from an Apple restore image\ncurl -L \"$(lume ipsw | tail -n 1)\" -o ~/Downloads/macos-tahoe.ipsw\nlume create macos-tahoe --ipsw ~/Downloads/macos-tahoe.ipsw --unattended tahoe\nlume run macos-tahoe\n```\n\nThe `--unattended` option prepares the installed guest offline. The built-in\n`sequoia` and `tahoe` presets create the `lume` user, enable SSH, configure\nautologin, and disable sleep and screen locking. The default credentials are\n`lume` / `lume`.\n\nThe Tahoe flow is E2E verified. Sequoia may still open the Accessibility step\nof Setup Assistant on its first display boot; see [issue #2155](https://github.com/trycua/cua/issues/2155).\n\n**[Get Started](https://cua.ai/docs/lume)** | **[FAQ](https://cua.ai/docs/lume/guide/getting-started/faq)** | **[CLI Reference](https://cua.ai/docs/lume/reference/cli-reference)**\n\n---\n\n## Packages\n\n| Package                                                              | Description                                                 |\n| -------------------------------------------------------------------- | ----------------------------------------------------------- |\n| [cua-driver](libs/cua-driver/README.md)                              | Background computer-use agent for macOS, Windows, and Linux |\n| [cua-agent](https://cua.ai/docs/cua/reference/agent-sdk)             | AI agent framework for computer-use tasks                   |\n| [cua-sandbox](https://cua.ai/docs/cua/reference/sandbox-sdk)         | SDK for creating and controlling sandboxes                  |\n| [cua-computer-server](https://cua.ai/docs/cua/reference/sandbox-sdk) | Driver for UI interactions and code execution in sandboxes  |\n| [cua-bench](https://cua.ai/docs/cuabench)                            | Benchmarks and RL environments for computer-use             |\n| [lume](https://cua.ai/docs/lume)                                     | macOS/Linux VM management on Apple Silicon                  |\n| [lumier](https://cua.ai/docs/lume/guide/advanced/lumier)             | Docker-compatible interface for Lume VMs                    |\n\n## Resources\n\n- [Documentation](https://cua.ai/docs) — Guides, examples, and API reference\n- [Blog](https://cua.ai/blog) — Tutorials, updates, and research\n- [Discord](https://discord.com/invite/mVnXXpdE85) — Community support and discussions\n- [GitHub Issues](https://github.com/trycua/cua/issues) — Bug reports and feature requests\n- [Security](SECURITY.md) — Private vulnerability reporting\n\n## Citation\n\nIf Cua supports your research, please cite the software:\n\n```bibtex\n@software{cua2025,\n  author  = {{Cua AI, Inc.}},\n  title   = {Cua},\n  year    = {2025},\n  url     = {https://github.com/trycua/cua},\n  license = {MIT}\n}\n```\n\nFor reproducibility, include the Cua release or commit used in your experiments. Citation metadata is also available in [`CITATION.cff`](CITATION.cff).\n\n## Contributing\n\nWe welcome contributions! See our [Contributing Guidelines](CONTRIBUTING.md) for details.\n\n## License\n\nMIT License — see [LICENSE](LICENSE.md) for details.\n\nThird-party components have their own licenses:\n\n- [Kasm](libs/kasm/LICENSE) (MIT)\n- [OmniParser](https://github.com/microsoft/OmniParser/blob/master/LICENSE) (CC-BY-4.0)\n- Optional `cua-agent[omni]` includes ultralytics (AGPL-3.0)\n\n## Trademarks\n\nApple, macOS, Ubuntu, Canonical, and Microsoft are trademarks of their respective owners. This project is not affiliated with or endorsed by these companies.\n\n---\n\n<div align=\"center\">\n\nThank you to all our [GitHub Sponsors](https://github.com/sponsors/trycua)!\n\n<img width=\"300\" alt=\"coderabbit-cli\" src=\"https://github.com/user-attachments/assets/23a98e38-7897-4043-8ef7-eb990520dccc\" />\n\n</div>\n","default_branch":"main","files":4245,"tree":[".agents/skills/poll-github-work/SKILL.md",".claude/skills/poll-github-work",".cursorignore",".editorconfig",".gitattributes",".github/CODEOWNERS",".github/FUNDING.yml",".github/ISSUE_TEMPLATE/bug.yml",".github/ISSUE_TEMPLATE/config.yml",".github/ISSUE_TEMPLATE/feature.yml",".github/ISSUE_TEMPLATE/rfc.yml",".github/pull_request_template.md",".github/release-attribution-config.json",".github/release-backfill/README.md",".github/release-backfill/candidates.json",".github/release-backfill/candidates.md",".github/release-backfill/candidates.schema.json",".github/release-backfill/catalog.json",".github/release-backfill/catalog.schema.json",".github/release-backfill/config.json",".github/release-backfill/evidence.json",".github/release-backfill/evidence.schema.json",".github/release-backfill/rendered.json",".github/release-backfill/rendered.schema.json",".github/release-backfill/skip-ledger.json",".github/release-backfill/skip-ledger.schema.json",".github/release-manifest.schema.json",".github/release-notes/cua-driver-rs.md",".github/release-notes/lume.md",".github/release-state/cua-driver-rs-published-version",".github/releases/README.md",".github/releases/component.schema.json",".github/releases/components.json",".github/scripts/cua-driver-mcp-compat/expected-tools.json",".github/scripts/cua-driver-mcp-compat/package-lock.json",".github/scripts/cua-driver-mcp-compat/package.json",".github/scripts/cua-driver-mcp-compat/verify.mjs",".github/scripts/get_pyproject_version.py",".github/scripts/github_release.py",".github/scripts/merge_release_please_manifests.py",".github/scripts/release_attribution.py",".github/scripts/release_backfill.py",".github/scripts/release_backfill_claude.py",".github/scripts/release_channels.py",".github/scripts/repackage_cua_train_wheel.py",".github/scripts/resolve_release_please_request.py",".github/scripts/sync_driver_release_docs.py",".github/scripts/sync_lume_release_docs.py",".github/scripts/tests/README.md",".github/scripts/tests/__init__.py",".github/scripts/tests/test_ci_nix_linux_paths.py",".github/scripts/tests/test_cua_cloud_release_wiring.py",".github/scripts/tests/test_cua_driver_release_wiring.py",".github/scripts/tests/test_cua_fleet_release_wiring.py",".github/scripts/tests/test_cua_sandbox_release_wiring.py",".github/scripts/tests/test_get_pyproject_version.py",".github/scripts/tests/test_github_release.py",".github/scripts/tests/test_merge_release_please_manifests.py",".github/scripts/tests/test_nightly_release_wiring.py",".github/scripts/tests/test_periodic_cua_sandbox_live.py",".github/scripts/tests/test_pr_attribution.py",".github/scripts/tests/test_release_attribution.py",".github/scripts/tests/test_release_backfill.py",".github/scripts/tests/test_release_bump_authorization.py",".github/scripts/tests/test_release_channel_installers.py",".github/scripts/tests/test_release_channels.py",".github/scripts/tests/test_repackage_cua_train_wheel.py",".github/scripts/tests/test_resolve_release_please_request.py",".github/scripts/tests/test_sync_driver_release_docs.py",".github/scripts/tests/test_sync_lume_release_docs.py",".github/scripts/tests/test_update_cua_driver_installer_version.py",".github/scripts/tests/test_validate_release_please_tags.py",".github/scripts/tests/test_validate_release_versions.py",".github/scripts/tests/test_verify_cua_driver_release_archives.py",".github/scripts/update_cua_driver_installer_version.py",".github/scripts/validate_release_please_tags.py",".github/scripts/validate_release_versions.py",".github/scripts/verify_cua_driver_release_archives.py",".github/srt-settings.json",".github/workflows/cd-container-cuabot.yml",".github/workflows/cd-container-kasm.yml",".github/workflows/cd-container-lumier.yml",".github/workflows/cd-container-qemu-android.yml",".github/workflows/cd-container-qemu-linux.yml",".github/workflows/cd-container-qemu-windows.yml",".github/workflows/cd-container-xfce-cua.yml",".github/workflows/cd-container-xfce.yml",".github/workflows/cd-cua-driver-docs.yml",".github/workflows/cd-docs-pin-dispatch.yml",".github/workflows/cd-py-agent.yml",".github/workflows/cd-py-auto.yml",".github/workflows/cd-py-bench-ui.yml",".github/workflows/cd-py-bench.yml",".github/workflows/cd-py-cli.yml",".github/workflows/cd-py-cloud.yml",".github/workflows/cd-py-computer-server.yml",".github/workflows/cd-py-computer.yml",".github/workflows/cd-py-core.yml",".github/workflows/cd-py-cua-driver.yml",".github/workflows/cd-py-cua.yml",".github/workflows/cd-py-fleet.yml",".github/workflows/cd-py-mcp-server.yml",".github/workflows/cd-py-sandbox-apps.yml",".github/workflows/cd-py-sandbox.yml",".github/workflows/cd-py-som.yml",".github/workflows/cd-py-train.yml",".github/workflows/cd-rust-cua-driver.yml",".github/workflows/cd-swift-lume.yml",".github/workflows/cd-ts-cli.yml",".github/workflows/cd-ts-computer.yml",".github/workflows/cd-ts-core.yml",".github/workflows/cd-ts-cuabot.yml",".github/workflows/cd-ts-fleet.yml",".github/workflows/cd-ts-playground.yml",".github/workflows/ci-check-docs-links.yml",".github/workflows/ci-check-docs.yml",".github/workflows/ci-cold-start-benchmark.yml",".github/workflows/ci-container-cuabot.yml",".github/workflows/ci-container-kasm.yml",".github/workflows/ci-container-lumier.yml",".github/workflows/ci-container-qemu-android.yml",".github/workflows/ci-container-qemu-linux.yml",".github/workflows/ci-container-qemu-windows.yml",".github/workflows/ci-container-xfce-cua.yml",".github/workflows/ci-container-xfce.yml",".github/workflows/ci-contributor-attribution.yml",".github/workflows/ci-cua-driver-contract-clients.yml",".github/workflows/ci-cua-driver-installer-compat.yml",".github/workflows/ci-distro-compat-cua-driver.yml",".github/workflows/ci-lint-python.yml",".github/workflows/ci-lint-typescript.yml",".github/workflows/ci-nix-linux.yml",".github/workflows/ci-public-containerdisk-refs.yml",".github/workflows/ci-py-agent.yml",".github/workflows/ci-py-bench-ui.yml",".github/workflows/ci-py-bench.yml",".github/workflows/ci-py-cli-fleets-wif-smoke.yml",".github/workflows/ci-py-cli-wif-token.yml",".github/workflows/ci-py-computer-server.yml",".github/workflows/ci-py-computer.yml",".github/workflows/ci-py-core.yml",".github/workflows/ci-py-mcp-server.yml",".github/workflows/ci-py-som.yml",".github/workflows/ci-release-metadata.yml",".github/workflows/ci-release-reminder.yml",".github/workflows/ci-rust-format.yml",".github/workflows/ci-rust-linux.yml",".github/workflows/ci-rust-windows.yml",".github/workflows/ci-spdx-headers.yml",".github/workflows/ci-swift-lume.yml",".github/workflows/ci-test-models.yml",".github/workflows/ci-test-python.yml",".github/workflows/ci-test-scripts.yml",".github/workflows/ci-ts-cli.yml",".github/workflows/ci-ts-computer.yml",".github/workflows/ci-ts-core.yml",".github/workflows/claude-auto-fix.yml",".github/workflows/clawhub-cua-driver.yml",".github/workflows/docker-reusable-build.yml",".github/workflows/docker-reusable-publish.yml",".github/workflows/docs-mcp-server-build-push.yml",".github/workflows/e2e-rust-linux-wayland.yml",".github/workflows/e2e-rust-linux.yml",".github/workflows/e2e-rust-standalone-browsers.yml",".github/workflows/e2e-rust-windows.yml",".github/workflows/fleet-mirror-guard.yml",".github/workflows/infra-fleets-wif-smoke.yml",".github/workflows/monitor-branded-installers.yml",".github/workflows/nightly-component-plan.yml",".github/workflows/nightly-cua-driver.yml",".github/workflows/nightly-lume.yml",".github/workflows/periodic-cua-sandbox-live.yml",".github/workflows/py-reusable-build.yml",".github/workflows/py-reusable-publish.yml",".github/workflows/release-bump-version.yml",".github/workflows/release-github-reusable.yml",".github/workflows/release-on-merge.yml",".github/workflows/release-please.yml",".github/workflows/release-unreleased-digest.yml",".github/workflows/ts-reusable-build.yml",".github/workflows/ts-reusable-publish.yml",".gitignore",".lycheeignore",".pre-commit-config.yaml",".prettierignore",".prettierrc.yaml",".release-please-manifest.json",".vscode/docs.code-workspace",".vscode/extensions.json",".vscode/launch.json",".vscode/libs-ts.code-workspace",".vscode/lume.code-workspace",".vscode/lumier.code-workspace",".vscode/py.code-workspace",".vscode/settings.json","AGENTS.md","CITATION.cff","CLAUDE.md","CONTRIBUTING.md","Development.md","LICENSE.md","MAINTAINERS.md","Makefile","README.md","SECURITY.md","TESTING.md","blog/app-use.md","blog/assets/composite-agents.png","blog/assets/docker-ubuntu-support.png","blog/assets/gpu-capability-ladder.html","blog/assets/hack-booth.png","blog/assets/hack-closing-ceremony.jpg","blog/assets/hack-cua-ollama-hud.jpeg","blog/assets/hack-leaderboard.png","blog/assets/hack-the-north.png","blog/assets/hack-winners.jpeg","blog/assets/hack-workshop.jpeg","blog/assets/hud-agent-evals.png","blog/assets/metal-kernel-path-mobile.html","blog/assets/metal-kernel-path.html","blog/assets/trajectory-viewer.jpeg","blog/bringing-computer-use-to-the-web.md","blog/build-your-own-operator-on-macos-1.md","blog/build-your-own-operator-on-macos-2.md","blog/clawcon-multiplayer.md","blog/clawdbot-computer-use-history.md","blog/cloud-windows-ga-macos-preview.md","blog/composite-agents.md","blog/computer-use-2-ai-engineer-worlds-fair.md","blog/computer-use-agents-for-growth-hacking.md","blog/cua-hackathon.md","blog/cua-playground-preview.md","blog/cua-vlm-router.md","blog/evaluating-gemini-3.5-flash-on-computer-use.md","blog/extension-free-browser-use.md","blog/gpu-passthrough-macos-vms.md","blog/hack-the-north.md","blog/hud-agent-evals.md","blog/human-in-the-loop.md","blog/inside-linux-computer-use.md","blog/inside-macos-window-internals.md","blog/inside-windows-computer-use.md","blog/introducing-cua-cli.md","blog/introducing-cua-cloud-containers.md","blog/lume-to-containerization.md","blog/neurips-2025-cua-papers.md","blog/sandboxed-python-execution.md","blog/training-computer-use-models-trajectories-1.md","blog/trajectory-viewer.md","blog/ubuntu-docker-support.md","blog/windows-sandbox.md","changelog/2026-03-14.md","changelog/2026-05-18.md","docs/.gitignore","docs/README.md","docs/content/docs/concepts/browser-targeting-and-background-delivery.mdx","docs/content/docs/concepts/capture-and-delivery-modalities.mdx","docs/content/docs/concepts/choose-a-cua-driver-integration.mdx","docs/content/docs/concepts/cua-bench-task-lifecycle.mdx","docs/content/docs/concepts/how-cua-driver-is-validated.mdx","docs/content/docs/concepts/how-lume-expands-macos-disks.mdx","docs/content/docs/concepts/how-lume-unattended-setup-works.mdx","docs/content/docs/concepts/how-permission-policies-work.mdx","docs/content/docs/concepts/how-sandboxes-work.mdx","docs/content/docs/concepts/how-sip-works-in-lume-vms.mdx","docs/content/docs/concepts/index.mdx","docs/content/docs/concepts/meta.json","docs/content/docs/concepts/sdk-mcp-and-hosting.mdx","docs/content/docs/concepts/the-no-foreground-contract.mdx","docs/content/docs/concepts/what-is-computer-use.mdx","docs/content/docs/concepts/what-is-cua-bench.mdx","docs/content/docs/how-to-guides/agent-context/connect-your-agent-to-cua-docs.mdx","docs/content/docs/how-to-guides/agent-context/meta.json","docs/content/docs/how-to-guides/cua-bench/meta.json","docs/content/docs/how-to-guides/cua-bench/run-a-task.mdx","docs/content/docs/how-to-guides/driver/connect-your-agent.mdx","docs/content/docs/how-to-guides/driver/drive-a-web-page.mdx","docs/content/docs/how-to-guides/driver/expose-mcp-from-desktop-app.mdx","docs/content/docs/how-to-guides/driver/install-agent-skill.mdx","docs/content/docs/how-to-guides/driver/install.mdx","docs/content/docs/how-to-guides/driver/keep-running.mdx","docs/content/docs/how-to-guides/driver/meta.json","docs/content/docs/how-to-guides/driver/personalize-cursor.mdx","docs/content/docs/how-to-guides/driver/record-and-render-a-trajectory.mdx","docs/content/docs/how-to-guides/driver/restrict-tool-access.mdx","docs/content/docs/how-to-guides/driver/run-in-macos-lume-vm.mdx","docs/content/docs/how-to-guides/driver/run-tests-in-macos-lume-vm.mdx","docs/content/docs/how-to-guides/driver/run-with-local-model.mdx","docs/content/docs/how-to-guides/driver/troubleshoot-stale-macos-permissions.mdx","docs/content/docs/how-to-guides/driver/update.mdx","docs/content/docs/how-to-guides/driver/use-claude-agent-sdk.mdx","docs/content/docs/how-to-guides/driver/use-codex-sdk.mdx","docs/content/docs/how-to-guides/driver/use-sdk-in-process.mdx","docs/content/docs/how-to-guides/driver/verify-a-desktop-action.mdx","docs/content/docs/how-to-guides/driver/windows-ssh.mdx","docs/content/docs/how-to-guides/driver/write-a-bounded-manifest.mdx","docs/content/docs/how-to-guides/index.mdx","docs/content/docs/how-to-guides/lume/change-sip.mdx","docs/content/docs/how-to-guides/lume/create-vanilla-vm.mdx","docs/content/docs/how-to-guides/lume/expand-vm-disk.mdx","docs/content/docs/how-to-guides/lume/gpu-passthrough.mdx","docs/content/docs/how-to-guides/lume/install-lume.mdx","docs/content/docs/how-to-guides/lume/manage-vms.mdx","docs/content/docs/how-to-guides/lume/meta.json","docs/content/docs/how-to-guides/lume/run-openclaw.mdx","docs/content/docs/how-to-guides/lume/serve-api.mdx","docs/content/docs/how-to-guides/lume/use-mcp-server.mdx","docs/content/docs/how-to-guides/meta.json","docs/content/docs/how-to-guides/recipes/automate-a-legacy-windows-app-behind-a-vpn.mdx","docs/content/docs/how-to-guides/recipes/build-a-report-in-a-native-app.mdx","docs/content/docs/how-to-guides/recipes/export-contacts-overnight.mdx","docs/content/docs/how-to-guides/recipes/fill-a-form-from-a-local-file.mdx","docs/content/docs/how-to-guides/recipes/meta.json","docs/content/docs/how-to-guides/sandbox/configure-pool-with-terraform.mdx","docs/content/docs/how-to-guides/sandbox/create-pool-with-python.mdx","docs/content/docs/how-to-guides/sandbox/images.mdx","docs/content/docs/how-to-guides/sandbox/interactive-shell.mdx","docs/content/docs/how-to-guides/sandbox/lifecycle.mdx","docs/content/docs/how-to-guides/sandbox/meta.json","docs/content/docs/how-to-guides/sandbox/minecraft.mdx","docs/content/docs/how-to-guides/sandbox/scale-out.mdx","docs/content/docs/how-to-guides/sandbox/secrets.mdx","docs/content/docs/how-to-guides/sandbox/tunneling.mdx","docs/content/docs/index.mdx","docs/content/docs/meta.json","docs/content/docs/reference/cua-bench/cli-reference.mdx","docs/content/docs/reference/cua-bench/meta.json","docs/content/docs/reference/cua-bench/task-definition.mdx","docs/content/docs/reference/cua-cli/authentication.mdx","docs/content/docs/reference/cua-cli/cli-reference.mdx","docs/content/docs/reference/cua-cli/mcp-server.mdx","docs/content/docs/reference/cua-cli/meta.json","docs/content/docs/reference/cua-driver/action-selection-policy.mdx","docs/content/docs/reference/cua-driver/browser-profile-attachment.mdx","docs/content/docs/reference/cua-driver/browser-semantic-snapshots.mdx","docs/content/docs/reference/cua-driver/cli-reference.mdx","docs/content/docs/reference/cua-driver/contracts.mdx","docs/content/docs/reference/cua-driver/development.mdx","docs/content/docs/reference/cua-driver/embedding.mdx","docs/content/docs/reference/cua-driver/limits.mdx","docs/content/docs/reference/cua-driver/macos-permissions.mdx","docs/content/docs/reference/cua-driver/mcp-tool-notes.mdx","docs/content/docs/reference/cua-driver/mcp-tools.mdx","docs/content/docs/reference/cua-driver/meta.json","docs/content/docs/reference/cua-driver/permission-modes.mdx","docs/content/docs/reference/cua-driver/permission-policies.mdx","docs/content/docs/reference/cua-driver/platform-roadmap.mdx","docs/content/docs/reference/cua-driver/platform-support.mdx","docs/content/docs/reference/cua-driver/process-model.mdx","docs/content/docs/reference/cua-driver/sdk-reference.mdx","docs/content/docs/reference/cua-driver/telemetry.mdx","docs/content/docs/reference/docs-code-mcp/index.mdx","docs/content/docs/reference/docs-code-mcp/meta.json","docs/content/docs/reference/index.mdx","docs/content/docs/reference/lume/cli-reference.mdx","docs/content/docs/reference/lume/http-api.mdx","docs/content/docs/reference/lume/limits.mdx","docs/content/docs/reference/lume/mcp-tools.mdx","docs/content/docs/reference/lume/meta.json","docs/content/docs/reference/lume/telemetry.mdx","docs/content/docs/reference/meta.json","docs/content/docs/reference/sandbox-sdk/image.mdx","docs/content/docs/reference/sandbox-sdk/index.mdx","docs/content/docs/reference/sandbox-sdk/interfaces.mdx","docs/content/docs/reference/sandbox-sdk/meta.json","docs/content/docs/tutorials/create-your-first-lume-vm.mdx","docs/content/docs/tutorials/drive-your-first-app.mdx","docs/content/docs/tutorials/index.mdx","docs/content/docs/tutorials/meta.json","docs/content/docs/tutorials/your-first-cua-bench-task.mdx","docs/content/docs/tutorials/your-first-local-sandbox.mdx","docs/content/docs/use-cua-with/anthropic.mdx","docs/content/docs/use-cua-with/antigravity-cli.mdx","docs/content/docs/use-cua-with/claude-code.mdx","docs/content/docs/use-cua-with/codex.mdx","docs/content/docs/use-cua-with/google.mdx","docs/content/docs/use-cua-with/grok-bot.mdx","docs/content/docs/use-cua-with/grok-build.mdx","docs/content/docs/use-cua-with/hermes.mdx","docs/content/docs/use-cua-with/index.mdx","docs/content/docs/use-cua-with/kimi-code.mdx","docs/content/docs/use-cua-with/kimi.mdx","docs/content/docs/use-cua-with/llama-cpp.mdx","docs/content/docs/use-cua-with/meta.json","docs/content/docs/use-cua-with/meta.mdx","docs/content/docs/use-cua-with/ollama.mdx","docs/content/docs/use-cua-with/openai.mdx","docs/content/docs/use-cua-with/openclaw.mdx","docs/content/docs/use-cua-with/qwen-code.mdx","docs/content/docs/use-cua-with/qwen.mdx","docs/content/docs/use-cua-with/t3-code.mdx","docs/content/docs/use-cua-with/xai.mdx","docs/next.config.mjs","docs/package.json","docs/pnpm-lock.yaml","docs/pnpm-workspace.yaml","docs/postcss.config.mjs","docs/public/apple-touch-icon.png","docs/public/examples/local-models/cua-mcp-filter.py","docs/public/favicon.ico"],"storefront":"/r/trycua","claimed":false,"request_supported":{"post":"https://gitbuyer.com/r/trycua/cua/request-supported","requests":0},"note":"indexed from public GitHub; nothing is for sale on this page. Clone it from GitHub. Paid listings live at /search."}