agent-browser Updates & Release Notes

Follow

84 updates curated from 1 source by the Releasebot Team. Last updated: Aug 13, 2026

Get this feed:
  • Aug 11, 2026
    • Date parsed from source:
      Aug 11, 2026
    • First seen by Releasebot:
      Aug 13, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.34.0

    agent-browser adds persistent session-to-tab binding for shared Chrome sessions, with stricter pinned tabs, direct CDP target references, and richer JSON recovery data. It also improves remote agent browser guidance and fixes tab hijacking plus Chrome version detection hangs.

    New Features

    Added persistent session-to-tab binding for shared Chrome sessions. Named sessions connected through --cdp or --auto-connect now remember their CDP target across commands and daemon restarts, and CDP target ids can be used directly as tab references. Start each session with --pin-tab to make the binding strict, so a tab closed externally returns a stable tab_gone error instead of silently adopting a neighboring tab. JSON output includes data.targetId and an optional sanitized data.lastUrl; batch exposes the same recovery data under result (#1589)

    Improvements

    Added a Remote Agent Browser provider guide covering Vercel authentication, disposable and stable sessions, custom VCR images, snapshots, and live-view URLs (#1648)

    Bug Fixes

    Fixed parallel sessions sharing one Chrome hijacking each other's tabs. Event-discovered targets no longer steal a pinned session's active tab, re-attach restores the persisted target instead of selecting index 0, and preliminary plus existing-daemon --cdp and --auto-connect paths preserve explicit pin enable and disable. Agent skill guidance now requires a named --session before the first command (#1589)

    Fixed agent-browser doctor hanging on Chrome version detection. Windows reads the version from the executable resource table without spawning Chrome; other platforms bound the version subprocess with a deadline, kill, and reap so inherited output handles cannot block forever or leave an orphan browser (#1641)

    Contributors

    @Railly

    @huozhi

    @soichisumi

    @dandaka

    @mvanhorn

    Original source
  • Aug 2, 2026
    • Date parsed from source:
      Aug 2, 2026
    • First seen by Releasebot:
      Aug 3, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.33.2

    agent-browser adds faster stream delivery, per-client frame pacing and max FPS controls, plus configurable stream encoding to cut bandwidth without dropping frames. It also fixes keyboard input, reduces click latency, and improves stream stability for external consumers.

    New Features

    Added input priority and per-client delivery settings to the stream server: each WebSocket connection now splits into a reader task and a writer loop, so clicks and keystrokes dispatch to the browser without queueing behind a frame write. Adds a per-client {"type":"config","maxFps":N} cap (1 to 120, 0 uncapped) and opt-in ack pacing via {"type":"config","pacing":"ack"} with {"type":"ack","seq":N}, which keeps one frame in flight so a stalled client never drains a backlog. Both settings can also be declared on the connection URL (?pacing=ack&maxFps=10), the only way to cover the opening frame. Every frame now carries a monotonic seq (#1594)

    Added configurable stream encoding: frames were hardcoded to jpeg quality 80 at the session viewport, so frame rate was the only bandwidth lever. AGENT_BROWSER_STREAM_QUALITY, AGENT_BROWSER_STREAM_MAX_WIDTH and AGENT_BROWSER_STREAM_MAX_HEIGHT are read once per daemon and cut bytes without dropping frames: on a busy page at 1280x720, quality 20 takes a frame from 54 KB to 25 KB, and quality 20 at 640x360 takes it to 9 KB, frame rate unchanged in both. Width and height default to the session viewport, so a larger viewport is never downscaled unless both are set (#1626)

    Behavior Changes

    Frame delivery is now latest-wins. The stream server holds only the newest frame and reads it at send time, so frames produced while an earlier one is still being written are skipped. A client that assumed it received every frame from the WebSocket now receives fewer. Nothing in this repo consumes the stream that way, since record captures through CDP and the dashboard is a viewer, so this affects external consumers only (#1594)

    metadata.timestamp now carries a real value. It was always 0, because CDP sends the capture time as a float in seconds and the code read it as an integer. It is now epoch milliseconds, so a client can measure how stale the frame it is drawing is. A client that treated 0 as unknown is unaffected (#1594)

    Bug Fixes

    Fixed keyboard input over the stream, which worked in none of the three shapes the docs publish: an absent key, code, or text reached CDP as an explicit null, which rejects the whole command, so every key release and every non-printable key was silently dropped, the dashboard's own payloads included (#1594)

    Fixed click latency behind mouse movement: input dispatch awaited Chrome's reply before reading the next message, so a click sat one round trip behind every queued mouse move. After a 300-event sweep a click landed 2471ms late; it now lands in 6ms (#1627)

    Fixed stream disable returning while a slow client's input reader was still running (#1594)

    Contributors

    @Railly

    @kevingatera

    @WebCloud

    Original source
  • All of your release notes in one feed

    Join Releasebot and get updates from Vercel Labs and hundreds of other software products.

    Create account
  • Jul 28, 2026
    • Date parsed from source:
      Jul 28, 2026
    • First seen by Releasebot:
      Jul 29, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.33.1

    agent-browser introduces a default 1 hour idle timeout for daemon cleanup, with restore-state handling, configurable persistence, and safer browser shutdown rules. It also fixes tab recovery, selection, and accessibility selector errors for smoother CLI, JSON, and MCP output.

    Behavior Changes

    The daemon now ships a default idle timeout of 1 hour: after an hour with no commands or dashboard input it saves configured restore state, closes the browser, and exits, so integrations that die without calling close no longer leak the daemon and its Chrome tree indefinitely. Sessions without --restore or another restore key discard transient browser state and open tabs when they shut down. Set AGENT_BROWSER_IDLE_TIMEOUT_MS=0 to restore the old always-persist behavior, or any other value to tune it. Dashboard mouse, keyboard, and touch input reset the timer. The default never closes headed browsers, including Safari and iOS WebDriver sessions, or user-attached browsers that may be in direct human use. Provider-owned cloud browsers remain eligible for cleanup, and an explicitly configured timeout applies to all browsers, as before (#1605)

    Bug Fixes

    Fixed tab recovery and selection to avoid daemon hangs on Memory Saver-discarded tabs by selecting a live renderer on CDP connect, reviving tabs on switch or after close, treating dialog-blocked tabs as live, preserving refs on rejected operations, and surfacing recovery state across CLI, JSON, and MCP output (#1543)

    Fixed a11y selector errors to report invalid CSS selectors cleanly instead of exposing raw browser evaluation stack traces in text and JSON output (#1604)

    Contributors

    @ctate

    @Railly

    @joelhooks

    @jadenfix

    Original source
  • Jul 23, 2026
    • Date parsed from source:
      Jul 23, 2026
    • First seen by Releasebot:
      Jul 24, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.33.0

    agent-browser adds axe-core accessibility audits with WCAG filtering, iframe-aware results, and an offline CSP-safe audit engine.

    New Features

    Added axe-core accessibility audits with agent-browser a11y [url], WCAG tag filtering, selector scoping, iframe-aware text and JSON results, an embedded offline and CSP-safe audit engine, and a matching MCP tool (#1596)

    Contributors

    @ctate

    Original source
  • Jul 22, 2026
    • Date parsed from source:
      Jul 22, 2026
    • First seen by Releasebot:
      Jul 23, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.32.4

    agent-browser fixes role-based finding and improves element-not-found error details for more accurate, Playwright-like matching.

    Bug Fixes

    Fixed find role to match implicit ARIA roles and browser-computed accessible names through the accessibility tree, so semantic elements like <h2> (heading) and <ul> (list) resolve, with case-insensitive substring name matching that mirrors Playwright's getByRole (#1552)

    Fixed element-not-found errors to preserve the locator detail (selector, role, name, or index) instead of flattening every miss into one generic message, and aligned the advertised find actions with the set the dispatcher actually accepts (#1553)

    Contributors

    @Railly

    @cooleryu

    Original source
  • Similar to agent-browser with recent updates:

  • Jul 19, 2026
    • Date parsed from source:
      Jul 19, 2026
    • First seen by Releasebot:
      Jul 20, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.32.3

    agent-browser adds HAR body capture and a derive-client skill for turning browser traffic into reusable API clients.

    New Features

    • Added HAR response body capture with text bodies embedded by default and configurable all, text, and none content modes across the CLI and MCP surfaces (#1578)
    • Added a derive-client skill for recording browser traffic and generating reusable API clients from HAR request and response data (#1578)

    Contributors

    @ctate

    Original source
  • Jul 17, 2026
    • Date parsed from source:
      Jul 17, 2026
    • First seen by Releasebot:
      Jul 18, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.32.2

    agent-browser improves eve extension packaging with updated manifests, stable AI SDK example updates, and aligned tests.

    Improvements

    Updated eve extension packaging for eve 0.25.1, adopting the new source and dist extension manifest format, updating the eve example to stable AI SDK releases, and keeping extension tests aligned with eve's scoped config registry (#1570)

    Contributors

    @AndrewBarba

    Original source
  • Jul 16, 2026
    • Date parsed from source:
      Jul 16, 2026
    • First seen by Releasebot:
      Jul 17, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.32.1

    agent-browser improves eve compatibility and standardizes lowercase branding across docs, examples, and release notes.

    Improvements

    Widened eve compatibility for @agent-browser/eve to accept eve 0.23 and future major releases without peer-resolution warnings (#1563)

    Documentation

    Standardized eve branding to use lowercase styling across the docs, examples, package readmes, and release notes (#1557)

    Contributors

    @ctate

    Original source
  • Jul 15, 2026
    • Date parsed from source:
      Jul 15, 2026
    • First seen by Releasebot:
      Jul 16, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.32.0

    agent-browser adds an Eve extension, hardened domain allowlists and safer startup handling, plus a fix for completed-page waits so ready documents resolve immediately with improved timeout handling.

    New Features

    Eve extension - Added @agent-browser/eve, an Eve extension that mounts the agent-browser tool set with namespaced browser tools, sandbox bootstrap helpers, docs, examples, CI, and release packaging (#1547)

    Security

    Hardened domain allowlists by blocking WebRTC bypasses, applying network containment across launch modes, workers, popups, restored state, and reused daemon sessions, rejecting unsafe startup arguments, and adding Chrome regression coverage (#1546)

    Bug Fixes

    Fixed completed-page waits so load and DOMContentLoaded waits resolve immediately when the current document is already ready, with structured Eve wait timeout handling and focused coverage (#1554)

    Contributors

    @ctate

    @dnukumamras

    Original source
  • Jul 13, 2026
    • Date parsed from source:
      Jul 13, 2026
    • First seen by Releasebot:
      Jul 14, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.31.2

    agent-browser adds a WebGPU launch preset across CLI, config, environment, and MCP surfaces, with macOS and Windows hardware backends, Linux Vulkan software support, and automatic Xvfb for headed sessions. It also improves autosave state recovery while the browser stays open.

    New Features

    WebGPU launch preset - Added --webgpu across the CLI, config, environment, and MCP surfaces, with hardware backends on macOS and Windows, software Vulkan on Linux, automatic Xvfb for displayless headed sessions, and a doctor --webgpu render and screenshot probe (#1529)

    Improvements

    Added periodic restore-state autosaves while the browser remains open, preserving recent state after a browser window is closed by hand and capturing background page changes while honoring the restore save policy. The interval is configurable with AGENT_BROWSER_AUTOSAVE_INTERVAL_MS (#1509)

    Contributors

    @ctate

    Original source
  • Jun 26, 2026
    • Date parsed from source:
      Jun 26, 2026
    • First seen by Releasebot:
      Jun 27, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.31.1

    agent-browser fixes the React renderer for Next.js 16.3 Turbopack to avoid empty tree reads.

    Bug Fixes

    Fixed the React renderer so it picks the react-dom renderer instead of hardcoding renderer id 1, which prevented reading an empty tree on Next.js 16.3 Turbopack (#1491)

    Contributors

    @gaojude

    Original source
  • Jun 25, 2026
    • Date parsed from source:
      Jun 25, 2026
    • First seen by Releasebot:
      Jun 26, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.31.0

    agent-browser adds restore workflow support with stable, isolated browser state, plus safer session handling and fixes for restore and launch edge cases.

    New Features

    Restore workflow - Added --restore, --restore-save, restore validation flags, worktree-scoped session id, session info, and --namespace so agent runs can use stable, isolated, automatically restored browser state without managing state files by hand (#1486)

    Improvements

    Hardened session lifecycle handling with explicit daemon and browser compatibility checks, lifecycle status output, MCP support for restore options, and safer auto-save behavior that avoids overwriting good state after a failed restore or failed validation (#1486)

    Bug Fixes

    Fixed restore lifecycle edge cases around switching restore keys with a live browser, daemon configuration startup races, launch mode validation, and clearing restore failures after an explicit state load (#1486)

    Contributors

    @ctate

    Original source
  • Jun 25, 2026
    • Date parsed from source:
      Jun 25, 2026
    • First seen by Releasebot:
      Jun 25, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.30.1

    agent-browser fixes URL wait handling so glob patterns work against the full active URL.

    Bug Fixes

    Fixed URL waits so wait --url and waitforurl honor glob patterns such as **/dashboard against the full active URL (#1483)

    Contributors

    @gaearon

    Original source
  • Jun 24, 2026
    • Date parsed from source:
      Jun 24, 2026
    • First seen by Releasebot:
      Jun 25, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.30.0

    agent-browser adds a read command and MCP text extraction with Markdown, outlines, JSON output, headers, and browser-state reads.

    New Features

    Read command - Added agent-browser read [url] and the matching MCP tool for agent-readable text extraction. URL reads prefer Markdown, try .md and nearby llms.txt docs, support outlines, filters, raw and JSON output, headers, and domain/output safeguards; omitting the URL reads the rendered active tab DOM with current browser state (#1480)

    Contributors

    @ctate

    Original source
  • Jun 24, 2026
    • Date parsed from source:
      Jun 24, 2026
    • First seen by Releasebot:
      Jun 25, 2026
    Vercel Labs logo

    agent-browser by Vercel Labs

    v0.29.1

    agent-browser improves sandbox setup by defaulting Eve and Vercel helpers to install Chromium's required libraries.

    Improvements

    Defaulted sandbox system dependency installs so the Eve and Vercel sandbox helpers install Chromium's required libraries unless explicitly disabled, making first-run sandbox setup simpler (#1469)

    Contributors

    @ctate

    Original source
Releasebot

Curated by the Releasebot team

Releasebot is an aggregator of official product update announcements from hundreds of software vendors and thousands of sources.

Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.