Navigation
Tabs stop meaning one thing
One agent can navigate, close, or reuse a tab while another agent still treats it as the page from an earlier snapshot.
Parallel coding agents
Give each Codex, Claude Code, Cursor, Copilot, or OpenCode task its own visible tabs and isolated persistent browser profile—without letting agents browse the human Default workspace.
Product and source review: August 24, 2026
A practical default
A persistent profile is useful, but concurrent work still needs an ownership rule. Hronaut requires an agent to create a named workspace first and use the returned UUIDv7 workspace ID for every browser tool call. Tabs and site state stay inside that task boundary.
The shared-profile problem
Navigation
One agent can navigate, close, or reuse a tab while another agent still treats it as the page from an earlier snapshot.
Identity
Two tasks may need different test accounts, organizations, feature flags, or local-storage state on the same origin.
Lifecycle
If the browser belongs to a single client process, disconnecting or restarting that client can destroy useful state for other work.
Hronaut workspace contract
Start with browser_workspaces and a fresh, human-readable task name. Hronaut returns the stable workspace ID.
Use a clean scratch profile, or make a one-time copy of selected reusable state from Default with fork-default.
Pass that workspace ID to every page tool. Hronaut rejects tabs that belong to another workspace and never exposes Default through MCP.
Archive useful task state for later, or permanently close the workspace and its isolated browser data when the task is finished.
Storage boundary
Every non-Default Hronaut workspace receives its own persistent Electron partition for cookies, local storage, cache, service workers, and related site state. Workspace membership is immutable: tabs cannot move between workspaces, and a tab ID from another workspace is rejected.
Copying state from Default or saving selected state back is an explicit one-time operation. It is not live synchronization, and agents still cannot browse the human Default workspace directly.
Choose the right model
Project-scoped automation
Playwright MCP creates persistent profiles from the workspace root and supports isolated sessions. Its documentation notes that a persistent profile can be used by only one browser instance at a time.
Playwright MCP profile modes ↗Exact browser already open
Connect when the task must inspect the exact tab and profile already on screen. This gives the agent the authority and shared state of that everyday browser.
Chrome DevTools auto-connect ↗Durable multi-agent work
Use one separate visible browser app when task profiles should persist independently of client sessions and remain isolated from both Default and other agent workspaces.
Compare browser ownership models →Sources and limits
Hronaut embeds Chromium and is designed for visible, long-lived desktop work. Use Playwright or another test runner when ephemeral headless jobs or Firefox and WebKit coverage matter more than durable human-visible sessions.
Try the workspace boundary
Install Hronaut, connect two MCP clients, and have each create a clearly named scratch workspace before opening a page.