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-cliconnect to your server#
ov login https://overlord.yourdomain.comyou'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 setupthis prompts for both the server url and token interactively.
verify#
ov whoamishould display your username and role.
quick start#
create a task#
ov task create -d "fix the login bug" -p my-projectwatch 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 RUNNINGnext steps#
- developer cli reference — full command reference
- development workflow — end-to-end workflow guide