[docs-agent] Prefix /docs/ on wallet links breaking lychee#1268
Closed
JackReacher0807 wants to merge 2 commits intomainfrom
Closed
[docs-agent] Prefix /docs/ on wallet links breaking lychee#1268JackReacher0807 wants to merge 2 commits intomainfrom
JackReacher0807 wants to merge 2 commits intomainfrom
Conversation
Many internal links currently start with /wallets/... when they should start with /docs/wallets/.... They work on the live site due to fallback formatting, but lychee fails on every PR. Fixes 27 link instances across 6 wallets MDX files (third-party signer pages and the Privy signer-migration guides) and updates content/wallets/CONTRIBUTING.md so future contributors see the correct format. Refs DOCS-68 Requested-by: @dslovinsky
🔗 Preview Mode
|
Collaborator
|
closing as it's a duplicate of #1267 |
🔍 Link CheckStatus: ❌ Failed Summary
Broken links (7) — click to expandErrors per inputErrors in ./content/tutorials/snapshots/avalanche.mdx
Errors in ./content/wallets/wallet-integrations/privy/jwt-auth-migration.mdx
Errors in ./content/api-reference/base/base-api-faq.mdx
Errors in ./content/wallets/wallet-integrations/privy/signer-migration-overview.mdx
Errors in ./content/tutorials/snapshots/aptos.mdx
Errors in ./content/api-reference/arbitrum-nova/arbitrum-nova-deprecation-notice.mdx
Errors in ./content/tutorials/getting-started/developer-best-practices/choosing-a-web3-network.mdx
|
dslovinsky
previously approved these changes
Apr 27, 2026
@dslovinsky you are listed as the originator of this docs request (via the Requested-by trailer on a docs-agent commit). Per the docs-agent self-review policy, the originator can't approve their own request. Please ask another team member to review.
Collaborator
Author
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.
Summary
Many internal links currently start with
/wallets/...when they should start with/docs/wallets/.... They render correctly on the live site thanks to a fallback in the URL handling, but the lychee link checker (run on every PR) treats them as broken and fails.This PR prefixes
/docs/to every offending wallet link (27 instances across 6 MDX files):content/wallets/pages/third-party/signers/openfort.mdxcontent/wallets/pages/third-party/signers/privy.mdxcontent/wallets/pages/third-party/signers/turnkey.mdxcontent/wallets/wallet-integrations/privy/signer-migration-overview.mdxcontent/wallets/wallet-integrations/privy/jwt-auth-migration.mdxcontent/wallets/wallet-integrations/privy/react-migration.mdxIt also updates
content/wallets/CONTRIBUTING.mdso the contributor guidance reflects the correct format. The previous wording told writers to use/wallets/...as the relative-link form, which is how this kept getting reintroduced (most recently in #1230, before that re-creeping into the third-party signer pages after the link-normalization PR #1068).Verification:
grep -rnE '\]\(/wallets[/)#]' content/now returns no matches.Linear
DOCS-68 — https://linear.app/alchemyapi/issue/DOCS-68/prepend-docs-to-wallet-links-breaking-lychee-link-checker
Requested by
@dslovinsky (via Slack thread)