From 96ed24ec255d9106065ac3ecee0d93f2a8ec1a1f Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Wed, 29 Jul 2026 20:33:20 +0000 Subject: [PATCH 1/9] [docs] Add instructions for installing the Claude plugin --- sites/docs/src/content/ai/agent-skills.md | 26 +++++++++++++++ .../docs/src/content/ai/coding-assistants.md | 15 +++++++++ sites/docs/src/content/ai/mcp-server.md | 33 +++++++++++++++++-- 3 files changed, 72 insertions(+), 2 deletions(-) diff --git a/sites/docs/src/content/ai/agent-skills.md b/sites/docs/src/content/ai/agent-skills.md index 75f9e0e7193..402c58c91e1 100644 --- a/sites/docs/src/content/ai/agent-skills.md +++ b/sites/docs/src/content/ai/agent-skills.md @@ -54,6 +54,8 @@ tailored specifically for our frameworks. By default, compatible AI agents discover Agent Skills within the `.agents/skills` directory of your project workspace. +### Using the skills CLI + To easily download and manage skills in that folder, you can use the `skills` CLI tool. It's distributed through npm, so you'll need [Node.js](https://nodejs.org/) installed to run it with `npx`. @@ -79,6 +81,30 @@ npx skills add dart-lang/skills --skill '*' --agent universal Running these commands automatically creates the `.agents/skills` directory and downloads the requested skills into your project. +### Using the Claude Code plugin + +If you use Claude Code, you can install the official Flutter plugin directly +from GitHub. This installs Flutter and Dart agent skills alongside the +[Dart and Flutter MCP server](/ai/mcp-server): + +1. Add the Flutter marketplace for Claude plugins: + + ```console + $ claude plugin marketplace add flutter/agent-plugins + ``` + +2. Install the plugin: + + ```console + $ claude plugin install dart-flutter@dart-flutter + ``` + +3. Verify the installation: + + ```console + $ claude plugin marketplace list + ``` + For more details on available skills, updating, and contributing, see the [Dart skills repository](https://github.com/dart-lang/skills) and the [Flutter agent-plugins repository](https://github.com/flutter/agent-plugins). diff --git a/sites/docs/src/content/ai/coding-assistants.md b/sites/docs/src/content/ai/coding-assistants.md index 47f8dd54f05..685d6feff12 100644 --- a/sites/docs/src/content/ai/coding-assistants.md +++ b/sites/docs/src/content/ai/coding-assistants.md @@ -40,3 +40,18 @@ For individual developers, it is superseded by the new [Antigravity CLI](/ai/ant It continues to be supported for Gemini Enterprise users. For more details about Gemini CLI, visit the [Gemini CLI](https://geminicli.com/) website. + +## Claude Code + +[Claude Code](https://code.claude.com/) is an agentic coding assistant from +Anthropic that runs in your terminal. You can equip Claude Code with domain +expertise and tools for Flutter and Dart by installing the official Flutter +plugin: + +```console +$ claude plugin marketplace add flutter/agent-plugins +$ claude plugin install dart-flutter@dart-flutter +``` + +For more details on setting up skills and tools with Claude Code, see the +[Agent skills](/ai/agent-skills) and [MCP server](/ai/mcp-server) pages. diff --git a/sites/docs/src/content/ai/mcp-server.md b/sites/docs/src/content/ai/mcp-server.md index e93abba5715..ec0798a2527 100644 --- a/sites/docs/src/content/ai/mcp-server.md +++ b/sites/docs/src/content/ai/mcp-server.md @@ -302,8 +302,37 @@ or in your project's `opencode key` configuration. ### Claude Code -To configure Claude Code to use the Dart and Flutter MCP server -for the current project, use the `claude mcp add` CLI command: +You can configure Claude Code to use the Dart and Flutter MCP server either +by installing the official plugin or by configuring the server manually. + +#### Install via plugin (recommended) + +The easiest way to set up the Dart and Flutter MCP server in Claude Code is to +install the official Flutter plugin from GitHub. This installs both the MCP +server and official [Agent skills](/ai/agent-skills): + +1. Add the Flutter marketplace for Claude plugins: + + ```console + $ claude plugin marketplace add flutter/agent-plugins + ``` + +2. Install the plugin: + + ```console + $ claude plugin install dart-flutter@dart-flutter + ``` + +3. Verify the installation: + + ```console + $ claude plugin marketplace list + ``` + +#### Configure manually + +Alternatively, to configure Claude Code to use only the Dart and Flutter MCP +server for the current project, use the `claude mcp add` CLI command: ```console $ claude mcp add --transport stdio dart -- dart mcp-server From 02e596c4619715344fe66ceb232a7dbe066ef6f5 Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Wed, 29 Jul 2026 21:23:50 +0000 Subject: [PATCH 2/9] [docs] Update wording to remove 'from GitHub' reference --- sites/docs/src/content/ai/agent-skills.md | 4 ++-- sites/docs/src/content/ai/mcp-server.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sites/docs/src/content/ai/agent-skills.md b/sites/docs/src/content/ai/agent-skills.md index 402c58c91e1..c94ea997d71 100644 --- a/sites/docs/src/content/ai/agent-skills.md +++ b/sites/docs/src/content/ai/agent-skills.md @@ -83,8 +83,8 @@ downloads the requested skills into your project. ### Using the Claude Code plugin -If you use Claude Code, you can install the official Flutter plugin directly -from GitHub. This installs Flutter and Dart agent skills alongside the +If you use Claude Code, you can install the official Flutter plugin. This +installs the Flutter and Dart agent skills alongside the [Dart and Flutter MCP server](/ai/mcp-server): 1. Add the Flutter marketplace for Claude plugins: diff --git a/sites/docs/src/content/ai/mcp-server.md b/sites/docs/src/content/ai/mcp-server.md index ec0798a2527..b95f1c624fa 100644 --- a/sites/docs/src/content/ai/mcp-server.md +++ b/sites/docs/src/content/ai/mcp-server.md @@ -308,7 +308,7 @@ by installing the official plugin or by configuring the server manually. #### Install via plugin (recommended) The easiest way to set up the Dart and Flutter MCP server in Claude Code is to -install the official Flutter plugin from GitHub. This installs both the MCP +install the official Flutter plugin. This installs both the MCP server and official [Agent skills](/ai/agent-skills): 1. Add the Flutter marketplace for Claude plugins: From 83ad9ebdd7b6ada55e67b77bac4c8cbe0303d6c4 Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Wed, 29 Jul 2026 21:26:38 +0000 Subject: [PATCH 3/9] [docs] Use lowercase 'agent skills' in sentence context --- sites/docs/src/content/ai/coding-assistants.md | 2 +- sites/docs/src/content/ai/mcp-server.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/docs/src/content/ai/coding-assistants.md b/sites/docs/src/content/ai/coding-assistants.md index 685d6feff12..90525ba9560 100644 --- a/sites/docs/src/content/ai/coding-assistants.md +++ b/sites/docs/src/content/ai/coding-assistants.md @@ -54,4 +54,4 @@ $ claude plugin install dart-flutter@dart-flutter ``` For more details on setting up skills and tools with Claude Code, see the -[Agent skills](/ai/agent-skills) and [MCP server](/ai/mcp-server) pages. +[agent skills](/ai/agent-skills) and [MCP server](/ai/mcp-server) pages. diff --git a/sites/docs/src/content/ai/mcp-server.md b/sites/docs/src/content/ai/mcp-server.md index b95f1c624fa..0930829c035 100644 --- a/sites/docs/src/content/ai/mcp-server.md +++ b/sites/docs/src/content/ai/mcp-server.md @@ -309,7 +309,7 @@ by installing the official plugin or by configuring the server manually. The easiest way to set up the Dart and Flutter MCP server in Claude Code is to install the official Flutter plugin. This installs both the MCP -server and official [Agent skills](/ai/agent-skills): +server and official [agent skills](/ai/agent-skills): 1. Add the Flutter marketplace for Claude plugins: From 9b6cc56a4b90ca57cfd0d2b859543163c8139373 Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Thu, 30 Jul 2026 20:00:58 +0000 Subject: [PATCH 4/9] [docs] Use Tabs for agent skills installation and link back from MCP and coding assistants pages --- sites/docs/src/content/ai/agent-skills.md | 77 ++++++++++--------- .../docs/src/content/ai/coding-assistants.md | 16 ++-- sites/docs/src/content/ai/mcp-server.md | 23 +----- 3 files changed, 50 insertions(+), 66 deletions(-) diff --git a/sites/docs/src/content/ai/agent-skills.md b/sites/docs/src/content/ai/agent-skills.md index c94ea997d71..4510352f41e 100644 --- a/sites/docs/src/content/ai/agent-skills.md +++ b/sites/docs/src/content/ai/agent-skills.md @@ -54,56 +54,57 @@ tailored specifically for our frameworks. By default, compatible AI agents discover Agent Skills within the `.agents/skills` directory of your project workspace. -### Using the skills CLI + + + To easily download and manage skills in that folder, you can use the + `skills` CLI tool. It's distributed through npm, so you'll need + [Node.js](https://nodejs.org/) installed to run it with `npx`. -To easily download and manage skills in that folder, you can use the `skills` -CLI tool. It's distributed through npm, so you'll need -[Node.js](https://nodejs.org/) installed to run it with `npx`. + To install the official Flutter skills: -To install the official Flutter skills: + :::note + The `flutter/skills` repository has been renamed to + `flutter/agent-plugins`. If you previously installed skills using + `flutter/skills`, update your commands to use `flutter/agent-plugins`. + ::: -:::note -The `flutter/skills` repository has been renamed to `flutter/agent-plugins`. -If you previously installed skills using `flutter/skills`, -update your commands to use `flutter/agent-plugins`. -::: - -```bash -npx skills add flutter/agent-plugins --skill '*' --agent universal -``` - -And to install the official Dart skills: - -```bash -npx skills add dart-lang/skills --skill '*' --agent universal -``` + ```bash + npx skills add flutter/agent-plugins --skill '*' --agent universal + ``` -Running these commands automatically creates the `.agents/skills` directory and -downloads the requested skills into your project. + And to install the official Dart skills: -### Using the Claude Code plugin + ```bash + npx skills add dart-lang/skills --skill '*' --agent universal + ``` -If you use Claude Code, you can install the official Flutter plugin. This -installs the Flutter and Dart agent skills alongside the -[Dart and Flutter MCP server](/ai/mcp-server): + Running these commands automatically creates the `.agents/skills` + directory and downloads the requested skills into your project. + + + If you use Claude Code, you can install the official Flutter plugin. + This installs the Flutter and Dart agent skills alongside the + [Dart and Flutter MCP server](/ai/mcp-server): -1. Add the Flutter marketplace for Claude plugins: + 1. Add the Flutter marketplace for Claude plugins: - ```console - $ claude plugin marketplace add flutter/agent-plugins - ``` + ```console + $ claude plugin marketplace add flutter/agent-plugins + ``` -2. Install the plugin: + 2. Install the plugin: - ```console - $ claude plugin install dart-flutter@dart-flutter - ``` + ```console + $ claude plugin install dart-flutter@dart-flutter + ``` -3. Verify the installation: + 3. Verify the installation: - ```console - $ claude plugin marketplace list - ``` + ```console + $ claude plugin marketplace list + ``` + + For more details on available skills, updating, and contributing, see the [Dart skills repository](https://github.com/dart-lang/skills) and the diff --git a/sites/docs/src/content/ai/coding-assistants.md b/sites/docs/src/content/ai/coding-assistants.md index 90525ba9560..bd0c4c55688 100644 --- a/sites/docs/src/content/ai/coding-assistants.md +++ b/sites/docs/src/content/ai/coding-assistants.md @@ -44,14 +44,12 @@ For more details about Gemini CLI, visit the [Gemini CLI](https://geminicli.com/ ## Claude Code [Claude Code](https://code.claude.com/) is an agentic coding assistant from -Anthropic that runs in your terminal. You can equip Claude Code with domain -expertise and tools for Flutter and Dart by installing the official Flutter -plugin: +Anthropic that runs in your terminal. -```console -$ claude plugin marketplace add flutter/agent-plugins -$ claude plugin install dart-flutter@dart-flutter -``` +You can equip Claude Code with domain expertise and tools for Flutter and Dart +by installing the official Flutter plugin, which bundles official +[agent skills](/ai/agent-skills) and the +[Dart and Flutter MCP server](/ai/mcp-server). -For more details on setting up skills and tools with Claude Code, see the -[agent skills](/ai/agent-skills) and [MCP server](/ai/mcp-server) pages. +To install the plugin, follow the Claude Code instructions in +[Getting started with agent skills](/ai/agent-skills#getting-started). diff --git a/sites/docs/src/content/ai/mcp-server.md b/sites/docs/src/content/ai/mcp-server.md index 0930829c035..702bb79990a 100644 --- a/sites/docs/src/content/ai/mcp-server.md +++ b/sites/docs/src/content/ai/mcp-server.md @@ -308,26 +308,11 @@ by installing the official plugin or by configuring the server manually. #### Install via plugin (recommended) The easiest way to set up the Dart and Flutter MCP server in Claude Code is to -install the official Flutter plugin. This installs both the MCP -server and official [agent skills](/ai/agent-skills): +install the official Flutter plugin, which bundles both the MCP server and +official [agent skills](/ai/agent-skills). -1. Add the Flutter marketplace for Claude plugins: - - ```console - $ claude plugin marketplace add flutter/agent-plugins - ``` - -2. Install the plugin: - - ```console - $ claude plugin install dart-flutter@dart-flutter - ``` - -3. Verify the installation: - - ```console - $ claude plugin marketplace list - ``` +To install the plugin, follow the Claude Code instructions in +[Getting started with agent skills](/ai/agent-skills#getting-started). #### Configure manually From 305183ce6b73e4312f05ac42a0ac021a1bfb8709 Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Thu, 30 Jul 2026 20:10:38 +0000 Subject: [PATCH 5/9] [docs] Fix Tabs HTML parser error in agent-skills.md by removing indentation and adding blank lines --- sites/docs/src/content/ai/agent-skills.md | 78 ++++++++++++----------- 1 file changed, 41 insertions(+), 37 deletions(-) diff --git a/sites/docs/src/content/ai/agent-skills.md b/sites/docs/src/content/ai/agent-skills.md index 4510352f41e..a4415ddbab5 100644 --- a/sites/docs/src/content/ai/agent-skills.md +++ b/sites/docs/src/content/ai/agent-skills.md @@ -55,55 +55,59 @@ By default, compatible AI agents discover Agent Skills within the `.agents/skills` directory of your project workspace. - - To easily download and manage skills in that folder, you can use the - `skills` CLI tool. It's distributed through npm, so you'll need - [Node.js](https://nodejs.org/) installed to run it with `npx`. + - To install the official Flutter skills: +To easily download and manage skills in that folder, you can use the +`skills` CLI tool. It's distributed through npm, so you'll need +[Node.js](https://nodejs.org/) installed to run it with `npx`. - :::note - The `flutter/skills` repository has been renamed to - `flutter/agent-plugins`. If you previously installed skills using - `flutter/skills`, update your commands to use `flutter/agent-plugins`. - ::: +To install the official Flutter skills: - ```bash - npx skills add flutter/agent-plugins --skill '*' --agent universal - ``` +:::note +The `flutter/skills` repository has been renamed to +`flutter/agent-plugins`. If you previously installed skills using +`flutter/skills`, update your commands to use `flutter/agent-plugins`. +::: + +```bash +npx skills add flutter/agent-plugins --skill '*' --agent universal +``` + +And to install the official Dart skills: + +```bash +npx skills add dart-lang/skills --skill '*' --agent universal +``` + +Running these commands automatically creates the `.agents/skills` +directory and downloads the requested skills into your project. - And to install the official Dart skills: + + - ```bash - npx skills add dart-lang/skills --skill '*' --agent universal - ``` +If you use Claude Code, you can install the official Flutter plugin. +This installs the Flutter and Dart agent skills alongside the +[Dart and Flutter MCP server](/ai/mcp-server): - Running these commands automatically creates the `.agents/skills` - directory and downloads the requested skills into your project. - - - If you use Claude Code, you can install the official Flutter plugin. - This installs the Flutter and Dart agent skills alongside the - [Dart and Flutter MCP server](/ai/mcp-server): +1. Add the Flutter marketplace for Claude plugins: - 1. Add the Flutter marketplace for Claude plugins: + ```console + $ claude plugin marketplace add flutter/agent-plugins + ``` - ```console - $ claude plugin marketplace add flutter/agent-plugins - ``` +2. Install the plugin: - 2. Install the plugin: + ```console + $ claude plugin install dart-flutter@dart-flutter + ``` - ```console - $ claude plugin install dart-flutter@dart-flutter - ``` +3. Verify the installation: - 3. Verify the installation: + ```console + $ claude plugin marketplace list + ``` - ```console - $ claude plugin marketplace list - ``` - + For more details on available skills, updating, and contributing, see the From e559d871ddd21a41a38d3276c9f79ff45eb87e8b Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Thu, 30 Jul 2026 20:25:03 +0000 Subject: [PATCH 6/9] [docs] Use 'Other agents' tab, clarify .agents/skills discovery, and add 'Manage and verify skills' section --- sites/docs/src/content/ai/agent-skills.md | 63 ++++++++++++----------- 1 file changed, 34 insertions(+), 29 deletions(-) diff --git a/sites/docs/src/content/ai/agent-skills.md b/sites/docs/src/content/ai/agent-skills.md index a4415ddbab5..65e2de420d1 100644 --- a/sites/docs/src/content/ai/agent-skills.md +++ b/sites/docs/src/content/ai/agent-skills.md @@ -51,11 +51,39 @@ tailored specifically for our frameworks. ## Getting started -By default, compatible AI agents discover Agent Skills within the -`.agents/skills` directory of your project workspace. +You can install official Flutter and Dart agent skills into your AI agent or +coding assistant. Select your tool below for installation instructions: - + + +If you use Claude Code, you can install the official Flutter plugin. +This installs the Flutter and Dart agent skills alongside the +[Dart and Flutter MCP server](/ai/mcp-server): + +1. Add the Flutter marketplace for Claude plugins: + + ```console + $ claude plugin marketplace add flutter/agent-plugins + ``` + +2. Install the plugin: + + ```console + $ claude plugin install dart-flutter@dart-flutter + ``` + +3. Verify the installation: + + ```console + $ claude plugin marketplace list + ``` + + + + +By default, compatible AI agents discover agent skills within the +`.agents/skills` directory of your project workspace. To easily download and manage skills in that folder, you can use the `skills` CLI tool. It's distributed through npm, so you'll need @@ -82,41 +110,18 @@ npx skills add dart-lang/skills --skill '*' --agent universal Running these commands automatically creates the `.agents/skills` directory and downloads the requested skills into your project. - - - -If you use Claude Code, you can install the official Flutter plugin. -This installs the Flutter and Dart agent skills alongside the -[Dart and Flutter MCP server](/ai/mcp-server): - -1. Add the Flutter marketplace for Claude plugins: - - ```console - $ claude plugin marketplace add flutter/agent-plugins - ``` - -2. Install the plugin: - - ```console - $ claude plugin install dart-flutter@dart-flutter - ``` - -3. Verify the installation: - - ```console - $ claude plugin marketplace list - ``` - +## Manage and verify skills + For more details on available skills, updating, and contributing, see the [Dart skills repository](https://github.com/dart-lang/skills) and the [Flutter agent-plugins repository](https://github.com/flutter/agent-plugins). :::tip Once you've added skills to your project, try asking your AI agent to review -the `.agents/skills` directory. You can ask, "Which of my installed skills +your installed skills. You can ask, "Which of my installed skills can help me with [your current task]?" or "Summarize the capabilities of the skills I have available." ::: From b1096a7ca0c4818641371a3aced52c4fc17f75e0 Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Thu, 30 Jul 2026 20:27:20 +0000 Subject: [PATCH 7/9] [docs] Refine getting started wording and prioritize Claude Code tab --- sites/docs/src/content/ai/agent-skills.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/docs/src/content/ai/agent-skills.md b/sites/docs/src/content/ai/agent-skills.md index 65e2de420d1..8bed98d72a9 100644 --- a/sites/docs/src/content/ai/agent-skills.md +++ b/sites/docs/src/content/ai/agent-skills.md @@ -52,12 +52,12 @@ tailored specifically for our frameworks. ## Getting started You can install official Flutter and Dart agent skills into your AI agent or -coding assistant. Select your tool below for installation instructions: +coding assistant. Select your agent below for installation instructions: -If you use Claude Code, you can install the official Flutter plugin. +If you use Claude Code, install the official Flutter plugin. This installs the Flutter and Dart agent skills alongside the [Dart and Flutter MCP server](/ai/mcp-server): From 54ad90815d990258e259a78aa2536dba0fd5147e Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Thu, 30 Jul 2026 20:43:58 +0000 Subject: [PATCH 8/9] [docs] Use lowercase 'agent skills', update headings, and refine install introduction --- sites/docs/src/content/ai/agent-skills.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sites/docs/src/content/ai/agent-skills.md b/sites/docs/src/content/ai/agent-skills.md index 8bed98d72a9..537ad403867 100644 --- a/sites/docs/src/content/ai/agent-skills.md +++ b/sites/docs/src/content/ai/agent-skills.md @@ -15,16 +15,16 @@ with domain-specific capabilities using Agent Skills. AI agents can write Flutter and Dart code, but they sometimes are unaware of tools and best practices that professional developers use. -[Agent Skills](https://agentskills.io/) help solve this problem by providing a +[Agent skills](https://agentskills.io/) help solve this problem by providing a standardized way to give your AI agent a set of task-oriented blueprints to follow. By giving the agent actual domain expertise and repeatable workflows, you drastically reduce mistakes and can enforce consistent patterns. -To understand how Agent Skills fit into your workflow, consider how they compare +To understand how agent skills fit into your workflow, consider how they compare to other AI capabilities: * **Rules files:** While [rules files](/ai/ai-rules) configure the agent's - general behavior across all tasks, Agent Skills give the AI step-by-step + general behavior across all tasks, agent skills give the AI step-by-step instructions for one specific job. * **Model Context Protocol (MCP):** The [Dart and Flutter MCP server](/ai/mcp-server) gives your agent access to specialized tools. If MCP @@ -49,10 +49,10 @@ tailored specifically for our frameworks. These skills help the AI build responsive layouts, set up declarative routing, and implement JSON serialization. -## Getting started +## Install agent skills -You can install official Flutter and Dart agent skills into your AI agent or -coding assistant. Select your agent below for installation instructions: +Select your AI coding agent below for instructions on how to install the official +Flutter and Dart agent skills. @@ -113,7 +113,7 @@ directory and downloads the requested skills into your project. -## Manage and verify skills +## Manage and verify agent skills For more details on available skills, updating, and contributing, see the [Dart skills repository](https://github.com/dart-lang/skills) and the From 88df16636fcc121eef85441999ebc8b252846696 Mon Sep 17 00:00:00 2001 From: Jess Kuras Date: Thu, 30 Jul 2026 20:50:36 +0000 Subject: [PATCH 9/9] [docs] Fix broken anchor links to point to #install-agent-skills --- sites/docs/src/content/ai/coding-assistants.md | 2 +- sites/docs/src/content/ai/mcp-server.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/docs/src/content/ai/coding-assistants.md b/sites/docs/src/content/ai/coding-assistants.md index bd0c4c55688..12554ee9bc9 100644 --- a/sites/docs/src/content/ai/coding-assistants.md +++ b/sites/docs/src/content/ai/coding-assistants.md @@ -52,4 +52,4 @@ by installing the official Flutter plugin, which bundles official [Dart and Flutter MCP server](/ai/mcp-server). To install the plugin, follow the Claude Code instructions in -[Getting started with agent skills](/ai/agent-skills#getting-started). +[Install agent skills](/ai/agent-skills#install-agent-skills). diff --git a/sites/docs/src/content/ai/mcp-server.md b/sites/docs/src/content/ai/mcp-server.md index 702bb79990a..797a3894b70 100644 --- a/sites/docs/src/content/ai/mcp-server.md +++ b/sites/docs/src/content/ai/mcp-server.md @@ -312,7 +312,7 @@ install the official Flutter plugin, which bundles both the MCP server and official [agent skills](/ai/agent-skills). To install the plugin, follow the Claude Code instructions in -[Getting started with agent skills](/ai/agent-skills#getting-started). +[Install agent skills](/ai/agent-skills#install-agent-skills). #### Configure manually