From 64affe3ff9ff72f66bbba8a929b4602272cec920 Mon Sep 17 00:00:00 2001 From: Evan Tahler Date: Thu, 29 Jan 2026 17:46:00 -0800 Subject: [PATCH 1/2] Quickstart Next Steps - visit framework pages --- app/_components/agent-framework-tabs.tsx | 75 +++++++++++++++++++ app/en/get-started/agent-frameworks/page.mdx | 72 +----------------- .../quickstarts/call-tool-agent/page.mdx | 5 +- next-env.d.ts | 2 +- 4 files changed, 82 insertions(+), 72 deletions(-) create mode 100644 app/_components/agent-framework-tabs.tsx diff --git a/app/_components/agent-framework-tabs.tsx b/app/_components/agent-framework-tabs.tsx new file mode 100644 index 000000000..ea472faaf --- /dev/null +++ b/app/_components/agent-framework-tabs.tsx @@ -0,0 +1,75 @@ +import { Tabs } from "nextra/components"; +import { PlatformCard } from "@/app/_components/platform-card"; + +export function AgentFrameworkTabs() { + return ( + + +
+ + + + + +
+
+ +
+ + + + +
+
+
+ ); +} diff --git a/app/en/get-started/agent-frameworks/page.mdx b/app/en/get-started/agent-frameworks/page.mdx index 062cd1908..08ce38a4b 100644 --- a/app/en/get-started/agent-frameworks/page.mdx +++ b/app/en/get-started/agent-frameworks/page.mdx @@ -1,5 +1,4 @@ -import { PlatformCard } from "@/app/_components/platform-card"; -import { Tabs } from "nextra/components"; +import { AgentFrameworkTabs } from "@/app/_components/agent-framework-tabs"; # Arcade with Agent Frameworks and MCP Clients @@ -9,71 +8,4 @@ These guides are for developers building AI applications who need to connect Arc ## Agent Frameworks - - -
- - - - - -
-
- -
- - - - -
-
-
+ diff --git a/app/en/get-started/quickstarts/call-tool-agent/page.mdx b/app/en/get-started/quickstarts/call-tool-agent/page.mdx index c9ffd61d6..0acb8a64c 100644 --- a/app/en/get-started/quickstarts/call-tool-agent/page.mdx +++ b/app/en/get-started/quickstarts/call-tool-agent/page.mdx @@ -5,6 +5,7 @@ description: "Learn how to call tools in your agent" import { Steps, Tabs, Callout } from "nextra/components"; import { SignupLink } from "@/app/_components/analytics"; +import { AgentFrameworkTabs } from "@/app/_components/agent-framework-tabs"; # Calling tools in your agent with Arcade @@ -376,7 +377,9 @@ console.log(respose_send_email.output?.value); In this simple example, we call the tool methods directly. In your real applications and agents, you'll likely be letting the LLM decide which tools to call. Learn more about using Arcade with Frameworks in the [Frameworks](/get-started/agent-frameworks) section, or [how to build your own tools](/guides/create-tools/tool-basics/build-mcp-server). -## Example Code + + +## Full Example Code diff --git a/next-env.d.ts b/next-env.d.ts index 9edff1c7c..c4b7818fb 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/types/routes.d.ts"; +import "./.next/dev/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. From 5a1dcd5ba8fa8ccde2cc3e9db873d741c198bcf9 Mon Sep 17 00:00:00 2001 From: Evan Tahler Date: Thu, 29 Jan 2026 17:48:16 -0800 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- app/en/get-started/quickstarts/call-tool-agent/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/en/get-started/quickstarts/call-tool-agent/page.mdx b/app/en/get-started/quickstarts/call-tool-agent/page.mdx index 0acb8a64c..8b85f65bd 100644 --- a/app/en/get-started/quickstarts/call-tool-agent/page.mdx +++ b/app/en/get-started/quickstarts/call-tool-agent/page.mdx @@ -375,7 +375,7 @@ console.log(respose_send_email.output?.value); ## Next Steps -In this simple example, we call the tool methods directly. In your real applications and agents, you'll likely be letting the LLM decide which tools to call. Learn more about using Arcade with Frameworks in the [Frameworks](/get-started/agent-frameworks) section, or [how to build your own tools](/guides/create-tools/tool-basics/build-mcp-server). +In this example, we call the tool methods directly. In your real applications and agents, you'll likely be letting the LLM decide which tools to call. Learn more about using Arcade with Frameworks in the [Frameworks](/get-started/agent-frameworks) section, or [how to build your own tools](/guides/create-tools/tool-basics/build-mcp-server).