Overview

Orgo is desktop infrastructure for AI agents. Create cloud-based computer environments that AI models can control and interact with.

How It Works

Orgo provides virtual computer environments that AI agents can control to automate tasks.

# Connect to a virtual computer
computer = Computer()

# Perform actions
computer.left_click(100, 200)
computer.type("Hello world")
computer.screenshot()

Anthropic Integration

Seamlessly integrate with Anthropic’s Claude and Computer Use.

# Setup
computer = Computer()
adapter = AnthropicAdapter(computer)

# Get Claude-compatible tool definition
tool_definition = adapter.get_tool_definition()