Conversation
…> skillBridge) The lowercase URLs return 404 because GitHub Pages paths are case-sensitive. The repo is named "skillBridge" (capital B), so the canonical Pages URL is https://heznpc.github.io/skillBridge/. $ curl -sLo /dev/null -w "%{http_code}\n" https://heznpc.github.io/skillbridge/ 404 $ curl -sLo /dev/null -w "%{http_code}\n" https://heznpc.github.io/skillBridge/ 200 Fixed two places that point at github.io with the wrong case: - README.md L7 — the "project landing page" link near the top - store-assets/STORE_LISTING.md L103 — the "Full privacy policy" link in the published Chrome Web Store listing copy Out of scope: The repo also has 47 references to github.com/heznpc/skillbridge (lowercase b) across 15 files. Those are NOT broken — github.com canonicalizes repo names case-insensitively and silently redirects — but they're non-canonical. Fixing all of them is a much bigger sweep and a separable concern; track separately if desired. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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 README and the Chrome Web Store listing copy both link to the project landing page using the lowercase path
https://heznpc.github.io/skillbridge/. GitHub Pages paths are case-sensitive, and the repo is namedskillBridge(capital B), so the lowercase URL returns a hard 404.Verified
This is what caused
WebFetch https://heznpc.github.io/skillbridge/to fail at the start of the recent landing-page debugging session.Changes
Two locations, one character each:
README.mdL7 — the "project landing page" link near the top of the readmestore-assets/STORE_LISTING.mdL103 — the "Full privacy policy" link inside the published Chrome Web Store listing copyOut of scope
The repo also has 47 references to
github.com/heznpc/skillbridge(lowercaseb) across 15 files (CONTRIBUTING.md, README badges, manifest.json, the i18n READMEs, etc.). These are NOT broken —github.comcanonicalizes repository names case-insensitively and silently redirects, so links and badges work fine. They are simply non-canonical.Fixing all of those would be a much bigger sweep and a separable concern. If we want canonical consistency across the whole repo, that should be a dedicated PR (
chore: normalize repo URL casing across all docs). Tracking separately rather than scope-creeping this PR.Test plan
🤖 Generated with Claude Code