[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-redis-data-explorer":3,"mdc-at6qja-key":37,"related-repo-redis-data-explorer":714,"related-org-redis-data-explorer":809},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":32,"sourceUrl":35,"mdContent":36},"data-explorer","explore and profile Redis datasets","Profile and explore a Redis dataset - key types, sizes, TTLs, encodings, and sample values",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"redis","Redis","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fredis.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Observability","observability","tag",{"name":17,"slug":18,"type":15},"Data Analysis","data-analysis",{"name":20,"slug":21,"type":15},"Database","database",{"name":9,"slug":8,"type":15},15,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fredisctl","2026-05-28T07:09:52.268662",null,0,[29,8,30,31],"cli","redis-cloud","redis-enterprise",{"repoUrl":24,"stars":23,"forks":27,"topics":33,"description":34},[29,8,30,31],"Unified CLI for Redis Cloud and Enterprise management","https:\u002F\u002Fgithub.com\u002Fredis\u002Fredisctl\u002Ftree\u002FHEAD\u002Fcrates\u002Fredisctl-mcp\u002Fskills\u002Fdata-explorer","---\nname: data-explorer\ndescription: Profile and explore a Redis dataset - key types, sizes, TTLs, encodings, and sample values\n---\n\nYou 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.\n\n## Workflow\n\n### Step 1: Get the big picture\n\n1. Use `redis_dbsize` to get total key count\n2. Use `redis_info` with section=\"memory\" to get memory usage\n3. Use `redis_info` with section=\"keyspace\" to see per-database key counts\n\n### Step 2: Discover key patterns\n\nIf the user provides a pattern (e.g. `user:*`), use that. Otherwise, discover patterns:\n\n1. Use `redis_scan` with count=100 to sample keys across the keyspace\n2. Group keys by their prefix pattern (e.g. `user:123` -> `user:*`, `session:abc` -> `session:*`)\n3. Report the discovered patterns and approximate counts\n\n### Step 3: Profile each pattern\n\nFor each key pattern:\n\n1. **Type distribution**: Use `redis_type` on 5-10 sample keys to confirm the data type\n2. **Size sampling**: Use `redis_memory_usage` on 5-10 keys to estimate per-key memory\n3. **TTL check**: Use `redis_ttl` on 5-10 keys to see if TTLs are set (and how long)\n4. **Value sampling**: Read 2-3 sample values:\n   - Strings: `redis_get`\n   - Hashes: `redis_hgetall`\n   - JSON: `redis_json_get`\n   - Sets: `redis_smembers` (or `redis_scard` for large sets)\n   - Sorted sets: `redis_zrange` with limit\n   - Lists: `redis_lrange` with limit\n   - Streams: `redis_xrange` with count\n\n### Step 4: Present the profile\n\n**Database Overview:**\n| Metric | Value |\n|--------|-------|\n| Total keys | |\n| Memory used | |\n| Peak memory | |\n\n**Key Patterns:**\n\n| Pattern | Type | Count (est.) | Avg Size | TTL | Sample |\n|---------|------|-------------|----------|-----|--------|\n| user:* | hash | ~5,000 | 256 bytes | none | {name: \"Alice\", ...} |\n| session:* | string | ~12,000 | 128 bytes | 1800s | {token data} |\n| cache:* | JSON | ~800 | 1.2 KB | 3600s | {nested doc} |\n\n### Step 5: Identify patterns and anomalies\n\nFlag anything noteworthy:\n- **Big keys**: Any key using significantly more memory than its peers\n- **No TTL on cache-like data**: Keys that look ephemeral but have no expiry\n- **Encoding surprises**: Large sorted sets that have moved from ziplist to skiplist\n- **Empty or near-empty keys**: Keys that exist but have minimal data\n- **Hot key candidates**: Use `redis_hotkeys` if available\n\n### Step 6: Suggest next steps\n\nBased on what you found, suggest relevant skills:\n- Found JSON docs? -> \"Consider running index-advisor to set up search\"\n- Found TTL-based patterns? -> \"The data-modeling-advisor can evaluate your TTL strategy\"\n- Found large datasets? -> \"Use compare-approaches to evaluate different data structures\"\n- Found memory concerns? -> \"Check redis_info memory and consider eviction policies\"\n\n## Tips\n\n- SCAN is cursor-based and safe for production; it won't block the server\n- Memory usage per key includes overhead (encoding, pointers); don't be surprised if a 10-byte string uses 80 bytes\n- TTL of -1 means no expiry; TTL of -2 means the key doesn't exist\n- For large databases, sample rather than scan everything -- 100-500 keys per pattern is sufficient\n- If the database is empty or nearly empty, say so -- don't force a deep analysis on nothing\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,50,57,64,106,112,125,180,186,191,353,359,367,428,436,575,581,586,646,652,657,680,686],{"type":43,"tag":44,"props":45,"children":46},"element","p",{},[47],{"type":48,"value":49},"text","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.",{"type":43,"tag":51,"props":52,"children":54},"h2",{"id":53},"workflow",[55],{"type":48,"value":56},"Workflow",{"type":43,"tag":58,"props":59,"children":61},"h3",{"id":60},"step-1-get-the-big-picture",[62],{"type":48,"value":63},"Step 1: Get the big picture",{"type":43,"tag":65,"props":66,"children":67},"ol",{},[68,83,95],{"type":43,"tag":69,"props":70,"children":71},"li",{},[72,74,81],{"type":48,"value":73},"Use ",{"type":43,"tag":75,"props":76,"children":78},"code",{"className":77},[],[79],{"type":48,"value":80},"redis_dbsize",{"type":48,"value":82}," to get total key count",{"type":43,"tag":69,"props":84,"children":85},{},[86,87,93],{"type":48,"value":73},{"type":43,"tag":75,"props":88,"children":90},{"className":89},[],[91],{"type":48,"value":92},"redis_info",{"type":48,"value":94}," with section=\"memory\" to get memory usage",{"type":43,"tag":69,"props":96,"children":97},{},[98,99,104],{"type":48,"value":73},{"type":43,"tag":75,"props":100,"children":102},{"className":101},[],[103],{"type":48,"value":92},{"type":48,"value":105}," with section=\"keyspace\" to see per-database key counts",{"type":43,"tag":58,"props":107,"children":109},{"id":108},"step-2-discover-key-patterns",[110],{"type":48,"value":111},"Step 2: Discover key patterns",{"type":43,"tag":44,"props":113,"children":114},{},[115,117,123],{"type":48,"value":116},"If the user provides a pattern (e.g. ",{"type":43,"tag":75,"props":118,"children":120},{"className":119},[],[121],{"type":48,"value":122},"user:*",{"type":48,"value":124},"), use that. Otherwise, discover patterns:",{"type":43,"tag":65,"props":126,"children":127},{},[128,140,175],{"type":43,"tag":69,"props":129,"children":130},{},[131,132,138],{"type":48,"value":73},{"type":43,"tag":75,"props":133,"children":135},{"className":134},[],[136],{"type":48,"value":137},"redis_scan",{"type":48,"value":139}," with count=100 to sample keys across the keyspace",{"type":43,"tag":69,"props":141,"children":142},{},[143,145,151,153,158,160,166,167,173],{"type":48,"value":144},"Group keys by their prefix pattern (e.g. ",{"type":43,"tag":75,"props":146,"children":148},{"className":147},[],[149],{"type":48,"value":150},"user:123",{"type":48,"value":152}," -> ",{"type":43,"tag":75,"props":154,"children":156},{"className":155},[],[157],{"type":48,"value":122},{"type":48,"value":159},", ",{"type":43,"tag":75,"props":161,"children":163},{"className":162},[],[164],{"type":48,"value":165},"session:abc",{"type":48,"value":152},{"type":43,"tag":75,"props":168,"children":170},{"className":169},[],[171],{"type":48,"value":172},"session:*",{"type":48,"value":174},")",{"type":43,"tag":69,"props":176,"children":177},{},[178],{"type":48,"value":179},"Report the discovered patterns and approximate counts",{"type":43,"tag":58,"props":181,"children":183},{"id":182},"step-3-profile-each-pattern",[184],{"type":48,"value":185},"Step 3: Profile each pattern",{"type":43,"tag":44,"props":187,"children":188},{},[189],{"type":48,"value":190},"For each key pattern:",{"type":43,"tag":65,"props":192,"children":193},{},[194,213,230,247],{"type":43,"tag":69,"props":195,"children":196},{},[197,203,205,211],{"type":43,"tag":198,"props":199,"children":200},"strong",{},[201],{"type":48,"value":202},"Type distribution",{"type":48,"value":204},": Use ",{"type":43,"tag":75,"props":206,"children":208},{"className":207},[],[209],{"type":48,"value":210},"redis_type",{"type":48,"value":212}," on 5-10 sample keys to confirm the data type",{"type":43,"tag":69,"props":214,"children":215},{},[216,221,222,228],{"type":43,"tag":198,"props":217,"children":218},{},[219],{"type":48,"value":220},"Size sampling",{"type":48,"value":204},{"type":43,"tag":75,"props":223,"children":225},{"className":224},[],[226],{"type":48,"value":227},"redis_memory_usage",{"type":48,"value":229}," on 5-10 keys to estimate per-key memory",{"type":43,"tag":69,"props":231,"children":232},{},[233,238,239,245],{"type":43,"tag":198,"props":234,"children":235},{},[236],{"type":48,"value":237},"TTL check",{"type":48,"value":204},{"type":43,"tag":75,"props":240,"children":242},{"className":241},[],[243],{"type":48,"value":244},"redis_ttl",{"type":48,"value":246}," on 5-10 keys to see if TTLs are set (and how long)",{"type":43,"tag":69,"props":248,"children":249},{},[250,255,257],{"type":43,"tag":198,"props":251,"children":252},{},[253],{"type":48,"value":254},"Value sampling",{"type":48,"value":256},": Read 2-3 sample values:\n",{"type":43,"tag":258,"props":259,"children":260},"ul",{},[261,272,283,294,315,328,340],{"type":43,"tag":69,"props":262,"children":263},{},[264,266],{"type":48,"value":265},"Strings: ",{"type":43,"tag":75,"props":267,"children":269},{"className":268},[],[270],{"type":48,"value":271},"redis_get",{"type":43,"tag":69,"props":273,"children":274},{},[275,277],{"type":48,"value":276},"Hashes: ",{"type":43,"tag":75,"props":278,"children":280},{"className":279},[],[281],{"type":48,"value":282},"redis_hgetall",{"type":43,"tag":69,"props":284,"children":285},{},[286,288],{"type":48,"value":287},"JSON: ",{"type":43,"tag":75,"props":289,"children":291},{"className":290},[],[292],{"type":48,"value":293},"redis_json_get",{"type":43,"tag":69,"props":295,"children":296},{},[297,299,305,307,313],{"type":48,"value":298},"Sets: ",{"type":43,"tag":75,"props":300,"children":302},{"className":301},[],[303],{"type":48,"value":304},"redis_smembers",{"type":48,"value":306}," (or ",{"type":43,"tag":75,"props":308,"children":310},{"className":309},[],[311],{"type":48,"value":312},"redis_scard",{"type":48,"value":314}," for large sets)",{"type":43,"tag":69,"props":316,"children":317},{},[318,320,326],{"type":48,"value":319},"Sorted sets: ",{"type":43,"tag":75,"props":321,"children":323},{"className":322},[],[324],{"type":48,"value":325},"redis_zrange",{"type":48,"value":327}," with limit",{"type":43,"tag":69,"props":329,"children":330},{},[331,333,339],{"type":48,"value":332},"Lists: ",{"type":43,"tag":75,"props":334,"children":336},{"className":335},[],[337],{"type":48,"value":338},"redis_lrange",{"type":48,"value":327},{"type":43,"tag":69,"props":341,"children":342},{},[343,345,351],{"type":48,"value":344},"Streams: ",{"type":43,"tag":75,"props":346,"children":348},{"className":347},[],[349],{"type":48,"value":350},"redis_xrange",{"type":48,"value":352}," with count",{"type":43,"tag":58,"props":354,"children":356},{"id":355},"step-4-present-the-profile",[357],{"type":48,"value":358},"Step 4: Present the profile",{"type":43,"tag":44,"props":360,"children":361},{},[362],{"type":43,"tag":198,"props":363,"children":364},{},[365],{"type":48,"value":366},"Database Overview:",{"type":43,"tag":368,"props":369,"children":370},"table",{},[371,390],{"type":43,"tag":372,"props":373,"children":374},"thead",{},[375],{"type":43,"tag":376,"props":377,"children":378},"tr",{},[379,385],{"type":43,"tag":380,"props":381,"children":382},"th",{},[383],{"type":48,"value":384},"Metric",{"type":43,"tag":380,"props":386,"children":387},{},[388],{"type":48,"value":389},"Value",{"type":43,"tag":391,"props":392,"children":393},"tbody",{},[394,406,417],{"type":43,"tag":376,"props":395,"children":396},{},[397,403],{"type":43,"tag":398,"props":399,"children":400},"td",{},[401],{"type":48,"value":402},"Total keys",{"type":43,"tag":398,"props":404,"children":405},{},[],{"type":43,"tag":376,"props":407,"children":408},{},[409,414],{"type":43,"tag":398,"props":410,"children":411},{},[412],{"type":48,"value":413},"Memory used",{"type":43,"tag":398,"props":415,"children":416},{},[],{"type":43,"tag":376,"props":418,"children":419},{},[420,425],{"type":43,"tag":398,"props":421,"children":422},{},[423],{"type":48,"value":424},"Peak memory",{"type":43,"tag":398,"props":426,"children":427},{},[],{"type":43,"tag":44,"props":429,"children":430},{},[431],{"type":43,"tag":198,"props":432,"children":433},{},[434],{"type":48,"value":435},"Key Patterns:",{"type":43,"tag":368,"props":437,"children":438},{},[439,475],{"type":43,"tag":372,"props":440,"children":441},{},[442],{"type":43,"tag":376,"props":443,"children":444},{},[445,450,455,460,465,470],{"type":43,"tag":380,"props":446,"children":447},{},[448],{"type":48,"value":449},"Pattern",{"type":43,"tag":380,"props":451,"children":452},{},[453],{"type":48,"value":454},"Type",{"type":43,"tag":380,"props":456,"children":457},{},[458],{"type":48,"value":459},"Count (est.)",{"type":43,"tag":380,"props":461,"children":462},{},[463],{"type":48,"value":464},"Avg Size",{"type":43,"tag":380,"props":466,"children":467},{},[468],{"type":48,"value":469},"TTL",{"type":43,"tag":380,"props":471,"children":472},{},[473],{"type":48,"value":474},"Sample",{"type":43,"tag":391,"props":476,"children":477},{},[478,510,542],{"type":43,"tag":376,"props":479,"children":480},{},[481,485,490,495,500,505],{"type":43,"tag":398,"props":482,"children":483},{},[484],{"type":48,"value":122},{"type":43,"tag":398,"props":486,"children":487},{},[488],{"type":48,"value":489},"hash",{"type":43,"tag":398,"props":491,"children":492},{},[493],{"type":48,"value":494},"~5,000",{"type":43,"tag":398,"props":496,"children":497},{},[498],{"type":48,"value":499},"256 bytes",{"type":43,"tag":398,"props":501,"children":502},{},[503],{"type":48,"value":504},"none",{"type":43,"tag":398,"props":506,"children":507},{},[508],{"type":48,"value":509},"{name: \"Alice\", ...}",{"type":43,"tag":376,"props":511,"children":512},{},[513,517,522,527,532,537],{"type":43,"tag":398,"props":514,"children":515},{},[516],{"type":48,"value":172},{"type":43,"tag":398,"props":518,"children":519},{},[520],{"type":48,"value":521},"string",{"type":43,"tag":398,"props":523,"children":524},{},[525],{"type":48,"value":526},"~12,000",{"type":43,"tag":398,"props":528,"children":529},{},[530],{"type":48,"value":531},"128 bytes",{"type":43,"tag":398,"props":533,"children":534},{},[535],{"type":48,"value":536},"1800s",{"type":43,"tag":398,"props":538,"children":539},{},[540],{"type":48,"value":541},"{token data}",{"type":43,"tag":376,"props":543,"children":544},{},[545,550,555,560,565,570],{"type":43,"tag":398,"props":546,"children":547},{},[548],{"type":48,"value":549},"cache:*",{"type":43,"tag":398,"props":551,"children":552},{},[553],{"type":48,"value":554},"JSON",{"type":43,"tag":398,"props":556,"children":557},{},[558],{"type":48,"value":559},"~800",{"type":43,"tag":398,"props":561,"children":562},{},[563],{"type":48,"value":564},"1.2 KB",{"type":43,"tag":398,"props":566,"children":567},{},[568],{"type":48,"value":569},"3600s",{"type":43,"tag":398,"props":571,"children":572},{},[573],{"type":48,"value":574},"{nested doc}",{"type":43,"tag":58,"props":576,"children":578},{"id":577},"step-5-identify-patterns-and-anomalies",[579],{"type":48,"value":580},"Step 5: Identify patterns and anomalies",{"type":43,"tag":44,"props":582,"children":583},{},[584],{"type":48,"value":585},"Flag anything noteworthy:",{"type":43,"tag":258,"props":587,"children":588},{},[589,599,609,619,629],{"type":43,"tag":69,"props":590,"children":591},{},[592,597],{"type":43,"tag":198,"props":593,"children":594},{},[595],{"type":48,"value":596},"Big keys",{"type":48,"value":598},": Any key using significantly more memory than its peers",{"type":43,"tag":69,"props":600,"children":601},{},[602,607],{"type":43,"tag":198,"props":603,"children":604},{},[605],{"type":48,"value":606},"No TTL on cache-like data",{"type":48,"value":608},": Keys that look ephemeral but have no expiry",{"type":43,"tag":69,"props":610,"children":611},{},[612,617],{"type":43,"tag":198,"props":613,"children":614},{},[615],{"type":48,"value":616},"Encoding surprises",{"type":48,"value":618},": Large sorted sets that have moved from ziplist to skiplist",{"type":43,"tag":69,"props":620,"children":621},{},[622,627],{"type":43,"tag":198,"props":623,"children":624},{},[625],{"type":48,"value":626},"Empty or near-empty keys",{"type":48,"value":628},": Keys that exist but have minimal data",{"type":43,"tag":69,"props":630,"children":631},{},[632,637,638,644],{"type":43,"tag":198,"props":633,"children":634},{},[635],{"type":48,"value":636},"Hot key candidates",{"type":48,"value":204},{"type":43,"tag":75,"props":639,"children":641},{"className":640},[],[642],{"type":48,"value":643},"redis_hotkeys",{"type":48,"value":645}," if available",{"type":43,"tag":58,"props":647,"children":649},{"id":648},"step-6-suggest-next-steps",[650],{"type":48,"value":651},"Step 6: Suggest next steps",{"type":43,"tag":44,"props":653,"children":654},{},[655],{"type":48,"value":656},"Based on what you found, suggest relevant skills:",{"type":43,"tag":258,"props":658,"children":659},{},[660,665,670,675],{"type":43,"tag":69,"props":661,"children":662},{},[663],{"type":48,"value":664},"Found JSON docs? -> \"Consider running index-advisor to set up search\"",{"type":43,"tag":69,"props":666,"children":667},{},[668],{"type":48,"value":669},"Found TTL-based patterns? -> \"The data-modeling-advisor can evaluate your TTL strategy\"",{"type":43,"tag":69,"props":671,"children":672},{},[673],{"type":48,"value":674},"Found large datasets? -> \"Use compare-approaches to evaluate different data structures\"",{"type":43,"tag":69,"props":676,"children":677},{},[678],{"type":48,"value":679},"Found memory concerns? -> \"Check redis_info memory and consider eviction policies\"",{"type":43,"tag":51,"props":681,"children":683},{"id":682},"tips",[684],{"type":48,"value":685},"Tips",{"type":43,"tag":258,"props":687,"children":688},{},[689,694,699,704,709],{"type":43,"tag":69,"props":690,"children":691},{},[692],{"type":48,"value":693},"SCAN is cursor-based and safe for production; it won't block the server",{"type":43,"tag":69,"props":695,"children":696},{},[697],{"type":48,"value":698},"Memory usage per key includes overhead (encoding, pointers); don't be surprised if a 10-byte string uses 80 bytes",{"type":43,"tag":69,"props":700,"children":701},{},[702],{"type":48,"value":703},"TTL of -1 means no expiry; TTL of -2 means the key doesn't exist",{"type":43,"tag":69,"props":705,"children":706},{},[707],{"type":48,"value":708},"For large databases, sample rather than scan everything -- 100-500 keys per pattern is sufficient",{"type":43,"tag":69,"props":710,"children":711},{},[712],{"type":48,"value":713},"If the database is empty or nearly empty, say so -- don't force a deep analysis on nothing",{"items":715,"total":808},[716,731,746,753,766,779,797],{"slug":717,"name":717,"fn":718,"description":719,"org":720,"tags":721,"stars":23,"repoUrl":24,"updatedAt":730},"cloud-database-provisioning","provision Redis Cloud databases","Provision a Redis Cloud database end-to-end — Essentials (fixed plan) or Pro (custom) — using Redis Cloud MCP tools",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[722,725,726,729],{"name":723,"slug":724,"type":15},"Cloud","cloud",{"name":20,"slug":21,"type":15},{"name":727,"slug":728,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-06-03T07:53:00.906753",{"slug":732,"name":732,"fn":733,"description":734,"org":735,"tags":736,"stars":23,"repoUrl":24,"updatedAt":745},"compare-approaches","prototype Redis data model alternatives","Prototype and compare 2-3 Redis data model alternatives for the same workload",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[737,740,741,744],{"name":738,"slug":739,"type":15},"Data Modeling","data-modeling",{"name":20,"slug":21,"type":15},{"name":742,"slug":743,"type":15},"Prototyping","prototyping",{"name":9,"slug":8,"type":15},"2026-05-27T07:19:55.591944",{"slug":4,"name":4,"fn":5,"description":6,"org":747,"tags":748,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[749,750,751,752],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"slug":754,"name":754,"fn":755,"description":756,"org":757,"tags":758,"stars":23,"repoUrl":24,"updatedAt":765},"data-modeling-advisor","design Redis data models","Recommend Redis data structures and patterns for a given workload before committing to an approach",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[759,762,763,764],{"name":760,"slug":761,"type":15},"Architecture","architecture",{"name":738,"slug":739,"type":15},{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},"2026-05-28T07:09:51.028825",{"slug":767,"name":767,"fn":768,"description":769,"org":770,"tags":771,"stars":23,"repoUrl":24,"updatedAt":778},"enterprise-health-check","perform Redis Enterprise cluster health checks","Comprehensive pre-operation health check for a Redis Enterprise cluster — verify cluster state, node health, license status, and active alerts before making changes",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[772,773,774,777],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":775,"slug":776,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-06-03T07:52:59.693017",{"slug":780,"name":780,"fn":781,"description":782,"org":783,"tags":784,"stars":23,"repoUrl":24,"updatedAt":796},"index-ab-test","compare RediSearch index configurations","Create and compare multiple RediSearch index configurations to find the best one",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[785,788,789,792,793],{"name":786,"slug":787,"type":15},"A\u002FB Testing","a-b-testing",{"name":20,"slug":21,"type":15},{"name":790,"slug":791,"type":15},"Performance","performance",{"name":9,"slug":8,"type":15},{"name":794,"slug":795,"type":15},"Search","search","2026-05-28T07:09:53.54884",{"slug":798,"name":798,"fn":799,"description":800,"org":801,"tags":802,"stars":23,"repoUrl":24,"updatedAt":807},"index-advisor","recommend RediSearch index schemas","Analyze a Redis dataset and recommend an optimal RediSearch index schema",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[803,804,805,806],{"name":738,"slug":739,"type":15},{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"name":794,"slug":795,"type":15},"2026-05-28T07:09:48.520606",17,{"items":810,"total":979},[811,833,847,860,871,887,901,921,935,950,965,972],{"slug":812,"name":812,"fn":813,"description":814,"org":815,"tags":816,"stars":830,"repoUrl":831,"updatedAt":832},"iris-development","integrate with Redis Iris AI products","Iris is Redis's umbrella for AI-focused products. Use this skill when integrating with the Iris Redis Agent Memory (RAM) data plane on Redis Cloud — recording session events for an AI agent, creating or searching long-term memories, configuring a memory store, or tuning background memory promotion. Code examples use the official `redis-agent-memory` (Python) and `@redis-iris\u002Fagent-memory` (TypeScript) SDKs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[817,820,823,826,829],{"name":818,"slug":819,"type":15},"Agents","agents",{"name":821,"slug":822,"type":15},"AI Infrastructure","ai-infrastructure",{"name":824,"slug":825,"type":15},"Backend","backend",{"name":827,"slug":828,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},92,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fagent-skills","2026-05-27T07:19:45.213725",{"slug":834,"name":834,"fn":835,"description":836,"org":837,"tags":838,"stars":830,"repoUrl":831,"updatedAt":846},"redis-clustering","configure Redis clustering and replication","Redis Cluster and replication guidance covering hash tags for multi-key operations, avoiding CROSSSLOT errors, and reading from replicas to scale read-heavy workloads. Use when designing keys for a sharded Redis Cluster, debugging CROSSSLOT errors on MGET \u002F SDIFF \u002F pipelines, configuring a multi-key transaction in a cluster, or routing reads to replicas for caches, analytics, or dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[839,840,841,844,845],{"name":760,"slug":761,"type":15},{"name":20,"slug":21,"type":15},{"name":842,"slug":843,"type":15},"Infrastructure","infrastructure",{"name":790,"slug":791,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:38.757599",{"slug":848,"name":848,"fn":849,"description":850,"org":851,"tags":852,"stars":830,"repoUrl":831,"updatedAt":859},"redis-connections","optimize Redis client connections","Redis client and connection guidance covering connection pooling, multiplexing, pipelining, client-side caching with RESP3, avoiding slow commands (KEYS, SMEMBERS, HGETALL), and tuning socket timeouts. Use when configuring a Redis client (redis-py, Jedis, Lettuce, NRedisStack), batching commands for throughput, eliminating per-request connection creation, iterating large keyspaces with SCAN, enabling client-side caching for read-heavy workloads, or setting connect and read timeouts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[853,854,857,858],{"name":824,"slug":825,"type":15},{"name":855,"slug":856,"type":15},"Caching","caching",{"name":790,"slug":791,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:42.616757",{"slug":861,"name":861,"fn":862,"description":863,"org":864,"tags":865,"stars":830,"repoUrl":831,"updatedAt":870},"redis-core","model data with Redis structures","Core Redis modeling guidance — choose the right data structure (String, Hash, List, Set, Sorted Set, JSON, Stream, Vector Set) and use consistent colon-separated key names. Use when designing a Redis data model, caching objects, deciding between Hash and JSON, building counters, leaderboards, membership sets, or session stores, or when reviewing\u002Fcleaning up Redis key naming.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[866,867,868,869],{"name":760,"slug":761,"type":15},{"name":738,"slug":739,"type":15},{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:41.317954",{"slug":872,"name":872,"fn":873,"description":874,"org":875,"tags":876,"stars":830,"repoUrl":831,"updatedAt":886},"redis-observability","monitor and triage Redis performance","Redis observability guidance — which metrics to monitor (memory, connections, hit ratio, ops\u002Fsec, rejected connections), which built-in commands to reach for during incident triage (SLOWLOG, INFO, MEMORY DOCTOR, CLIENT LIST, FT.PROFILE), and when to use the Redis Insight GUI. Use when setting up monitoring or alerts for a Redis instance, diagnosing a performance regression, profiling a slow FT.SEARCH query, or wiring Redis metrics into Prometheus, Datadog, or similar.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[877,880,883,884,885],{"name":878,"slug":879,"type":15},"Debugging","debugging",{"name":881,"slug":882,"type":15},"Monitoring","monitoring",{"name":13,"slug":14,"type":15},{"name":790,"slug":791,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:47.780873",{"slug":888,"name":888,"fn":889,"description":890,"org":891,"tags":892,"stars":830,"repoUrl":831,"updatedAt":900},"redis-search","implement Redis Search indexing and queries","Redis Search guidance covering FT.CREATE schema design, field type selection (TEXT, TAG, NUMERIC, GEO, GEOSHAPE, VECTOR, JSON path), DIALECT 2 query syntax, FT.SEARCH \u002F FT.AGGREGATE \u002F FT.HYBRID command selection, vector similarity with HNSW or FLAT, hybrid retrieval combining lexical and vector ranking, RAG pipelines, zero-downtime index updates via aliases, and debugging with FT.PROFILE and FT.EXPLAIN. Use when defining a search index on Hash or JSON documents, writing FT.SEARCH queries with filters, sorting, aggregation, or vector KNN, tuning HNSW parameters, building a RAG retrieval pipeline, or troubleshooting slow or empty search results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[893,894,895,898,899],{"name":760,"slug":761,"type":15},{"name":20,"slug":21,"type":15},{"name":896,"slug":897,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},{"name":794,"slug":795,"type":15},"2026-06-24T07:39:43.089819",{"slug":902,"name":902,"fn":903,"description":904,"org":905,"tags":906,"stars":830,"repoUrl":831,"updatedAt":920},"redis-security","secure Redis instances and clusters","Redis security guidance covering authentication (requirepass and ACL users), TLS, ACL-based least-privilege access control, restricting network exposure via bind and protected-mode, firewall rules, and disabling dangerous commands. Use when deploying Redis to production, defining ACL users for an application, configuring TLS connections, locking down a Redis instance behind a firewall, or auditing a Redis deployment for security hardening.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[907,910,913,916,917],{"name":908,"slug":909,"type":15},"Access Control","access-control",{"name":911,"slug":912,"type":15},"Authentication","authentication",{"name":914,"slug":915,"type":15},"Compliance","compliance",{"name":9,"slug":8,"type":15},{"name":918,"slug":919,"type":15},"Security","security","2026-05-27T07:19:40.030241",{"slug":922,"name":922,"fn":923,"description":924,"org":925,"tags":926,"stars":830,"repoUrl":831,"updatedAt":934},"redis-semantic-cache","implement semantic caching with Redis","Redis LangCache guidance for semantic caching of LLM responses on Redis Cloud — calling search\u002Fset via the SDK or REST API, tuning the similarity threshold, separating caches per task type, and filtering with custom attributes. Use when caching LLM completions or RAG answers to cut API cost and latency, building a cache-aside layer in front of OpenAI \u002F Anthropic \u002F etc., tuning hit rate vs precision, or splitting one app's LLM workloads into multiple LangCache caches.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[927,928,929,932,933],{"name":821,"slug":822,"type":15},{"name":855,"slug":856,"type":15},{"name":930,"slug":931,"type":15},"LLM","llm",{"name":9,"slug":8,"type":15},{"name":794,"slug":795,"type":15},"2026-05-27T07:19:43.897283",{"slug":936,"name":936,"fn":937,"description":938,"org":939,"tags":940,"stars":947,"repoUrl":948,"updatedAt":949},"agent-filesystem","manage persistent storage in Redis","Use when agents need persistent shared storage, when saving or restoring workspace state, or when coordinating file access across multiple agents and machines. Creates Redis-backed workspaces, checkpoints and restores agent state, mounts shared filesystems locally, searches workspace contents, and forks workspaces for parallel work.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[941,942,945,946],{"name":818,"slug":819,"type":15},{"name":943,"slug":944,"type":15},"File Storage","file-storage",{"name":827,"slug":828,"type":15},{"name":9,"slug":8,"type":15},22,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fagent-filesystem","2026-04-10T04:51:05.904489",{"slug":951,"name":951,"fn":952,"description":953,"org":954,"tags":955,"stars":947,"repoUrl":948,"updatedAt":964},"codex-settings-sync","sync Codex settings across computers","Use when the user wants to migrate Codex state in ~\u002F.codex into Agent Filesystem and mount the same shared Codex memory\u002Fsettings across multiple computers. Recommends a .afsignore before migration and defaults to excluding worktrees, caches, logs, and temporary files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[956,959,960,963],{"name":957,"slug":958,"type":15},"Codex","codex",{"name":827,"slug":828,"type":15},{"name":961,"slug":962,"type":15},"Migration","migration",{"name":9,"slug":8,"type":15},"2026-04-10T04:51:07.268248",{"slug":717,"name":717,"fn":718,"description":719,"org":966,"tags":967,"stars":23,"repoUrl":24,"updatedAt":730},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[968,969,970,971],{"name":723,"slug":724,"type":15},{"name":20,"slug":21,"type":15},{"name":727,"slug":728,"type":15},{"name":9,"slug":8,"type":15},{"slug":732,"name":732,"fn":733,"description":734,"org":973,"tags":974,"stars":23,"repoUrl":24,"updatedAt":745},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[975,976,977,978],{"name":738,"slug":739,"type":15},{"name":20,"slug":21,"type":15},{"name":742,"slug":743,"type":15},{"name":9,"slug":8,"type":15},27]