docs(home): point Kane CLI cards on the docs home page to the Mintlify site - #3298
Open
anubhavsinghmaar wants to merge 1 commit into
Open
Conversation
…y site The Kane CLI documentation is served by the Mintlify stack at /docs/, not by Docusaurus at /support/docs/. The product grid on the docs home page still linked to the Docusaurus copies, so clicking "Kane CLI" took readers to the wrong stack. Repoint all eight Kane CLI cards to /docs/<slug> (no trailing slash, which is the canonical form on the Mintlify site - /docs/<slug>/ 308-redirects to it). Every other product card is untouched and still points at /support/docs/. "Getting Started" now targets /docs/kane-cli-introduction, the new home of the Kane CLI introduction page (previously served at the Mintlify site root). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This was referenced Jul 27, 2026
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.
What
The product grid on the docs home page (
src/pages/docs.js) linked all eight Kane CLI cards to/support/docs/kane-cli-*/(Docusaurus). Kane CLI documentation is actually served by the Mintlify stack at/docs/, so clicking "Kane CLI" on the index took readers to the wrong stack.This repoints only the Kane CLI card. All 18 other product cards are untouched and still point at
/support/docs/./support/docs/kane-cli-introduction//docs/kane-cli-introduction/support/docs/kane-cli-installation//docs/kane-cli-installation/support/docs/kane-cli-quickstart//docs/kane-cli-quickstart/support/docs/kane-cli-writing-objectives//docs/kane-cli-writing-objectives/support/docs/kane-cli-generate//docs/kane-cli-generate/support/docs/kane-cli-checkpoints//docs/kane-cli-checkpoints/support/docs/kane-cli-agent-mode//docs/kane-cli-agent-mode/support/docs/kane-cli-cli-reference//docs/kane-cli-cli-referenceNotes
https://www.testmuai.com/docs/<slug>/308-redirects to/docs/<slug>, so the slash-less form avoids a redirect hop.Getting Startedtargets/docs/kane-cli-introduction, the new home of the Kane CLI introduction page. That page currently serves the Mintlify site root and is being moved in the companionstage-mintlifyPR — merge that one first, or this link 404s.<a href>elements, so the paths are root-absolute and bypass the DocusaurusbaseUrl(/support/) — which is what we want, since/docs/is a different stack. Consequence: they do not resolve against a localdocusaurus startserver, only against the deployed site.Verification
docusaurus startcompiles clean (only the pre-existingall-apis.jsonprebuild error, unrelated)./docs/*, the other 105 unchanged at/support/docs/*.stage-mintlify.🤖 Generated with Claude Code