Retire: redirect the standalone fledge site to the CorvidLabs hub#421
Merged
Conversation
The fledge marketing site and docs are fully migrated to the CorvidLabs
hub. Every route on this site now renders a redirect page (meta-refresh +
canonical + a visible "This site has moved to CorvidLabs β" link for
no-JS users) instead of its old content:
- / and all marketing pages (plugins, blog, examples, 404, rss.xml)
β https://corvidlabs.github.io/corvidlabs-site/fledge/
- /docs and /docs/* β https://corvidlabs.github.io/corvidlabs-site/fledge/docs/
- legacy mdBook *.html paths β the hub docs index
Dynamic routes keep their getStaticPaths enumeration so every retired
URL still builds and redirects. The site keeps building and deploying via
the existing Pages workflow.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
Contributor
There was a problem hiding this comment.
β Corvin says...
_
<(^\ .oO(Caw! ^v^)
|/(\
\(\\
" "\\
"Caw! Your code sparkles like a dropped french fry."
CI Summary
| Check | Status |
|---|---|
| Dependency Audit | β Passed |
| Integration (3 OS) | β Passed |
| Lint (fmt + clippy) | β Passed |
| Spec Validation | β Passed |
| Tests (3 OS) | β Passed |
Powered by corvid-pet
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 standalone fledge site (Astro, GitHub Pages at
corvidlabs.github.io/fledge/) is fully superseded β its marketing and docs are migrated to the CorvidLabs hub. This makes every route on the site redirect to the hub instead of serving its old content.Each redirect page includes a
<meta http-equiv="refresh">, a<link rel="canonical">to the hub URL, and a visible "This site has moved to CorvidLabs β" link for no-JS users (plus<meta robots noindex>).Redirect mapping
/(root)https://corvidlabs.github.io/corvidlabs-site/fledge//plugins,/plugins/*/blog,/blog/*/examples,/examples/*/rss.xml/docs,/docs/*https://corvidlabs.github.io/corvidlabs-site/fledge/docs/*.html(e.g./ai.html,/getting-started/installation.html)Deep doc URLs collapse to the docs index (per-page mapping intentionally not done).
How
src/components/Redirect.astro(shared full-page redirect) +src/data/hub.ts(hub URL constants).src/pages/now renders<Redirect>; dynamic routes keep theirgetStaticPathsenumeration so all retired URLs still build.scripts/generate-doc-redirects.tsrepointed to emit the hub docs index directly (no internal hop) and skipindex.mdso the root keeps pointing at marketing.Test Plan
bun run buildpasses (101 HTML pages built)bun testpasses (49 tests)astro checkβ 0 errors / 0 warningsplugins/weather), and docs (docs/index,docs/lanes) each have meta-refresh + canonical pointing at the correct hub URL/fledge/docs/*pathsπ€ Generated with Claude Code