Fix 8 dead documentation links in cloudflare skill references - #95
Open
lbellows wants to merge 1 commit into
Open
Fix 8 dead documentation links in cloudflare skill references#95lbellows wants to merge 1 commit into
lbellows wants to merge 1 commit into
Conversation
All of these currently return HTTP 404, so an agent following them gets nothing back and typically retries variations of the guess. - argo/ -> argo-smart-routing/ - artifacts/api/artifactfs/ -> artifacts/guides/artifact-fs/ (page moved) - cni-locations-2026-01.pdf -> cni-locations-05-may-2026.pdf (2 files; current filename per network-interconnect/llms-full.txt) - workers-ai/realtimekit/ -> realtime/realtimekit/ - workers/tutorials/connect-to-postgres/ -> workers/tutorials/postgres/ - workers-sdk/tree/main/templates -> cloudflare/templates (repo moved) - workers-sdk fixtures/vitest-pool-workers-examples -> the Vitest integration docs page (the fixtures path no longer exists) - cloudflare/pages-example-projects -> Pages framework guides (repo deleted, no successor repo) Every replacement URL was verified to return HTTP 200. Co-Authored-By: Claude Opus 5 <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.
Problem
Nine link sites across
skills/cloudflare/references/point at URLs that currently return HTTP 404. Since these skills are explicitly retrieval-first ("Prefer retrieval over pre-training"), a dead link is worse than no link — the agent fetches, gets a 404, and typically burns turns retrying variations of the guessed path.I found these by sweeping all 349 URLs in the skill and checking every docs/GitHub link (162 of them) with
curl -L.Changes
network-interconnect/patterns.md/argo//argo-smart-routing/artifacts/README.md/artifacts/api/artifactfs//artifacts/guides/artifact-fs/network-interconnect/README.md,gotchas.mdcni-locations-2026-01.pdfcni-locations-05-may-2026.pdfrealtime-sfu/README.md/workers-ai/realtimekit//realtime/realtimekit/workers-vpc/README.md/workers/tutorials/connect-to-postgres//workers/tutorials/postgres/wrangler/gotchas.mdworkers-sdk/tree/main/templatescloudflare/templatescron-triggers/gotchas.mdworkers-sdk/.../fixtures/vitest-pool-workers-examples/workers/testing/vitest-integration/pages-functions/gotchas.mdcloudflare/pages-example-projects/pages/framework-guides/Notes on the three that aren't a straight path rename:
guides/rather thanapi/. Found viaartifacts/llms-full.txt.network-interconnect/llms-full.txt. Linking the Get started page instead would be more durable if you'd prefer that.Verification
Every replacement returns HTTP 200. After the change, a re-sweep of all 154 docs/GitHub links in
skills/cloudflare/returns zero 404s (the only remaining non-200 is the intentionalhttps://github.com/user/repo.gitplaceholder).🤖 Generated with Claude Code