From f59ffb5ae0090afa430ca24bcc188727619ed679 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Wed, 5 Nov 2025 11:19:31 +0000 Subject: [PATCH 1/4] DOC-5877 added 'hidden' AI resource page plus tile on docs home page --- content/ai-agent-resources.md | 27 +++++++++++++++++++++++++++ layouts/home.html | 11 ++++++++++- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 content/ai-agent-resources.md diff --git a/content/ai-agent-resources.md b/content/ai-agent-resources.md new file mode 100644 index 0000000000..06c76f1b36 --- /dev/null +++ b/content/ai-agent-resources.md @@ -0,0 +1,27 @@ +--- +title: AI Agent Resources +description: Learn how to develop with Redis as an AI agent +linkTitle: AI Agent Resources +--- + +## `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. + +## Markdown documentation format + +All documentation pages are available in Markdown format via the same URL as +the main doc page but with `index.html.md` added. For example, the Markdown version of +this page is available at +[ai-agent-resources/index.html.md](https://redis.io/docs/latest/develop/ai-agent-resources/index.html.md). + + +## API references + +API references are available for the following client libraries: + +- [redis-py](https://redis.readthedocs.io/en/stable/commands.html) +- [jedis](https://javadoc.io/doc/redis.clients/jedis/latest/index.html) +- [lettuce](https://lettuce.io/core/release/reference/index.html) +- [go-redis](https://pkg.go.dev/github.com/redis/go-redis/v9) +- [redis-rs](https://docs.rs/redis/latest/redis/) diff --git a/layouts/home.html b/layouts/home.html index f927831407..93b66a88cc 100644 --- a/layouts/home.html +++ b/layouts/home.html @@ -164,7 +164,16 @@

Deploy

(dict "Text" "Redis Insight" "URL" "./develop/tools/insight/") (dict "Text" "Redis for VSCode" "URL" "./develop/tools/redis-for-vscode/") ) ) }} - + {{ partial "docs-section.html" (dict + "Title" "Resources for AI agents" + "Description" "Learn more about Redis documentation features that support AI agents" + "ButtonLink" "https://redis.io/llms.txt" + "ButtonLabel" "Main `llms.txt` index for doc structure" + "LinksLeft" (slice + (dict "Text" "AI Agent Resources" "URL" "./ai-agent-resources") + (dict "Text" "Example doc page in Markdown format" "URL" "./develop/index.html.md") + ) + ) }} From 025aef129a07715ce2dc87211967fbfe4b4107bf Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Wed, 5 Nov 2025 11:25:03 +0000 Subject: [PATCH 2/4] DOC-5877 added home page AI-friendly metadata --- layouts/home.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/layouts/home.html b/layouts/home.html index 93b66a88cc..b5e37ea8ec 100644 --- a/layouts/home.html +++ b/layouts/home.html @@ -1,6 +1,12 @@ {{ define "head" }} + + + + + + {{ end }} {{ define "main" }} From a519ac429e717d78908021a9edd4efc7f4d4b8f2 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Wed, 5 Nov 2025 11:36:41 +0000 Subject: [PATCH 3/4] DOC-5877 moved AI tile to the left column on home page --- layouts/home.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/layouts/home.html b/layouts/home.html index b5e37ea8ec..f3dd1bc8b2 100644 --- a/layouts/home.html +++ b/layouts/home.html @@ -121,6 +121,16 @@

Get Started

(dict "Text" "Go" "URL" "./develop/clients/go/") (dict "Text" "PHP" "URL" "./develop/clients/php/") ) ) }} + {{ partial "docs-section.html" (dict + "Title" "Resources for AI agents" + "Description" "Learn more about Redis documentation features that support AI agents" + "ButtonLink" "https://redis.io/llms.txt" + "ButtonLabel" "Main `llms.txt` index for doc structure" + "LinksLeft" (slice + (dict "Text" "AI Agent Resources" "URL" "./ai-agent-resources") + (dict "Text" "Example doc page in Markdown format" "URL" "./develop/index.html.md") + ) + ) }}

Deploy

@@ -170,16 +180,6 @@

Deploy

(dict "Text" "Redis Insight" "URL" "./develop/tools/insight/") (dict "Text" "Redis for VSCode" "URL" "./develop/tools/redis-for-vscode/") ) ) }} - {{ partial "docs-section.html" (dict - "Title" "Resources for AI agents" - "Description" "Learn more about Redis documentation features that support AI agents" - "ButtonLink" "https://redis.io/llms.txt" - "ButtonLabel" "Main `llms.txt` index for doc structure" - "LinksLeft" (slice - (dict "Text" "AI Agent Resources" "URL" "./ai-agent-resources") - (dict "Text" "Example doc page in Markdown format" "URL" "./develop/index.html.md") - ) - ) }}
From 56d0d98a2569d69596bb1c45154740db2fbfe1e2 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Wed, 5 Nov 2025 16:51:20 +0000 Subject: [PATCH 4/4] DOC-5877 fixed self-link to AI resources page --- 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 06c76f1b36..d1768ccc6c 100644 --- a/content/ai-agent-resources.md +++ b/content/ai-agent-resources.md @@ -13,7 +13,7 @@ Redis provides a comprehensive index of all documentation in Markdown format at All documentation pages are available in Markdown format via the same URL as the main doc page but with `index.html.md` added. For example, the Markdown version of this page is available at -[ai-agent-resources/index.html.md](https://redis.io/docs/latest/develop/ai-agent-resources/index.html.md). +[ai-agent-resources/index.html.md](https://redis.io/docs/latest/ai-agent-resources/index.html.md). ## API references