[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-keyvalue":3,"mdc-6l0izu-key":36,"related-repo-openai-render-keyvalue":1607,"related-org-openai-render-keyvalue":1728},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"render-keyvalue","provision Render Key Value instances","Provisions and configures Render Key Value (Redis-compatible Valkey 8) instances for caching, session storage, and job queues. Use when the user needs Redis, Key Value, Valkey, a cache, session store, job queue backend, or needs to configure maxmemory policy, ipAllowList, connection strings, or internal vs external access. Trigger terms: Key Value, Redis, Valkey, cache, session store, REDIS_URL, maxmemory, ipAllowList, allkeys-lru, noeviction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Render","render","tag",{"name":17,"slug":18,"type":15},"Redis","redis",{"name":20,"slug":21,"type":15},"Serverless","serverless",{"name":23,"slug":24,"type":15},"Caching","caching",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102","MIT",465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Frender\u002Fskills\u002Frender-keyvalue","---\nname: render-keyvalue\ndescription: >-\n  Provisions and configures Render Key Value (Redis-compatible Valkey 8)\n  instances for caching, session storage, and job queues. Use when the user\n  needs Redis, Key Value, Valkey, a cache, session store, job queue backend,\n  or needs to configure maxmemory policy, ipAllowList, connection strings,\n  or internal vs external access.\n  Trigger terms: Key Value, Redis, Valkey, cache, session store, REDIS_URL,\n  maxmemory, ipAllowList, allkeys-lru, noeviction.\nlicense: MIT\ncompatibility: Render Key Value instances (free and paid plans)\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: data\n---\n\n# Render Key Value\n\nRender Key Value provides low-latency, Redis-compatible in-memory storage running **Valkey 8**. Use it as a shared cache, session store, or job queue backend. Compatible with virtually all Redis client libraries.\n\n## When to Use\n\n- Adding a **cache** or **session store** to a web app\n- Wiring a **job queue** backend for Celery, Sidekiq, BullMQ, Asynq, or Oban\n- Choosing the right **maxmemory policy** (cache vs queue)\n- Configuring **ipAllowList** in Blueprints (required field)\n- Connecting via **internal vs external URLs**\n- Troubleshooting **auth failures** or **connection refused** errors\n\nFor background worker setup and queue framework patterns, see **render-background-workers**. For Blueprint authoring, see **render-blueprints**.\n\n## Key Concepts\n\n### Valkey 8 (not Redis)\n\nNew instances run **Valkey 8**, an open-source Redis fork. It is a drop-in replacement for Redis—existing Redis client libraries work without changes. Legacy instances (created before Feb 2025) run Redis 6.\n\n### Connection URLs\n\nEvery instance has two URLs:\n\n| URL type | When to use | Auth required |\n|----------|-------------|---------------|\n| **Internal** (`redis:\u002F\u002Fred-xxx:6379`) | From Render services in the same region | No (by default) |\n| **External** (`rediss:\u002F\u002Fred-xxx:6379`) | From outside Render (local dev, CI) | Always |\n\n**Always prefer the internal URL** for production services—lower latency, no TLS overhead, communicates over the private network.\n\nExternal connections are **disabled by default**. Enable them by adding IP ranges to the access control list in the Dashboard.\n\n### Internal authentication\n\nBy default, internal connections are unauthenticated. You can **require auth for internal connections** in the Dashboard for compliance or extra security. This changes the internal URL to include credentials:\n\n```\nredis:\u002F\u002Fdefault:PASSWORD@red-xxx:6379\n```\n\n**Warning:** Enabling internal auth breaks existing unauthenticated connections. Migrate clients to the authenticated URL first.\n\n## Maxmemory Policy\n\n**Critical decision.** Choose based on your use case:\n\n| Use case | Policy | Why |\n|----------|--------|-----|\n| **Cache** (can lose data) | `allkeys-lru` | Evicts least-recently-used keys to free space |\n| **Job queue** (cannot lose data) | `noeviction` | Returns error on writes when full; never drops keys |\n| **Session store** | `allkeys-lru` or `volatile-lru` | Sessions can be regenerated; LRU is safe |\n\nAll available policies:\n\n| Policy | Behavior | Memory fills up? |\n|--------|----------|-----------------|\n| `allkeys-lru` | Evict any key by LRU | No |\n| `noeviction` | Error on writes when full | Yes |\n| `volatile-lru` | Evict keys with TTL by LRU | Yes |\n| `volatile-lfu` | Evict keys with TTL by LFU | Yes |\n| `allkeys-lfu` | Evict any key by LFU | No |\n| `volatile-random` | Evict random keys with TTL | Yes |\n| `allkeys-random` | Evict any random key | No |\n| `volatile-ttl` | Evict keys nearest to expiry | Yes |\n\n## Blueprint Configuration\n\n```yaml\nservices:\n  - type: keyvalue\n    name: cache\n    plan: starter\n    region: oregon\n    maxmemoryPolicy: allkeys-lru\n    ipAllowList: []\n```\n\n### `ipAllowList` is required\n\nBlueprints **must** include `ipAllowList` on Key Value services. Common patterns:\n\n| Value | Meaning |\n|-------|---------|\n| `[]` | No external access (internal only—**recommended for most apps**) |\n| `[{source: \"0.0.0.0\u002F0\", description: \"everywhere\"}]` | Open external access (use sparingly) |\n| `[{source: \"203.0.113.0\u002F24\", description: \"office\"}]` | Specific IP ranges |\n\n### Wiring to services\n\nUse `fromService` with `type: keyvalue` and `property: connectionString`:\n\n```yaml\nenvVars:\n  - key: REDIS_URL\n    fromService:\n      name: cache\n      type: keyvalue\n      property: connectionString\n```\n\nAvailable `fromService` properties for Key Value:\n\n| Property | Value |\n|----------|-------|\n| `connectionString` | Full internal URL (`redis:\u002F\u002Fred-xxx:6379`) |\n| `host` | Hostname only |\n| `port` | Port only (typically `6379`) |\n\n## Data Persistence\n\n- **Paid instances:** Disk-backed, `appendfsync everysec`. You may lose up to 1 second of writes on interruption.\n- **Free instances:** No disk persistence. Data is lost on restart or upgrade.\n- **Upgrading from Free:** All data is lost during the upgrade because Free instances have no disk.\n\n## Instance Types and Upgrades\n\n- Instance type determines **RAM** and **connection limit**\n- You can **upgrade** to a larger type (brief downtime, ~1-2 minutes)\n- You **cannot downgrade** to a smaller type\n- For instances larger than 10 GB RAM, contact Render support\n\n## Connection Examples\n\nSee `references\u002Fconnection-examples.md` for client code in Node.js (ioredis, node-redis), Python (redis-py), Ruby (redis-rb, Sidekiq), and Go.\n\n## Common Mistakes\n\n| Mistake | Fix |\n|---------|-----|\n| Missing `ipAllowList` in Blueprint | Add `ipAllowList: []` for internal-only access |\n| Using `allkeys-lru` for job queues | Switch to `noeviction`—LRU eviction drops queued jobs |\n| Connecting with external URL from a Render service | Use the internal URL for lower latency and no auth requirement |\n| Forgetting `type: keyvalue` in `fromService` | `type` is required; without it the wiring fails |\n| Using deprecated `redis` type alias | Prefer `keyvalue` in new Blueprints (`redis` still works but is deprecated) |\n\n## References\n\n| Document | Contents |\n|----------|----------|\n| `references\u002Fconnection-examples.md` | Client code for Node.js, Python, Ruby, Go |\n| `references\u002Ftroubleshooting.md` | Auth errors, connection refused, memory full, migration from Redis 6 |\n\n## Related Skills\n\n- **render-background-workers** — Queue consumer setup with Celery, Sidekiq, BullMQ\n- **render-blueprints** — Full `render.yaml` schema, `fromService` patterns\n- **render-networking** — Private network, internal URLs\n- **render-env-vars** — Wiring `REDIS_URL` and other connection vars\n",{"data":37,"body":42},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Render Key Value instances (free and paid plans)",{"author":13,"version":40,"category":41},"1.0.0","data",{"type":43,"children":44},"root",[45,54,68,75,163,182,188,195,206,212,217,311,321,333,339,351,363,373,379,389,501,506,699,705,847,858,877,956,962,990,1091,1103,1188,1194,1235,1241,1289,1295,1308,1314,1470,1476,1531,1537,1601],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"render-key-value",[51],{"type":52,"value":53},"text","Render Key Value",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58,60,66],{"type":52,"value":59},"Render Key Value provides low-latency, Redis-compatible in-memory storage running ",{"type":46,"tag":61,"props":62,"children":63},"strong",{},[64],{"type":52,"value":65},"Valkey 8",{"type":52,"value":67},". Use it as a shared cache, session store, or job queue backend. Compatible with virtually all Redis client libraries.",{"type":46,"tag":69,"props":70,"children":72},"h2",{"id":71},"when-to-use",[73],{"type":52,"value":74},"When to Use",{"type":46,"tag":76,"props":77,"children":78},"ul",{},[79,99,111,123,135,145],{"type":46,"tag":80,"props":81,"children":82},"li",{},[83,85,90,92,97],{"type":52,"value":84},"Adding a ",{"type":46,"tag":61,"props":86,"children":87},{},[88],{"type":52,"value":89},"cache",{"type":52,"value":91}," or ",{"type":46,"tag":61,"props":93,"children":94},{},[95],{"type":52,"value":96},"session store",{"type":52,"value":98}," to a web app",{"type":46,"tag":80,"props":100,"children":101},{},[102,104,109],{"type":52,"value":103},"Wiring a ",{"type":46,"tag":61,"props":105,"children":106},{},[107],{"type":52,"value":108},"job queue",{"type":52,"value":110}," backend for Celery, Sidekiq, BullMQ, Asynq, or Oban",{"type":46,"tag":80,"props":112,"children":113},{},[114,116,121],{"type":52,"value":115},"Choosing the right ",{"type":46,"tag":61,"props":117,"children":118},{},[119],{"type":52,"value":120},"maxmemory policy",{"type":52,"value":122}," (cache vs queue)",{"type":46,"tag":80,"props":124,"children":125},{},[126,128,133],{"type":52,"value":127},"Configuring ",{"type":46,"tag":61,"props":129,"children":130},{},[131],{"type":52,"value":132},"ipAllowList",{"type":52,"value":134}," in Blueprints (required field)",{"type":46,"tag":80,"props":136,"children":137},{},[138,140],{"type":52,"value":139},"Connecting via ",{"type":46,"tag":61,"props":141,"children":142},{},[143],{"type":52,"value":144},"internal vs external URLs",{"type":46,"tag":80,"props":146,"children":147},{},[148,150,155,156,161],{"type":52,"value":149},"Troubleshooting ",{"type":46,"tag":61,"props":151,"children":152},{},[153],{"type":52,"value":154},"auth failures",{"type":52,"value":91},{"type":46,"tag":61,"props":157,"children":158},{},[159],{"type":52,"value":160},"connection refused",{"type":52,"value":162}," errors",{"type":46,"tag":55,"props":164,"children":165},{},[166,168,173,175,180],{"type":52,"value":167},"For background worker setup and queue framework patterns, see ",{"type":46,"tag":61,"props":169,"children":170},{},[171],{"type":52,"value":172},"render-background-workers",{"type":52,"value":174},". For Blueprint authoring, see ",{"type":46,"tag":61,"props":176,"children":177},{},[178],{"type":52,"value":179},"render-blueprints",{"type":52,"value":181},".",{"type":46,"tag":69,"props":183,"children":185},{"id":184},"key-concepts",[186],{"type":52,"value":187},"Key Concepts",{"type":46,"tag":189,"props":190,"children":192},"h3",{"id":191},"valkey-8-not-redis",[193],{"type":52,"value":194},"Valkey 8 (not Redis)",{"type":46,"tag":55,"props":196,"children":197},{},[198,200,204],{"type":52,"value":199},"New instances run ",{"type":46,"tag":61,"props":201,"children":202},{},[203],{"type":52,"value":65},{"type":52,"value":205},", an open-source Redis fork. It is a drop-in replacement for Redis—existing Redis client libraries work without changes. Legacy instances (created before Feb 2025) run Redis 6.",{"type":46,"tag":189,"props":207,"children":209},{"id":208},"connection-urls",[210],{"type":52,"value":211},"Connection URLs",{"type":46,"tag":55,"props":213,"children":214},{},[215],{"type":52,"value":216},"Every instance has two URLs:",{"type":46,"tag":218,"props":219,"children":220},"table",{},[221,245],{"type":46,"tag":222,"props":223,"children":224},"thead",{},[225],{"type":46,"tag":226,"props":227,"children":228},"tr",{},[229,235,240],{"type":46,"tag":230,"props":231,"children":232},"th",{},[233],{"type":52,"value":234},"URL type",{"type":46,"tag":230,"props":236,"children":237},{},[238],{"type":52,"value":239},"When to use",{"type":46,"tag":230,"props":241,"children":242},{},[243],{"type":52,"value":244},"Auth required",{"type":46,"tag":246,"props":247,"children":248},"tbody",{},[249,282],{"type":46,"tag":226,"props":250,"children":251},{},[252,272,277],{"type":46,"tag":253,"props":254,"children":255},"td",{},[256,261,263,270],{"type":46,"tag":61,"props":257,"children":258},{},[259],{"type":52,"value":260},"Internal",{"type":52,"value":262}," (",{"type":46,"tag":264,"props":265,"children":267},"code",{"className":266},[],[268],{"type":52,"value":269},"redis:\u002F\u002Fred-xxx:6379",{"type":52,"value":271},")",{"type":46,"tag":253,"props":273,"children":274},{},[275],{"type":52,"value":276},"From Render services in the same region",{"type":46,"tag":253,"props":278,"children":279},{},[280],{"type":52,"value":281},"No (by default)",{"type":46,"tag":226,"props":283,"children":284},{},[285,301,306],{"type":46,"tag":253,"props":286,"children":287},{},[288,293,294,300],{"type":46,"tag":61,"props":289,"children":290},{},[291],{"type":52,"value":292},"External",{"type":52,"value":262},{"type":46,"tag":264,"props":295,"children":297},{"className":296},[],[298],{"type":52,"value":299},"rediss:\u002F\u002Fred-xxx:6379",{"type":52,"value":271},{"type":46,"tag":253,"props":302,"children":303},{},[304],{"type":52,"value":305},"From outside Render (local dev, CI)",{"type":46,"tag":253,"props":307,"children":308},{},[309],{"type":52,"value":310},"Always",{"type":46,"tag":55,"props":312,"children":313},{},[314,319],{"type":46,"tag":61,"props":315,"children":316},{},[317],{"type":52,"value":318},"Always prefer the internal URL",{"type":52,"value":320}," for production services—lower latency, no TLS overhead, communicates over the private network.",{"type":46,"tag":55,"props":322,"children":323},{},[324,326,331],{"type":52,"value":325},"External connections are ",{"type":46,"tag":61,"props":327,"children":328},{},[329],{"type":52,"value":330},"disabled by default",{"type":52,"value":332},". Enable them by adding IP ranges to the access control list in the Dashboard.",{"type":46,"tag":189,"props":334,"children":336},{"id":335},"internal-authentication",[337],{"type":52,"value":338},"Internal authentication",{"type":46,"tag":55,"props":340,"children":341},{},[342,344,349],{"type":52,"value":343},"By default, internal connections are unauthenticated. You can ",{"type":46,"tag":61,"props":345,"children":346},{},[347],{"type":52,"value":348},"require auth for internal connections",{"type":52,"value":350}," in the Dashboard for compliance or extra security. This changes the internal URL to include credentials:",{"type":46,"tag":352,"props":353,"children":357},"pre",{"className":354,"code":356,"language":52},[355],"language-text","redis:\u002F\u002Fdefault:PASSWORD@red-xxx:6379\n",[358],{"type":46,"tag":264,"props":359,"children":361},{"__ignoreMap":360},"",[362],{"type":52,"value":356},{"type":46,"tag":55,"props":364,"children":365},{},[366,371],{"type":46,"tag":61,"props":367,"children":368},{},[369],{"type":52,"value":370},"Warning:",{"type":52,"value":372}," Enabling internal auth breaks existing unauthenticated connections. Migrate clients to the authenticated URL first.",{"type":46,"tag":69,"props":374,"children":376},{"id":375},"maxmemory-policy",[377],{"type":52,"value":378},"Maxmemory Policy",{"type":46,"tag":55,"props":380,"children":381},{},[382,387],{"type":46,"tag":61,"props":383,"children":384},{},[385],{"type":52,"value":386},"Critical decision.",{"type":52,"value":388}," Choose based on your use case:",{"type":46,"tag":218,"props":390,"children":391},{},[392,413],{"type":46,"tag":222,"props":393,"children":394},{},[395],{"type":46,"tag":226,"props":396,"children":397},{},[398,403,408],{"type":46,"tag":230,"props":399,"children":400},{},[401],{"type":52,"value":402},"Use case",{"type":46,"tag":230,"props":404,"children":405},{},[406],{"type":52,"value":407},"Policy",{"type":46,"tag":230,"props":409,"children":410},{},[411],{"type":52,"value":412},"Why",{"type":46,"tag":246,"props":414,"children":415},{},[416,443,470],{"type":46,"tag":226,"props":417,"children":418},{},[419,429,438],{"type":46,"tag":253,"props":420,"children":421},{},[422,427],{"type":46,"tag":61,"props":423,"children":424},{},[425],{"type":52,"value":426},"Cache",{"type":52,"value":428}," (can lose data)",{"type":46,"tag":253,"props":430,"children":431},{},[432],{"type":46,"tag":264,"props":433,"children":435},{"className":434},[],[436],{"type":52,"value":437},"allkeys-lru",{"type":46,"tag":253,"props":439,"children":440},{},[441],{"type":52,"value":442},"Evicts least-recently-used keys to free space",{"type":46,"tag":226,"props":444,"children":445},{},[446,456,465],{"type":46,"tag":253,"props":447,"children":448},{},[449,454],{"type":46,"tag":61,"props":450,"children":451},{},[452],{"type":52,"value":453},"Job queue",{"type":52,"value":455}," (cannot lose data)",{"type":46,"tag":253,"props":457,"children":458},{},[459],{"type":46,"tag":264,"props":460,"children":462},{"className":461},[],[463],{"type":52,"value":464},"noeviction",{"type":46,"tag":253,"props":466,"children":467},{},[468],{"type":52,"value":469},"Returns error on writes when full; never drops keys",{"type":46,"tag":226,"props":471,"children":472},{},[473,481,496],{"type":46,"tag":253,"props":474,"children":475},{},[476],{"type":46,"tag":61,"props":477,"children":478},{},[479],{"type":52,"value":480},"Session store",{"type":46,"tag":253,"props":482,"children":483},{},[484,489,490],{"type":46,"tag":264,"props":485,"children":487},{"className":486},[],[488],{"type":52,"value":437},{"type":52,"value":91},{"type":46,"tag":264,"props":491,"children":493},{"className":492},[],[494],{"type":52,"value":495},"volatile-lru",{"type":46,"tag":253,"props":497,"children":498},{},[499],{"type":52,"value":500},"Sessions can be regenerated; LRU is safe",{"type":46,"tag":55,"props":502,"children":503},{},[504],{"type":52,"value":505},"All available policies:",{"type":46,"tag":218,"props":507,"children":508},{},[509,529],{"type":46,"tag":222,"props":510,"children":511},{},[512],{"type":46,"tag":226,"props":513,"children":514},{},[515,519,524],{"type":46,"tag":230,"props":516,"children":517},{},[518],{"type":52,"value":407},{"type":46,"tag":230,"props":520,"children":521},{},[522],{"type":52,"value":523},"Behavior",{"type":46,"tag":230,"props":525,"children":526},{},[527],{"type":52,"value":528},"Memory fills up?",{"type":46,"tag":246,"props":530,"children":531},{},[532,553,574,594,615,636,657,678],{"type":46,"tag":226,"props":533,"children":534},{},[535,543,548],{"type":46,"tag":253,"props":536,"children":537},{},[538],{"type":46,"tag":264,"props":539,"children":541},{"className":540},[],[542],{"type":52,"value":437},{"type":46,"tag":253,"props":544,"children":545},{},[546],{"type":52,"value":547},"Evict any key by LRU",{"type":46,"tag":253,"props":549,"children":550},{},[551],{"type":52,"value":552},"No",{"type":46,"tag":226,"props":554,"children":555},{},[556,564,569],{"type":46,"tag":253,"props":557,"children":558},{},[559],{"type":46,"tag":264,"props":560,"children":562},{"className":561},[],[563],{"type":52,"value":464},{"type":46,"tag":253,"props":565,"children":566},{},[567],{"type":52,"value":568},"Error on writes when full",{"type":46,"tag":253,"props":570,"children":571},{},[572],{"type":52,"value":573},"Yes",{"type":46,"tag":226,"props":575,"children":576},{},[577,585,590],{"type":46,"tag":253,"props":578,"children":579},{},[580],{"type":46,"tag":264,"props":581,"children":583},{"className":582},[],[584],{"type":52,"value":495},{"type":46,"tag":253,"props":586,"children":587},{},[588],{"type":52,"value":589},"Evict keys with TTL by LRU",{"type":46,"tag":253,"props":591,"children":592},{},[593],{"type":52,"value":573},{"type":46,"tag":226,"props":595,"children":596},{},[597,606,611],{"type":46,"tag":253,"props":598,"children":599},{},[600],{"type":46,"tag":264,"props":601,"children":603},{"className":602},[],[604],{"type":52,"value":605},"volatile-lfu",{"type":46,"tag":253,"props":607,"children":608},{},[609],{"type":52,"value":610},"Evict keys with TTL by LFU",{"type":46,"tag":253,"props":612,"children":613},{},[614],{"type":52,"value":573},{"type":46,"tag":226,"props":616,"children":617},{},[618,627,632],{"type":46,"tag":253,"props":619,"children":620},{},[621],{"type":46,"tag":264,"props":622,"children":624},{"className":623},[],[625],{"type":52,"value":626},"allkeys-lfu",{"type":46,"tag":253,"props":628,"children":629},{},[630],{"type":52,"value":631},"Evict any key by LFU",{"type":46,"tag":253,"props":633,"children":634},{},[635],{"type":52,"value":552},{"type":46,"tag":226,"props":637,"children":638},{},[639,648,653],{"type":46,"tag":253,"props":640,"children":641},{},[642],{"type":46,"tag":264,"props":643,"children":645},{"className":644},[],[646],{"type":52,"value":647},"volatile-random",{"type":46,"tag":253,"props":649,"children":650},{},[651],{"type":52,"value":652},"Evict random keys with TTL",{"type":46,"tag":253,"props":654,"children":655},{},[656],{"type":52,"value":573},{"type":46,"tag":226,"props":658,"children":659},{},[660,669,674],{"type":46,"tag":253,"props":661,"children":662},{},[663],{"type":46,"tag":264,"props":664,"children":666},{"className":665},[],[667],{"type":52,"value":668},"allkeys-random",{"type":46,"tag":253,"props":670,"children":671},{},[672],{"type":52,"value":673},"Evict any random key",{"type":46,"tag":253,"props":675,"children":676},{},[677],{"type":52,"value":552},{"type":46,"tag":226,"props":679,"children":680},{},[681,690,695],{"type":46,"tag":253,"props":682,"children":683},{},[684],{"type":46,"tag":264,"props":685,"children":687},{"className":686},[],[688],{"type":52,"value":689},"volatile-ttl",{"type":46,"tag":253,"props":691,"children":692},{},[693],{"type":52,"value":694},"Evict keys nearest to expiry",{"type":46,"tag":253,"props":696,"children":697},{},[698],{"type":52,"value":573},{"type":46,"tag":69,"props":700,"children":702},{"id":701},"blueprint-configuration",[703],{"type":52,"value":704},"Blueprint Configuration",{"type":46,"tag":352,"props":706,"children":710},{"className":707,"code":708,"language":709,"meta":360,"style":360},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","services:\n  - type: keyvalue\n    name: cache\n    plan: starter\n    region: oregon\n    maxmemoryPolicy: allkeys-lru\n    ipAllowList: []\n","yaml",[711],{"type":46,"tag":264,"props":712,"children":713},{"__ignoreMap":360},[714,732,757,775,793,811,829],{"type":46,"tag":715,"props":716,"children":719},"span",{"class":717,"line":718},"line",1,[720,726],{"type":46,"tag":715,"props":721,"children":723},{"style":722},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[724],{"type":52,"value":725},"services",{"type":46,"tag":715,"props":727,"children":729},{"style":728},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[730],{"type":52,"value":731},":\n",{"type":46,"tag":715,"props":733,"children":735},{"class":717,"line":734},2,[736,741,746,751],{"type":46,"tag":715,"props":737,"children":738},{"style":728},[739],{"type":52,"value":740},"  -",{"type":46,"tag":715,"props":742,"children":743},{"style":722},[744],{"type":52,"value":745}," type",{"type":46,"tag":715,"props":747,"children":748},{"style":728},[749],{"type":52,"value":750},":",{"type":46,"tag":715,"props":752,"children":754},{"style":753},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[755],{"type":52,"value":756}," keyvalue\n",{"type":46,"tag":715,"props":758,"children":760},{"class":717,"line":759},3,[761,766,770],{"type":46,"tag":715,"props":762,"children":763},{"style":722},[764],{"type":52,"value":765},"    name",{"type":46,"tag":715,"props":767,"children":768},{"style":728},[769],{"type":52,"value":750},{"type":46,"tag":715,"props":771,"children":772},{"style":753},[773],{"type":52,"value":774}," cache\n",{"type":46,"tag":715,"props":776,"children":778},{"class":717,"line":777},4,[779,784,788],{"type":46,"tag":715,"props":780,"children":781},{"style":722},[782],{"type":52,"value":783},"    plan",{"type":46,"tag":715,"props":785,"children":786},{"style":728},[787],{"type":52,"value":750},{"type":46,"tag":715,"props":789,"children":790},{"style":753},[791],{"type":52,"value":792}," starter\n",{"type":46,"tag":715,"props":794,"children":796},{"class":717,"line":795},5,[797,802,806],{"type":46,"tag":715,"props":798,"children":799},{"style":722},[800],{"type":52,"value":801},"    region",{"type":46,"tag":715,"props":803,"children":804},{"style":728},[805],{"type":52,"value":750},{"type":46,"tag":715,"props":807,"children":808},{"style":753},[809],{"type":52,"value":810}," oregon\n",{"type":46,"tag":715,"props":812,"children":814},{"class":717,"line":813},6,[815,820,824],{"type":46,"tag":715,"props":816,"children":817},{"style":722},[818],{"type":52,"value":819},"    maxmemoryPolicy",{"type":46,"tag":715,"props":821,"children":822},{"style":728},[823],{"type":52,"value":750},{"type":46,"tag":715,"props":825,"children":826},{"style":753},[827],{"type":52,"value":828}," allkeys-lru\n",{"type":46,"tag":715,"props":830,"children":832},{"class":717,"line":831},7,[833,838,842],{"type":46,"tag":715,"props":834,"children":835},{"style":722},[836],{"type":52,"value":837},"    ipAllowList",{"type":46,"tag":715,"props":839,"children":840},{"style":728},[841],{"type":52,"value":750},{"type":46,"tag":715,"props":843,"children":844},{"style":728},[845],{"type":52,"value":846}," []\n",{"type":46,"tag":189,"props":848,"children":850},{"id":849},"ipallowlist-is-required",[851,856],{"type":46,"tag":264,"props":852,"children":854},{"className":853},[],[855],{"type":52,"value":132},{"type":52,"value":857}," is required",{"type":46,"tag":55,"props":859,"children":860},{},[861,863,868,870,875],{"type":52,"value":862},"Blueprints ",{"type":46,"tag":61,"props":864,"children":865},{},[866],{"type":52,"value":867},"must",{"type":52,"value":869}," include ",{"type":46,"tag":264,"props":871,"children":873},{"className":872},[],[874],{"type":52,"value":132},{"type":52,"value":876}," on Key Value services. Common patterns:",{"type":46,"tag":218,"props":878,"children":879},{},[880,896],{"type":46,"tag":222,"props":881,"children":882},{},[883],{"type":46,"tag":226,"props":884,"children":885},{},[886,891],{"type":46,"tag":230,"props":887,"children":888},{},[889],{"type":52,"value":890},"Value",{"type":46,"tag":230,"props":892,"children":893},{},[894],{"type":52,"value":895},"Meaning",{"type":46,"tag":246,"props":897,"children":898},{},[899,922,939],{"type":46,"tag":226,"props":900,"children":901},{},[902,911],{"type":46,"tag":253,"props":903,"children":904},{},[905],{"type":46,"tag":264,"props":906,"children":908},{"className":907},[],[909],{"type":52,"value":910},"[]",{"type":46,"tag":253,"props":912,"children":913},{},[914,916,921],{"type":52,"value":915},"No external access (internal only—",{"type":46,"tag":61,"props":917,"children":918},{},[919],{"type":52,"value":920},"recommended for most apps",{"type":52,"value":271},{"type":46,"tag":226,"props":923,"children":924},{},[925,934],{"type":46,"tag":253,"props":926,"children":927},{},[928],{"type":46,"tag":264,"props":929,"children":931},{"className":930},[],[932],{"type":52,"value":933},"[{source: \"0.0.0.0\u002F0\", description: \"everywhere\"}]",{"type":46,"tag":253,"props":935,"children":936},{},[937],{"type":52,"value":938},"Open external access (use sparingly)",{"type":46,"tag":226,"props":940,"children":941},{},[942,951],{"type":46,"tag":253,"props":943,"children":944},{},[945],{"type":46,"tag":264,"props":946,"children":948},{"className":947},[],[949],{"type":52,"value":950},"[{source: \"203.0.113.0\u002F24\", description: \"office\"}]",{"type":46,"tag":253,"props":952,"children":953},{},[954],{"type":52,"value":955},"Specific IP ranges",{"type":46,"tag":189,"props":957,"children":959},{"id":958},"wiring-to-services",[960],{"type":52,"value":961},"Wiring to services",{"type":46,"tag":55,"props":963,"children":964},{},[965,967,973,975,981,983,989],{"type":52,"value":966},"Use ",{"type":46,"tag":264,"props":968,"children":970},{"className":969},[],[971],{"type":52,"value":972},"fromService",{"type":52,"value":974}," with ",{"type":46,"tag":264,"props":976,"children":978},{"className":977},[],[979],{"type":52,"value":980},"type: keyvalue",{"type":52,"value":982}," and ",{"type":46,"tag":264,"props":984,"children":986},{"className":985},[],[987],{"type":52,"value":988},"property: connectionString",{"type":52,"value":750},{"type":46,"tag":352,"props":991,"children":993},{"className":707,"code":992,"language":709,"meta":360,"style":360},"envVars:\n  - key: REDIS_URL\n    fromService:\n      name: cache\n      type: keyvalue\n      property: connectionString\n",[994],{"type":46,"tag":264,"props":995,"children":996},{"__ignoreMap":360},[997,1009,1030,1042,1058,1074],{"type":46,"tag":715,"props":998,"children":999},{"class":717,"line":718},[1000,1005],{"type":46,"tag":715,"props":1001,"children":1002},{"style":722},[1003],{"type":52,"value":1004},"envVars",{"type":46,"tag":715,"props":1006,"children":1007},{"style":728},[1008],{"type":52,"value":731},{"type":46,"tag":715,"props":1010,"children":1011},{"class":717,"line":734},[1012,1016,1021,1025],{"type":46,"tag":715,"props":1013,"children":1014},{"style":728},[1015],{"type":52,"value":740},{"type":46,"tag":715,"props":1017,"children":1018},{"style":722},[1019],{"type":52,"value":1020}," key",{"type":46,"tag":715,"props":1022,"children":1023},{"style":728},[1024],{"type":52,"value":750},{"type":46,"tag":715,"props":1026,"children":1027},{"style":753},[1028],{"type":52,"value":1029}," REDIS_URL\n",{"type":46,"tag":715,"props":1031,"children":1032},{"class":717,"line":759},[1033,1038],{"type":46,"tag":715,"props":1034,"children":1035},{"style":722},[1036],{"type":52,"value":1037},"    fromService",{"type":46,"tag":715,"props":1039,"children":1040},{"style":728},[1041],{"type":52,"value":731},{"type":46,"tag":715,"props":1043,"children":1044},{"class":717,"line":777},[1045,1050,1054],{"type":46,"tag":715,"props":1046,"children":1047},{"style":722},[1048],{"type":52,"value":1049},"      name",{"type":46,"tag":715,"props":1051,"children":1052},{"style":728},[1053],{"type":52,"value":750},{"type":46,"tag":715,"props":1055,"children":1056},{"style":753},[1057],{"type":52,"value":774},{"type":46,"tag":715,"props":1059,"children":1060},{"class":717,"line":795},[1061,1066,1070],{"type":46,"tag":715,"props":1062,"children":1063},{"style":722},[1064],{"type":52,"value":1065},"      type",{"type":46,"tag":715,"props":1067,"children":1068},{"style":728},[1069],{"type":52,"value":750},{"type":46,"tag":715,"props":1071,"children":1072},{"style":753},[1073],{"type":52,"value":756},{"type":46,"tag":715,"props":1075,"children":1076},{"class":717,"line":813},[1077,1082,1086],{"type":46,"tag":715,"props":1078,"children":1079},{"style":722},[1080],{"type":52,"value":1081},"      property",{"type":46,"tag":715,"props":1083,"children":1084},{"style":728},[1085],{"type":52,"value":750},{"type":46,"tag":715,"props":1087,"children":1088},{"style":753},[1089],{"type":52,"value":1090}," connectionString\n",{"type":46,"tag":55,"props":1092,"children":1093},{},[1094,1096,1101],{"type":52,"value":1095},"Available ",{"type":46,"tag":264,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":52,"value":972},{"type":52,"value":1102}," properties for Key Value:",{"type":46,"tag":218,"props":1104,"children":1105},{},[1106,1121],{"type":46,"tag":222,"props":1107,"children":1108},{},[1109],{"type":46,"tag":226,"props":1110,"children":1111},{},[1112,1117],{"type":46,"tag":230,"props":1113,"children":1114},{},[1115],{"type":52,"value":1116},"Property",{"type":46,"tag":230,"props":1118,"children":1119},{},[1120],{"type":52,"value":890},{"type":46,"tag":246,"props":1122,"children":1123},{},[1124,1147,1164],{"type":46,"tag":226,"props":1125,"children":1126},{},[1127,1136],{"type":46,"tag":253,"props":1128,"children":1129},{},[1130],{"type":46,"tag":264,"props":1131,"children":1133},{"className":1132},[],[1134],{"type":52,"value":1135},"connectionString",{"type":46,"tag":253,"props":1137,"children":1138},{},[1139,1141,1146],{"type":52,"value":1140},"Full internal URL (",{"type":46,"tag":264,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":52,"value":269},{"type":52,"value":271},{"type":46,"tag":226,"props":1148,"children":1149},{},[1150,1159],{"type":46,"tag":253,"props":1151,"children":1152},{},[1153],{"type":46,"tag":264,"props":1154,"children":1156},{"className":1155},[],[1157],{"type":52,"value":1158},"host",{"type":46,"tag":253,"props":1160,"children":1161},{},[1162],{"type":52,"value":1163},"Hostname only",{"type":46,"tag":226,"props":1165,"children":1166},{},[1167,1176],{"type":46,"tag":253,"props":1168,"children":1169},{},[1170],{"type":46,"tag":264,"props":1171,"children":1173},{"className":1172},[],[1174],{"type":52,"value":1175},"port",{"type":46,"tag":253,"props":1177,"children":1178},{},[1179,1181,1187],{"type":52,"value":1180},"Port only (typically ",{"type":46,"tag":264,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":52,"value":1186},"6379",{"type":52,"value":271},{"type":46,"tag":69,"props":1189,"children":1191},{"id":1190},"data-persistence",[1192],{"type":52,"value":1193},"Data Persistence",{"type":46,"tag":76,"props":1195,"children":1196},{},[1197,1215,1225],{"type":46,"tag":80,"props":1198,"children":1199},{},[1200,1205,1207,1213],{"type":46,"tag":61,"props":1201,"children":1202},{},[1203],{"type":52,"value":1204},"Paid instances:",{"type":52,"value":1206}," Disk-backed, ",{"type":46,"tag":264,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":52,"value":1212},"appendfsync everysec",{"type":52,"value":1214},". You may lose up to 1 second of writes on interruption.",{"type":46,"tag":80,"props":1216,"children":1217},{},[1218,1223],{"type":46,"tag":61,"props":1219,"children":1220},{},[1221],{"type":52,"value":1222},"Free instances:",{"type":52,"value":1224}," No disk persistence. Data is lost on restart or upgrade.",{"type":46,"tag":80,"props":1226,"children":1227},{},[1228,1233],{"type":46,"tag":61,"props":1229,"children":1230},{},[1231],{"type":52,"value":1232},"Upgrading from Free:",{"type":52,"value":1234}," All data is lost during the upgrade because Free instances have no disk.",{"type":46,"tag":69,"props":1236,"children":1238},{"id":1237},"instance-types-and-upgrades",[1239],{"type":52,"value":1240},"Instance Types and Upgrades",{"type":46,"tag":76,"props":1242,"children":1243},{},[1244,1260,1272,1284],{"type":46,"tag":80,"props":1245,"children":1246},{},[1247,1249,1254,1255],{"type":52,"value":1248},"Instance type determines ",{"type":46,"tag":61,"props":1250,"children":1251},{},[1252],{"type":52,"value":1253},"RAM",{"type":52,"value":982},{"type":46,"tag":61,"props":1256,"children":1257},{},[1258],{"type":52,"value":1259},"connection limit",{"type":46,"tag":80,"props":1261,"children":1262},{},[1263,1265,1270],{"type":52,"value":1264},"You can ",{"type":46,"tag":61,"props":1266,"children":1267},{},[1268],{"type":52,"value":1269},"upgrade",{"type":52,"value":1271}," to a larger type (brief downtime, ~1-2 minutes)",{"type":46,"tag":80,"props":1273,"children":1274},{},[1275,1277,1282],{"type":52,"value":1276},"You ",{"type":46,"tag":61,"props":1278,"children":1279},{},[1280],{"type":52,"value":1281},"cannot downgrade",{"type":52,"value":1283}," to a smaller type",{"type":46,"tag":80,"props":1285,"children":1286},{},[1287],{"type":52,"value":1288},"For instances larger than 10 GB RAM, contact Render support",{"type":46,"tag":69,"props":1290,"children":1292},{"id":1291},"connection-examples",[1293],{"type":52,"value":1294},"Connection Examples",{"type":46,"tag":55,"props":1296,"children":1297},{},[1298,1300,1306],{"type":52,"value":1299},"See ",{"type":46,"tag":264,"props":1301,"children":1303},{"className":1302},[],[1304],{"type":52,"value":1305},"references\u002Fconnection-examples.md",{"type":52,"value":1307}," for client code in Node.js (ioredis, node-redis), Python (redis-py), Ruby (redis-rb, Sidekiq), and Go.",{"type":46,"tag":69,"props":1309,"children":1311},{"id":1310},"common-mistakes",[1312],{"type":52,"value":1313},"Common Mistakes",{"type":46,"tag":218,"props":1315,"children":1316},{},[1317,1333],{"type":46,"tag":222,"props":1318,"children":1319},{},[1320],{"type":46,"tag":226,"props":1321,"children":1322},{},[1323,1328],{"type":46,"tag":230,"props":1324,"children":1325},{},[1326],{"type":52,"value":1327},"Mistake",{"type":46,"tag":230,"props":1329,"children":1330},{},[1331],{"type":52,"value":1332},"Fix",{"type":46,"tag":246,"props":1334,"children":1335},{},[1336,1364,1391,1404,1435],{"type":46,"tag":226,"props":1337,"children":1338},{},[1339,1351],{"type":46,"tag":253,"props":1340,"children":1341},{},[1342,1344,1349],{"type":52,"value":1343},"Missing ",{"type":46,"tag":264,"props":1345,"children":1347},{"className":1346},[],[1348],{"type":52,"value":132},{"type":52,"value":1350}," in Blueprint",{"type":46,"tag":253,"props":1352,"children":1353},{},[1354,1356,1362],{"type":52,"value":1355},"Add ",{"type":46,"tag":264,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":52,"value":1361},"ipAllowList: []",{"type":52,"value":1363}," for internal-only access",{"type":46,"tag":226,"props":1365,"children":1366},{},[1367,1379],{"type":46,"tag":253,"props":1368,"children":1369},{},[1370,1372,1377],{"type":52,"value":1371},"Using ",{"type":46,"tag":264,"props":1373,"children":1375},{"className":1374},[],[1376],{"type":52,"value":437},{"type":52,"value":1378}," for job queues",{"type":46,"tag":253,"props":1380,"children":1381},{},[1382,1384,1389],{"type":52,"value":1383},"Switch to ",{"type":46,"tag":264,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":52,"value":464},{"type":52,"value":1390},"—LRU eviction drops queued jobs",{"type":46,"tag":226,"props":1392,"children":1393},{},[1394,1399],{"type":46,"tag":253,"props":1395,"children":1396},{},[1397],{"type":52,"value":1398},"Connecting with external URL from a Render service",{"type":46,"tag":253,"props":1400,"children":1401},{},[1402],{"type":52,"value":1403},"Use the internal URL for lower latency and no auth requirement",{"type":46,"tag":226,"props":1405,"children":1406},{},[1407,1424],{"type":46,"tag":253,"props":1408,"children":1409},{},[1410,1412,1417,1419],{"type":52,"value":1411},"Forgetting ",{"type":46,"tag":264,"props":1413,"children":1415},{"className":1414},[],[1416],{"type":52,"value":980},{"type":52,"value":1418}," in ",{"type":46,"tag":264,"props":1420,"children":1422},{"className":1421},[],[1423],{"type":52,"value":972},{"type":46,"tag":253,"props":1425,"children":1426},{},[1427,1433],{"type":46,"tag":264,"props":1428,"children":1430},{"className":1429},[],[1431],{"type":52,"value":1432},"type",{"type":52,"value":1434}," is required; without it the wiring fails",{"type":46,"tag":226,"props":1436,"children":1437},{},[1438,1450],{"type":46,"tag":253,"props":1439,"children":1440},{},[1441,1443,1448],{"type":52,"value":1442},"Using deprecated ",{"type":46,"tag":264,"props":1444,"children":1446},{"className":1445},[],[1447],{"type":52,"value":18},{"type":52,"value":1449}," type alias",{"type":46,"tag":253,"props":1451,"children":1452},{},[1453,1455,1461,1463,1468],{"type":52,"value":1454},"Prefer ",{"type":46,"tag":264,"props":1456,"children":1458},{"className":1457},[],[1459],{"type":52,"value":1460},"keyvalue",{"type":52,"value":1462}," in new Blueprints (",{"type":46,"tag":264,"props":1464,"children":1466},{"className":1465},[],[1467],{"type":52,"value":18},{"type":52,"value":1469}," still works but is deprecated)",{"type":46,"tag":69,"props":1471,"children":1473},{"id":1472},"references",[1474],{"type":52,"value":1475},"References",{"type":46,"tag":218,"props":1477,"children":1478},{},[1479,1495],{"type":46,"tag":222,"props":1480,"children":1481},{},[1482],{"type":46,"tag":226,"props":1483,"children":1484},{},[1485,1490],{"type":46,"tag":230,"props":1486,"children":1487},{},[1488],{"type":52,"value":1489},"Document",{"type":46,"tag":230,"props":1491,"children":1492},{},[1493],{"type":52,"value":1494},"Contents",{"type":46,"tag":246,"props":1496,"children":1497},{},[1498,1514],{"type":46,"tag":226,"props":1499,"children":1500},{},[1501,1509],{"type":46,"tag":253,"props":1502,"children":1503},{},[1504],{"type":46,"tag":264,"props":1505,"children":1507},{"className":1506},[],[1508],{"type":52,"value":1305},{"type":46,"tag":253,"props":1510,"children":1511},{},[1512],{"type":52,"value":1513},"Client code for Node.js, Python, Ruby, Go",{"type":46,"tag":226,"props":1515,"children":1516},{},[1517,1526],{"type":46,"tag":253,"props":1518,"children":1519},{},[1520],{"type":46,"tag":264,"props":1521,"children":1523},{"className":1522},[],[1524],{"type":52,"value":1525},"references\u002Ftroubleshooting.md",{"type":46,"tag":253,"props":1527,"children":1528},{},[1529],{"type":52,"value":1530},"Auth errors, connection refused, memory full, migration from Redis 6",{"type":46,"tag":69,"props":1532,"children":1534},{"id":1533},"related-skills",[1535],{"type":52,"value":1536},"Related Skills",{"type":46,"tag":76,"props":1538,"children":1539},{},[1540,1549,1573,1583],{"type":46,"tag":80,"props":1541,"children":1542},{},[1543,1547],{"type":46,"tag":61,"props":1544,"children":1545},{},[1546],{"type":52,"value":172},{"type":52,"value":1548}," — Queue consumer setup with Celery, Sidekiq, BullMQ",{"type":46,"tag":80,"props":1550,"children":1551},{},[1552,1556,1558,1564,1566,1571],{"type":46,"tag":61,"props":1553,"children":1554},{},[1555],{"type":52,"value":179},{"type":52,"value":1557}," — Full ",{"type":46,"tag":264,"props":1559,"children":1561},{"className":1560},[],[1562],{"type":52,"value":1563},"render.yaml",{"type":52,"value":1565}," schema, ",{"type":46,"tag":264,"props":1567,"children":1569},{"className":1568},[],[1570],{"type":52,"value":972},{"type":52,"value":1572}," patterns",{"type":46,"tag":80,"props":1574,"children":1575},{},[1576,1581],{"type":46,"tag":61,"props":1577,"children":1578},{},[1579],{"type":52,"value":1580},"render-networking",{"type":52,"value":1582}," — Private network, internal URLs",{"type":46,"tag":80,"props":1584,"children":1585},{},[1586,1591,1593,1599],{"type":46,"tag":61,"props":1587,"children":1588},{},[1589],{"type":52,"value":1590},"render-env-vars",{"type":52,"value":1592}," — Wiring ",{"type":46,"tag":264,"props":1594,"children":1596},{"className":1595},[],[1597],{"type":52,"value":1598},"REDIS_URL",{"type":52,"value":1600}," and other connection vars",{"type":46,"tag":1602,"props":1603,"children":1604},"style",{},[1605],{"type":52,"value":1606},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1608,"total":1727},[1609,1627,1643,1655,1673,1695,1715],{"slug":1610,"name":1610,"fn":1611,"description":1612,"org":1613,"tags":1614,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1615,1618,1621,1624],{"name":1616,"slug":1617,"type":15},"Accessibility","accessibility",{"name":1619,"slug":1620,"type":15},"Charts","charts",{"name":1622,"slug":1623,"type":15},"Data Visualization","data-visualization",{"name":1625,"slug":1626,"type":15},"Design","design",{"slug":1628,"name":1628,"fn":1629,"description":1630,"org":1631,"tags":1632,"stars":25,"repoUrl":26,"updatedAt":1642},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1633,1636,1639],{"name":1634,"slug":1635,"type":15},"Agents","agents",{"name":1637,"slug":1638,"type":15},"Browser Automation","browser-automation",{"name":1640,"slug":1641,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1644,"name":1644,"fn":1645,"description":1646,"org":1647,"tags":1648,"stars":25,"repoUrl":26,"updatedAt":1654},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1649,1650,1653],{"name":1637,"slug":1638,"type":15},{"name":1651,"slug":1652,"type":15},"Local Development","local-development",{"name":1640,"slug":1641,"type":15},"2026-04-06T18:41:17.526867",{"slug":1656,"name":1656,"fn":1657,"description":1658,"org":1659,"tags":1660,"stars":25,"repoUrl":26,"updatedAt":1672},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1661,1662,1665,1668,1669],{"name":1634,"slug":1635,"type":15},{"name":1663,"slug":1664,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1666,"slug":1667,"type":15},"SDK","sdk",{"name":20,"slug":21,"type":15},{"name":1670,"slug":1671,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":25,"repoUrl":26,"updatedAt":1694},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1679,1682,1685,1688,1691],{"name":1680,"slug":1681,"type":15},"Frontend","frontend",{"name":1683,"slug":1684,"type":15},"React","react",{"name":1686,"slug":1687,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1689,"slug":1690,"type":15},"UI Components","ui-components",{"name":1692,"slug":1693,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1696,"name":1696,"fn":1697,"description":1698,"org":1699,"tags":1700,"stars":25,"repoUrl":26,"updatedAt":1714},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1701,1704,1707,1710,1713],{"name":1702,"slug":1703,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1705,"slug":1706,"type":15},"Cost Optimization","cost-optimization",{"name":1708,"slug":1709,"type":15},"LLM","llm",{"name":1711,"slug":1712,"type":15},"Performance","performance",{"name":1692,"slug":1693,"type":15},"2026-04-06T18:40:44.377464",{"slug":1716,"name":1716,"fn":1717,"description":1718,"org":1719,"tags":1720,"stars":25,"repoUrl":26,"updatedAt":1726},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1721,1722,1725],{"name":1705,"slug":1706,"type":15},{"name":1723,"slug":1724,"type":15},"Database","database",{"name":1708,"slug":1709,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1729,"total":1926},[1730,1751,1774,1791,1807,1824,1843,1855,1869,1883,1895,1910],{"slug":1731,"name":1731,"fn":1732,"description":1733,"org":1734,"tags":1735,"stars":1748,"repoUrl":1749,"updatedAt":1750},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1736,1739,1742,1745],{"name":1737,"slug":1738,"type":15},"Documents","documents",{"name":1740,"slug":1741,"type":15},"Healthcare","healthcare",{"name":1743,"slug":1744,"type":15},"Insurance","insurance",{"name":1746,"slug":1747,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1752,"name":1752,"fn":1753,"description":1754,"org":1755,"tags":1756,"stars":1771,"repoUrl":1772,"updatedAt":1773},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1757,1760,1762,1765,1768],{"name":1758,"slug":1759,"type":15},".NET","dotnet",{"name":1761,"slug":1752,"type":15},"ASP.NET Core",{"name":1763,"slug":1764,"type":15},"Blazor","blazor",{"name":1766,"slug":1767,"type":15},"C#","csharp",{"name":1769,"slug":1770,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1775,"name":1775,"fn":1776,"description":1777,"org":1778,"tags":1779,"stars":1771,"repoUrl":1772,"updatedAt":1790},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1780,1783,1786,1789],{"name":1781,"slug":1782,"type":15},"Apps SDK","apps-sdk",{"name":1784,"slug":1785,"type":15},"ChatGPT","chatgpt",{"name":1787,"slug":1788,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1792,"name":1792,"fn":1793,"description":1794,"org":1795,"tags":1796,"stars":1771,"repoUrl":1772,"updatedAt":1806},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1797,1800,1803],{"name":1798,"slug":1799,"type":15},"API Development","api-development",{"name":1801,"slug":1802,"type":15},"CLI","cli",{"name":1804,"slug":1805,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1808,"name":1808,"fn":1809,"description":1810,"org":1811,"tags":1812,"stars":1771,"repoUrl":1772,"updatedAt":1823},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1813,1816,1819,1820],{"name":1814,"slug":1815,"type":15},"Cloudflare","cloudflare",{"name":1817,"slug":1818,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1663,"slug":1664,"type":15},{"name":1821,"slug":1822,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1825,"name":1825,"fn":1826,"description":1827,"org":1828,"tags":1829,"stars":1771,"repoUrl":1772,"updatedAt":1842},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1830,1833,1836,1839],{"name":1831,"slug":1832,"type":15},"Productivity","productivity",{"name":1834,"slug":1835,"type":15},"Project Management","project-management",{"name":1837,"slug":1838,"type":15},"Strategy","strategy",{"name":1840,"slug":1841,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1844,"name":1844,"fn":1845,"description":1846,"org":1847,"tags":1848,"stars":1771,"repoUrl":1772,"updatedAt":1854},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1849,1850,1852,1853],{"name":1625,"slug":1626,"type":15},{"name":1851,"slug":1844,"type":15},"Figma",{"name":1680,"slug":1681,"type":15},{"name":1787,"slug":1788,"type":15},"2026-04-12T05:06:47.939943",{"slug":1856,"name":1856,"fn":1857,"description":1858,"org":1859,"tags":1860,"stars":1771,"repoUrl":1772,"updatedAt":1868},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1861,1862,1865,1866,1867],{"name":1625,"slug":1626,"type":15},{"name":1863,"slug":1864,"type":15},"Design System","design-system",{"name":1851,"slug":1844,"type":15},{"name":1680,"slug":1681,"type":15},{"name":1689,"slug":1690,"type":15},"2026-05-10T05:59:52.971881",{"slug":1870,"name":1870,"fn":1871,"description":1872,"org":1873,"tags":1874,"stars":1771,"repoUrl":1772,"updatedAt":1882},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1875,1876,1877,1880,1881],{"name":1625,"slug":1626,"type":15},{"name":1863,"slug":1864,"type":15},{"name":1878,"slug":1879,"type":15},"Documentation","documentation",{"name":1851,"slug":1844,"type":15},{"name":1680,"slug":1681,"type":15},"2026-05-16T06:07:47.821474",{"slug":1884,"name":1884,"fn":1885,"description":1886,"org":1887,"tags":1888,"stars":1771,"repoUrl":1772,"updatedAt":1894},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1889,1890,1891,1892,1893],{"name":1625,"slug":1626,"type":15},{"name":1851,"slug":1844,"type":15},{"name":1680,"slug":1681,"type":15},{"name":1689,"slug":1690,"type":15},{"name":1769,"slug":1770,"type":15},"2026-05-16T06:07:40.583615",{"slug":1896,"name":1896,"fn":1897,"description":1898,"org":1899,"tags":1900,"stars":1771,"repoUrl":1772,"updatedAt":1909},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1901,1904,1905,1908],{"name":1902,"slug":1903,"type":15},"Animation","animation",{"name":1804,"slug":1805,"type":15},{"name":1906,"slug":1907,"type":15},"Creative","creative",{"name":1625,"slug":1626,"type":15},"2026-05-02T05:31:48.48485",{"slug":1911,"name":1911,"fn":1912,"description":1913,"org":1914,"tags":1915,"stars":1771,"repoUrl":1772,"updatedAt":1925},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1916,1917,1918,1921,1924],{"name":1906,"slug":1907,"type":15},{"name":1625,"slug":1626,"type":15},{"name":1919,"slug":1920,"type":15},"Image Generation","image-generation",{"name":1922,"slug":1923,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]