[docs-agent] Update wallets CONTRIBUTING.md to require /docs/ prefix on relative links#1269
Merged
SahilAujla merged 1 commit intomainfrom Apr 27, 2026
Merged
Conversation
…on relative links The previous wording told contributors to begin relative links with /wallets/..., which is the source of repeated regressions: links missing the /docs/ prefix render fine on the live site (URL-handling fallback) but fail the lychee link checker, blocking CI on every PR. Updates two locations in content/wallets/CONTRIBUTING.md to use /docs/wallets/... and adds a brief note explaining why the prefix is required. Mirrors the link-fix pattern landed in PR #1267. Refs DOCS-68 Requested-by: @SahilAujla
🔗 Preview Mode
|
dslovinsky
approved these changes
Apr 27, 2026
🔍 Link CheckStatus: ❌ Failed Summary
Broken links (9) — click to expandErrors per inputErrors in ./content/api-reference/base/base-api-faq.mdx
Errors in ./content/tutorials/snapshots/aptos.mdx
Errors in ./content/wallets/wallet-integrations/privy/jwt-auth-migration.mdx
Errors in ./content/tutorials/snapshots/avalanche.mdx
Errors in ./content/wallets/pages/recipes/onramp-funds.mdx
Errors in ./content/wallets/wallet-integrations/privy/signer-migration-overview.mdx
Errors in ./content/api-reference/arbitrum-nova/arbitrum-nova-deprecation-notice.mdx
Errors in ./content/tutorials/smart-wallets/learn-account-abstraction/introduction-to-account-abstraction.mdx
|
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
The wallets contributor guide previously instructed writers to begin relative links with
/wallets/..., which was the source of repeated lychee CI failures. Links missing the/docs/prefix render fine on the live site thanks to URL-handling fallback, but the lychee link checker (run on every PR) treats them as broken and fails CI.This PR updates
content/wallets/CONTRIBUTING.mdin two places:/wallets/...to/docs/wallets/...and add a one-line note explaining why the/docs/prefix is required.[/wallets/authentication]to[/docs/wallets/authentication]so the bullet matches the new rule.This is purely a guideline correction. No other content changes. The link instances themselves were already fixed across MDX files in #1267.
Linear
DOCS-68 — https://linear.app/alchemyapi/issue/DOCS-68/prepend-docs-to-wallet-links-breaking-lychee-link-checker
Requested by
@SahilAujla (via Slack thread)