Give Your AgentA Windows Desktop
594 is an API to launch and automate Windows apps.
Remote Display

Agent Access
Currently allowed
Connection Events
12:02:00 AM
mouse_click:
{"x":968,"y":53,"down":false,"button":"left"}
12:01:59 AM
mouse_click:
{"x":967,"y":53,"down":true,"button":"left"}
12:01:47 AM
mouse_click:
{"x":433,"y":742,"down":false,"button":"left"}

Simple SDK
Built for developers, 594 plugs into your agent apps wherever you need.
Serverless VMs
Automations are backed by serverless VM infra, offering simplicity, security, and scalability.
Packed With Tools
Agents use natural computer tools like click(), type(), and screenshot() to control Windows apps.
Humans In The Loop
Agents seamlessly transfer control to human operators when critical operations need oversight.
1from lab594 import VM
2
3# Initialize Windows VM
4vm = VM()
5with vm.session() as conn:
6
7# Start automation loop
8while True:
9# Get current screen state
10 screen = conn.screenshot()
11
12# Interact with Windows UI
13 conn.click(x=500, y=300)
14 conn.type("notepad")
15
16# Hand over to human
17 conn.yield_control()
18 conn.await_control()