docs(guides): update stale Cursor link to cursor.com#2771
Open
santhiprakash wants to merge 1 commit into
Open
Conversation
- Problem: docs/guides/skills.mdx and docs/guides/website-to-video.mdx still link to https://cursor.sh, which now returns a 308 redirect to https://cursor.com. - Fix: replace the two cursor.sh URLs with cursor.com so agent users land on the current canonical Cursor homepage. - Verification: curl -I -L https://cursor.sh showed HTTP/2 308 to https://cursor.com, and curl -I https://cursor.com returns 200. python3 ../scripts/preflight_ship.py passed for both files.
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.
What
Update the Cursor homepage link from the legacy
https://cursor.shdomain to the current canonicalhttps://cursor.comindocs/guides/skills.mdxanddocs/guides/website-to-video.mdx.Why
cursor.shnow returns an HTTP 308 redirect tocursor.com. Keeping the old domain in install/agent-compatibility docs is a stale link that sends users through an unnecessary redirect and could eventually break if the redirect is removed.How
Replaced the two occurrences of
[Cursor](https://cursor.sh)with[Cursor](https://cursor.com).Test plan
Problem
Docs still point to the legacy
cursor.shdomain.Triage / Root cause
Cursor moved their canonical homepage to
cursor.com;cursor.shnow only redirects.Fix
Sync the two docs references to
https://cursor.com.Verification
curl -I -L https://cursor.sh→HTTP/2 308tohttps://cursor.com/curl -I https://cursor.com→HTTP/2 200python3 ../scripts/preflight_ship.pypassed for bothdocs/guides/skills.mdxanddocs/guides/website-to-video.mdx(bug marker still present, fix marker absent).git show upstream/main:<file>confirmed the stale links are on currentmain.gh pr list --state all --search 'cursor.sh OR cursor.com'returned only unrelated closed fix(cli): document Cursor skills install path #645 and marketplace-branding feat(plugins): add Cursor plugin manifest + refresh marketplace branding #461).Notes / Risks
None. No generated files or specs touched.