Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ tool = HyperbrowserLoadTool()
`run` arguments:
- `url`: The base URL to start scraping or crawling from.
- `operation`: Optional. Specifies the operation to perform on the website. Either 'scrape' or 'crawl'. Defaults is 'scrape'.
- `params`: Optional. Specifies the params for the operation. For more information on the supported params, visit https://docs.hyperbrowser.ai/reference/sdks/python/scrape#start-scrape-job-and-wait or https://docs.hyperbrowser.ai/reference/sdks/python/crawl#start-crawl-job-and-wait.
- `params`: Optional. Specifies the params for the operation. For more information on the supported params, visit https://www.hyperbrowser.ai/docs/home or https://docs.hyperbrowser.ai.

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 both documentation URLs return 200 status codes

echo "Checking https://www.hyperbrowser.ai/docs/home"
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://www.hyperbrowser.ai/docs/home

echo "Checking https://docs.hyperbrowser.ai"
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://docs.hyperbrowser.ai

Repository: crewAIInc/crewAI

Length of output: 179


One documentation URL redirects instead of returning a 200 response.

The second URL (https://docs.hyperbrowser.ai) returns HTTP 308 (permanent redirect) rather than 200. While the redirect is followable, this adds unnecessary latency and contradicts the PR's claim that both URLs were verified to return 200 status codes. Consider using only the primary URL (https://www.hyperbrowser.ai/docs/home) which returns 200, or update the documentation to reference a URL that responds directly without redirects.

🤖 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 `@lib/crewai-tools/src/crewai_tools/tools/hyperbrowser_load_tool/README.md` at
line 42, In the README.md file for the hyperbrowser_load_tool, the params
documentation line references two URLs for the HyperBrowser documentation, but
the second URL (https://docs.hyperbrowser.ai) responds with an HTTP 308 redirect
instead of HTTP 200. Remove the second URL reference and the "or" conjunction
from the params documentation, keeping only the primary URL
(https://www.hyperbrowser.ai/docs/home) which returns a proper 200 response.