How it works
Orgo monitors network activity on each computer every few seconds. When no traffic is detected for the configured duration, the computer is suspended. Its full state (desktop, files, running processes) is preserved and it can be restarted instantly. Activity that resets the idle timer:- API calls (screenshots, clicks, typing, bash commands)
- VNC/browser connections
- Any network traffic to the computer
- Processes running inside the computer (CPU-bound work with no external connections)
Default behavior
Auto-stop is disabled by default on all plans. Enable it per-computer by passingauto_stop_minutes at creation time, or update it later with PATCH /computers/{id}/auto-stop.
Configuring auto-stop
Passauto_stop_minutes when creating a computer:
auto_stop_minutes to 0 to explicitly disable auto-stop.
Restarting auto-stopped computers
When a computer is auto-stopped, restart it with:Best practices
Long-running agents
Set
auto_stop_minutes: 0 for agents that need to stay alive between tasks.On-demand agents
Set
auto_stop_minutes: 15 or 30 for agents that run periodically. They auto-stop between jobs and restart on demand.Development
Use a longer timeout like
auto_stop_minutes: 60 during active development so your computer doesn’t stop while you’re thinking.Cost optimization
Enable auto-stop on all non-critical computers. Stopped computers don’t incur compute charges.