docs: #2380 fix stale README documentation links and keeperhub/ paths - #2385
Open
subheeksh5599 wants to merge 1 commit into
Open
docs: #2380 fix stale README documentation links and keeperhub/ paths#2385subheeksh5599 wants to merge 1 commit into
subheeksh5599 wants to merge 1 commit into
Conversation
…erHub#2380) Repoint the three Documentation links that 404 on staging: - Quick Start Guide: docs/getting-started/quickstart.md -> docs/getting-started/index.md - Core Concepts: docs/intro/concepts.md -> docs/concepts.md - Workflow Examples: docs/workflows/examples.md -> docs/workflows/index.md Drop the keeperhub/ prefix from the three places that carry it, a path that does not exist in the tree: - README.md:197 Services table App source: app/, keeperhub/ -> app/ - README.md:228 Plugin System sentence: keeperhub/plugins/ -> plugins/ - README.md:262 Metrics Reference link: keeperhub/lib/metrics/METRICS_REFERENCE.md -> lib/metrics/METRICS_REFERENCE.md All seven relative links in the README now resolve against the tree.
subheeksh5599
temporarily deployed
to
staging
September 10, 2026 03:39 — with
GitHub Actions
Inactive
subheeksh5599
temporarily deployed
to
staging
September 10, 2026 03:39 — with
GitHub Actions
Inactive
subheeksh5599
temporarily deployed
to
staging
September 10, 2026 03:39 — with
GitHub Actions
Inactive
subheeksh5599
temporarily deployed
to
staging
September 10, 2026 03:39 — with
GitHub Actions
Inactive
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.
Fixes #2380.
Repoints the three Documentation links that 404 on
staging, and drops thekeeperhub/prefix from the three places that carry it. There is no top-levelkeeperhub/directory in the tree.Documentation links (all three returned 404):
docs/getting-started/quickstart.md->docs/getting-started/index.mddocs/intro/concepts.md->docs/concepts.md(there is nodocs/intro/folder; the page is at the docs root)docs/workflows/examples.md->docs/workflows/index.md(the workflows folder has creating, templating, schema-reference, import-export, hub and marketplace)The replacement targets match the docs nav:
docs/_meta.tsmapsconceptsto "Core Concepts" anddocs/getting-started/_meta.tslistsindexas the Overview.keeperhub/prefix (nonexistent path), three places:README.md:197Services table, App source:app/,keeperhub/->app/. The App is the Next.js application andapp/is its directory; the second path never existed.README.md:228Plugin System sentence:`keeperhub/plugins/`->`plugins/`README.md:262Metrics Reference link:keeperhub/lib/metrics/METRICS_REFERENCE.md->lib/metrics/METRICS_REFERENCE.md(the file exists at that path)Verification on the branch:
git cat-file -e; the four that were broken now resolve, the three that were already fine are unchanged).keeperhub/reference remains in the README outside the realkeeperhub-*service directories.npx tsx scripts/check-api-docs-routes.tsreports no docs-vs-code drift.Docs only, no code change.