[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-postgres":3,"mdc--wge232-key":36,"related-repo-openai-render-postgres":1550,"related-org-openai-render-postgres":1671},{"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-postgres","set up and optimize Render PostgreSQL","Sets up and optimizes Managed PostgreSQL on Render—connection strings (internal vs external), creation constraints, storage autoscaling, connection limits, high availability, read replicas, backups, and MCP inspection. Use when the user mentions Postgres, PostgreSQL, Render database, connection string, DATABASE_URL, backups, snapshots, replicas, HA, disk storage, connection pooling, or troubleshooting DB connectivity.",{"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},"Database","database",{"name":20,"slug":21,"type":15},"PostgreSQL","postgresql",{"name":23,"slug":24,"type":15},"Infrastructure","infrastructure",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-postgres","---\nname: render-postgres\ndescription: >-\n  Sets up and optimizes Managed PostgreSQL on Render—connection strings\n  (internal vs external), creation constraints, storage autoscaling, connection\n  limits, high availability, read replicas, backups, and MCP inspection. Use\n  when the user\n  mentions Postgres, PostgreSQL, Render database, connection string, DATABASE_URL,\n  backups, snapshots, replicas, HA, disk storage, connection pooling, or\n  troubleshooting DB connectivity.\nlicense: MIT\ncompatibility: Render Managed Postgres (any plan)\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: data\n---\n\n# Render Managed PostgreSQL\n\nThis skill covers **Managed Postgres on Render**: how to connect, what cannot change after creation, storage behavior, limits, HA, replicas, and safe deletion. Deep dives live under `references\u002F`.\n\n## When to Use\n\nApply this skill when the user:\n\n- Configures **Postgres** for an app on Render (URLs, TLS, pooling)\n- Creates or changes a **database**, **plan**, **disk**, or **replicas**\n- Asks about **backups**, **PITR**, **exports**, or **deleting** a database\n- Hits **connection limits**, **SSL errors**, or **latency** between services and DB\n- Authors **Blueprint** `databases` \u002F `readReplicas` or wires `fromDatabase`\n\nFor deploy flows and Blueprint basics, see **render-deploy** and **render-blueprints**. For private networking between services, see **render-networking**. For env var patterns, see **render-env-vars**.\n\n## Connection Patterns\n\nRender exposes **two connection URLs** for the same logical database:\n\n| URL | Use when | TLS |\n|-----|----------|-----|\n| **Internal** | App or service on Render in the **same region and workspace** | Not required (private network) |\n| **External** | Local development, CI, or tools outside Render | **Required** (TLS 1.2+) |\n\n**Always prefer the internal URL for Render-hosted apps** so traffic stays on Render’s network and avoids extra latency and public egress patterns.\n\n- **IP allow list** applies to **external** access only. Same-region Render services use the **internal** URL regardless of the allow list.\n- **External** clients must use TLS; misconfigured clients often show SSL handshake or `sslmode` errors.\n\nURL formats, Dashboard locations, Blueprint `fromDatabase`, pooling, and common mistakes: `references\u002Fconnection-guide.md`.\n\n## Creation and Setup\n\n- **Instance display name**: Can be changed later (where the Dashboard allows renaming the resource).\n- **Immutable after creation**: `databaseName`, database **user**, **region**, **PostgreSQL major version**. Plan these before create; changing them requires a new database and migration.\n- **Storage size**: **1 GB** or **multiples of 5 GB** when provisioning.\n\nWire apps with Blueprint `fromDatabase` using `property: connectionString` (or `host`, `port`, `user`, `password`, `database` individually). See **render-blueprints**.\n\n### Multiple logical databases\n\nYou can run `CREATE DATABASE new_db;` in `psql` on the same instance. **Host, port, and credentials stay the same**; only the **database name in the URL path** changes (e.g. `...\u002Fmyapp` vs `...\u002Fnew_db`).\n\n## Storage Management\n\n- **Autoscaling**: When disk use reaches roughly **~90%**, Render can grow storage by about **~50%**, rounded up to the **next 5 GB multiple**, up to **16 TB** max.\n- **Cannot shrink** disk after an increase.\n- **Cooldown**: After a storage increase, you **cannot increase again for 12 hours**.\n- **Over limit \u002F unhealthy**: If disk is over the configured limit, the database can become **unhealthy**; Render may **suspend** it until resolved.\n\nMonitor disk and plan exports or cleanup before you hit hard limits. Backup and restore options: `references\u002Fbackup-and-recovery.md`.\n\n## Connection Limits\n\nMaximum connections depend on **instance RAM** (current-generation plans):\n\n| RAM | Max connections (typical) |\n|-----|---------------------------|\n| Under 8 GB | 100 |\n| 8 GB | 200 |\n| 16 GB | 300 |\n| 32 GB and above | 500 |\n\n**Legacy** database plans may have **lower** limits; confirm in the Dashboard or API for the specific plan.\n\nRender does **not** provide a built-in pooler; use **application-side pooling** (framework pools, PgBouncer, pgpool, etc.). Limits are **hard**—exhausting them causes connection errors. More detail: `references\u002Fconnection-guide.md` and `references\u002Fperformance-tuning.md`.\n\n## High Availability\n\n**High availability (HA)** is available when:\n\n- Workspace is **Professional** or higher, **and**\n- Database plan is **Pro** or higher, **and**\n- **PostgreSQL 13+**\n\n**Instance type changes** cause **brief downtime**. With HA, downtime is typically **less** than **without HA** (often on the order of **minutes** without HA—exact duration depends on plan and operation).\n\n**One-way migration off legacy types**: After moving to current-generation instance types, you **cannot** move back to **legacy** instance types.\n\n## Read Replicas\n\n- Up to **5 read replicas** per database.\n- In Blueprints, declare replicas under **`readReplicas`** as a **list of names**.\n- **CAUTION — declarative sync**:\n  - An **empty** `readReplicas` list can **destroy all** existing replicas.\n  - **Name mismatches** between the Blueprint and live replicas can **create** new replicas and **remove** replicas whose names are no longer listed.\n\nAlways treat `readReplicas` as **authoritative** desired state, not additive-only.\n\n## Useful MCP Commands\n\nUse the Render MCP tools (names may vary slightly by integration; align with your server’s tool list):\n\n| Goal | Tool \u002F pattern |\n|------|----------------|\n| List databases | `list_postgres_instances` |\n| Instance details | `get_postgres` with `postgresId` |\n| Read-only SQL | `query_render_postgres` with `postgresId` and `sql` |\n| Connection load | `get_metrics` with `resourceId` (Postgres ID) and `metricTypes: [\"active_connections\"]` |\n\n`query_render_postgres` runs in a **read-only** transaction and opens a **new connection per query**—do not use it as a substitute for app pooling.\n\nShorthand (same tools): `list_postgres_instances()`, `get_postgres(postgresId)`, `query_render_postgres(postgresId, sql)`, `get_metrics(resourceId, metricTypes: [\"active_connections\"])`.\n\n## Deleting and Data Safety\n\n- **Backups and snapshots are not retained** after you **delete** the database. **Export first** (`pg_dump`, Dashboard restore workflow from existing backups, etc.).\n- Before destructive actions, confirm retention and recovery paths in `references\u002Fbackup-and-recovery.md`.\n\n## References\n\n| Document | Contents |\n|----------|----------|\n| `references\u002Fconnection-guide.md` | Internal vs external URLs, SSL, allow list, Blueprint wiring, pooling, multi-database URLs, troubleshooting |\n| `references\u002Fbackup-and-recovery.md` | Snapshots, PITR, `pg_dump` \u002F `pg_restore`, restore flows, deletion, cross-region |\n| `references\u002Fperformance-tuning.md` | `pg_stat_statements`, indexes, bloat, `EXPLAIN ANALYZE`, metrics, scaling |\n\n## Related Skills\n\n- **render-deploy** — End-to-end deploy, services, and MCP\u002FDashboard flows\n- **render-blueprints** — `databases`, `fromDatabase`, `readReplicas`, immutable fields\n- **render-networking** — Private services, regions, and how traffic routes between resources\n- **render-env-vars** — Storing `DATABASE_URL` and secret wiring patterns\n",{"data":37,"body":42},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Render Managed Postgres (any plan)",{"author":13,"version":40,"category":41},"1.0.0","data",{"type":43,"children":44},"root",[45,54,77,84,89,223,255,261,273,358,368,412,431,437,510,569,576,627,633,724,736,742,754,828,845,884,890,900,943,981,1005,1011,1109,1128,1134,1139,1265,1289,1322,1328,1374,1380,1478,1484],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"render-managed-postgresql",[51],{"type":52,"value":53},"text","Render Managed PostgreSQL",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58,60,66,68,75],{"type":52,"value":59},"This skill covers ",{"type":46,"tag":61,"props":62,"children":63},"strong",{},[64],{"type":52,"value":65},"Managed Postgres on Render",{"type":52,"value":67},": how to connect, what cannot change after creation, storage behavior, limits, HA, replicas, and safe deletion. Deep dives live under ",{"type":46,"tag":69,"props":70,"children":72},"code",{"className":71},[],[73],{"type":52,"value":74},"references\u002F",{"type":52,"value":76},".",{"type":46,"tag":78,"props":79,"children":81},"h2",{"id":80},"when-to-use",[82],{"type":52,"value":83},"When to Use",{"type":46,"tag":55,"props":85,"children":86},{},[87],{"type":52,"value":88},"Apply this skill when the user:",{"type":46,"tag":90,"props":91,"children":92},"ul",{},[93,106,135,165,189],{"type":46,"tag":94,"props":95,"children":96},"li",{},[97,99,104],{"type":52,"value":98},"Configures ",{"type":46,"tag":61,"props":100,"children":101},{},[102],{"type":52,"value":103},"Postgres",{"type":52,"value":105}," for an app on Render (URLs, TLS, pooling)",{"type":46,"tag":94,"props":107,"children":108},{},[109,111,115,117,122,123,128,130],{"type":52,"value":110},"Creates or changes a ",{"type":46,"tag":61,"props":112,"children":113},{},[114],{"type":52,"value":18},{"type":52,"value":116},", ",{"type":46,"tag":61,"props":118,"children":119},{},[120],{"type":52,"value":121},"plan",{"type":52,"value":116},{"type":46,"tag":61,"props":124,"children":125},{},[126],{"type":52,"value":127},"disk",{"type":52,"value":129},", or ",{"type":46,"tag":61,"props":131,"children":132},{},[133],{"type":52,"value":134},"replicas",{"type":46,"tag":94,"props":136,"children":137},{},[138,140,145,146,151,152,157,158,163],{"type":52,"value":139},"Asks about ",{"type":46,"tag":61,"props":141,"children":142},{},[143],{"type":52,"value":144},"backups",{"type":52,"value":116},{"type":46,"tag":61,"props":147,"children":148},{},[149],{"type":52,"value":150},"PITR",{"type":52,"value":116},{"type":46,"tag":61,"props":153,"children":154},{},[155],{"type":52,"value":156},"exports",{"type":52,"value":129},{"type":46,"tag":61,"props":159,"children":160},{},[161],{"type":52,"value":162},"deleting",{"type":52,"value":164}," a database",{"type":46,"tag":94,"props":166,"children":167},{},[168,170,175,176,181,182,187],{"type":52,"value":169},"Hits ",{"type":46,"tag":61,"props":171,"children":172},{},[173],{"type":52,"value":174},"connection limits",{"type":52,"value":116},{"type":46,"tag":61,"props":177,"children":178},{},[179],{"type":52,"value":180},"SSL errors",{"type":52,"value":129},{"type":46,"tag":61,"props":183,"children":184},{},[185],{"type":52,"value":186},"latency",{"type":52,"value":188}," between services and DB",{"type":46,"tag":94,"props":190,"children":191},{},[192,194,199,201,207,209,215,217],{"type":52,"value":193},"Authors ",{"type":46,"tag":61,"props":195,"children":196},{},[197],{"type":52,"value":198},"Blueprint",{"type":52,"value":200}," ",{"type":46,"tag":69,"props":202,"children":204},{"className":203},[],[205],{"type":52,"value":206},"databases",{"type":52,"value":208}," \u002F ",{"type":46,"tag":69,"props":210,"children":212},{"className":211},[],[213],{"type":52,"value":214},"readReplicas",{"type":52,"value":216}," or wires ",{"type":46,"tag":69,"props":218,"children":220},{"className":219},[],[221],{"type":52,"value":222},"fromDatabase",{"type":46,"tag":55,"props":224,"children":225},{},[226,228,233,235,240,242,247,249,254],{"type":52,"value":227},"For deploy flows and Blueprint basics, see ",{"type":46,"tag":61,"props":229,"children":230},{},[231],{"type":52,"value":232},"render-deploy",{"type":52,"value":234}," and ",{"type":46,"tag":61,"props":236,"children":237},{},[238],{"type":52,"value":239},"render-blueprints",{"type":52,"value":241},". For private networking between services, see ",{"type":46,"tag":61,"props":243,"children":244},{},[245],{"type":52,"value":246},"render-networking",{"type":52,"value":248},". For env var patterns, see ",{"type":46,"tag":61,"props":250,"children":251},{},[252],{"type":52,"value":253},"render-env-vars",{"type":52,"value":76},{"type":46,"tag":78,"props":256,"children":258},{"id":257},"connection-patterns",[259],{"type":52,"value":260},"Connection Patterns",{"type":46,"tag":55,"props":262,"children":263},{},[264,266,271],{"type":52,"value":265},"Render exposes ",{"type":46,"tag":61,"props":267,"children":268},{},[269],{"type":52,"value":270},"two connection URLs",{"type":52,"value":272}," for the same logical database:",{"type":46,"tag":274,"props":275,"children":276},"table",{},[277,301],{"type":46,"tag":278,"props":279,"children":280},"thead",{},[281],{"type":46,"tag":282,"props":283,"children":284},"tr",{},[285,291,296],{"type":46,"tag":286,"props":287,"children":288},"th",{},[289],{"type":52,"value":290},"URL",{"type":46,"tag":286,"props":292,"children":293},{},[294],{"type":52,"value":295},"Use when",{"type":46,"tag":286,"props":297,"children":298},{},[299],{"type":52,"value":300},"TLS",{"type":46,"tag":302,"props":303,"children":304},"tbody",{},[305,332],{"type":46,"tag":282,"props":306,"children":307},{},[308,317,327],{"type":46,"tag":309,"props":310,"children":311},"td",{},[312],{"type":46,"tag":61,"props":313,"children":314},{},[315],{"type":52,"value":316},"Internal",{"type":46,"tag":309,"props":318,"children":319},{},[320,322],{"type":52,"value":321},"App or service on Render in the ",{"type":46,"tag":61,"props":323,"children":324},{},[325],{"type":52,"value":326},"same region and workspace",{"type":46,"tag":309,"props":328,"children":329},{},[330],{"type":52,"value":331},"Not required (private network)",{"type":46,"tag":282,"props":333,"children":334},{},[335,343,348],{"type":46,"tag":309,"props":336,"children":337},{},[338],{"type":46,"tag":61,"props":339,"children":340},{},[341],{"type":52,"value":342},"External",{"type":46,"tag":309,"props":344,"children":345},{},[346],{"type":52,"value":347},"Local development, CI, or tools outside Render",{"type":46,"tag":309,"props":349,"children":350},{},[351,356],{"type":46,"tag":61,"props":352,"children":353},{},[354],{"type":52,"value":355},"Required",{"type":52,"value":357}," (TLS 1.2+)",{"type":46,"tag":55,"props":359,"children":360},{},[361,366],{"type":46,"tag":61,"props":362,"children":363},{},[364],{"type":52,"value":365},"Always prefer the internal URL for Render-hosted apps",{"type":52,"value":367}," so traffic stays on Render’s network and avoids extra latency and public egress patterns.",{"type":46,"tag":90,"props":369,"children":370},{},[371,395],{"type":46,"tag":94,"props":372,"children":373},{},[374,379,381,386,388,393],{"type":46,"tag":61,"props":375,"children":376},{},[377],{"type":52,"value":378},"IP allow list",{"type":52,"value":380}," applies to ",{"type":46,"tag":61,"props":382,"children":383},{},[384],{"type":52,"value":385},"external",{"type":52,"value":387}," access only. Same-region Render services use the ",{"type":46,"tag":61,"props":389,"children":390},{},[391],{"type":52,"value":392},"internal",{"type":52,"value":394}," URL regardless of the allow list.",{"type":46,"tag":94,"props":396,"children":397},{},[398,402,404,410],{"type":46,"tag":61,"props":399,"children":400},{},[401],{"type":52,"value":342},{"type":52,"value":403}," clients must use TLS; misconfigured clients often show SSL handshake or ",{"type":46,"tag":69,"props":405,"children":407},{"className":406},[],[408],{"type":52,"value":409},"sslmode",{"type":52,"value":411}," errors.",{"type":46,"tag":55,"props":413,"children":414},{},[415,417,422,424,430],{"type":52,"value":416},"URL formats, Dashboard locations, Blueprint ",{"type":46,"tag":69,"props":418,"children":420},{"className":419},[],[421],{"type":52,"value":222},{"type":52,"value":423},", pooling, and common mistakes: ",{"type":46,"tag":69,"props":425,"children":427},{"className":426},[],[428],{"type":52,"value":429},"references\u002Fconnection-guide.md",{"type":52,"value":76},{"type":46,"tag":78,"props":432,"children":434},{"id":433},"creation-and-setup",[435],{"type":52,"value":436},"Creation and Setup",{"type":46,"tag":90,"props":438,"children":439},{},[440,450,487],{"type":46,"tag":94,"props":441,"children":442},{},[443,448],{"type":46,"tag":61,"props":444,"children":445},{},[446],{"type":52,"value":447},"Instance display name",{"type":52,"value":449},": Can be changed later (where the Dashboard allows renaming the resource).",{"type":46,"tag":94,"props":451,"children":452},{},[453,458,460,466,468,473,474,479,480,485],{"type":46,"tag":61,"props":454,"children":455},{},[456],{"type":52,"value":457},"Immutable after creation",{"type":52,"value":459},": ",{"type":46,"tag":69,"props":461,"children":463},{"className":462},[],[464],{"type":52,"value":465},"databaseName",{"type":52,"value":467},", database ",{"type":46,"tag":61,"props":469,"children":470},{},[471],{"type":52,"value":472},"user",{"type":52,"value":116},{"type":46,"tag":61,"props":475,"children":476},{},[477],{"type":52,"value":478},"region",{"type":52,"value":116},{"type":46,"tag":61,"props":481,"children":482},{},[483],{"type":52,"value":484},"PostgreSQL major version",{"type":52,"value":486},". Plan these before create; changing them requires a new database and migration.",{"type":46,"tag":94,"props":488,"children":489},{},[490,495,496,501,503,508],{"type":46,"tag":61,"props":491,"children":492},{},[493],{"type":52,"value":494},"Storage size",{"type":52,"value":459},{"type":46,"tag":61,"props":497,"children":498},{},[499],{"type":52,"value":500},"1 GB",{"type":52,"value":502}," or ",{"type":46,"tag":61,"props":504,"children":505},{},[506],{"type":52,"value":507},"multiples of 5 GB",{"type":52,"value":509}," when provisioning.",{"type":46,"tag":55,"props":511,"children":512},{},[513,515,520,522,528,530,536,537,543,544,549,550,556,557,562,564,568],{"type":52,"value":514},"Wire apps with Blueprint ",{"type":46,"tag":69,"props":516,"children":518},{"className":517},[],[519],{"type":52,"value":222},{"type":52,"value":521}," using ",{"type":46,"tag":69,"props":523,"children":525},{"className":524},[],[526],{"type":52,"value":527},"property: connectionString",{"type":52,"value":529}," (or ",{"type":46,"tag":69,"props":531,"children":533},{"className":532},[],[534],{"type":52,"value":535},"host",{"type":52,"value":116},{"type":46,"tag":69,"props":538,"children":540},{"className":539},[],[541],{"type":52,"value":542},"port",{"type":52,"value":116},{"type":46,"tag":69,"props":545,"children":547},{"className":546},[],[548],{"type":52,"value":472},{"type":52,"value":116},{"type":46,"tag":69,"props":551,"children":553},{"className":552},[],[554],{"type":52,"value":555},"password",{"type":52,"value":116},{"type":46,"tag":69,"props":558,"children":560},{"className":559},[],[561],{"type":52,"value":18},{"type":52,"value":563}," individually). See ",{"type":46,"tag":61,"props":565,"children":566},{},[567],{"type":52,"value":239},{"type":52,"value":76},{"type":46,"tag":570,"props":571,"children":573},"h3",{"id":572},"multiple-logical-databases",[574],{"type":52,"value":575},"Multiple logical databases",{"type":46,"tag":55,"props":577,"children":578},{},[579,581,587,589,595,597,602,604,609,611,617,619,625],{"type":52,"value":580},"You can run ",{"type":46,"tag":69,"props":582,"children":584},{"className":583},[],[585],{"type":52,"value":586},"CREATE DATABASE new_db;",{"type":52,"value":588}," in ",{"type":46,"tag":69,"props":590,"children":592},{"className":591},[],[593],{"type":52,"value":594},"psql",{"type":52,"value":596}," on the same instance. ",{"type":46,"tag":61,"props":598,"children":599},{},[600],{"type":52,"value":601},"Host, port, and credentials stay the same",{"type":52,"value":603},"; only the ",{"type":46,"tag":61,"props":605,"children":606},{},[607],{"type":52,"value":608},"database name in the URL path",{"type":52,"value":610}," changes (e.g. ",{"type":46,"tag":69,"props":612,"children":614},{"className":613},[],[615],{"type":52,"value":616},"...\u002Fmyapp",{"type":52,"value":618}," vs ",{"type":46,"tag":69,"props":620,"children":622},{"className":621},[],[623],{"type":52,"value":624},"...\u002Fnew_db",{"type":52,"value":626},").",{"type":46,"tag":78,"props":628,"children":630},{"id":629},"storage-management",[631],{"type":52,"value":632},"Storage Management",{"type":46,"tag":90,"props":634,"children":635},{},[636,674,684,700],{"type":46,"tag":94,"props":637,"children":638},{},[639,644,646,651,653,658,660,665,667,672],{"type":46,"tag":61,"props":640,"children":641},{},[642],{"type":52,"value":643},"Autoscaling",{"type":52,"value":645},": When disk use reaches roughly ",{"type":46,"tag":61,"props":647,"children":648},{},[649],{"type":52,"value":650},"~90%",{"type":52,"value":652},", Render can grow storage by about ",{"type":46,"tag":61,"props":654,"children":655},{},[656],{"type":52,"value":657},"~50%",{"type":52,"value":659},", rounded up to the ",{"type":46,"tag":61,"props":661,"children":662},{},[663],{"type":52,"value":664},"next 5 GB multiple",{"type":52,"value":666},", up to ",{"type":46,"tag":61,"props":668,"children":669},{},[670],{"type":52,"value":671},"16 TB",{"type":52,"value":673}," max.",{"type":46,"tag":94,"props":675,"children":676},{},[677,682],{"type":46,"tag":61,"props":678,"children":679},{},[680],{"type":52,"value":681},"Cannot shrink",{"type":52,"value":683}," disk after an increase.",{"type":46,"tag":94,"props":685,"children":686},{},[687,692,694,699],{"type":46,"tag":61,"props":688,"children":689},{},[690],{"type":52,"value":691},"Cooldown",{"type":52,"value":693},": After a storage increase, you ",{"type":46,"tag":61,"props":695,"children":696},{},[697],{"type":52,"value":698},"cannot increase again for 12 hours",{"type":52,"value":76},{"type":46,"tag":94,"props":701,"children":702},{},[703,708,710,715,717,722],{"type":46,"tag":61,"props":704,"children":705},{},[706],{"type":52,"value":707},"Over limit \u002F unhealthy",{"type":52,"value":709},": If disk is over the configured limit, the database can become ",{"type":46,"tag":61,"props":711,"children":712},{},[713],{"type":52,"value":714},"unhealthy",{"type":52,"value":716},"; Render may ",{"type":46,"tag":61,"props":718,"children":719},{},[720],{"type":52,"value":721},"suspend",{"type":52,"value":723}," it until resolved.",{"type":46,"tag":55,"props":725,"children":726},{},[727,729,735],{"type":52,"value":728},"Monitor disk and plan exports or cleanup before you hit hard limits. Backup and restore options: ",{"type":46,"tag":69,"props":730,"children":732},{"className":731},[],[733],{"type":52,"value":734},"references\u002Fbackup-and-recovery.md",{"type":52,"value":76},{"type":46,"tag":78,"props":737,"children":739},{"id":738},"connection-limits",[740],{"type":52,"value":741},"Connection Limits",{"type":46,"tag":55,"props":743,"children":744},{},[745,747,752],{"type":52,"value":746},"Maximum connections depend on ",{"type":46,"tag":61,"props":748,"children":749},{},[750],{"type":52,"value":751},"instance RAM",{"type":52,"value":753}," (current-generation plans):",{"type":46,"tag":274,"props":755,"children":756},{},[757,773],{"type":46,"tag":278,"props":758,"children":759},{},[760],{"type":46,"tag":282,"props":761,"children":762},{},[763,768],{"type":46,"tag":286,"props":764,"children":765},{},[766],{"type":52,"value":767},"RAM",{"type":46,"tag":286,"props":769,"children":770},{},[771],{"type":52,"value":772},"Max connections (typical)",{"type":46,"tag":302,"props":774,"children":775},{},[776,789,802,815],{"type":46,"tag":282,"props":777,"children":778},{},[779,784],{"type":46,"tag":309,"props":780,"children":781},{},[782],{"type":52,"value":783},"Under 8 GB",{"type":46,"tag":309,"props":785,"children":786},{},[787],{"type":52,"value":788},"100",{"type":46,"tag":282,"props":790,"children":791},{},[792,797],{"type":46,"tag":309,"props":793,"children":794},{},[795],{"type":52,"value":796},"8 GB",{"type":46,"tag":309,"props":798,"children":799},{},[800],{"type":52,"value":801},"200",{"type":46,"tag":282,"props":803,"children":804},{},[805,810],{"type":46,"tag":309,"props":806,"children":807},{},[808],{"type":52,"value":809},"16 GB",{"type":46,"tag":309,"props":811,"children":812},{},[813],{"type":52,"value":814},"300",{"type":46,"tag":282,"props":816,"children":817},{},[818,823],{"type":46,"tag":309,"props":819,"children":820},{},[821],{"type":52,"value":822},"32 GB and above",{"type":46,"tag":309,"props":824,"children":825},{},[826],{"type":52,"value":827},"500",{"type":46,"tag":55,"props":829,"children":830},{},[831,836,838,843],{"type":46,"tag":61,"props":832,"children":833},{},[834],{"type":52,"value":835},"Legacy",{"type":52,"value":837}," database plans may have ",{"type":46,"tag":61,"props":839,"children":840},{},[841],{"type":52,"value":842},"lower",{"type":52,"value":844}," limits; confirm in the Dashboard or API for the specific plan.",{"type":46,"tag":55,"props":846,"children":847},{},[848,850,855,857,862,864,869,871,876,877,883],{"type":52,"value":849},"Render does ",{"type":46,"tag":61,"props":851,"children":852},{},[853],{"type":52,"value":854},"not",{"type":52,"value":856}," provide a built-in pooler; use ",{"type":46,"tag":61,"props":858,"children":859},{},[860],{"type":52,"value":861},"application-side pooling",{"type":52,"value":863}," (framework pools, PgBouncer, pgpool, etc.). Limits are ",{"type":46,"tag":61,"props":865,"children":866},{},[867],{"type":52,"value":868},"hard",{"type":52,"value":870},"—exhausting them causes connection errors. More detail: ",{"type":46,"tag":69,"props":872,"children":874},{"className":873},[],[875],{"type":52,"value":429},{"type":52,"value":234},{"type":46,"tag":69,"props":878,"children":880},{"className":879},[],[881],{"type":52,"value":882},"references\u002Fperformance-tuning.md",{"type":52,"value":76},{"type":46,"tag":78,"props":885,"children":887},{"id":886},"high-availability",[888],{"type":52,"value":889},"High Availability",{"type":46,"tag":55,"props":891,"children":892},{},[893,898],{"type":46,"tag":61,"props":894,"children":895},{},[896],{"type":52,"value":897},"High availability (HA)",{"type":52,"value":899}," is available when:",{"type":46,"tag":90,"props":901,"children":902},{},[903,920,935],{"type":46,"tag":94,"props":904,"children":905},{},[906,908,913,915],{"type":52,"value":907},"Workspace is ",{"type":46,"tag":61,"props":909,"children":910},{},[911],{"type":52,"value":912},"Professional",{"type":52,"value":914}," or higher, ",{"type":46,"tag":61,"props":916,"children":917},{},[918],{"type":52,"value":919},"and",{"type":46,"tag":94,"props":921,"children":922},{},[923,925,930,931],{"type":52,"value":924},"Database plan is ",{"type":46,"tag":61,"props":926,"children":927},{},[928],{"type":52,"value":929},"Pro",{"type":52,"value":914},{"type":46,"tag":61,"props":932,"children":933},{},[934],{"type":52,"value":919},{"type":46,"tag":94,"props":936,"children":937},{},[938],{"type":46,"tag":61,"props":939,"children":940},{},[941],{"type":52,"value":942},"PostgreSQL 13+",{"type":46,"tag":55,"props":944,"children":945},{},[946,951,953,958,960,965,967,972,974,979],{"type":46,"tag":61,"props":947,"children":948},{},[949],{"type":52,"value":950},"Instance type changes",{"type":52,"value":952}," cause ",{"type":46,"tag":61,"props":954,"children":955},{},[956],{"type":52,"value":957},"brief downtime",{"type":52,"value":959},". With HA, downtime is typically ",{"type":46,"tag":61,"props":961,"children":962},{},[963],{"type":52,"value":964},"less",{"type":52,"value":966}," than ",{"type":46,"tag":61,"props":968,"children":969},{},[970],{"type":52,"value":971},"without HA",{"type":52,"value":973}," (often on the order of ",{"type":46,"tag":61,"props":975,"children":976},{},[977],{"type":52,"value":978},"minutes",{"type":52,"value":980}," without HA—exact duration depends on plan and operation).",{"type":46,"tag":55,"props":982,"children":983},{},[984,989,991,996,998,1003],{"type":46,"tag":61,"props":985,"children":986},{},[987],{"type":52,"value":988},"One-way migration off legacy types",{"type":52,"value":990},": After moving to current-generation instance types, you ",{"type":46,"tag":61,"props":992,"children":993},{},[994],{"type":52,"value":995},"cannot",{"type":52,"value":997}," move back to ",{"type":46,"tag":61,"props":999,"children":1000},{},[1001],{"type":52,"value":1002},"legacy",{"type":52,"value":1004}," instance types.",{"type":46,"tag":78,"props":1006,"children":1008},{"id":1007},"read-replicas",[1009],{"type":52,"value":1010},"Read Replicas",{"type":46,"tag":90,"props":1012,"children":1013},{},[1014,1026,1047],{"type":46,"tag":94,"props":1015,"children":1016},{},[1017,1019,1024],{"type":52,"value":1018},"Up to ",{"type":46,"tag":61,"props":1020,"children":1021},{},[1022],{"type":52,"value":1023},"5 read replicas",{"type":52,"value":1025}," per database.",{"type":46,"tag":94,"props":1027,"children":1028},{},[1029,1031,1039,1041,1046],{"type":52,"value":1030},"In Blueprints, declare replicas under ",{"type":46,"tag":61,"props":1032,"children":1033},{},[1034],{"type":46,"tag":69,"props":1035,"children":1037},{"className":1036},[],[1038],{"type":52,"value":214},{"type":52,"value":1040}," as a ",{"type":46,"tag":61,"props":1042,"children":1043},{},[1044],{"type":52,"value":1045},"list of names",{"type":52,"value":76},{"type":46,"tag":94,"props":1048,"children":1049},{},[1050,1055,1057],{"type":46,"tag":61,"props":1051,"children":1052},{},[1053],{"type":52,"value":1054},"CAUTION — declarative sync",{"type":52,"value":1056},":\n",{"type":46,"tag":90,"props":1058,"children":1059},{},[1060,1085],{"type":46,"tag":94,"props":1061,"children":1062},{},[1063,1065,1070,1071,1076,1078,1083],{"type":52,"value":1064},"An ",{"type":46,"tag":61,"props":1066,"children":1067},{},[1068],{"type":52,"value":1069},"empty",{"type":52,"value":200},{"type":46,"tag":69,"props":1072,"children":1074},{"className":1073},[],[1075],{"type":52,"value":214},{"type":52,"value":1077}," list can ",{"type":46,"tag":61,"props":1079,"children":1080},{},[1081],{"type":52,"value":1082},"destroy all",{"type":52,"value":1084}," existing replicas.",{"type":46,"tag":94,"props":1086,"children":1087},{},[1088,1093,1095,1100,1102,1107],{"type":46,"tag":61,"props":1089,"children":1090},{},[1091],{"type":52,"value":1092},"Name mismatches",{"type":52,"value":1094}," between the Blueprint and live replicas can ",{"type":46,"tag":61,"props":1096,"children":1097},{},[1098],{"type":52,"value":1099},"create",{"type":52,"value":1101}," new replicas and ",{"type":46,"tag":61,"props":1103,"children":1104},{},[1105],{"type":52,"value":1106},"remove",{"type":52,"value":1108}," replicas whose names are no longer listed.",{"type":46,"tag":55,"props":1110,"children":1111},{},[1112,1114,1119,1121,1126],{"type":52,"value":1113},"Always treat ",{"type":46,"tag":69,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":52,"value":214},{"type":52,"value":1120}," as ",{"type":46,"tag":61,"props":1122,"children":1123},{},[1124],{"type":52,"value":1125},"authoritative",{"type":52,"value":1127}," desired state, not additive-only.",{"type":46,"tag":78,"props":1129,"children":1131},{"id":1130},"useful-mcp-commands",[1132],{"type":52,"value":1133},"Useful MCP Commands",{"type":46,"tag":55,"props":1135,"children":1136},{},[1137],{"type":52,"value":1138},"Use the Render MCP tools (names may vary slightly by integration; align with your server’s tool list):",{"type":46,"tag":274,"props":1140,"children":1141},{},[1142,1158],{"type":46,"tag":278,"props":1143,"children":1144},{},[1145],{"type":46,"tag":282,"props":1146,"children":1147},{},[1148,1153],{"type":46,"tag":286,"props":1149,"children":1150},{},[1151],{"type":52,"value":1152},"Goal",{"type":46,"tag":286,"props":1154,"children":1155},{},[1156],{"type":52,"value":1157},"Tool \u002F pattern",{"type":46,"tag":302,"props":1159,"children":1160},{},[1161,1178,1203,1233],{"type":46,"tag":282,"props":1162,"children":1163},{},[1164,1169],{"type":46,"tag":309,"props":1165,"children":1166},{},[1167],{"type":52,"value":1168},"List databases",{"type":46,"tag":309,"props":1170,"children":1171},{},[1172],{"type":46,"tag":69,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":52,"value":1177},"list_postgres_instances",{"type":46,"tag":282,"props":1179,"children":1180},{},[1181,1186],{"type":46,"tag":309,"props":1182,"children":1183},{},[1184],{"type":52,"value":1185},"Instance details",{"type":46,"tag":309,"props":1187,"children":1188},{},[1189,1195,1197],{"type":46,"tag":69,"props":1190,"children":1192},{"className":1191},[],[1193],{"type":52,"value":1194},"get_postgres",{"type":52,"value":1196}," with ",{"type":46,"tag":69,"props":1198,"children":1200},{"className":1199},[],[1201],{"type":52,"value":1202},"postgresId",{"type":46,"tag":282,"props":1204,"children":1205},{},[1206,1211],{"type":46,"tag":309,"props":1207,"children":1208},{},[1209],{"type":52,"value":1210},"Read-only SQL",{"type":46,"tag":309,"props":1212,"children":1213},{},[1214,1220,1221,1226,1227],{"type":46,"tag":69,"props":1215,"children":1217},{"className":1216},[],[1218],{"type":52,"value":1219},"query_render_postgres",{"type":52,"value":1196},{"type":46,"tag":69,"props":1222,"children":1224},{"className":1223},[],[1225],{"type":52,"value":1202},{"type":52,"value":234},{"type":46,"tag":69,"props":1228,"children":1230},{"className":1229},[],[1231],{"type":52,"value":1232},"sql",{"type":46,"tag":282,"props":1234,"children":1235},{},[1236,1241],{"type":46,"tag":309,"props":1237,"children":1238},{},[1239],{"type":52,"value":1240},"Connection load",{"type":46,"tag":309,"props":1242,"children":1243},{},[1244,1250,1251,1257,1259],{"type":46,"tag":69,"props":1245,"children":1247},{"className":1246},[],[1248],{"type":52,"value":1249},"get_metrics",{"type":52,"value":1196},{"type":46,"tag":69,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":52,"value":1256},"resourceId",{"type":52,"value":1258}," (Postgres ID) and ",{"type":46,"tag":69,"props":1260,"children":1262},{"className":1261},[],[1263],{"type":52,"value":1264},"metricTypes: [\"active_connections\"]",{"type":46,"tag":55,"props":1266,"children":1267},{},[1268,1273,1275,1280,1282,1287],{"type":46,"tag":69,"props":1269,"children":1271},{"className":1270},[],[1272],{"type":52,"value":1219},{"type":52,"value":1274}," runs in a ",{"type":46,"tag":61,"props":1276,"children":1277},{},[1278],{"type":52,"value":1279},"read-only",{"type":52,"value":1281}," transaction and opens a ",{"type":46,"tag":61,"props":1283,"children":1284},{},[1285],{"type":52,"value":1286},"new connection per query",{"type":52,"value":1288},"—do not use it as a substitute for app pooling.",{"type":46,"tag":55,"props":1290,"children":1291},{},[1292,1294,1300,1301,1307,1308,1314,1315,1321],{"type":52,"value":1293},"Shorthand (same tools): ",{"type":46,"tag":69,"props":1295,"children":1297},{"className":1296},[],[1298],{"type":52,"value":1299},"list_postgres_instances()",{"type":52,"value":116},{"type":46,"tag":69,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":52,"value":1306},"get_postgres(postgresId)",{"type":52,"value":116},{"type":46,"tag":69,"props":1309,"children":1311},{"className":1310},[],[1312],{"type":52,"value":1313},"query_render_postgres(postgresId, sql)",{"type":52,"value":116},{"type":46,"tag":69,"props":1316,"children":1318},{"className":1317},[],[1319],{"type":52,"value":1320},"get_metrics(resourceId, metricTypes: [\"active_connections\"])",{"type":52,"value":76},{"type":46,"tag":78,"props":1323,"children":1325},{"id":1324},"deleting-and-data-safety",[1326],{"type":52,"value":1327},"Deleting and Data Safety",{"type":46,"tag":90,"props":1329,"children":1330},{},[1331,1363],{"type":46,"tag":94,"props":1332,"children":1333},{},[1334,1339,1341,1346,1348,1353,1355,1361],{"type":46,"tag":61,"props":1335,"children":1336},{},[1337],{"type":52,"value":1338},"Backups and snapshots are not retained",{"type":52,"value":1340}," after you ",{"type":46,"tag":61,"props":1342,"children":1343},{},[1344],{"type":52,"value":1345},"delete",{"type":52,"value":1347}," the database. ",{"type":46,"tag":61,"props":1349,"children":1350},{},[1351],{"type":52,"value":1352},"Export first",{"type":52,"value":1354}," (",{"type":46,"tag":69,"props":1356,"children":1358},{"className":1357},[],[1359],{"type":52,"value":1360},"pg_dump",{"type":52,"value":1362},", Dashboard restore workflow from existing backups, etc.).",{"type":46,"tag":94,"props":1364,"children":1365},{},[1366,1368,1373],{"type":52,"value":1367},"Before destructive actions, confirm retention and recovery paths in ",{"type":46,"tag":69,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":52,"value":734},{"type":52,"value":76},{"type":46,"tag":78,"props":1375,"children":1377},{"id":1376},"references",[1378],{"type":52,"value":1379},"References",{"type":46,"tag":274,"props":1381,"children":1382},{},[1383,1399],{"type":46,"tag":278,"props":1384,"children":1385},{},[1386],{"type":46,"tag":282,"props":1387,"children":1388},{},[1389,1394],{"type":46,"tag":286,"props":1390,"children":1391},{},[1392],{"type":52,"value":1393},"Document",{"type":46,"tag":286,"props":1395,"children":1396},{},[1397],{"type":52,"value":1398},"Contents",{"type":46,"tag":302,"props":1400,"children":1401},{},[1402,1418,1448],{"type":46,"tag":282,"props":1403,"children":1404},{},[1405,1413],{"type":46,"tag":309,"props":1406,"children":1407},{},[1408],{"type":46,"tag":69,"props":1409,"children":1411},{"className":1410},[],[1412],{"type":52,"value":429},{"type":46,"tag":309,"props":1414,"children":1415},{},[1416],{"type":52,"value":1417},"Internal vs external URLs, SSL, allow list, Blueprint wiring, pooling, multi-database URLs, troubleshooting",{"type":46,"tag":282,"props":1419,"children":1420},{},[1421,1429],{"type":46,"tag":309,"props":1422,"children":1423},{},[1424],{"type":46,"tag":69,"props":1425,"children":1427},{"className":1426},[],[1428],{"type":52,"value":734},{"type":46,"tag":309,"props":1430,"children":1431},{},[1432,1434,1439,1440,1446],{"type":52,"value":1433},"Snapshots, PITR, ",{"type":46,"tag":69,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":52,"value":1360},{"type":52,"value":208},{"type":46,"tag":69,"props":1441,"children":1443},{"className":1442},[],[1444],{"type":52,"value":1445},"pg_restore",{"type":52,"value":1447},", restore flows, deletion, cross-region",{"type":46,"tag":282,"props":1449,"children":1450},{},[1451,1459],{"type":46,"tag":309,"props":1452,"children":1453},{},[1454],{"type":46,"tag":69,"props":1455,"children":1457},{"className":1456},[],[1458],{"type":52,"value":882},{"type":46,"tag":309,"props":1460,"children":1461},{},[1462,1468,1470,1476],{"type":46,"tag":69,"props":1463,"children":1465},{"className":1464},[],[1466],{"type":52,"value":1467},"pg_stat_statements",{"type":52,"value":1469},", indexes, bloat, ",{"type":46,"tag":69,"props":1471,"children":1473},{"className":1472},[],[1474],{"type":52,"value":1475},"EXPLAIN ANALYZE",{"type":52,"value":1477},", metrics, scaling",{"type":46,"tag":78,"props":1479,"children":1481},{"id":1480},"related-skills",[1482],{"type":52,"value":1483},"Related Skills",{"type":46,"tag":90,"props":1485,"children":1486},{},[1487,1496,1524,1533],{"type":46,"tag":94,"props":1488,"children":1489},{},[1490,1494],{"type":46,"tag":61,"props":1491,"children":1492},{},[1493],{"type":52,"value":232},{"type":52,"value":1495}," — End-to-end deploy, services, and MCP\u002FDashboard flows",{"type":46,"tag":94,"props":1497,"children":1498},{},[1499,1503,1505,1510,1511,1516,1517,1522],{"type":46,"tag":61,"props":1500,"children":1501},{},[1502],{"type":52,"value":239},{"type":52,"value":1504}," — ",{"type":46,"tag":69,"props":1506,"children":1508},{"className":1507},[],[1509],{"type":52,"value":206},{"type":52,"value":116},{"type":46,"tag":69,"props":1512,"children":1514},{"className":1513},[],[1515],{"type":52,"value":222},{"type":52,"value":116},{"type":46,"tag":69,"props":1518,"children":1520},{"className":1519},[],[1521],{"type":52,"value":214},{"type":52,"value":1523},", immutable fields",{"type":46,"tag":94,"props":1525,"children":1526},{},[1527,1531],{"type":46,"tag":61,"props":1528,"children":1529},{},[1530],{"type":52,"value":246},{"type":52,"value":1532}," — Private services, regions, and how traffic routes between resources",{"type":46,"tag":94,"props":1534,"children":1535},{},[1536,1540,1542,1548],{"type":46,"tag":61,"props":1537,"children":1538},{},[1539],{"type":52,"value":253},{"type":52,"value":1541}," — Storing ",{"type":46,"tag":69,"props":1543,"children":1545},{"className":1544},[],[1546],{"type":52,"value":1547},"DATABASE_URL",{"type":52,"value":1549}," and secret wiring patterns",{"items":1551,"total":1670},[1552,1570,1586,1598,1618,1640,1660],{"slug":1553,"name":1553,"fn":1554,"description":1555,"org":1556,"tags":1557,"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},[1558,1561,1564,1567],{"name":1559,"slug":1560,"type":15},"Accessibility","accessibility",{"name":1562,"slug":1563,"type":15},"Charts","charts",{"name":1565,"slug":1566,"type":15},"Data Visualization","data-visualization",{"name":1568,"slug":1569,"type":15},"Design","design",{"slug":1571,"name":1571,"fn":1572,"description":1573,"org":1574,"tags":1575,"stars":25,"repoUrl":26,"updatedAt":1585},"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},[1576,1579,1582],{"name":1577,"slug":1578,"type":15},"Agents","agents",{"name":1580,"slug":1581,"type":15},"Browser Automation","browser-automation",{"name":1583,"slug":1584,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1587,"name":1587,"fn":1588,"description":1589,"org":1590,"tags":1591,"stars":25,"repoUrl":26,"updatedAt":1597},"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},[1592,1593,1596],{"name":1580,"slug":1581,"type":15},{"name":1594,"slug":1595,"type":15},"Local Development","local-development",{"name":1583,"slug":1584,"type":15},"2026-04-06T18:41:17.526867",{"slug":1599,"name":1599,"fn":1600,"description":1601,"org":1602,"tags":1603,"stars":25,"repoUrl":26,"updatedAt":1617},"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},[1604,1605,1608,1611,1614],{"name":1577,"slug":1578,"type":15},{"name":1606,"slug":1607,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1609,"slug":1610,"type":15},"SDK","sdk",{"name":1612,"slug":1613,"type":15},"Serverless","serverless",{"name":1615,"slug":1616,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1619,"name":1619,"fn":1620,"description":1621,"org":1622,"tags":1623,"stars":25,"repoUrl":26,"updatedAt":1639},"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},[1624,1627,1630,1633,1636],{"name":1625,"slug":1626,"type":15},"Frontend","frontend",{"name":1628,"slug":1629,"type":15},"React","react",{"name":1631,"slug":1632,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1634,"slug":1635,"type":15},"UI Components","ui-components",{"name":1637,"slug":1638,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1641,"name":1641,"fn":1642,"description":1643,"org":1644,"tags":1645,"stars":25,"repoUrl":26,"updatedAt":1659},"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},[1646,1649,1652,1655,1658],{"name":1647,"slug":1648,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1650,"slug":1651,"type":15},"Cost Optimization","cost-optimization",{"name":1653,"slug":1654,"type":15},"LLM","llm",{"name":1656,"slug":1657,"type":15},"Performance","performance",{"name":1637,"slug":1638,"type":15},"2026-04-06T18:40:44.377464",{"slug":1661,"name":1661,"fn":1662,"description":1663,"org":1664,"tags":1665,"stars":25,"repoUrl":26,"updatedAt":1669},"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},[1666,1667,1668],{"name":1650,"slug":1651,"type":15},{"name":17,"slug":18,"type":15},{"name":1653,"slug":1654,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1672,"total":1869},[1673,1694,1717,1734,1750,1767,1786,1798,1812,1826,1838,1853],{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":1691,"repoUrl":1692,"updatedAt":1693},"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},[1679,1682,1685,1688],{"name":1680,"slug":1681,"type":15},"Documents","documents",{"name":1683,"slug":1684,"type":15},"Healthcare","healthcare",{"name":1686,"slug":1687,"type":15},"Insurance","insurance",{"name":1689,"slug":1690,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1695,"name":1695,"fn":1696,"description":1697,"org":1698,"tags":1699,"stars":1714,"repoUrl":1715,"updatedAt":1716},"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},[1700,1703,1705,1708,1711],{"name":1701,"slug":1702,"type":15},".NET","dotnet",{"name":1704,"slug":1695,"type":15},"ASP.NET Core",{"name":1706,"slug":1707,"type":15},"Blazor","blazor",{"name":1709,"slug":1710,"type":15},"C#","csharp",{"name":1712,"slug":1713,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1718,"name":1718,"fn":1719,"description":1720,"org":1721,"tags":1722,"stars":1714,"repoUrl":1715,"updatedAt":1733},"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},[1723,1726,1729,1732],{"name":1724,"slug":1725,"type":15},"Apps SDK","apps-sdk",{"name":1727,"slug":1728,"type":15},"ChatGPT","chatgpt",{"name":1730,"slug":1731,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1735,"name":1735,"fn":1736,"description":1737,"org":1738,"tags":1739,"stars":1714,"repoUrl":1715,"updatedAt":1749},"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},[1740,1743,1746],{"name":1741,"slug":1742,"type":15},"API Development","api-development",{"name":1744,"slug":1745,"type":15},"CLI","cli",{"name":1747,"slug":1748,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1751,"name":1751,"fn":1752,"description":1753,"org":1754,"tags":1755,"stars":1714,"repoUrl":1715,"updatedAt":1766},"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},[1756,1759,1762,1763],{"name":1757,"slug":1758,"type":15},"Cloudflare","cloudflare",{"name":1760,"slug":1761,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1606,"slug":1607,"type":15},{"name":1764,"slug":1765,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1768,"name":1768,"fn":1769,"description":1770,"org":1771,"tags":1772,"stars":1714,"repoUrl":1715,"updatedAt":1785},"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},[1773,1776,1779,1782],{"name":1774,"slug":1775,"type":15},"Productivity","productivity",{"name":1777,"slug":1778,"type":15},"Project Management","project-management",{"name":1780,"slug":1781,"type":15},"Strategy","strategy",{"name":1783,"slug":1784,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1787,"name":1787,"fn":1788,"description":1789,"org":1790,"tags":1791,"stars":1714,"repoUrl":1715,"updatedAt":1797},"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},[1792,1793,1795,1796],{"name":1568,"slug":1569,"type":15},{"name":1794,"slug":1787,"type":15},"Figma",{"name":1625,"slug":1626,"type":15},{"name":1730,"slug":1731,"type":15},"2026-04-12T05:06:47.939943",{"slug":1799,"name":1799,"fn":1800,"description":1801,"org":1802,"tags":1803,"stars":1714,"repoUrl":1715,"updatedAt":1811},"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},[1804,1805,1808,1809,1810],{"name":1568,"slug":1569,"type":15},{"name":1806,"slug":1807,"type":15},"Design System","design-system",{"name":1794,"slug":1787,"type":15},{"name":1625,"slug":1626,"type":15},{"name":1634,"slug":1635,"type":15},"2026-05-10T05:59:52.971881",{"slug":1813,"name":1813,"fn":1814,"description":1815,"org":1816,"tags":1817,"stars":1714,"repoUrl":1715,"updatedAt":1825},"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},[1818,1819,1820,1823,1824],{"name":1568,"slug":1569,"type":15},{"name":1806,"slug":1807,"type":15},{"name":1821,"slug":1822,"type":15},"Documentation","documentation",{"name":1794,"slug":1787,"type":15},{"name":1625,"slug":1626,"type":15},"2026-05-16T06:07:47.821474",{"slug":1827,"name":1827,"fn":1828,"description":1829,"org":1830,"tags":1831,"stars":1714,"repoUrl":1715,"updatedAt":1837},"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},[1832,1833,1834,1835,1836],{"name":1568,"slug":1569,"type":15},{"name":1794,"slug":1787,"type":15},{"name":1625,"slug":1626,"type":15},{"name":1634,"slug":1635,"type":15},{"name":1712,"slug":1713,"type":15},"2026-05-16T06:07:40.583615",{"slug":1839,"name":1839,"fn":1840,"description":1841,"org":1842,"tags":1843,"stars":1714,"repoUrl":1715,"updatedAt":1852},"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},[1844,1847,1848,1851],{"name":1845,"slug":1846,"type":15},"Animation","animation",{"name":1747,"slug":1748,"type":15},{"name":1849,"slug":1850,"type":15},"Creative","creative",{"name":1568,"slug":1569,"type":15},"2026-05-02T05:31:48.48485",{"slug":1854,"name":1854,"fn":1855,"description":1856,"org":1857,"tags":1858,"stars":1714,"repoUrl":1715,"updatedAt":1868},"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},[1859,1860,1861,1864,1867],{"name":1849,"slug":1850,"type":15},{"name":1568,"slug":1569,"type":15},{"name":1862,"slug":1863,"type":15},"Image Generation","image-generation",{"name":1865,"slug":1866,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]