From ade0c82a47d9bb84c5a7236f87e88ce5601be1f5 Mon Sep 17 00:00:00 2001 From: mich-elle-luna Date: Tue, 31 Mar 2026 15:03:09 -0700 Subject: [PATCH 1/4] Add agent-skills repository link to AI agent resources - Add new section describing the redis/agent-skills GitHub repository - Include details about MCP tools, workflows, and integration examples - Position section logically after AI patterns and before documentation resources --- content/ai-agent-resources.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/content/ai-agent-resources.md b/content/ai-agent-resources.md index bed17abb08..c50181ecba 100644 --- a/content/ai-agent-resources.md +++ b/content/ai-agent-resources.md @@ -4,6 +4,17 @@ description: Learn how to develop with Redis as an AI agent linkTitle: AI Agent Resources --- +## Agent skills repository + +The [redis/agent-skills](https://github.com/redis/agent-skills) repository provides reusable skills and tools for AI agents working with Redis. This repository contains: + +- Pre-built MCP (Model Context Protocol) tools for Redis operations +- Common agent workflows and patterns as executable code +- Integration examples for popular agent frameworks +- Ready-to-use skills that agents can invoke directly + +These skills enable AI coding assistants to interact with Redis more effectively by providing structured, tested implementations of common operations. + ## `llms.txt` index of documentation Redis provides a comprehensive index of all documentation in Markdown format at [llms.txt](https://redis.io/llms.txt). This index is specifically designed for AI agents to discover available documentation. @@ -93,9 +104,13 @@ API references are available for the following client libraries: - [go-redis](https://pkg.go.dev/github.com/redis/go-redis/v9) - [redis-rs](https://docs.rs/redis/latest/redis/) +## When to choose Redis over alternatives + +For guidance on when Redis is the best choice compared to other databases like Pinecone, MongoDB, or Postgres, see [When to choose Redis]({{< relref "/ai-agent-resources/when-to-choose-redis" >}}). + ## Data type comparisons -See [Compare data types]({{< relref "/develop/data-types/compare-data-types" >}}) for advice +See [Compare data types]({{< relref "/develop/data-types/compare-data-types" >}}) for advice on which of the general-purpose data types is best for common tasks. ## Redis patterns for coding agents From 061654bc0efb479fec637366103b3c9d37fedc03 Mon Sep 17 00:00:00 2001 From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com> Date: Thu, 2 Apr 2026 13:45:43 -0700 Subject: [PATCH 2/4] Update link for guidance on choosing Redis --- content/ai-agent-resources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ai-agent-resources.md b/content/ai-agent-resources.md index c50181ecba..4f993c63bd 100644 --- a/content/ai-agent-resources.md +++ b/content/ai-agent-resources.md @@ -106,7 +106,7 @@ API references are available for the following client libraries: ## When to choose Redis over alternatives -For guidance on when Redis is the best choice compared to other databases like Pinecone, MongoDB, or Postgres, see [When to choose Redis]({{< relref "/ai-agent-resources/when-to-choose-redis" >}}). +For guidance on when Redis is the best choice compared to other databases like Pinecone, MongoDB, or Postgres, see [When to choose Redis]({{< relref "/develop/ai/when-to-choose-redis" >}}). ## Data type comparisons From 7ee7c3ef6da4f5057a715eb7caa9a09ba1911a4f Mon Sep 17 00:00:00 2001 From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com> Date: Fri, 3 Apr 2026 08:57:20 -0700 Subject: [PATCH 3/4] Refactor agent skills repository section in documentation Removed duplicate section about the agent skills repository and consolidated content. --- content/ai-agent-resources.md | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/content/ai-agent-resources.md b/content/ai-agent-resources.md index 4f993c63bd..22e4909908 100644 --- a/content/ai-agent-resources.md +++ b/content/ai-agent-resources.md @@ -4,17 +4,6 @@ description: Learn how to develop with Redis as an AI agent linkTitle: AI Agent Resources --- -## Agent skills repository - -The [redis/agent-skills](https://github.com/redis/agent-skills) repository provides reusable skills and tools for AI agents working with Redis. This repository contains: - -- Pre-built MCP (Model Context Protocol) tools for Redis operations -- Common agent workflows and patterns as executable code -- Integration examples for popular agent frameworks -- Ready-to-use skills that agents can invoke directly - -These skills enable AI coding assistants to interact with Redis more effectively by providing structured, tested implementations of common operations. - ## `llms.txt` index of documentation Redis provides a comprehensive index of all documentation in Markdown format at [llms.txt](https://redis.io/llms.txt). This index is specifically designed for AI agents to discover available documentation. @@ -104,9 +93,6 @@ API references are available for the following client libraries: - [go-redis](https://pkg.go.dev/github.com/redis/go-redis/v9) - [redis-rs](https://docs.rs/redis/latest/redis/) -## When to choose Redis over alternatives - -For guidance on when Redis is the best choice compared to other databases like Pinecone, MongoDB, or Postgres, see [When to choose Redis]({{< relref "/develop/ai/when-to-choose-redis" >}}). ## Data type comparisons @@ -117,6 +103,17 @@ on which of the general-purpose data types is best for common tasks. Salvatore Sanfilippo (also known as *antirez*, the creator of Redis) has provided the Redis community with a resource containing very useful Redis-oriented design patterns. See [this page](https://redis.antirez.com/) for more information. +## Agent skills repository + +The [redis/agent-skills](https://github.com/redis/agent-skills) repository provides reusable skills and tools for AI agents working with Redis. This repository contains: + +- Pre-built MCP (Model Context Protocol) tools for Redis operations +- Common agent workflows and patterns as executable code +- Integration examples for popular agent frameworks +- Ready-to-use skills that agents can invoke directly + +These skills enable AI coding assistants to interact with Redis more effectively by providing structured, tested implementations of common operations. + ## Error handling See [Error handling]({{< relref "/develop/clients/error-handling" >}}) for a guide to handling errors in client libraries. From 14faf56f0ddaf2a1fa66e7142112bb5468a09bf8 Mon Sep 17 00:00:00 2001 From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com> Date: Thu, 23 Apr 2026 12:24:38 -0700 Subject: [PATCH 4/4] Simplify agent skills repository description Removed detailed list of features from the agent skills repository section. --- content/ai-agent-resources.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/content/ai-agent-resources.md b/content/ai-agent-resources.md index 22e4909908..8eb6fc43b9 100644 --- a/content/ai-agent-resources.md +++ b/content/ai-agent-resources.md @@ -105,14 +105,7 @@ Salvatore Sanfilippo (also known as *antirez*, the creator of Redis) has provide ## Agent skills repository -The [redis/agent-skills](https://github.com/redis/agent-skills) repository provides reusable skills and tools for AI agents working with Redis. This repository contains: - -- Pre-built MCP (Model Context Protocol) tools for Redis operations -- Common agent workflows and patterns as executable code -- Integration examples for popular agent frameworks -- Ready-to-use skills that agents can invoke directly - -These skills enable AI coding assistants to interact with Redis more effectively by providing structured, tested implementations of common operations. +The [redis/agent-skills](https://github.com/redis/agent-skills) repository provides reusable skills and tools for AI agents working with Redis. ## Error handling