docs(edge): fix dead Stagehand docs link in stagehandtool (4 langs)#6353
docs(edge): fix dead Stagehand docs link in stagehandtool (4 langs)#6353sanjibani wants to merge 1 commit into
Conversation
The link to docs.stagehand.dev/get_started/introduction returned 404 after the Stagehand docs were restructured. The canonical introduction page is now at docs.stagehand.dev/v3/first-steps/introduction (200). Updated ar/en/ko/pt-BR translations in docs/edge/.
There was a problem hiding this comment.
Summary: This PR updates Stagehand documentation links across localized MDX files and does not modify executable 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 links.
📝 WalkthroughWalkthroughStagehandTool descriptions in four localized docs now point to the Stagehand v3 first-steps introduction URL. The surrounding text and structure remain unchanged. ChangesStagehandTool doc link update
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
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/en/tools/web-scraping/stagehandtool.mdx`:
- Line 11: Update the remaining stale Stagehand links in the versioned docs so
they all point to the current Stagehand introduction URL. Search the affected
versioned directories and locales for the deprecated
docs.stagehand.dev/get_started/introduction reference, and replace it with
docs.stagehand.dev/v3/first-steps/introduction. Keep the fix consistent across
the StagehandTool-related markdown files and any other docs entries using the
old link.
🪄 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: b744af32-dc95-4b08-b5eb-2bb90e60d177
📒 Files selected for processing (4)
docs/edge/ar/tools/web-scraping/stagehandtool.mdxdocs/edge/en/tools/web-scraping/stagehandtool.mdxdocs/edge/ko/tools/web-scraping/stagehandtool.mdxdocs/edge/pt-BR/tools/web-scraping/stagehandtool.mdx
| # Overview | ||
|
|
||
| The `StagehandTool` integrates the [Stagehand](https://docs.stagehand.dev/get_started/introduction) framework with CrewAI, enabling agents to interact with websites and automate browser tasks using natural language instructions. | ||
| The `StagehandTool` integrates the [Stagehand](https://docs.stagehand.dev/v3/first-steps/introduction) framework with CrewAI, enabling agents to interact with websites and automate browser tasks using natural language instructions. |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Find any remaining references to the old Stagehand docs URL.
# Test: Search for old URL pattern across docs. Expect: No matches (or identified for follow-up).
rg -n "docs.stagehand.dev/get_started/introduction" docs/
# Also check for any other Stagehand doc URL patterns that might need updating
rg -n "docs.stagehand.dev" docs/ | grep -v "v3/first-steps/introduction"Repository: crewAIInc/crewAI
Length of output: 42198
Update remaining stale Stagehand documentation links across all versioned directories.
Numerous files in docs/v1.10.0 through docs/v1.15.0 across all locales (en, pt-BR, ko, ar) still reference the deprecated URL docs.stagehand.dev/get_started/introduction. Ensure these versioned docs are updated to v3/first-steps/introduction to prevent broken links for users viewing historical versions.
🤖 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/en/tools/web-scraping/stagehandtool.mdx` at line 11, Update the
remaining stale Stagehand links in the versioned docs so they all point to the
current Stagehand introduction URL. Search the affected versioned directories
and locales for the deprecated docs.stagehand.dev/get_started/introduction
reference, and replace it with docs.stagehand.dev/v3/first-steps/introduction.
Keep the fix consistent across the StagehandTool-related markdown files and any
other docs entries using the old link.
Fixes
docs.stagehand.dev/get_started/introduction(404) →docs.stagehand.dev/v3/first-steps/introduction(200) in ar/en/ko/pt-BR edge docs. Stagehand restructured their docs.Summary by CodeRabbit