https://github.com/redis/agent-skills
Redis' official collection of agent skills
https://github.com/redis/agent-skills
agent-skills redis
Last synced: 4 months ago
JSON representation
Redis' official collection of agent skills
- Host: GitHub
- URL: https://github.com/redis/agent-skills
- Owner: redis
- License: mit
- Created: 2026-01-29T09:01:23.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-01T16:42:43.000Z (4 months ago)
- Last Synced: 2026-02-03T19:55:57.660Z (4 months ago)
- Topics: agent-skills, redis
- Language: JavaScript
- Homepage: https://redis.io
- Size: 130 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Redis Agent Skills
A collection of skills for AI coding agents working with Redis. Skills are packaged instructions and resources that extend agent capabilities.
Skills follow the [Agent Skills](https://agentskills.io/) format.
## Available Skills
| Skill | Description |
|-------|-------------|
| [redis-development](skills/redis-development/) | Redis development best practices — data structures, query engine, vector search, caching, and performance optimization. |
## Installation
```bash
npx skills add redis/agent-skills
```
## Usage
Skills are automatically available once installed. The agent will use them when relevant tasks are detected.
**Examples:**
```
Help me optimize this Redis query
```
```
What data structure should I use for a leaderboard?
```
```
Review my Redis connection handling
```
## Skill Structure
Each skill contains:
- `SKILL.md` - Instructions for the agent
- `AGENTS.md` - Compiled rules (generated for rule-based skills)
- `rules/` - Individual rule files (for rule-based skills)
- `scripts/` - Helper scripts for automation (optional)
## Building
For rule-based skills, build the compiled AGENTS.md:
```bash
npm install
npm run validate # Validate rule files
npm run build # Build AGENTS.md
```
## License
MIT