[GRO-1938] feat: Add Browserbase Eve extension - #88
Merged
Kylejeong2 merged 8 commits intoJul 22, 2026
Conversation
Kylejeong2
force-pushed
the
kylejeong/gro-1938-build-browserbase-eve-extension
branch
from
July 20, 2026 21:29
5bc6085 to
ec7b841
Compare
Kylejeong2
marked this pull request as ready for review
July 21, 2026 20:13
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 23ba324. Configure here.
shrey150
approved these changes
Jul 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
@browserbasehq/eveextension built from Eve primitivesWhy
GRO-1938 calls for a Browserbase extension for Eve. This gives Eve agents one installable package for lightweight web discovery and retrieval plus persistent, interactive Browserbase sessions.
Stagehand is configured to use Browserbase Model Gateway, so consumers only need
BROWSERBASE_API_KEYfor browser sessions and Stagehand inference. The example uses Vercel AI Gateway for the outer Eve agent.Validation
pnpm checkpnpm --filter browserbase-eve-example typecheckpnpm --filter browserbase-eve-example buildobservesmoke test through Browserbase Model Gatewaygit diff --checkLinear: GRO-1938
Note
Medium Risk
New external integration surface (API keys, billable browser sessions, session release correctness) and session concurrency logic; scope is additive (new package + example) with no changes to existing production paths.
Overview
Introduces
@browserbasehq/eve, a publishable Eve extension that wires Browserbase Search/Fetch and Stagehand browser tools into agent workflows. Agents get namespaced tools for search, fetch, create/stop session, navigate, observe, act, extract, and multi-step agent runs.Persistent sessions are tracked in Eve durable state (
browser-session); each tool reconnects via keep-alive Browserbase sessions, disconnects Stagehand after one operation, and stop_session requests release with polling. Parallel tool calls in a single step are serialized with an in-memory session lock; stale sessions are cleared when the remote session is terminal.Stagehand uses Browserbase Model Gateway (only
BROWSERBASE_API_KEYrequired for browser + inference). Config covers model, timeout, and proxies.Adds a pnpm workspace linking
packages/eve-browserbasetoexamples/integrations/vercel/eve-example(runnable Eve agent, env template, Node 24). The Vercel integrations README now documents this as a third example.Reviewed by Cursor Bugbot for commit a84b82a. Bugbot is set up for automated code reviews on this repo. Configure here.