Phase 0 docs 3/3: delete intentionally orphaned pages - #310
Open
kylegani wants to merge 1 commit into
Open
Conversation
This was referenced Aug 4, 2026
kylegani
force-pushed
the
kyle/phase0-docs-orphans
branch
from
August 4, 2026 09:59
b174de9 to
41a1f4a
Compare
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
kylegani
force-pushed
the
kyle/phase0-docs-orphans
branch
from
August 4, 2026 11:06
41a1f4a to
d271497
Compare
yaseenisolated
approved these changes
Aug 4, 2026
kylegani
marked this pull request as ready for review
August 4, 2026 11:58
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.
Context
Part of Phase 0 of the Agentic Cerebrium initiative: making Cerebrium fully usable by coding agents (Claude Code, Cursor, Codex, Copilot). Agents consume these docs through the Mintlify MCP server, llms.txt, and .md exports; pages that are orphaned but still fetchable feed agents stale content.
This PR is layer 3 of a 3-PR stack (one reviewable unit per layer, merge bottom-up; merging a lower layer auto-retargets the ones above):
Changes
8 pages exist in the repo but were deliberately left out of the docs.json nav (confirmed intentional). Orphaned Mintlify pages remain reachable by direct URL and by agents, so this deletes them outright:
changelog.mdxgetting-started/collaborating.mdxintegrations/vercel.mdxother-topics/fitting-large-models-on-small-gpus.mdxv4/examples/aiVoiceAgents.mdx(near-exact dupe of realtime-voice-agents)v4/examples/langchain.mdxv4/examples/mistral-vllm.mdxv4/examples/streaming-falcon-7B.mdxCleanup that keeps the site consistent:
v4/examples/featured.mdx: removed the "Advanced concepts" tab whose only two cards linked to the deleted mistral-vllm and streaming-falcon-7B pages.docs.json: added 5 redirects for deleted URLs with obvious surviving targets, following the repo's existing redirect patterns (aiVoiceAgents -> realtime-voice-agents, langchain -> langchain-langsmith, mistral-vllm -> openai-compatible-endpoint-vllm, streaming-falcon-7B -> featured, fitting-large-models -> introduction). The existing v3/legacy redirects already pointed AWAY from these pages, so none break./changelog,/getting-started/collaborating,/integrations/vercel: no sensible surviving target exists, so they will 404 by design. Flag in review if any of the three should redirect somewhere instead.Inbound-reference audit: repo-wide grep found no remaining links to any deleted page (the only two, in featured.mdx, are removed here; integrations/vercel.mdx also referenced mistral-vllm but is itself deleted).
How to test this layer
python3 -m json.tool docs.json > /dev/nullparses./changelog,/getting-started/collaborating,/integrations/vercelreturn 404;/v4/examples/featuredrenders without the "Advanced concepts" tab and with no broken cards.grep -rn "mistral-vllm\|streaming-falcon-7B\|aiVoiceAgents\|collaborating" --include="*.mdx" .shows no links to deleted pages.Stack position: 3 of 3 (base: kyle/phase0-docs-content). Merging this merges the layers below it.
🤖 Generated with Claude Code