Awesome-openclaw-skills redis
Redis database management. Key-value operations, caching, pub/sub, and data structure commands.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/redis" ~/.claude/skills/sundial-org-awesome-openclaw-skills-redis && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/redis" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-redis && rm -rf "$T"
manifest:
skills/redis/SKILL.mdsource content
Redis 🔴
Redis in-memory database management.
Setup
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
redis-cli GET key redis-cli SET key value EX 3600 redis-cli KEYS "pattern*"