redis/redisctl-enterprise-ops
Day-to-day Redis Enterprise cluster operations via the redisctl CLI. Use when checking cluster status, managing databases, viewing stats and logs, or monitoring Active-Active deployments.
npx skills add https://github.com/redis/redisctl --skill redisctl-enterprise-ops
Manage Redis Enterprise clusters, databases, and operational monitoring through the CLI.
# Comprehensive status overview
redisctl enterprise status
# With specific sections
redisctl enterprise status --cluster --nodes --databases --shards
# Brief summary
redisctl enterprise status --brief
# List all databases
redisctl enterprise database list
# Get database details
redisctl enterprise database get 1
# Create a database
redisctl enterprise database create --data '{...}'
# Update a database
redisctl enterprise database update 1 --data '{...}'
# Delete a database
redisctl enterprise database delete 1
# List CRDBs
redisctl enterprise crdb list
# Get CRDB details
redisctl enterprise crdb get <guid>
# Create a CRDB
redisctl enterprise crdb create --data '{...}'
# Update a CRDB
redisctl enterprise crdb update <guid> --data '{...}'
# Check CRDB task status
redisctl enterprise crdb-task list
redisctl enterprise crdb-task get <task-id>
# Cluster-level stats
redisctl enterprise stats cluster
# Per-node stats
redisctl enterprise stats node
# Per-database stats
redisctl enterprise stats database
# Per-shard stats (by database)
redisctl enterprise stats database-shards
# View cluster event logs
redisctl enterprise logs list
# List alerts
redisctl enterprise alerts list
# Get alert details
redisctl enterprise alerts get <UID>
# List installed modules
redisctl enterprise module list
# Get module details
redisctl enterprise module get <UID>
# List nodes
redisctl enterprise node list
# Get node details
redisctl enterprise node get 1
# List shards
redisctl enterprise shard list
# Get shard details
redisctl enterprise shard get <UID>
--profile <name> to target a specific Enterprise cluster--profileredisctl enterprise status --brief for a quick health checkTake redis/redisctl-enterprise-ops from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.