From 7fe6232e9fd7893186a22e67582fa57df4369406 Mon Sep 17 00:00:00 2001 From: Jonathan Hefner Date: Wed, 4 Mar 2026 08:32:41 -0600 Subject: [PATCH] Rename "Integrating skills" guide to "Adding skills support" Addresses reviewer feedback that "Integrating" could be misread as integrating skills into a workflow rather than into a client. Renames `integrating-skills.mdx` to `adding-skills-support.mdx` and updates all references in `docs.json`, `home.mdx`, and `what-are-skills.mdx`. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../{integrating-skills.mdx => adding-skills-support.mdx} | 4 ++-- docs/docs.json | 4 ++-- docs/home.mdx | 4 ++-- docs/what-are-skills.mdx | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) rename docs/client-implementation/{integrating-skills.mdx => adding-skills-support.mdx} (99%) diff --git a/docs/client-implementation/integrating-skills.mdx b/docs/client-implementation/adding-skills-support.mdx similarity index 99% rename from docs/client-implementation/integrating-skills.mdx rename to docs/client-implementation/adding-skills-support.mdx index 2c4f351..0a27d0a 100644 --- a/docs/client-implementation/integrating-skills.mdx +++ b/docs/client-implementation/adding-skills-support.mdx @@ -1,6 +1,6 @@ --- -title: "How to integrate skills into your agent" -sidebarTitle: "Integrating skills" +title: "How to add skills support to your agent" +sidebarTitle: "Adding skills support" description: "A guide for adding Agent Skills support to an AI agent or development tool." --- diff --git a/docs/docs.json b/docs/docs.json index ef1d5b5..dd9c9fc 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -28,7 +28,7 @@ { "group": "For client implementors", "pages": [ - "client-implementation/integrating-skills" + "client-implementation/adding-skills-support" ] } ] @@ -48,7 +48,7 @@ "redirects": [ { "source": "/integrate-skills", - "destination": "/client-implementation/integrating-skills" + "destination": "/client-implementation/adding-skills-support" } ] } diff --git a/docs/home.mdx b/docs/home.mdx index 6394aa0..40de502 100644 --- a/docs/home.mdx +++ b/docs/home.mdx @@ -54,9 +54,9 @@ The Agent Skills format was originally developed by [Anthropic](https://www.anth The complete format specification for SKILL.md files. Add skills support to your agent or tool. diff --git a/docs/what-are-skills.mdx b/docs/what-are-skills.mdx index f91d01a..11c65d7 100644 --- a/docs/what-are-skills.mdx +++ b/docs/what-are-skills.mdx @@ -65,7 +65,7 @@ This simple format has some key advantages: ## Next steps - [View the specification](/specification) to understand the full format. -- [Add skills support to your agent](/client-implementation/integrating-skills) to build a compatible client. +- [Add skills support to your agent](/client-implementation/adding-skills-support) to build a compatible client. - [See example skills](https://github.com/anthropics/skills) on GitHub. - [Read authoring best practices](https://platform.claude.com/docs/en/agents-and-tools/agent-skills/best-practices) for writing effective skills. - [Use the reference library](https://github.com/agentskills/agentskills/tree/main/skills-ref) to validate skills and generate prompt XML.