developer setup

overview#

the ov cli is the developer-facing command-line tool for interacting with overlord. install it on your laptop or workstation to create tasks, attach to running sessions, and monitor progress from your terminal.

installation#

npm install -g @overlordai/developer-cli

connect to your server#

ov login https://overlord.yourdomain.com

you'll be prompted for a personal access token (pat). generate one in the web dashboard under profile → access tokens.

alternatively, use the one-step setup wizard:

ov setup

this prompts for both the server url and token interactively.

verify#

ov whoami

should display your username and role.

quick start#

create a task#

ov task create -d "fix the login bug" -p my-project

watch a running task#

ov attach <task_id>

use --watch for read-only mode, or --takeover to take control of the terminal.

list tasks#

ov task list --status RUNNING

next steps#