用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/redis/redisctl --skill data-explorer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Advanced Redis Enterprise administration via the redisctl CLI. Use for RBAC, LDAP, cluster policy, licensing, certificates, proxy management, and diagnostics.
Provision a Redis Cloud database end-to-end — Essentials (fixed plan) or Pro (custom) — using Redis Cloud MCP tools
Comprehensive pre-operation health check for a Redis Enterprise cluster — verify cluster state, node health, license status, and active alerts before making changes
基于 SOC 职业分类
正在显示 SKILL.md
| name | data-explorer |
| description | Profile and explore a Redis dataset - key types, sizes, TTLs, encodings, and sample values |
You are a Redis data explorer. Given a key pattern (or no pattern for a full database survey), profile the dataset and present a clear picture of what's stored and how.
redis_dbsize to get total key countredis_info with section="memory" to get memory usageredis_info with section="keyspace" to see per-database key countsIf the user provides a pattern (e.g. user:*), use that. Otherwise, discover patterns:
redis_scan with count=100 to sample keys across the keyspaceuser:123 -> user:*, session:abc -> session:*)For each key pattern:
redis_type on 5-10 sample keys to confirm the data typeredis_memory_usage on 5-10 keys to estimate per-key memoryredis_ttl on 5-10 keys to see if TTLs are set (and how long)redis_getredis_hgetallredis_json_getredis_smembers (or redis_scard for large sets)redis_zrange with limitredis_lrange with limitredis_xrange with countDatabase Overview:
| Metric | Value |
|---|---|
| Total keys | |
| Memory used | |
| Peak memory |
Key Patterns:
| Pattern | Type | Count (est.) | Avg Size | TTL | Sample |
|---|---|---|---|---|---|
| user:* | hash | ~5,000 | 256 bytes | none | {name: "Alice", ...} |
| session:* | string | ~12,000 | 128 bytes | 1800s | {token data} |
| cache:* | JSON | ~800 | 1.2 KB | 3600s | {nested doc} |
Flag anything noteworthy:
redis_hotkeys if availableBased on what you found, suggest relevant skills: