docs(home): point Kane CLI cards on the docs home page to the Mintlify site - #3324
Open
anubhavsinghmaar wants to merge 1 commit into
Open
Conversation
…y site 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 readers clicking a Kane CLI card landed on the wrong stack. Repoint all eight Kane CLI cards from /support/docs/<slug>/ to /docs/<slug> (no trailing slash, the canonical form on the Mintlify site). Every other product card is untouched and still points at /support/docs/. Note: /docs/kane-cli-introduction is not live on the Mintlify site yet; the Kane CLI introduction is currently served at /docs. That page needs to be added or redirected on the Mintlify side for the Getting Started card to resolve. Co-Authored-By: Claude Opus 5 (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.
What
Repoints all eight Kane CLI cards in the product grid on the docs home page (
src/pages/docs.js) from/support/docs/<slug>/to/docs/<slug>.Why
Kane CLI documentation is served by the Mintlify stack at
/docs/, not by Docusaurus at/support/docs/. The home page still linked to the Docusaurus copies, so anyone clicking a Kane CLI card landed on the wrong stack.Changes
/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-referenceNo trailing slash, which is the canonical form on the Mintlify site. Only the Kane CLI card changed — the other 105
/support/docs/links on the page are untouched.Testing
Verified on a local Docusaurus dev server (
:3001); the compiled home page renders all eight hrefs as/docs/kane-cli-*.Live status of the targets on
www.testmuai.com: seven of eight return 200./docs/kane-cli-introductioncurrently returns 404 in production. Onstage-mintlifythe Kane CLI introduction isdocs/index.mdxwithslug: /, so it is served at/docs— there is nokane-cli-introductionpage on that stack.The Getting Started card will not resolve until either that page is added on the Mintlify side or a redirect
/docs/kane-cli-introduction→/docsis configured. Happy to raise that separately.