Skip to content

Commit 9099aa5

Browse files
committed
fix(shell-docs): retarget residual broken cross-links uncovered by visual QA
Follow-up to the docs cross-link sweep — visual QA surfaced four more sets of broken links that the framework-scope middleware was rewriting into 404s (or that resolved against the wrong path due to relative-link ambiguity). - agentic-protocols/index.mdx: switch ./ag-ui, ./mcp, and ./a2a to absolute /agentic-protocols/* paths so they resolve regardless of trailing slash. - faq.mdx: drop link wrapping on the three "Rich agentic experiences" row labels (Deep support for LangChain, Human-in-the-loop, Shared state). The /langgraph/* slugs were docs.copilotkit.ai legacy paths that don't exist in shell-docs; matches the playbook used for the V1 reference rows. - integrations/langgraph/agent-app-context.mdx: retarget the "Frontend Data documentation" Callout link from /langgraph/agent-app-context to /langgraph-python/agent-app-context (the working slug). - inspector.mdx: retarget the useAgentContext link in the Context row from /langgraph/agent-app-context to /langgraph-python/agent-app-context.
1 parent 30b68b1 commit 9099aa5

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

showcase/shell-docs/src/content/docs/agentic-protocols/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Learn about these protocols and how to connect your app to agents which support
7575
verticalAlign: "top",
7676
}}
7777
>
78-
<a href="./ag-ui">
78+
<a href="/agentic-protocols/ag-ui">
7979
<strong>AG-UI</strong>
8080
</a>
8181
<br />
@@ -103,7 +103,7 @@ Learn about these protocols and how to connect your app to agents which support
103103
verticalAlign: "top",
104104
}}
105105
>
106-
<a href="./mcp">
106+
<a href="/agentic-protocols/mcp">
107107
<strong>MCP</strong>
108108
</a>
109109
<br />
@@ -131,7 +131,7 @@ Learn about these protocols and how to connect your app to agents which support
131131
verticalAlign: "top",
132132
}}
133133
>
134-
<a href="./a2a">
134+
<a href="/agentic-protocols/a2a">
135135
<strong>A2A</strong>
136136
</a>
137137
<br />

showcase/shell-docs/src/content/docs/faq.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ We've got answers to some common questions!
5858
Integrate your LangChain agents into your product with ease.
5959
| | |
6060
|---------|-------------|
61-
| [**Deep support for LangChain**](/langgraph/quickstart) | Bring your LangChain agents directly into your product |
62-
| [**Human-in-the-loop**](/langgraph/human-in-the-loop) | Allow your users to work with your agents to solve complex problems |
63-
| [**Shared state**](/langgraph/shared-state) | Render the state of your LangChain agents with less than 10 lines of code |
61+
| **Deep support for LangChain** | Bring your LangChain agents directly into your product |
62+
| **Human-in-the-loop** | Allow your users to work with your agents to solve complex problems |
63+
| **Shared state** | Render the state of your LangChain agents with less than 10 lines of code |
6464

6565
</Accordion>
6666
<Accordion title="How does it all work?">

showcase/shell-docs/src/content/docs/inspector.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The **CopilotKit Inspector** is a built-in debugging overlay that sits on top of
2424
| **Available Agents** | Which agents CopilotKit has discovered via `/info` and which one is currently active. |
2525
| **Agent State** | The current `agent.state` tree, rerendered as it updates. Great for debugging [shared state](./shared-state) flows. |
2626
| **Frontend Tools** | Every tool registered via `useFrontendTool`, `useComponent`, `useHumanInTheLoop`, or `useRenderTool`, along with its parameter schema. |
27-
| **Context** | The [`useAgentContext`](/langgraph/agent-app-context) entries the agent currently receives, plus any document context you've attached. |
27+
| **Context** | The [`useAgentContext`](/langgraph-python/agent-app-context) entries the agent currently receives, plus any document context you've attached. |
2828

2929
## When should I use it?
3030

showcase/shell-docs/src/content/docs/integrations/langgraph/agent-app-context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This context can then be shared with your LangGraph agent.
1212

1313
## Implementation
1414
<Callout>
15-
Check out the [Frontend Data documentation](/langgraph/agent-app-context) to understand what this is and how to use it.
15+
Check out the [Frontend Data documentation](/langgraph-python/agent-app-context) to understand what this is and how to use it.
1616
</Callout>
1717

1818
<TailoredContent

0 commit comments

Comments
 (0)