Redis
| Category | Databases |
| CLI | redis-cli |
| Auth | Basic (password, if configured) |
| Config | REDIS_HOST, REDIS_PORT (optional) |
What it does
Section titled “What it does”Wraps redis-cli to give CodeBuddy access to Redis instances. The agent can get/set keys, inspect data structures, monitor performance, and manage cluster state.
Prerequisites
Section titled “Prerequisites”Install redis-cli:
# macOSbrew install redis
# Linux (Debian/Ubuntu)sudo apt-get install redis-tools
# Linux (Fedora)sudo dnf install redis
# Windowswinget install Redis.RedisThe skill includes a bundled install.sh for automated setup.
Optionally configure connection:
export REDIS_HOST="localhost"export REDIS_PORT="6379"Capabilities
Section titled “Capabilities”- Keys — GET, SET, DEL, KEYS, SCAN, TTL, EXPIRE
- Data structures — lists, sets, hashes, sorted sets, streams
- Pub/Sub — publish, subscribe, channels
- Admin — INFO, CONFIG, DBSIZE, FLUSHDB, MONITOR
- Cluster — cluster info, nodes, slots
Example prompts
Section titled “Example prompts”- “Show all keys matching
session:*” - “What’s the memory usage of this Redis instance?”
- “Set a 1-hour TTL on all keys matching
cache:*” - “Show the members of the
active_userssorted set”