use.computer

Performance

Latency numbers for the things agents actually do.

Real numbers, measured against the dev cluster on a wired 5 Gbps LAN. WAN adds ~30 ms of round-trip on top.

Sandbox open

PlatformP50P95P99
macOS (warm)385 ms3.4 s6.4 s
Simulator (cold boot)~45 s~70 s~80 s

macOS sandboxes come out of a warm pool — P50 is the steady state. P95/P99 cover the case where the warm slot was just claimed and the pool is busy cloning the next VM. Apple simulator sandboxes aren't warm-pooled yet; first boot takes ~45 s.

Input — mouse & keyboard

Round-trip from client.method() to ACK from cua-server inside the macOS VM.

MethodP50P95P99
mouse.click98 ms165 ms433 ms
mouse.move93 ms163 ms545 ms
mouse.get_position97 ms117 ms550 ms
keyboard.type95 ms112 ms441 ms
keyboard.press92 ms160 ms531 ms
keyboard.hotkey96 ms116 ms446 ms
display.get_windows239 ms409 ms720 ms

Screenshot & composite ops

screenshot returns a PNG of the full display. act does click-then-screenshot in a single round-trip; agent_loop is the same shape an agent sees per step.

MethodP50P95P99
screenshot1361 ms1780 ms2243 ms
act (click + screen)1392 ms1730 ms1940 ms
agent_loop (one step)1380 ms1785 ms1912 ms
recording.start+stop1353 ms1789 ms2086 ms

Screenshots dominate every composite op — if you can run with compressed JPEGs or partial regions, do.

Exec

Short macOS shell commands (ls, echo) round-trip in ~80 ms P50. Long commands stream output — no extra overhead until they finish.

Hardware

Each Mac mini is a stock M4 with 16 GB RAM and 512 GB SSD. The 2 macOS VMs share that with 4 cores + 8 GB each; simulator sandboxes run on the host alongside.

Concurrency

  • Per Mac mini: 2 macOS sandboxes + 2 simulator sandboxes simultaneously.
  • Per reservation: N × 2 macOS + N × 2 simulators (N = Macs you reserved).
  • The fleet currently has 40 Mac minis live and growing; you can reserve up to all of them if available.

On this page