Skip to content

docs(edge): fix dead Hyperbrowser SDK reference links in hyperbrowserloadtool (4 langs)#6354

Open
sanjibani wants to merge 1 commit into
crewAIInc:mainfrom
sanjibani:docs/fix-hyperbrowser-load-tool-edge
Open

docs(edge): fix dead Hyperbrowser SDK reference links in hyperbrowserloadtool (4 langs)#6354
sanjibani wants to merge 1 commit into
crewAIInc:mainfrom
sanjibani:docs/fix-hyperbrowser-load-tool-edge

Conversation

@sanjibani

@sanjibani sanjibani commented Jun 26, 2026

Copy link
Copy Markdown

Replaces docs.hyperbrowser.ai/reference/sdks/python/{scrape,crawl}#start-{scrape,crawl}-job-and-wait (both 404) with www.hyperbrowser.ai/docs/home and docs.hyperbrowser.ai in ar/en/ko/pt-BR edge docs. Matches the replacements in #6256 for the lib README.

Summary by CodeRabbit

  • Documentation
    • Updated the “Supported Parameters” / equivalent localized sections in the web scraping docs to point the scraping parameters link to the main Hyperbrowser documentation page.
    • Kept the crawling parameters link and the rest of the content unchanged across English, Arabic, Korean, and Brazilian Portuguese versions.

The two reference links (scrape/crawl with anchors) were 404. Replace with
www.hyperbrowser.ai/docs/home and docs.hyperbrowser.ai (both 200), matching
the URL replacements in crewAIInc#6256 which fixed the lib README. The edge docs
files were missed by the earlier PR.

@corridor-security corridor-security Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary: This PR updates documentation links for Hyperbrowser scraping parameters and does not change runtime code, authentication, authorization, data handling, or network request behavior.

Risk: Low risk. No exploitable security vulnerabilities were identified because the changes are limited to static documentation link updates.

@coderabbitai

coderabbitai Bot commented Jun 26, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

The HyperbrowserLoadTool docs in English, Arabic, Korean, and Brazilian Portuguese now point the Scrape Parameters link to https://www.hyperbrowser.ai/docs/home instead of the previous docs.hyperbrowser.ai scrape reference URL.

Changes

Localized HyperbrowserLoadTool docs link update

Layer / File(s) Summary
Update scrape-parameter links
docs/edge/*/tools/web-scraping/hyperbrowserloadtool.mdx
The supported-parameters section in the EN, AR, KO, and PT-BR docs replaces the Scrape Parameters link target with https://www.hyperbrowser.ai/docs/home.
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly matches the PR’s main change: fixing dead Hyperbrowser link references in the hyperbrowserloadtool docs across four languages.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@docs/edge/ar/tools/web-scraping/hyperbrowserloadtool.mdx`:
- Around line 75-76: The crawl parameters link in the Hyperbrowser docs is still
pointing to a URL that redirects permanently, so update the markdown link in the
HyperbrowserLoadTool content to a stable documentation destination. Use the
existing scrape link and the crawl link entry in the same list as the place to
change, and replace the crawl URL with a valid main Hyperbrowser docs page or
another non-redirecting canonical page.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 774e585d-0c13-49f0-b353-cf381f70a04b

📥 Commits

Reviewing files that changed from the base of the PR and between f364a7d and f4ce22d.

📒 Files selected for processing (4)
  • docs/edge/ar/tools/web-scraping/hyperbrowserloadtool.mdx
  • docs/edge/en/tools/web-scraping/hyperbrowserloadtool.mdx
  • docs/edge/ko/tools/web-scraping/hyperbrowserloadtool.mdx
  • docs/edge/pt-BR/tools/web-scraping/hyperbrowserloadtool.mdx

Comment on lines +75 to 76
- [معاملات الاستخراج](https://www.hyperbrowser.ai/docs/home)
- [معاملات الزحف](https://docs.hyperbrowser.ai/reference/sdks/python/crawl#start-crawl-job-and-wait)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify crawl URL status
curl -s -o /dev/null -w "%{http_code}" "https://docs.hyperbrowser.ai/reference/sdks/python/crawl#start-crawl-job-and-wait"
echo ""
curl -s -o /dev/null -w "%{http_code}" "https://www.hyperbrowser.ai/docs/home"
echo ""

Repository: crewAIInc/crewAI

Length of output: 162


Update the crawl parameters link as the old URL returns a permanent redirect.

The crawl link on Line 76 (https://docs.hyperbrowser.ai/reference/sdks/python/crawl#start-crawl-job-and-wait) returns a 308 Permanent Redirect, confirming it is unstable and inconsistent with the fix applied to the scrape link. Replace it with a valid documentation URL, such as the main Hyperbrowser documentation page, to ensure users reach stable content.

Current code at Line 76
- [معاملات الزحف](https://docs.hyperbrowser.ai/reference/sdks/python/crawl#start-crawl-job-and-wait)
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@docs/edge/ar/tools/web-scraping/hyperbrowserloadtool.mdx` around lines 75 -
76, The crawl parameters link in the Hyperbrowser docs is still pointing to a
URL that redirects permanently, so update the markdown link in the
HyperbrowserLoadTool content to a stable documentation destination. Use the
existing scrape link and the crawl link entry in the same list as the place to
change, and replace the crawl URL with a valid main Hyperbrowser docs page or
another non-redirecting canonical page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant