Redis' official collection of agent skills
npx skills add https://github.com/redis/agent-skills --skill redis-development使用 CLI 安装这个技能,并在你的工作区中直接复用对应的 SKILL.md 工作流。
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 format.
| Skill | Description |
|---|---|
| redis-development | Redis development best practices — data structures, query engine, vector search, caching, and performance optimization. |
npx skills add redis/agent-skills
You can also install the skills as a Claude Code plugin:
/plugin marketplace add redis/agent-skills
/plugin install redis-development@redis
This repository also includes Cursor plugin packaging. Run this command in chat:
/add-plugin redis
The top-level skills/ directory remains the source of truth. Plugin folders symlink only the skill directories they expose.
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
Each skill contains:
SKILL.md - Instructions for the agentAGENTS.md - Compiled rules (generated for rule-based skills)rules/ - Individual rule files (for rule-based skills)scripts/ - Helper scripts for automation (optional)For rule-based skills, build the compiled AGENTS.md:
npm install
npm run validate # Validate rule files
npm run build # Build AGENTS.md
MIT