Skip to main content

redis

Redis database management. Key-value operations, caching, pub/sub, and data structure commands.

Jump to install

Source facts

Repository
RunnerQuan/SAFE-Agent
Last source activity
March 30, 2026 at 04:33
Detected SKILL.md language
English
Stars
0
Forks
0

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
4 files

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
redis
description
Redis database management. Key-value operations, caching, pub/sub, and data structure commands.
metadata
{"clawdbot":{"emoji":"🔴","always":true,"requires":{"bins":"[Truncated]"}}}
# Redis 🔴 Redis in-memory database management. ## Setup ```bash export REDIS_URL="redis://localhost:6379" ``` ## Features - Key-value operations - Data structures (lists, sets, hashes) - Pub/Sub messaging - Cache management - TTL management ## Usage Examples ``` "Get key user:123" "Set cache for 1 hour" "Show all keys matching user:*" "Flush cache" ``` ## Commands ```bash redis-cli GET key redis-cli SET key value EX 3600 redis-cli KEYS "pattern*" ```
View on GitHub