redis-cli

Provides command-line access to Redis for managing data structures and cache operations.

3|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/jholhewres/devclaw-skills --skill redis-cli
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: redis-cli
Source: https://github.com/jholhewres/devclaw-skills/tree/main/skills/redis-cli
Command: npx skills add https://github.com/jholhewres/devclaw-skills --skill redis-cli

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a command-line interface to interact with Redis, enabling efficient management of caching, queues, and in-memory data structures.

Core Features & Use Cases

  • Key Management: List, retrieve, set, and delete keys with pattern matching and safe scanning.
  • Data Structure Operations: Perform operations on strings, hashes, lists, and sets.
  • Monitoring & Info: Get detailed information about Redis server status, memory usage, and connected clients.
  • Use Case: Quickly check the number of items in a Redis queue or update a cached user session.

Quick Start

Use the redis-cli skill to get all keys matching the pattern 'user:*'.

Frequently Asked Questions about redis-cli

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage Redis cache and in-memory data structures from the command line?

You can manage Redis cache and in-memory data structures from the command line by executing key-value operations, list manipulation, and hash field management for real-time data services directly through a CLI interface.

What is the best way to list and retrieve Redis keys matching a specific pattern?

The best way to list and retrieve Redis keys is by using safe scanning and pattern matching commands, allowing you to quickly find keys like 'user:*' without blocking the database.

Do I need the redis-tools package to interact with my Redis instances?

Yes, you need the redis-tools package installed, as it provides the required command-line interface for direct interaction and execution of operations against your Redis instances.

Can I check Redis server status and memory usage via the command line?

Yes, you can check Redis server status and memory usage via the command line by retrieving detailed information about connected clients and overall server health metrics.

How do I update a cached user session or check the number of items in a Redis queue?

To update a cached user session or check items in a Redis queue, use CLI commands for string operations and list manipulation to modify and retrieve your in-memory data directly.

What operations are supported for Redis hashes, lists, and sets?

Supported operations for Redis hashes, lists, and sets include data structure manipulation commands that allow you to add, retrieve, and modify fields and values within these in-memory collections.