Skip to content

Commit 31a75a7

Browse files
committed
fix(shell-docs): point Deep Agents CTA at /deepagents and add legacy redirects
The whats-new/langgraph-deep-agents CTA pointed at /langgraph/deep-agents, which 404s. With the placeholder now live at /deepagents, re-point the CTA there and add LEGACY_CHAINS_EXACT entries so old upstream URLs (/langgraph/deep-agents and /langgraph-python/deep-agents) redirect to the canonical /deepagents placeholder. Supersedes the standalone CTA-removal PR CopilotKit#4832; this commit consolidates that fix into the backport PR so a single PR covers all Deep Agents URL wiring.
1 parent 6f5c7c2 commit 31a75a7

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

showcase/shell-docs/src/content/docs/whats-new/langgraph-deep-agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ CopilotKit brings your Deep Agents to the frontend. Users can see the agent's th
2727

2828
### Get Started
2929

30-
- [Deep Agents Guide](/langgraph/deep-agents)
30+
- [Deep Agents Guide](/deepagents)
3131

3232
</div>
3333
</div>

showcase/shell-docs/src/lib/seo-redirects.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,21 @@ const LEGACY_CHAINS_EXACT: RedirectEntry[] = [
535535
source: "/coagents/videos",
536536
destination: "/langgraph-python/videos",
537537
},
538+
// Deep Agents was promoted from a langgraph subpath to its own
539+
// top-level integration. Catch the legacy (langgraph) and the
540+
// post-slug-rename (langgraph-python) variants both, pointing them at
541+
// the canonical /deepagents placeholder. When the showcase
542+
// integration ships, these targets continue to resolve unchanged.
543+
{
544+
id: "L12",
545+
source: "/langgraph/deep-agents",
546+
destination: "/deepagents",
547+
},
548+
{
549+
id: "L13",
550+
source: "/langgraph-python/deep-agents",
551+
destination: "/deepagents",
552+
},
538553
];
539554

540555
// ---------------------------------------------------------------------------

0 commit comments

Comments
 (0)