[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-redis-redis-core":3,"mdc--4vsqjf-key":35,"related-repo-redis-redis-core":525,"related-org-redis-redis-core":638},{"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":30,"sourceUrl":33,"mdContent":34},"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},"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},"Architecture","architecture","tag",{"name":17,"slug":18,"type":15},"Database","database",{"name":20,"slug":21,"type":15},"Data Modeling","data-modeling",{"name":9,"slug":8,"type":15},92,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fagent-skills","2026-05-27T07:19:41.317954","MIT",21,[29,8],"agent-skills",{"repoUrl":24,"stars":23,"forks":27,"topics":31,"description":32},[29,8],"Redis' official collection of agent skills","https:\u002F\u002Fgithub.com\u002Fredis\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fredis-core","---\nname: redis-core\ndescription: 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.\nlicense: MIT\nmetadata:\n  author: Redis, Inc.\n  version: \"0.1.0\"\n---\n\n# Redis Core\n\nFoundational guidance for modeling data in Redis. Covers data-type selection and key-name conventions — the two decisions that most directly drive memory, performance, and maintainability.\n\n## When to apply\n\n- Caching objects, sessions, or per-user state.\n- Counters, leaderboards, recent-items lists, unique-membership sets.\n- Reviewing or refactoring Redis key names.\n- Deciding between a Redis Hash and a JSON document for an entity.\n\n## 1. Choose the right data structure\n\nPick the type that matches the *access pattern*, not just the shape of the data.\n\n| Use case | Recommended type | Why |\n|---|---|---|\n| Simple values, counters | String | Atomic `INCR`\u002F`DECR`, `SET`\u002F`GET` |\n| Object with independently updated fields | Hash | Per-field reads\u002Fwrites, no whole-object rewrite |\n| Queue, recent-N items | List | O(1) push\u002Fpop at ends |\n| Unique items, membership checks | Set | O(1) `SADD`\u002F`SISMEMBER`\u002F`SCARD` |\n| Rankings, score-based ranges | Sorted Set | Score-ordered; `ZADD`\u002F`ZRANGE`\u002F`ZRANK` |\n| Nested \u002F hierarchical data | JSON | Path-level updates, nested arrays, RQE indexing |\n| Event log, fan-out messaging | Stream | Persistent, consumer groups |\n| Vector similarity | Vector Set | Native vector storage with HNSW |\n\n**Common anti-pattern:** stuffing a flat object into a serialized string. Updating one field means fetch + parse + mutate + rewrite. Use a Hash instead.\n\nSee [references\u002Fchoose-data-structure.md](references\u002Fchoose-data-structure.md) for full rationale and Python\u002FJava examples.\n\n## 2. Use consistent key names\n\nUse `colon-separated` segments with a stable hierarchy:\n\n```\n{entity}:{id}:{attribute}\nuser:1001:profile\nuser:1001:settings\norder:2024:items\nsession:abc123\narticle:987:likes\ngame:space-invaders:leaderboard\n```\n\nRules of thumb:\n\n- **Lowercase, colon-separated.** No spaces, no mixed casing (`User_1001_Profile` is bad).\n- **Keep keys short but readable** — keys live in memory and appear in every command.\n- **Don't use full URLs or long strings as keys.** Extract a short identifier, or use a hash digest of the URL.\n- **Prefix for multi-tenancy** (`tenant:42:user:7:cart`) so scans and ACLs can target a tenant cleanly.\n- **Be consistent.** Pick one convention per service and apply it across all keys.\n\nSee [references\u002Fkey-naming.md](references\u002Fkey-naming.md) for cleanup examples and edge cases.\n\n## References\n\n- [Redis: Choosing the right data type](https:\u002F\u002Fredis.io\u002Fdocs\u002Flatest\u002Fdevelop\u002Fdata-types\u002Fcompare-data-types\u002F)\n- [Redis: Keys](https:\u002F\u002Fredis.io\u002Fdocs\u002Flatest\u002Fdevelop\u002Fuse\u002Fkeyspace\u002F)\n",{"data":36,"body":40},{"name":4,"description":6,"license":26,"metadata":37},{"author":38,"version":39},"Redis, Inc.","0.1.0",{"type":41,"children":42},"root",[43,51,57,64,89,95,108,355,366,379,385,398,410,415,484,495,501],{"type":44,"tag":45,"props":46,"children":47},"element","h1",{"id":4},[48],{"type":49,"value":50},"text","Redis Core",{"type":44,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"Foundational guidance for modeling data in Redis. Covers data-type selection and key-name conventions — the two decisions that most directly drive memory, performance, and maintainability.",{"type":44,"tag":58,"props":59,"children":61},"h2",{"id":60},"when-to-apply",[62],{"type":49,"value":63},"When to apply",{"type":44,"tag":65,"props":66,"children":67},"ul",{},[68,74,79,84],{"type":44,"tag":69,"props":70,"children":71},"li",{},[72],{"type":49,"value":73},"Caching objects, sessions, or per-user state.",{"type":44,"tag":69,"props":75,"children":76},{},[77],{"type":49,"value":78},"Counters, leaderboards, recent-items lists, unique-membership sets.",{"type":44,"tag":69,"props":80,"children":81},{},[82],{"type":49,"value":83},"Reviewing or refactoring Redis key names.",{"type":44,"tag":69,"props":85,"children":86},{},[87],{"type":49,"value":88},"Deciding between a Redis Hash and a JSON document for an entity.",{"type":44,"tag":58,"props":90,"children":92},{"id":91},"_1-choose-the-right-data-structure",[93],{"type":49,"value":94},"1. Choose the right data structure",{"type":44,"tag":52,"props":96,"children":97},{},[98,100,106],{"type":49,"value":99},"Pick the type that matches the ",{"type":44,"tag":101,"props":102,"children":103},"em",{},[104],{"type":49,"value":105},"access pattern",{"type":49,"value":107},", not just the shape of the data.",{"type":44,"tag":109,"props":110,"children":111},"table",{},[112,136],{"type":44,"tag":113,"props":114,"children":115},"thead",{},[116],{"type":44,"tag":117,"props":118,"children":119},"tr",{},[120,126,131],{"type":44,"tag":121,"props":122,"children":123},"th",{},[124],{"type":49,"value":125},"Use case",{"type":44,"tag":121,"props":127,"children":128},{},[129],{"type":49,"value":130},"Recommended type",{"type":44,"tag":121,"props":132,"children":133},{},[134],{"type":49,"value":135},"Why",{"type":44,"tag":137,"props":138,"children":139},"tbody",{},[140,189,207,225,263,301,319,337],{"type":44,"tag":117,"props":141,"children":142},{},[143,149,154],{"type":44,"tag":144,"props":145,"children":146},"td",{},[147],{"type":49,"value":148},"Simple values, counters",{"type":44,"tag":144,"props":150,"children":151},{},[152],{"type":49,"value":153},"String",{"type":44,"tag":144,"props":155,"children":156},{},[157,159,166,168,174,176,182,183],{"type":49,"value":158},"Atomic ",{"type":44,"tag":160,"props":161,"children":163},"code",{"className":162},[],[164],{"type":49,"value":165},"INCR",{"type":49,"value":167},"\u002F",{"type":44,"tag":160,"props":169,"children":171},{"className":170},[],[172],{"type":49,"value":173},"DECR",{"type":49,"value":175},", ",{"type":44,"tag":160,"props":177,"children":179},{"className":178},[],[180],{"type":49,"value":181},"SET",{"type":49,"value":167},{"type":44,"tag":160,"props":184,"children":186},{"className":185},[],[187],{"type":49,"value":188},"GET",{"type":44,"tag":117,"props":190,"children":191},{},[192,197,202],{"type":44,"tag":144,"props":193,"children":194},{},[195],{"type":49,"value":196},"Object with independently updated fields",{"type":44,"tag":144,"props":198,"children":199},{},[200],{"type":49,"value":201},"Hash",{"type":44,"tag":144,"props":203,"children":204},{},[205],{"type":49,"value":206},"Per-field reads\u002Fwrites, no whole-object rewrite",{"type":44,"tag":117,"props":208,"children":209},{},[210,215,220],{"type":44,"tag":144,"props":211,"children":212},{},[213],{"type":49,"value":214},"Queue, recent-N items",{"type":44,"tag":144,"props":216,"children":217},{},[218],{"type":49,"value":219},"List",{"type":44,"tag":144,"props":221,"children":222},{},[223],{"type":49,"value":224},"O(1) push\u002Fpop at ends",{"type":44,"tag":117,"props":226,"children":227},{},[228,233,238],{"type":44,"tag":144,"props":229,"children":230},{},[231],{"type":49,"value":232},"Unique items, membership checks",{"type":44,"tag":144,"props":234,"children":235},{},[236],{"type":49,"value":237},"Set",{"type":44,"tag":144,"props":239,"children":240},{},[241,243,249,250,256,257],{"type":49,"value":242},"O(1) ",{"type":44,"tag":160,"props":244,"children":246},{"className":245},[],[247],{"type":49,"value":248},"SADD",{"type":49,"value":167},{"type":44,"tag":160,"props":251,"children":253},{"className":252},[],[254],{"type":49,"value":255},"SISMEMBER",{"type":49,"value":167},{"type":44,"tag":160,"props":258,"children":260},{"className":259},[],[261],{"type":49,"value":262},"SCARD",{"type":44,"tag":117,"props":264,"children":265},{},[266,271,276],{"type":44,"tag":144,"props":267,"children":268},{},[269],{"type":49,"value":270},"Rankings, score-based ranges",{"type":44,"tag":144,"props":272,"children":273},{},[274],{"type":49,"value":275},"Sorted Set",{"type":44,"tag":144,"props":277,"children":278},{},[279,281,287,288,294,295],{"type":49,"value":280},"Score-ordered; ",{"type":44,"tag":160,"props":282,"children":284},{"className":283},[],[285],{"type":49,"value":286},"ZADD",{"type":49,"value":167},{"type":44,"tag":160,"props":289,"children":291},{"className":290},[],[292],{"type":49,"value":293},"ZRANGE",{"type":49,"value":167},{"type":44,"tag":160,"props":296,"children":298},{"className":297},[],[299],{"type":49,"value":300},"ZRANK",{"type":44,"tag":117,"props":302,"children":303},{},[304,309,314],{"type":44,"tag":144,"props":305,"children":306},{},[307],{"type":49,"value":308},"Nested \u002F hierarchical data",{"type":44,"tag":144,"props":310,"children":311},{},[312],{"type":49,"value":313},"JSON",{"type":44,"tag":144,"props":315,"children":316},{},[317],{"type":49,"value":318},"Path-level updates, nested arrays, RQE indexing",{"type":44,"tag":117,"props":320,"children":321},{},[322,327,332],{"type":44,"tag":144,"props":323,"children":324},{},[325],{"type":49,"value":326},"Event log, fan-out messaging",{"type":44,"tag":144,"props":328,"children":329},{},[330],{"type":49,"value":331},"Stream",{"type":44,"tag":144,"props":333,"children":334},{},[335],{"type":49,"value":336},"Persistent, consumer groups",{"type":44,"tag":117,"props":338,"children":339},{},[340,345,350],{"type":44,"tag":144,"props":341,"children":342},{},[343],{"type":49,"value":344},"Vector similarity",{"type":44,"tag":144,"props":346,"children":347},{},[348],{"type":49,"value":349},"Vector Set",{"type":44,"tag":144,"props":351,"children":352},{},[353],{"type":49,"value":354},"Native vector storage with HNSW",{"type":44,"tag":52,"props":356,"children":357},{},[358,364],{"type":44,"tag":359,"props":360,"children":361},"strong",{},[362],{"type":49,"value":363},"Common anti-pattern:",{"type":49,"value":365}," stuffing a flat object into a serialized string. Updating one field means fetch + parse + mutate + rewrite. Use a Hash instead.",{"type":44,"tag":52,"props":367,"children":368},{},[369,371,377],{"type":49,"value":370},"See ",{"type":44,"tag":372,"props":373,"children":375},"a",{"href":374},"references\u002Fchoose-data-structure.md",[376],{"type":49,"value":374},{"type":49,"value":378}," for full rationale and Python\u002FJava examples.",{"type":44,"tag":58,"props":380,"children":382},{"id":381},"_2-use-consistent-key-names",[383],{"type":49,"value":384},"2. Use consistent key names",{"type":44,"tag":52,"props":386,"children":387},{},[388,390,396],{"type":49,"value":389},"Use ",{"type":44,"tag":160,"props":391,"children":393},{"className":392},[],[394],{"type":49,"value":395},"colon-separated",{"type":49,"value":397}," segments with a stable hierarchy:",{"type":44,"tag":399,"props":400,"children":404},"pre",{"className":401,"code":403,"language":49},[402],"language-text","{entity}:{id}:{attribute}\nuser:1001:profile\nuser:1001:settings\norder:2024:items\nsession:abc123\narticle:987:likes\ngame:space-invaders:leaderboard\n",[405],{"type":44,"tag":160,"props":406,"children":408},{"__ignoreMap":407},"",[409],{"type":49,"value":403},{"type":44,"tag":52,"props":411,"children":412},{},[413],{"type":49,"value":414},"Rules of thumb:",{"type":44,"tag":65,"props":416,"children":417},{},[418,436,446,456,474],{"type":44,"tag":69,"props":419,"children":420},{},[421,426,428,434],{"type":44,"tag":359,"props":422,"children":423},{},[424],{"type":49,"value":425},"Lowercase, colon-separated.",{"type":49,"value":427}," No spaces, no mixed casing (",{"type":44,"tag":160,"props":429,"children":431},{"className":430},[],[432],{"type":49,"value":433},"User_1001_Profile",{"type":49,"value":435}," is bad).",{"type":44,"tag":69,"props":437,"children":438},{},[439,444],{"type":44,"tag":359,"props":440,"children":441},{},[442],{"type":49,"value":443},"Keep keys short but readable",{"type":49,"value":445}," — keys live in memory and appear in every command.",{"type":44,"tag":69,"props":447,"children":448},{},[449,454],{"type":44,"tag":359,"props":450,"children":451},{},[452],{"type":49,"value":453},"Don't use full URLs or long strings as keys.",{"type":49,"value":455}," Extract a short identifier, or use a hash digest of the URL.",{"type":44,"tag":69,"props":457,"children":458},{},[459,464,466,472],{"type":44,"tag":359,"props":460,"children":461},{},[462],{"type":49,"value":463},"Prefix for multi-tenancy",{"type":49,"value":465}," (",{"type":44,"tag":160,"props":467,"children":469},{"className":468},[],[470],{"type":49,"value":471},"tenant:42:user:7:cart",{"type":49,"value":473},") so scans and ACLs can target a tenant cleanly.",{"type":44,"tag":69,"props":475,"children":476},{},[477,482],{"type":44,"tag":359,"props":478,"children":479},{},[480],{"type":49,"value":481},"Be consistent.",{"type":49,"value":483}," Pick one convention per service and apply it across all keys.",{"type":44,"tag":52,"props":485,"children":486},{},[487,488,493],{"type":49,"value":370},{"type":44,"tag":372,"props":489,"children":491},{"href":490},"references\u002Fkey-naming.md",[492],{"type":49,"value":490},{"type":49,"value":494}," for cleanup examples and edge cases.",{"type":44,"tag":58,"props":496,"children":498},{"id":497},"references",[499],{"type":49,"value":500},"References",{"type":44,"tag":65,"props":502,"children":503},{},[504,515],{"type":44,"tag":69,"props":505,"children":506},{},[507],{"type":44,"tag":372,"props":508,"children":512},{"href":509,"rel":510},"https:\u002F\u002Fredis.io\u002Fdocs\u002Flatest\u002Fdevelop\u002Fdata-types\u002Fcompare-data-types\u002F",[511],"nofollow",[513],{"type":49,"value":514},"Redis: Choosing the right data type",{"type":44,"tag":69,"props":516,"children":517},{},[518],{"type":44,"tag":372,"props":519,"children":522},{"href":520,"rel":521},"https:\u002F\u002Fredis.io\u002Fdocs\u002Flatest\u002Fdevelop\u002Fuse\u002Fkeyspace\u002F",[511],[523],{"type":49,"value":524},"Redis: Keys",{"items":526,"total":637},[527,547,563,576,583,601,617],{"slug":528,"name":528,"fn":529,"description":530,"org":531,"tags":532,"stars":23,"repoUrl":24,"updatedAt":546},"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},[533,536,539,542,545],{"name":534,"slug":535,"type":15},"Agents","agents",{"name":537,"slug":538,"type":15},"AI Infrastructure","ai-infrastructure",{"name":540,"slug":541,"type":15},"Backend","backend",{"name":543,"slug":544,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-05-27T07:19:45.213725",{"slug":548,"name":548,"fn":549,"description":550,"org":551,"tags":552,"stars":23,"repoUrl":24,"updatedAt":562},"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},[553,554,555,558,561],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":556,"slug":557,"type":15},"Infrastructure","infrastructure",{"name":559,"slug":560,"type":15},"Performance","performance",{"name":9,"slug":8,"type":15},"2026-05-27T07:19:38.757599",{"slug":564,"name":564,"fn":565,"description":566,"org":567,"tags":568,"stars":23,"repoUrl":24,"updatedAt":575},"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},[569,570,573,574],{"name":540,"slug":541,"type":15},{"name":571,"slug":572,"type":15},"Caching","caching",{"name":559,"slug":560,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:42.616757",{"slug":4,"name":4,"fn":5,"description":6,"org":577,"tags":578,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[579,580,581,582],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":584,"name":584,"fn":585,"description":586,"org":587,"tags":588,"stars":23,"repoUrl":24,"updatedAt":600},"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},[589,592,595,598,599],{"name":590,"slug":591,"type":15},"Debugging","debugging",{"name":593,"slug":594,"type":15},"Monitoring","monitoring",{"name":596,"slug":597,"type":15},"Observability","observability",{"name":559,"slug":560,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:47.780873",{"slug":602,"name":602,"fn":603,"description":604,"org":605,"tags":606,"stars":23,"repoUrl":24,"updatedAt":616},"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},[607,608,609,612,613],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":610,"slug":611,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},{"name":614,"slug":615,"type":15},"Search","search","2026-06-24T07:39:43.089819",{"slug":618,"name":618,"fn":619,"description":620,"org":621,"tags":622,"stars":23,"repoUrl":24,"updatedAt":636},"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},[623,626,629,632,633],{"name":624,"slug":625,"type":15},"Access Control","access-control",{"name":627,"slug":628,"type":15},"Authentication","authentication",{"name":630,"slug":631,"type":15},"Compliance","compliance",{"name":9,"slug":8,"type":15},{"name":634,"slug":635,"type":15},"Security","security","2026-05-27T07:19:40.030241",8,{"items":639,"total":768},[640,648,656,663,670,678,686,694,708,723,738,755],{"slug":528,"name":528,"fn":529,"description":530,"org":641,"tags":642,"stars":23,"repoUrl":24,"updatedAt":546},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[643,644,645,646,647],{"name":534,"slug":535,"type":15},{"name":537,"slug":538,"type":15},{"name":540,"slug":541,"type":15},{"name":543,"slug":544,"type":15},{"name":9,"slug":8,"type":15},{"slug":548,"name":548,"fn":549,"description":550,"org":649,"tags":650,"stars":23,"repoUrl":24,"updatedAt":562},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[651,652,653,654,655],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":556,"slug":557,"type":15},{"name":559,"slug":560,"type":15},{"name":9,"slug":8,"type":15},{"slug":564,"name":564,"fn":565,"description":566,"org":657,"tags":658,"stars":23,"repoUrl":24,"updatedAt":575},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[659,660,661,662],{"name":540,"slug":541,"type":15},{"name":571,"slug":572,"type":15},{"name":559,"slug":560,"type":15},{"name":9,"slug":8,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":664,"tags":665,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[666,667,668,669],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":584,"name":584,"fn":585,"description":586,"org":671,"tags":672,"stars":23,"repoUrl":24,"updatedAt":600},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[673,674,675,676,677],{"name":590,"slug":591,"type":15},{"name":593,"slug":594,"type":15},{"name":596,"slug":597,"type":15},{"name":559,"slug":560,"type":15},{"name":9,"slug":8,"type":15},{"slug":602,"name":602,"fn":603,"description":604,"org":679,"tags":680,"stars":23,"repoUrl":24,"updatedAt":616},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[681,682,683,684,685],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":610,"slug":611,"type":15},{"name":9,"slug":8,"type":15},{"name":614,"slug":615,"type":15},{"slug":618,"name":618,"fn":619,"description":620,"org":687,"tags":688,"stars":23,"repoUrl":24,"updatedAt":636},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[689,690,691,692,693],{"name":624,"slug":625,"type":15},{"name":627,"slug":628,"type":15},{"name":630,"slug":631,"type":15},{"name":9,"slug":8,"type":15},{"name":634,"slug":635,"type":15},{"slug":695,"name":695,"fn":696,"description":697,"org":698,"tags":699,"stars":23,"repoUrl":24,"updatedAt":707},"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},[700,701,702,705,706],{"name":537,"slug":538,"type":15},{"name":571,"slug":572,"type":15},{"name":703,"slug":704,"type":15},"LLM","llm",{"name":9,"slug":8,"type":15},{"name":614,"slug":615,"type":15},"2026-05-27T07:19:43.897283",{"slug":709,"name":709,"fn":710,"description":711,"org":712,"tags":713,"stars":720,"repoUrl":721,"updatedAt":722},"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},[714,715,718,719],{"name":534,"slug":535,"type":15},{"name":716,"slug":717,"type":15},"File Storage","file-storage",{"name":543,"slug":544,"type":15},{"name":9,"slug":8,"type":15},22,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fagent-filesystem","2026-04-10T04:51:05.904489",{"slug":724,"name":724,"fn":725,"description":726,"org":727,"tags":728,"stars":720,"repoUrl":721,"updatedAt":737},"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},[729,732,733,736],{"name":730,"slug":731,"type":15},"Codex","codex",{"name":543,"slug":544,"type":15},{"name":734,"slug":735,"type":15},"Migration","migration",{"name":9,"slug":8,"type":15},"2026-04-10T04:51:07.268248",{"slug":739,"name":739,"fn":740,"description":741,"org":742,"tags":743,"stars":752,"repoUrl":753,"updatedAt":754},"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},[744,747,748,751],{"name":745,"slug":746,"type":15},"Cloud","cloud",{"name":17,"slug":18,"type":15},{"name":749,"slug":750,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},15,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fredisctl","2026-06-03T07:53:00.906753",{"slug":756,"name":756,"fn":757,"description":758,"org":759,"tags":760,"stars":752,"repoUrl":753,"updatedAt":767},"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},[761,762,763,766],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":764,"slug":765,"type":15},"Prototyping","prototyping",{"name":9,"slug":8,"type":15},"2026-05-27T07:19:55.591944",27]