Merged
Conversation
|
Contributor
There was a problem hiding this comment.
No issues found across 3 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant User as User (Terminal)
participant CLI as @browserbasehq/browse-cli
participant Browser as Isolated Local Browser
participant Chrome as Existing Debuggable Chrome
Note over User,Chrome: Command: browse env local
alt Default behavior
User->>CLI: browse env local
CLI->>Browser: CHANGED: Launch isolated browser instance
Browser-->>CLI: Session started
else NEW: Auto-discovery mode
User->>CLI: browse env local --auto-connect
CLI->>Chrome: Search for running debuggable instance
Chrome-->>CLI: Attach via CDP
else Explicit attachment
User->>CLI: browse env local <port|url>
CLI->>Chrome: Connect to specific CDP target
Chrome-->>CLI: Session attached
end
CLI-->>User: Browser environment ready (Stagehand)
shrey150
approved these changes
Apr 1, 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.
Prepare the next browse-cli release by versioning the package on
main.What this PR does:
packages/cli/package.jsonto0.5.0After this PR merges, the
Releaseworkflow onmainwill publish@browserbasehq/browse-cli@0.5.0from that exact commit usingpnpm pack+npm publish --provenance.Summary by cubic
Publish
@browserbasehq/browse-cli@0.5.0, defaultingbrowse env localto an isolated browser and adding--auto-connectto opt into attaching to an existing debuggable Chrome; explicit CDP attach viabrowse env local <port|url>remains unchanged.browse env local --auto-connect.Written for commit 795c005. Summary will update on new commits. Review in cubic