Skip to content

cua-driver-rs-v0.6.0

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 22 Jun 01:41
· 7 commits to main since this release

cua-driver-rs

cua-driver-rs is the Rust implementation of
cua-driver,
shipping the same user-facing cua-driver binary for macOS and
Windows, plus Linux pre-release artifacts for early testing.

The Rust port and the Swift driver publish to the same GitHub repo under
distinct tag prefixes (cua-driver-rs-v* vs cua-driver-v*), so their
release artifacts do not collide.

What's Changed

  • Bump cua-driver-rs to v0.6.0 (5ce5bbd) by @github-actions[bot]
  • feat(skills): autodetect Hermes (NousResearch/hermes-agent) at ~/.hermes/skills (#1963) (9d90c81) by @francesco Bonacci
  • feat(cua-driver): add stable health_report MCP tool for end-to-end driver diagnostics (be761fa) by @francesco Bonacci
  • feat(cua-driver): fall back to key events when type-target is a terminal (687d908) by @francesco Bonacci
  • feat(cua-driver): Hermes-decoupling MCP surface + install UX (e85cd87) by @francesco Bonacci
  • feat(cursor-overlay): retina-aware rendering + arrow/teardrop selection (c172e2a) by @francesco Bonacci

SHA256 Checksums

115b5f84220cdeebb2e5b7f2c37b8db0631ad8b7327c94541d83c0f4d992fb8a  cua-driver-rs-0.6.0-darwin-x86_64.tar.gz
2390738904d7bfe7da67d8ab9a0ad46c53dfba0e00516fd85310fff7e2eb9da0  cua-driver-rs-0.6.0-darwin-universal.tar.gz
28711382bf85d99bf851b9d5e165e9b38ef4bf6ce52df02a0bf9cafa40df3209  cua-driver-rs-0.6.0-linux-arm64-binary.tar.gz
2ce9d8dced19a6622706ff12162ef66acb6ea167777382dd3098d7dc0becf32e  cua-driver-rs-0.6.0-linux-x86_64-binary.tar.gz
3b6424be84a79fe74a11be47d53b3cd6feae3e8e8425aa96ffe944a973945a67  cua-driver-rs-v0.6.0-skills.tar.gz
71b22de6b9a45736cebb396c3cd243ddb5f196be3cf897e498afe5c1141e34b0  cua-driver-rs-0.6.0-darwin-arm64.tar.gz
7930b14e74f5dd384e2d7a106504a6179ff0ee74e2928e696984831d153177a9  cua-driver-rs-0.6.0-windows-x86_64-binary.zip
9dd8ec1499b3e8949d7c75833320343fe7bbe7cf0b54fc52f088c63dee4e7746  cua-driver-rs-0.6.0-darwin-universal-binary.tar.gz
a546bfb8134307404dd59f64008277910859c3db55d9c72550a0e0fd4f5f59d8  cua-driver-rs-0.6.0-linux-x86_64.tar.gz
bd76917f401176f6f9cb4b1e17fb4b21fcd849f81f6d5d2dacf4282c5789592d  cua-driver-rs-0.6.0-linux-arm64.tar.gz
c8631524d5b9803ef768b68174c26e4a445fb4a3edea684c2e0d01c1c5c5ba42  cua-driver-rs-0.6.0-windows-x86_64.zip
ccf74de09811cf0458e3335912a290d75c2fcdefe3fb76c12082d8ce2803811e  cua-driver-rs-0.6.0-windows-arm64.zip
eb8ea07b4882707bbb6a551eb88338b3ccedec835549c4648c4bbca567501446  cua-driver-rs-0.6.0-windows-arm64-binary.zip

Install (macOS / Linux pre-release)

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/cua-driver/scripts/install.sh)"

The shell installer covers macOS and the Linux pre-release backend
and installs the Rust implementation by default. Linux artifacts are
published for early testing and are not yet an official supported
release tier.

Install (Windows)

irm https://raw.githubusercontent.com/trycua/cua/main/libs/cua-driver/scripts/install.ps1 | iex

The installer auto-detects host architecture (x86_64 / arm64) and uses
directory junctions for the install layout, so it runs without admin
and without Developer Mode.

Artifacts

macOS (universal — arm64 + x86_64 in one binary, like the Swift cua-driver)

  • cua-driver-rs-0.6.0-darwin-universal.tar.gz — directory tarball with LICENSE + CuaDriver.app bundle (install.sh expects this layout)
  • cua-driver-rs-0.6.0-darwin-arm64.tar.gz — same payload, named for arm64 callers
  • cua-driver-rs-0.6.0-darwin-x86_64.tar.gz — same payload, named for x86_64 callers
  • cua-driver-rs-0.6.0-darwin-universal-binary.tar.gz — bare universal binary (single file at archive root; no .app — bypasses the TCC auto-relaunch path)

Linux pre-release

  • cua-driver-rs-0.6.0-linux-x86_64.tar.gz — directory tarball
  • cua-driver-rs-0.6.0-linux-x86_64-binary.tar.gz — bare binary
  • cua-driver-rs-0.6.0-linux-arm64.tar.gz — directory tarball (Linux on ARM / aarch64)
  • cua-driver-rs-0.6.0-linux-arm64-binary.tar.gz — bare binary (Linux on ARM / aarch64)

Windows

  • cua-driver-rs-0.6.0-windows-x86_64.zip — directory zip
  • cua-driver-rs-0.6.0-windows-x86_64-binary.zip — bare cua-driver.exe
  • cua-driver-rs-0.6.0-windows-arm64.zip — directory zip (Windows on ARM)
  • cua-driver-rs-0.6.0-windows-arm64-binary.zip — bare cua-driver.exe (Windows on ARM)

Installer scripts

  • install.sh — macOS / Linux pre-release one-liner installer
  • install.ps1 — Windows one-liner installer
  • uninstall.sh — macOS / Linux pre-release one-liner uninstaller
  • uninstall.ps1 — Windows one-liner uninstaller