Use this file to discover all available pages before exploring further.
Gologin Local Agent Browser CLI is an agent-friendly CLI for running local Gologin Orbita profiles through a persistent daemon and a compact shell interface.It keeps the same interaction model as the cloud Agent Browser CLI — open a session, read snapshots, act on refs — but runs locally on your machine using Gologin Orbita instead of Cloud Browser.
Persistent local daemon — launches local Orbita through the official Gologin SDK, connects to the returned websocket endpoint with Playwright connectOverCDP, keeps the active page in memory
export GOLOGIN_TOKEN='your_token'# open a profile locally (visible window)gologin-local-agent-browser open https://example.com --profile your_profile_id# or headlessgologin-local-agent-browser open https://example.com --profile your_profile_id --headless# read the pagegologin-local-agent-browser snapshot# interactgologin-local-agent-browser click @e3gologin-local-agent-browser type @e5 "search terms"# save a screenshotgologin-local-agent-browser screenshot ./page.png# closegologin-local-agent-browser close
Check profile health, proxy connectivity, and use-case readiness:
# basic health checkgologin-local-agent-browser doctor# check for a specific use casegologin-local-agent-browser doctor --use-case linkedin# check proxy on a profilegologin-local-agent-browser doctor --use-case linkedin --check-proxy your_profile_id
# list all jobsgologin-local-agent-browser jobs# filter by kind and statusgologin-local-agent-browser jobs --kind batch --status failed# get details for a specific jobgologin-local-agent-browser job job-20260311123000-ab12cd34
New browser profiles look “cold” — no cookies, no browsing history, no stored sessions. Sites like Facebook, Google, and LinkedIn flag cold profiles. Warm them up by browsing naturally before doing anything important.
Each LinkedIn account lives in its own profile with its own cookies, proxy, and fingerprint. Log in once, the session persists across days.
# create a LinkedIn-optimized profilegologin-local-agent-browser profile-create "LinkedIn - Sales Rep 1" \ --template linkedin --proxy-country us# log in (visible mode to handle 2FA if needed)gologin-local-agent-browser open https://linkedin.com/login \ --profile profile_id --visiblegologin-local-agent-browser snapshotgologin-local-agent-browser fill @e3 "email@company.com"gologin-local-agent-browser fill @e5 "password"gologin-local-agent-browser click @e7gologin-local-agent-browser wait 5000# verify login, then close — cookies are savedgologin-local-agent-browser snapshotgologin-local-agent-browser close# next day: reopen — already logged ingologin-local-agent-browser open https://linkedin.com/feed --profile profile_idgologin-local-agent-browser snapshot # feed loads, no login needed
All browser commands match the cloud Agent Browser CLI: snapshot, click, type, fill, find, tabs, cookies, storage-export, storage-import, eval, screenshot, pdf, back, forward, reload, wait, press, scroll, upload, and more.See the Agent Browser CLI command reference for the full list.