From sundial-org-awesome-openclaw-skills-4
Manages Redis databases with key-value operations, caching, pub/sub messaging, and data structure commands. Useful for cache management and TTL control.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:redisThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Redis in-memory database management.
Redis in-memory database management.
export REDIS_URL="redis://localhost:6379"
"Get key user:123"
"Set cache for 1 hour"
"Show all keys matching user:*"
"Flush cache"
redis-cli GET key
redis-cli SET key value EX 3600
redis-cli KEYS "pattern*"
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Provides a quick-reference guide for redis-cli: connection, security, installation, and common commands. Useful when querying, debugging, or managing Redis from the command line.
Reads and writes to Upstash Redis-compatible key-value store via REST API. Supports strings, hashes, lists, sets, sorted sets, and other Redis data structures. Useful for caching, counters, and persistent storage.
Guides Redis system design: data structures for caching, queues, leaderboards, sessions; caching strategies, pub/sub, streams, clustering, memory optimization, Lua scripting.