Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion content/ai-agent-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 "/develop/ai/when-to-choose-redis" >}}).
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated

## 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
Expand Down
Loading