Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds documentation for Upstash Box’s managed browser features and integrates the new “Browser” section into the docs navigation and LLM-friendly exports.
Changes:
- Added new Browser docs pages (overview, tabs, reading pages, AI actions, live view, recordings, CDP connect)
- Updated navigation/index files to include the Browser section and links
- Enhanced the Playwright scraping guide with a note pointing to the built-in browser/CDP option
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| llms.txt | Adds Browser-related links to the LLM index list |
| llms-full.txt | Adds full content for Browser docs and related notes into the LLM corpus |
| docs.json | Adds “Browser” group and pages to docs navigation |
| box/overall/security.mdx | Documents tokenized Browser URLs (Live View + CDP) and their security implications |
| box/overall/browser/overview.mdx | New Browser overview page with feature summary and entry points |
| box/overall/browser/tabs.mdx | New docs for tab creation, navigation, listing, and closing |
| box/overall/browser/reading-pages.mdx | New docs for content reading, screenshots, and extraction |
| box/overall/browser/ai-actions.mdx | New docs for observe/act/run AI actions |
| box/overall/browser/live-view.mdx | New docs for Live View URL generation and embedding |
| box/overall/browser/recordings.mdx | New docs for recordings lifecycle and playback |
| box/overall/browser/connect.mdx | New docs for connecting over CDP with Playwright/Puppeteer/Stagehand |
| box/guides/web-scraping-playwright.mdx | Adds a note about the built-in browser and CDP alternative |
Suppressed comments (3)
llms-full.txt:1
- Same issue as in the MDX source: the inline code span
browser: trueis split across lines, which is invalid Markdown and will render incorrectly in the LLM export. Keep the inline code on a single line or change it to a code block.
llms-full.txt:1 - The LLM export includes the same malformed Markdown table (
|| ...). This will likely degrade readability/parseability in downstream consumers. Update to standard|-delimited table syntax.
llms-full.txt:1 - In
llms-full.txt, these hrefs use/box/...while surrounding links in the same export use/docs/box/...(e.g., earlier references to/docs/box/overall/...). For consistency and to avoid broken links in the export, align these hrefs with the/docs/box/...format used elsewhere inllms-full.txt.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+7
to
+12
| <Note> | ||
| Boxes also ship a managed, pre-installed browser. Create one with `browser: | ||
| true` and drive Chromium through the SDK, or [connect Playwright over | ||
| CDP](/box/overall/browser/connect) with no install step. This guide shows | ||
| the manual route, where the box's agent installs and controls Playwright | ||
| itself. See [Browser](/box/overall/browser/overview) for the built-in one. |
Comment on lines
+107
to
+111
| | Method | Does | Best for | | ||
| |---|---|---| | ||
| | `observe` | Finds elements, executes nothing | Inspecting a page, building custom loops | | ||
| | `act` | Executes one action | Flows where your code decides each step | | ||
| | `run` | Executes a whole task autonomously | Open-ended or navigation-heavy tasks | |
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.
No description provided.