Agents/Computer Agent
🖥️

Computer Agent

AI that can see and control your computer

Try Computer Agent

Describe a task for the agent to perform on your computer

Setup Instructions

Install and run the Computer Agent on your machine

1Install the Agent Runtime

# Using npm
npm install -g @ooretz/agent-runtime

# Or using pip
pip install ooretz-agent

2Authenticate with your API key

# Set your API key
export OORETZ_API_KEY="your-api-key-here"

# Or configure in the runtime
ooretz-agent config set api_key YOUR_API_KEY

3Start the Computer Agent

# Start the agent daemon
ooretz-agent start --type computer

# Or run in foreground
ooretz-agent run --type computer --verbose

4Give the agent a task

# Via CLI
ooretz-agent task "Open Chrome and go to example.com"

# Via API
curl -X POST https://api.ooretz.space/v1/agents/run \
  -H "Authorization: Bearer $OORETZ_API_KEY" \
  -d '{"type": "computer", "task": "Open Chrome and go to example.com"}'

⚠️ Security Considerations

  • • The Computer Agent has full access to your system when running
  • • Review tasks before execution in supervised mode
  • • Use sandboxed environments for testing
  • • Set up allowed/denied actions in config
  • • Logs are stored locally and can be audited

Capabilities

⌨️
Keyboard Control
Type text, use shortcuts, navigate with keys
🖱️
Mouse Control
Click, drag, scroll, hover over elements
📸
Screen Capture
Take screenshots, record screen regions
📁
File Operations
Read, write, copy, move, delete files
💻
Command Execution
Run shell commands and scripts
🪟
Window Management
Open, close, resize, focus windows

System Requirements

OSmacOS, Windows, Linux
Memory4GB+ RAM
Node.js18+ (for npm)
Python3.9+ (for pip)