[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-disks":3,"mdc-6tphj3-key":36,"related-repo-openai-render-disks":1474,"related-org-openai-render-disks":1597},{"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-disks","manage persistent disks on Render services","Attaches and manages persistent disks on Render services—mount paths, sizing, snapshots, file transfers, and single-instance constraints. Use when the user needs persistent storage, file uploads, a custom database on disk, CMS media storage, or needs to understand why their service can't scale horizontally or use zero-downtime deploys. Trigger terms: persistent disk, disk, storage, mount path, sizeGB, SSD, file uploads, snapshots, disk restore, ephemeral filesystem.",{"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},"File Storage","file-storage",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Storage","storage",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-disks","---\nname: render-disks\ndescription: >-\n  Attaches and manages persistent disks on Render services—mount paths, sizing,\n  snapshots, file transfers, and single-instance constraints. Use when the user\n  needs persistent storage, file uploads, a custom database on disk, CMS media\n  storage, or needs to understand why their service can't scale horizontally\n  or use zero-downtime deploys.\n  Trigger terms: persistent disk, disk, storage, mount path, sizeGB, SSD,\n  file uploads, snapshots, disk restore, ephemeral filesystem.\nlicense: MIT\ncompatibility: Render paid web services, private services, and background workers\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: storage\n---\n\n# Render Persistent Disks\n\nPersistent disks are high-performance SSDs you attach to a Render service to preserve filesystem changes across deploys and restarts. Without a disk, services have an **ephemeral filesystem**—all local file changes are lost on every deploy.\n\n## When to Use\n\n- Storing **file uploads**, CMS media, or user-generated content\n- Running a **self-managed database** (MySQL, MongoDB, ClickHouse) on Render\n- Deploying **stateful infrastructure** (Elasticsearch, Kafka, RabbitMQ, Mattermost)\n- Understanding **why scaling is blocked** or **zero-downtime deploys are disabled**\n- **Restoring data** from an automatic disk snapshot\n\nFor managed databases, prefer **Render Postgres** (render-postgres) or **Key Value** (render-keyvalue) over self-managed alternatives on disk.\n\n## Critical Constraints\n\nThese constraints affect architecture decisions. Understand them **before** attaching a disk:\n\n| Constraint | Impact |\n|------------|--------|\n| **Single instance only** | Cannot scale horizontally (`numInstances` must be 1, autoscaling not available) |\n| **No zero-downtime deploys** | Old instance stops before new instance starts (brief downtime on each deploy) |\n| **Runtime access only** | Disk is not available during `buildCommand` or `preDeployCommand` (those run on separate compute) |\n| **Not accessible from other services** | Only the attached service can read\u002Fwrite the disk |\n| **Not available on cron jobs** | Attach to a web service, private service, or background worker instead |\n| **Not available on one-off jobs** | One-off jobs run on separate compute without disk access |\n| **Can increase size, cannot decrease** | Start small and grow as needed |\n\n## Setup\n\n### Dashboard\n\n1. Go to your service's **Disks** page\n2. Set the **mount path** (absolute path where persistent data is stored)\n3. Choose a **size** in GB\n4. Click **Add disk** — triggers a new deploy\n\n### Blueprint\n\n```yaml\nservices:\n  - type: web\n    name: cms\n    runtime: node\n    plan: starter\n    region: oregon\n    buildCommand: npm ci && npm run build\n    startCommand: npm start\n    disk:\n      name: cms-data\n      mountPath: \u002Fvar\u002Fdata\n      sizeGB: 10\n```\n\n## Mount Path\n\nOnly files written **under the mount path** are preserved. Everything else remains ephemeral.\n\n| Runtime | Source code path | Example mount path |\n|---------|------------------|--------------------|\n| Node.js, Python, Ruby, Elixir, Rust | `\u002Fopt\u002Frender\u002Fproject\u002Fsrc` | `\u002Fopt\u002Frender\u002Fproject\u002Fsrc\u002Fuploads` |\n| Go | `\u002Fopt\u002Frender\u002Fproject\u002Fgo\u002Fsrc\u002Fgithub.com\u002F\u003Cuser>\u002F\u003Crepo>` | `...\u002Fdata` |\n| Docker | Dockerfile's `WORKDIR` (commonly `\u002Fapp`) | `\u002Fapp\u002Fstorage` |\n\n### Disallowed mount paths\n\nCannot mount at: `\u002F`, `\u002Fopt`, `\u002Fopt\u002Frender`, `\u002Fopt\u002Frender\u002Fproject`, `\u002Fopt\u002Frender\u002Fproject\u002Fsrc`, `\u002Fhome`, `\u002Fhome\u002Frender`, `\u002Fetc`, `\u002Fetc\u002Fsecrets`.\n\nSubdirectories of these paths are fine (e.g. `\u002Fopt\u002Frender\u002Fproject\u002Fsrc\u002Fuploads`).\n\n## Snapshots\n\n- Render creates an **automatic snapshot every 24 hours**\n- Snapshots are available for **at least 7 days**\n- Restore from the service's **Disks** page in the Dashboard\n- **Full restore only** — you cannot restore individual files\n- **Destructive** — all changes after the snapshot are lost\n\n**Do not restore snapshots for custom database recovery.** Use database-native backup tools (mysqldump, mongodump) instead—disk snapshots may capture a corrupted database state.\n\n## File Transfers\n\n### SCP (via SSH)\n\n```bash\n# Download from service\nscp -s YOUR_SERVICE@ssh.YOUR_REGION.render.com:\u002Fmount\u002Fpath\u002Ffile .\u002Flocal-file\n\n# Upload to service\nscp -s .\u002Flocal-file YOUR_SERVICE@ssh.YOUR_REGION.render.com:\u002Fmount\u002Fpath\u002Ffile\n```\n\nRequires SSH access enabled for the service.\n\n### Magic-Wormhole\n\nAvailable on all native runtimes (install manually on Docker):\n\n```bash\n# On the service shell\nwormhole send \u002Fmount\u002Fpath\u002Ffile\n\n# On your local machine\nwormhole receive\n```\n\n## Common Patterns\n\n| Pattern | Service type | Mount path | Notes |\n|---------|-------------|------------|-------|\n| WordPress \u002F Ghost \u002F CMS | Web Service | `\u002Fvar\u002Fdata` or `\u002Fapp\u002Fcontent` | Media uploads, SQLite |\n| Self-managed MySQL | Private Service | `\u002Fvar\u002Flib\u002Fmysql` | Use mysqldump for backups, not disk snapshots |\n| File upload API | Web Service | `\u002Fopt\u002Frender\u002Fproject\u002Fsrc\u002Fuploads` | Single instance constraint |\n| Elasticsearch | Private Service | `\u002Fusr\u002Fshare\u002Felasticsearch\u002Fdata` | Stateful search infrastructure |\n\n## Common Mistakes\n\n| Mistake | Fix |\n|---------|-----|\n| Expecting horizontal scaling with a disk | Not possible — disk services are single-instance only |\n| Mounting at a disallowed path | Use a subdirectory (e.g. `\u002Fopt\u002Frender\u002Fproject\u002Fsrc\u002Fuploads` not `\u002Fopt\u002Frender\u002Fproject\u002Fsrc`) |\n| Reading disk during build or pre-deploy | These run on separate compute — move logic to the start command |\n| Restoring disk snapshot for a database | Use database-native backups instead |\n| Starting with a large disk size | Start small — you can increase but never decrease |\n\n## References\n\n| Document | Contents |\n|----------|----------|\n| `references\u002Fsizing-and-snapshots.md` | Sizing guidance, snapshot lifecycle, restore procedures, cost patterns |\n\n## Related Skills\n\n- **render-web-services** — Deploy lifecycle, health checks (disk disables zero-downtime)\n- **render-private-services** — Internal services with disks (Elasticsearch, MySQL)\n- **render-blueprints** — `disk` field reference in `render.yaml`\n- **render-postgres** — Managed database alternative (no disk management needed)\n",{"data":37,"body":41},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Render paid web services, private services, and background workers",{"author":13,"version":40,"category":24},"1.0.0",{"type":42,"children":43},"root",[44,53,67,74,142,161,167,179,343,349,356,408,414,644,650,662,779,785,854,866,872,926,936,942,948,1028,1033,1039,1044,1104,1110,1254,1260,1360,1366,1405,1411,1468],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"render-persistent-disks",[50],{"type":51,"value":52},"text","Render Persistent Disks",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57,59,65],{"type":51,"value":58},"Persistent disks are high-performance SSDs you attach to a Render service to preserve filesystem changes across deploys and restarts. Without a disk, services have an ",{"type":45,"tag":60,"props":61,"children":62},"strong",{},[63],{"type":51,"value":64},"ephemeral filesystem",{"type":51,"value":66},"—all local file changes are lost on every deploy.",{"type":45,"tag":68,"props":69,"children":71},"h2",{"id":70},"when-to-use",[72],{"type":51,"value":73},"When to Use",{"type":45,"tag":75,"props":76,"children":77},"ul",{},[78,91,103,115,132],{"type":45,"tag":79,"props":80,"children":81},"li",{},[82,84,89],{"type":51,"value":83},"Storing ",{"type":45,"tag":60,"props":85,"children":86},{},[87],{"type":51,"value":88},"file uploads",{"type":51,"value":90},", CMS media, or user-generated content",{"type":45,"tag":79,"props":92,"children":93},{},[94,96,101],{"type":51,"value":95},"Running a ",{"type":45,"tag":60,"props":97,"children":98},{},[99],{"type":51,"value":100},"self-managed database",{"type":51,"value":102}," (MySQL, MongoDB, ClickHouse) on Render",{"type":45,"tag":79,"props":104,"children":105},{},[106,108,113],{"type":51,"value":107},"Deploying ",{"type":45,"tag":60,"props":109,"children":110},{},[111],{"type":51,"value":112},"stateful infrastructure",{"type":51,"value":114}," (Elasticsearch, Kafka, RabbitMQ, Mattermost)",{"type":45,"tag":79,"props":116,"children":117},{},[118,120,125,127],{"type":51,"value":119},"Understanding ",{"type":45,"tag":60,"props":121,"children":122},{},[123],{"type":51,"value":124},"why scaling is blocked",{"type":51,"value":126}," or ",{"type":45,"tag":60,"props":128,"children":129},{},[130],{"type":51,"value":131},"zero-downtime deploys are disabled",{"type":45,"tag":79,"props":133,"children":134},{},[135,140],{"type":45,"tag":60,"props":136,"children":137},{},[138],{"type":51,"value":139},"Restoring data",{"type":51,"value":141}," from an automatic disk snapshot",{"type":45,"tag":54,"props":143,"children":144},{},[145,147,152,154,159],{"type":51,"value":146},"For managed databases, prefer ",{"type":45,"tag":60,"props":148,"children":149},{},[150],{"type":51,"value":151},"Render Postgres",{"type":51,"value":153}," (render-postgres) or ",{"type":45,"tag":60,"props":155,"children":156},{},[157],{"type":51,"value":158},"Key Value",{"type":51,"value":160}," (render-keyvalue) over self-managed alternatives on disk.",{"type":45,"tag":68,"props":162,"children":164},{"id":163},"critical-constraints",[165],{"type":51,"value":166},"Critical Constraints",{"type":45,"tag":54,"props":168,"children":169},{},[170,172,177],{"type":51,"value":171},"These constraints affect architecture decisions. Understand them ",{"type":45,"tag":60,"props":173,"children":174},{},[175],{"type":51,"value":176},"before",{"type":51,"value":178}," attaching a disk:",{"type":45,"tag":180,"props":181,"children":182},"table",{},[183,202],{"type":45,"tag":184,"props":185,"children":186},"thead",{},[187],{"type":45,"tag":188,"props":189,"children":190},"tr",{},[191,197],{"type":45,"tag":192,"props":193,"children":194},"th",{},[195],{"type":51,"value":196},"Constraint",{"type":45,"tag":192,"props":198,"children":199},{},[200],{"type":51,"value":201},"Impact",{"type":45,"tag":203,"props":204,"children":205},"tbody",{},[206,232,248,279,295,311,327],{"type":45,"tag":188,"props":207,"children":208},{},[209,218],{"type":45,"tag":210,"props":211,"children":212},"td",{},[213],{"type":45,"tag":60,"props":214,"children":215},{},[216],{"type":51,"value":217},"Single instance only",{"type":45,"tag":210,"props":219,"children":220},{},[221,223,230],{"type":51,"value":222},"Cannot scale horizontally (",{"type":45,"tag":224,"props":225,"children":227},"code",{"className":226},[],[228],{"type":51,"value":229},"numInstances",{"type":51,"value":231}," must be 1, autoscaling not available)",{"type":45,"tag":188,"props":233,"children":234},{},[235,243],{"type":45,"tag":210,"props":236,"children":237},{},[238],{"type":45,"tag":60,"props":239,"children":240},{},[241],{"type":51,"value":242},"No zero-downtime deploys",{"type":45,"tag":210,"props":244,"children":245},{},[246],{"type":51,"value":247},"Old instance stops before new instance starts (brief downtime on each deploy)",{"type":45,"tag":188,"props":249,"children":250},{},[251,259],{"type":45,"tag":210,"props":252,"children":253},{},[254],{"type":45,"tag":60,"props":255,"children":256},{},[257],{"type":51,"value":258},"Runtime access only",{"type":45,"tag":210,"props":260,"children":261},{},[262,264,270,271,277],{"type":51,"value":263},"Disk is not available during ",{"type":45,"tag":224,"props":265,"children":267},{"className":266},[],[268],{"type":51,"value":269},"buildCommand",{"type":51,"value":126},{"type":45,"tag":224,"props":272,"children":274},{"className":273},[],[275],{"type":51,"value":276},"preDeployCommand",{"type":51,"value":278}," (those run on separate compute)",{"type":45,"tag":188,"props":280,"children":281},{},[282,290],{"type":45,"tag":210,"props":283,"children":284},{},[285],{"type":45,"tag":60,"props":286,"children":287},{},[288],{"type":51,"value":289},"Not accessible from other services",{"type":45,"tag":210,"props":291,"children":292},{},[293],{"type":51,"value":294},"Only the attached service can read\u002Fwrite the disk",{"type":45,"tag":188,"props":296,"children":297},{},[298,306],{"type":45,"tag":210,"props":299,"children":300},{},[301],{"type":45,"tag":60,"props":302,"children":303},{},[304],{"type":51,"value":305},"Not available on cron jobs",{"type":45,"tag":210,"props":307,"children":308},{},[309],{"type":51,"value":310},"Attach to a web service, private service, or background worker instead",{"type":45,"tag":188,"props":312,"children":313},{},[314,322],{"type":45,"tag":210,"props":315,"children":316},{},[317],{"type":45,"tag":60,"props":318,"children":319},{},[320],{"type":51,"value":321},"Not available on one-off jobs",{"type":45,"tag":210,"props":323,"children":324},{},[325],{"type":51,"value":326},"One-off jobs run on separate compute without disk access",{"type":45,"tag":188,"props":328,"children":329},{},[330,338],{"type":45,"tag":210,"props":331,"children":332},{},[333],{"type":45,"tag":60,"props":334,"children":335},{},[336],{"type":51,"value":337},"Can increase size, cannot decrease",{"type":45,"tag":210,"props":339,"children":340},{},[341],{"type":51,"value":342},"Start small and grow as needed",{"type":45,"tag":68,"props":344,"children":346},{"id":345},"setup",[347],{"type":51,"value":348},"Setup",{"type":45,"tag":350,"props":351,"children":353},"h3",{"id":352},"dashboard",[354],{"type":51,"value":355},"Dashboard",{"type":45,"tag":357,"props":358,"children":359},"ol",{},[360,372,384,396],{"type":45,"tag":79,"props":361,"children":362},{},[363,365,370],{"type":51,"value":364},"Go to your service's ",{"type":45,"tag":60,"props":366,"children":367},{},[368],{"type":51,"value":369},"Disks",{"type":51,"value":371}," page",{"type":45,"tag":79,"props":373,"children":374},{},[375,377,382],{"type":51,"value":376},"Set the ",{"type":45,"tag":60,"props":378,"children":379},{},[380],{"type":51,"value":381},"mount path",{"type":51,"value":383}," (absolute path where persistent data is stored)",{"type":45,"tag":79,"props":385,"children":386},{},[387,389,394],{"type":51,"value":388},"Choose a ",{"type":45,"tag":60,"props":390,"children":391},{},[392],{"type":51,"value":393},"size",{"type":51,"value":395}," in GB",{"type":45,"tag":79,"props":397,"children":398},{},[399,401,406],{"type":51,"value":400},"Click ",{"type":45,"tag":60,"props":402,"children":403},{},[404],{"type":51,"value":405},"Add disk",{"type":51,"value":407}," — triggers a new deploy",{"type":45,"tag":350,"props":409,"children":411},{"id":410},"blueprint",[412],{"type":51,"value":413},"Blueprint",{"type":45,"tag":415,"props":416,"children":421},"pre",{"className":417,"code":418,"language":419,"meta":420,"style":420},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","services:\n  - type: web\n    name: cms\n    runtime: node\n    plan: starter\n    region: oregon\n    buildCommand: npm ci && npm run build\n    startCommand: npm start\n    disk:\n      name: cms-data\n      mountPath: \u002Fvar\u002Fdata\n      sizeGB: 10\n","yaml","",[422],{"type":45,"tag":224,"props":423,"children":424},{"__ignoreMap":420},[425,443,468,486,504,522,540,558,576,589,607,625],{"type":45,"tag":426,"props":427,"children":430},"span",{"class":428,"line":429},"line",1,[431,437],{"type":45,"tag":426,"props":432,"children":434},{"style":433},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[435],{"type":51,"value":436},"services",{"type":45,"tag":426,"props":438,"children":440},{"style":439},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[441],{"type":51,"value":442},":\n",{"type":45,"tag":426,"props":444,"children":446},{"class":428,"line":445},2,[447,452,457,462],{"type":45,"tag":426,"props":448,"children":449},{"style":439},[450],{"type":51,"value":451},"  -",{"type":45,"tag":426,"props":453,"children":454},{"style":433},[455],{"type":51,"value":456}," type",{"type":45,"tag":426,"props":458,"children":459},{"style":439},[460],{"type":51,"value":461},":",{"type":45,"tag":426,"props":463,"children":465},{"style":464},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[466],{"type":51,"value":467}," web\n",{"type":45,"tag":426,"props":469,"children":471},{"class":428,"line":470},3,[472,477,481],{"type":45,"tag":426,"props":473,"children":474},{"style":433},[475],{"type":51,"value":476},"    name",{"type":45,"tag":426,"props":478,"children":479},{"style":439},[480],{"type":51,"value":461},{"type":45,"tag":426,"props":482,"children":483},{"style":464},[484],{"type":51,"value":485}," cms\n",{"type":45,"tag":426,"props":487,"children":489},{"class":428,"line":488},4,[490,495,499],{"type":45,"tag":426,"props":491,"children":492},{"style":433},[493],{"type":51,"value":494},"    runtime",{"type":45,"tag":426,"props":496,"children":497},{"style":439},[498],{"type":51,"value":461},{"type":45,"tag":426,"props":500,"children":501},{"style":464},[502],{"type":51,"value":503}," node\n",{"type":45,"tag":426,"props":505,"children":507},{"class":428,"line":506},5,[508,513,517],{"type":45,"tag":426,"props":509,"children":510},{"style":433},[511],{"type":51,"value":512},"    plan",{"type":45,"tag":426,"props":514,"children":515},{"style":439},[516],{"type":51,"value":461},{"type":45,"tag":426,"props":518,"children":519},{"style":464},[520],{"type":51,"value":521}," starter\n",{"type":45,"tag":426,"props":523,"children":525},{"class":428,"line":524},6,[526,531,535],{"type":45,"tag":426,"props":527,"children":528},{"style":433},[529],{"type":51,"value":530},"    region",{"type":45,"tag":426,"props":532,"children":533},{"style":439},[534],{"type":51,"value":461},{"type":45,"tag":426,"props":536,"children":537},{"style":464},[538],{"type":51,"value":539}," oregon\n",{"type":45,"tag":426,"props":541,"children":543},{"class":428,"line":542},7,[544,549,553],{"type":45,"tag":426,"props":545,"children":546},{"style":433},[547],{"type":51,"value":548},"    buildCommand",{"type":45,"tag":426,"props":550,"children":551},{"style":439},[552],{"type":51,"value":461},{"type":45,"tag":426,"props":554,"children":555},{"style":464},[556],{"type":51,"value":557}," npm ci && npm run build\n",{"type":45,"tag":426,"props":559,"children":561},{"class":428,"line":560},8,[562,567,571],{"type":45,"tag":426,"props":563,"children":564},{"style":433},[565],{"type":51,"value":566},"    startCommand",{"type":45,"tag":426,"props":568,"children":569},{"style":439},[570],{"type":51,"value":461},{"type":45,"tag":426,"props":572,"children":573},{"style":464},[574],{"type":51,"value":575}," npm start\n",{"type":45,"tag":426,"props":577,"children":579},{"class":428,"line":578},9,[580,585],{"type":45,"tag":426,"props":581,"children":582},{"style":433},[583],{"type":51,"value":584},"    disk",{"type":45,"tag":426,"props":586,"children":587},{"style":439},[588],{"type":51,"value":442},{"type":45,"tag":426,"props":590,"children":592},{"class":428,"line":591},10,[593,598,602],{"type":45,"tag":426,"props":594,"children":595},{"style":433},[596],{"type":51,"value":597},"      name",{"type":45,"tag":426,"props":599,"children":600},{"style":439},[601],{"type":51,"value":461},{"type":45,"tag":426,"props":603,"children":604},{"style":464},[605],{"type":51,"value":606}," cms-data\n",{"type":45,"tag":426,"props":608,"children":610},{"class":428,"line":609},11,[611,616,620],{"type":45,"tag":426,"props":612,"children":613},{"style":433},[614],{"type":51,"value":615},"      mountPath",{"type":45,"tag":426,"props":617,"children":618},{"style":439},[619],{"type":51,"value":461},{"type":45,"tag":426,"props":621,"children":622},{"style":464},[623],{"type":51,"value":624}," \u002Fvar\u002Fdata\n",{"type":45,"tag":426,"props":626,"children":628},{"class":428,"line":627},12,[629,634,638],{"type":45,"tag":426,"props":630,"children":631},{"style":433},[632],{"type":51,"value":633},"      sizeGB",{"type":45,"tag":426,"props":635,"children":636},{"style":439},[637],{"type":51,"value":461},{"type":45,"tag":426,"props":639,"children":641},{"style":640},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[642],{"type":51,"value":643}," 10\n",{"type":45,"tag":68,"props":645,"children":647},{"id":646},"mount-path",[648],{"type":51,"value":649},"Mount Path",{"type":45,"tag":54,"props":651,"children":652},{},[653,655,660],{"type":51,"value":654},"Only files written ",{"type":45,"tag":60,"props":656,"children":657},{},[658],{"type":51,"value":659},"under the mount path",{"type":51,"value":661}," are preserved. Everything else remains ephemeral.",{"type":45,"tag":180,"props":663,"children":664},{},[665,686],{"type":45,"tag":184,"props":666,"children":667},{},[668],{"type":45,"tag":188,"props":669,"children":670},{},[671,676,681],{"type":45,"tag":192,"props":672,"children":673},{},[674],{"type":51,"value":675},"Runtime",{"type":45,"tag":192,"props":677,"children":678},{},[679],{"type":51,"value":680},"Source code path",{"type":45,"tag":192,"props":682,"children":683},{},[684],{"type":51,"value":685},"Example mount path",{"type":45,"tag":203,"props":687,"children":688},{},[689,715,741],{"type":45,"tag":188,"props":690,"children":691},{},[692,697,706],{"type":45,"tag":210,"props":693,"children":694},{},[695],{"type":51,"value":696},"Node.js, Python, Ruby, Elixir, Rust",{"type":45,"tag":210,"props":698,"children":699},{},[700],{"type":45,"tag":224,"props":701,"children":703},{"className":702},[],[704],{"type":51,"value":705},"\u002Fopt\u002Frender\u002Fproject\u002Fsrc",{"type":45,"tag":210,"props":707,"children":708},{},[709],{"type":45,"tag":224,"props":710,"children":712},{"className":711},[],[713],{"type":51,"value":714},"\u002Fopt\u002Frender\u002Fproject\u002Fsrc\u002Fuploads",{"type":45,"tag":188,"props":716,"children":717},{},[718,723,732],{"type":45,"tag":210,"props":719,"children":720},{},[721],{"type":51,"value":722},"Go",{"type":45,"tag":210,"props":724,"children":725},{},[726],{"type":45,"tag":224,"props":727,"children":729},{"className":728},[],[730],{"type":51,"value":731},"\u002Fopt\u002Frender\u002Fproject\u002Fgo\u002Fsrc\u002Fgithub.com\u002F\u003Cuser>\u002F\u003Crepo>",{"type":45,"tag":210,"props":733,"children":734},{},[735],{"type":45,"tag":224,"props":736,"children":738},{"className":737},[],[739],{"type":51,"value":740},"...\u002Fdata",{"type":45,"tag":188,"props":742,"children":743},{},[744,749,770],{"type":45,"tag":210,"props":745,"children":746},{},[747],{"type":51,"value":748},"Docker",{"type":45,"tag":210,"props":750,"children":751},{},[752,754,760,762,768],{"type":51,"value":753},"Dockerfile's ",{"type":45,"tag":224,"props":755,"children":757},{"className":756},[],[758],{"type":51,"value":759},"WORKDIR",{"type":51,"value":761}," (commonly ",{"type":45,"tag":224,"props":763,"children":765},{"className":764},[],[766],{"type":51,"value":767},"\u002Fapp",{"type":51,"value":769},")",{"type":45,"tag":210,"props":771,"children":772},{},[773],{"type":45,"tag":224,"props":774,"children":776},{"className":775},[],[777],{"type":51,"value":778},"\u002Fapp\u002Fstorage",{"type":45,"tag":350,"props":780,"children":782},{"id":781},"disallowed-mount-paths",[783],{"type":51,"value":784},"Disallowed mount paths",{"type":45,"tag":54,"props":786,"children":787},{},[788,790,796,798,804,805,811,812,818,819,824,825,831,832,838,839,845,846,852],{"type":51,"value":789},"Cannot mount at: ",{"type":45,"tag":224,"props":791,"children":793},{"className":792},[],[794],{"type":51,"value":795},"\u002F",{"type":51,"value":797},", ",{"type":45,"tag":224,"props":799,"children":801},{"className":800},[],[802],{"type":51,"value":803},"\u002Fopt",{"type":51,"value":797},{"type":45,"tag":224,"props":806,"children":808},{"className":807},[],[809],{"type":51,"value":810},"\u002Fopt\u002Frender",{"type":51,"value":797},{"type":45,"tag":224,"props":813,"children":815},{"className":814},[],[816],{"type":51,"value":817},"\u002Fopt\u002Frender\u002Fproject",{"type":51,"value":797},{"type":45,"tag":224,"props":820,"children":822},{"className":821},[],[823],{"type":51,"value":705},{"type":51,"value":797},{"type":45,"tag":224,"props":826,"children":828},{"className":827},[],[829],{"type":51,"value":830},"\u002Fhome",{"type":51,"value":797},{"type":45,"tag":224,"props":833,"children":835},{"className":834},[],[836],{"type":51,"value":837},"\u002Fhome\u002Frender",{"type":51,"value":797},{"type":45,"tag":224,"props":840,"children":842},{"className":841},[],[843],{"type":51,"value":844},"\u002Fetc",{"type":51,"value":797},{"type":45,"tag":224,"props":847,"children":849},{"className":848},[],[850],{"type":51,"value":851},"\u002Fetc\u002Fsecrets",{"type":51,"value":853},".",{"type":45,"tag":54,"props":855,"children":856},{},[857,859,864],{"type":51,"value":858},"Subdirectories of these paths are fine (e.g. ",{"type":45,"tag":224,"props":860,"children":862},{"className":861},[],[863],{"type":51,"value":714},{"type":51,"value":865},").",{"type":45,"tag":68,"props":867,"children":869},{"id":868},"snapshots",[870],{"type":51,"value":871},"Snapshots",{"type":45,"tag":75,"props":873,"children":874},{},[875,885,895,906,916],{"type":45,"tag":79,"props":876,"children":877},{},[878,880],{"type":51,"value":879},"Render creates an ",{"type":45,"tag":60,"props":881,"children":882},{},[883],{"type":51,"value":884},"automatic snapshot every 24 hours",{"type":45,"tag":79,"props":886,"children":887},{},[888,890],{"type":51,"value":889},"Snapshots are available for ",{"type":45,"tag":60,"props":891,"children":892},{},[893],{"type":51,"value":894},"at least 7 days",{"type":45,"tag":79,"props":896,"children":897},{},[898,900,904],{"type":51,"value":899},"Restore from the service's ",{"type":45,"tag":60,"props":901,"children":902},{},[903],{"type":51,"value":369},{"type":51,"value":905}," page in the Dashboard",{"type":45,"tag":79,"props":907,"children":908},{},[909,914],{"type":45,"tag":60,"props":910,"children":911},{},[912],{"type":51,"value":913},"Full restore only",{"type":51,"value":915}," — you cannot restore individual files",{"type":45,"tag":79,"props":917,"children":918},{},[919,924],{"type":45,"tag":60,"props":920,"children":921},{},[922],{"type":51,"value":923},"Destructive",{"type":51,"value":925}," — all changes after the snapshot are lost",{"type":45,"tag":54,"props":927,"children":928},{},[929,934],{"type":45,"tag":60,"props":930,"children":931},{},[932],{"type":51,"value":933},"Do not restore snapshots for custom database recovery.",{"type":51,"value":935}," Use database-native backup tools (mysqldump, mongodump) instead—disk snapshots may capture a corrupted database state.",{"type":45,"tag":68,"props":937,"children":939},{"id":938},"file-transfers",[940],{"type":51,"value":941},"File Transfers",{"type":45,"tag":350,"props":943,"children":945},{"id":944},"scp-via-ssh",[946],{"type":51,"value":947},"SCP (via SSH)",{"type":45,"tag":415,"props":949,"children":953},{"className":950,"code":951,"language":952,"meta":420,"style":420},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Download from service\nscp -s YOUR_SERVICE@ssh.YOUR_REGION.render.com:\u002Fmount\u002Fpath\u002Ffile .\u002Flocal-file\n\n# Upload to service\nscp -s .\u002Flocal-file YOUR_SERVICE@ssh.YOUR_REGION.render.com:\u002Fmount\u002Fpath\u002Ffile\n","bash",[954],{"type":45,"tag":224,"props":955,"children":956},{"__ignoreMap":420},[957,966,990,999,1007],{"type":45,"tag":426,"props":958,"children":959},{"class":428,"line":429},[960],{"type":45,"tag":426,"props":961,"children":963},{"style":962},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[964],{"type":51,"value":965},"# Download from service\n",{"type":45,"tag":426,"props":967,"children":968},{"class":428,"line":445},[969,975,980,985],{"type":45,"tag":426,"props":970,"children":972},{"style":971},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[973],{"type":51,"value":974},"scp",{"type":45,"tag":426,"props":976,"children":977},{"style":464},[978],{"type":51,"value":979}," -s",{"type":45,"tag":426,"props":981,"children":982},{"style":464},[983],{"type":51,"value":984}," YOUR_SERVICE@ssh.YOUR_REGION.render.com:\u002Fmount\u002Fpath\u002Ffile",{"type":45,"tag":426,"props":986,"children":987},{"style":464},[988],{"type":51,"value":989}," .\u002Flocal-file\n",{"type":45,"tag":426,"props":991,"children":992},{"class":428,"line":470},[993],{"type":45,"tag":426,"props":994,"children":996},{"emptyLinePlaceholder":995},true,[997],{"type":51,"value":998},"\n",{"type":45,"tag":426,"props":1000,"children":1001},{"class":428,"line":488},[1002],{"type":45,"tag":426,"props":1003,"children":1004},{"style":962},[1005],{"type":51,"value":1006},"# Upload to service\n",{"type":45,"tag":426,"props":1008,"children":1009},{"class":428,"line":506},[1010,1014,1018,1023],{"type":45,"tag":426,"props":1011,"children":1012},{"style":971},[1013],{"type":51,"value":974},{"type":45,"tag":426,"props":1015,"children":1016},{"style":464},[1017],{"type":51,"value":979},{"type":45,"tag":426,"props":1019,"children":1020},{"style":464},[1021],{"type":51,"value":1022}," .\u002Flocal-file",{"type":45,"tag":426,"props":1024,"children":1025},{"style":464},[1026],{"type":51,"value":1027}," YOUR_SERVICE@ssh.YOUR_REGION.render.com:\u002Fmount\u002Fpath\u002Ffile\n",{"type":45,"tag":54,"props":1029,"children":1030},{},[1031],{"type":51,"value":1032},"Requires SSH access enabled for the service.",{"type":45,"tag":350,"props":1034,"children":1036},{"id":1035},"magic-wormhole",[1037],{"type":51,"value":1038},"Magic-Wormhole",{"type":45,"tag":54,"props":1040,"children":1041},{},[1042],{"type":51,"value":1043},"Available on all native runtimes (install manually on Docker):",{"type":45,"tag":415,"props":1045,"children":1047},{"className":950,"code":1046,"language":952,"meta":420,"style":420},"# On the service shell\nwormhole send \u002Fmount\u002Fpath\u002Ffile\n\n# On your local machine\nwormhole receive\n",[1048],{"type":45,"tag":224,"props":1049,"children":1050},{"__ignoreMap":420},[1051,1059,1077,1084,1092],{"type":45,"tag":426,"props":1052,"children":1053},{"class":428,"line":429},[1054],{"type":45,"tag":426,"props":1055,"children":1056},{"style":962},[1057],{"type":51,"value":1058},"# On the service shell\n",{"type":45,"tag":426,"props":1060,"children":1061},{"class":428,"line":445},[1062,1067,1072],{"type":45,"tag":426,"props":1063,"children":1064},{"style":971},[1065],{"type":51,"value":1066},"wormhole",{"type":45,"tag":426,"props":1068,"children":1069},{"style":464},[1070],{"type":51,"value":1071}," send",{"type":45,"tag":426,"props":1073,"children":1074},{"style":464},[1075],{"type":51,"value":1076}," \u002Fmount\u002Fpath\u002Ffile\n",{"type":45,"tag":426,"props":1078,"children":1079},{"class":428,"line":470},[1080],{"type":45,"tag":426,"props":1081,"children":1082},{"emptyLinePlaceholder":995},[1083],{"type":51,"value":998},{"type":45,"tag":426,"props":1085,"children":1086},{"class":428,"line":488},[1087],{"type":45,"tag":426,"props":1088,"children":1089},{"style":962},[1090],{"type":51,"value":1091},"# On your local machine\n",{"type":45,"tag":426,"props":1093,"children":1094},{"class":428,"line":506},[1095,1099],{"type":45,"tag":426,"props":1096,"children":1097},{"style":971},[1098],{"type":51,"value":1066},{"type":45,"tag":426,"props":1100,"children":1101},{"style":464},[1102],{"type":51,"value":1103}," receive\n",{"type":45,"tag":68,"props":1105,"children":1107},{"id":1106},"common-patterns",[1108],{"type":51,"value":1109},"Common Patterns",{"type":45,"tag":180,"props":1111,"children":1112},{},[1113,1139],{"type":45,"tag":184,"props":1114,"children":1115},{},[1116],{"type":45,"tag":188,"props":1117,"children":1118},{},[1119,1124,1129,1134],{"type":45,"tag":192,"props":1120,"children":1121},{},[1122],{"type":51,"value":1123},"Pattern",{"type":45,"tag":192,"props":1125,"children":1126},{},[1127],{"type":51,"value":1128},"Service type",{"type":45,"tag":192,"props":1130,"children":1131},{},[1132],{"type":51,"value":1133},"Mount path",{"type":45,"tag":192,"props":1135,"children":1136},{},[1137],{"type":51,"value":1138},"Notes",{"type":45,"tag":203,"props":1140,"children":1141},{},[1142,1176,1203,1228],{"type":45,"tag":188,"props":1143,"children":1144},{},[1145,1150,1155,1171],{"type":45,"tag":210,"props":1146,"children":1147},{},[1148],{"type":51,"value":1149},"WordPress \u002F Ghost \u002F CMS",{"type":45,"tag":210,"props":1151,"children":1152},{},[1153],{"type":51,"value":1154},"Web Service",{"type":45,"tag":210,"props":1156,"children":1157},{},[1158,1164,1165],{"type":45,"tag":224,"props":1159,"children":1161},{"className":1160},[],[1162],{"type":51,"value":1163},"\u002Fvar\u002Fdata",{"type":51,"value":126},{"type":45,"tag":224,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":51,"value":1170},"\u002Fapp\u002Fcontent",{"type":45,"tag":210,"props":1172,"children":1173},{},[1174],{"type":51,"value":1175},"Media uploads, SQLite",{"type":45,"tag":188,"props":1177,"children":1178},{},[1179,1184,1189,1198],{"type":45,"tag":210,"props":1180,"children":1181},{},[1182],{"type":51,"value":1183},"Self-managed MySQL",{"type":45,"tag":210,"props":1185,"children":1186},{},[1187],{"type":51,"value":1188},"Private Service",{"type":45,"tag":210,"props":1190,"children":1191},{},[1192],{"type":45,"tag":224,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":51,"value":1197},"\u002Fvar\u002Flib\u002Fmysql",{"type":45,"tag":210,"props":1199,"children":1200},{},[1201],{"type":51,"value":1202},"Use mysqldump for backups, not disk snapshots",{"type":45,"tag":188,"props":1204,"children":1205},{},[1206,1211,1215,1223],{"type":45,"tag":210,"props":1207,"children":1208},{},[1209],{"type":51,"value":1210},"File upload API",{"type":45,"tag":210,"props":1212,"children":1213},{},[1214],{"type":51,"value":1154},{"type":45,"tag":210,"props":1216,"children":1217},{},[1218],{"type":45,"tag":224,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":51,"value":714},{"type":45,"tag":210,"props":1224,"children":1225},{},[1226],{"type":51,"value":1227},"Single instance constraint",{"type":45,"tag":188,"props":1229,"children":1230},{},[1231,1236,1240,1249],{"type":45,"tag":210,"props":1232,"children":1233},{},[1234],{"type":51,"value":1235},"Elasticsearch",{"type":45,"tag":210,"props":1237,"children":1238},{},[1239],{"type":51,"value":1188},{"type":45,"tag":210,"props":1241,"children":1242},{},[1243],{"type":45,"tag":224,"props":1244,"children":1246},{"className":1245},[],[1247],{"type":51,"value":1248},"\u002Fusr\u002Fshare\u002Felasticsearch\u002Fdata",{"type":45,"tag":210,"props":1250,"children":1251},{},[1252],{"type":51,"value":1253},"Stateful search infrastructure",{"type":45,"tag":68,"props":1255,"children":1257},{"id":1256},"common-mistakes",[1258],{"type":51,"value":1259},"Common Mistakes",{"type":45,"tag":180,"props":1261,"children":1262},{},[1263,1279],{"type":45,"tag":184,"props":1264,"children":1265},{},[1266],{"type":45,"tag":188,"props":1267,"children":1268},{},[1269,1274],{"type":45,"tag":192,"props":1270,"children":1271},{},[1272],{"type":51,"value":1273},"Mistake",{"type":45,"tag":192,"props":1275,"children":1276},{},[1277],{"type":51,"value":1278},"Fix",{"type":45,"tag":203,"props":1280,"children":1281},{},[1282,1295,1321,1334,1347],{"type":45,"tag":188,"props":1283,"children":1284},{},[1285,1290],{"type":45,"tag":210,"props":1286,"children":1287},{},[1288],{"type":51,"value":1289},"Expecting horizontal scaling with a disk",{"type":45,"tag":210,"props":1291,"children":1292},{},[1293],{"type":51,"value":1294},"Not possible — disk services are single-instance only",{"type":45,"tag":188,"props":1296,"children":1297},{},[1298,1303],{"type":45,"tag":210,"props":1299,"children":1300},{},[1301],{"type":51,"value":1302},"Mounting at a disallowed path",{"type":45,"tag":210,"props":1304,"children":1305},{},[1306,1308,1313,1315,1320],{"type":51,"value":1307},"Use a subdirectory (e.g. ",{"type":45,"tag":224,"props":1309,"children":1311},{"className":1310},[],[1312],{"type":51,"value":714},{"type":51,"value":1314}," not ",{"type":45,"tag":224,"props":1316,"children":1318},{"className":1317},[],[1319],{"type":51,"value":705},{"type":51,"value":769},{"type":45,"tag":188,"props":1322,"children":1323},{},[1324,1329],{"type":45,"tag":210,"props":1325,"children":1326},{},[1327],{"type":51,"value":1328},"Reading disk during build or pre-deploy",{"type":45,"tag":210,"props":1330,"children":1331},{},[1332],{"type":51,"value":1333},"These run on separate compute — move logic to the start command",{"type":45,"tag":188,"props":1335,"children":1336},{},[1337,1342],{"type":45,"tag":210,"props":1338,"children":1339},{},[1340],{"type":51,"value":1341},"Restoring disk snapshot for a database",{"type":45,"tag":210,"props":1343,"children":1344},{},[1345],{"type":51,"value":1346},"Use database-native backups instead",{"type":45,"tag":188,"props":1348,"children":1349},{},[1350,1355],{"type":45,"tag":210,"props":1351,"children":1352},{},[1353],{"type":51,"value":1354},"Starting with a large disk size",{"type":45,"tag":210,"props":1356,"children":1357},{},[1358],{"type":51,"value":1359},"Start small — you can increase but never decrease",{"type":45,"tag":68,"props":1361,"children":1363},{"id":1362},"references",[1364],{"type":51,"value":1365},"References",{"type":45,"tag":180,"props":1367,"children":1368},{},[1369,1385],{"type":45,"tag":184,"props":1370,"children":1371},{},[1372],{"type":45,"tag":188,"props":1373,"children":1374},{},[1375,1380],{"type":45,"tag":192,"props":1376,"children":1377},{},[1378],{"type":51,"value":1379},"Document",{"type":45,"tag":192,"props":1381,"children":1382},{},[1383],{"type":51,"value":1384},"Contents",{"type":45,"tag":203,"props":1386,"children":1387},{},[1388],{"type":45,"tag":188,"props":1389,"children":1390},{},[1391,1400],{"type":45,"tag":210,"props":1392,"children":1393},{},[1394],{"type":45,"tag":224,"props":1395,"children":1397},{"className":1396},[],[1398],{"type":51,"value":1399},"references\u002Fsizing-and-snapshots.md",{"type":45,"tag":210,"props":1401,"children":1402},{},[1403],{"type":51,"value":1404},"Sizing guidance, snapshot lifecycle, restore procedures, cost patterns",{"type":45,"tag":68,"props":1406,"children":1408},{"id":1407},"related-skills",[1409],{"type":51,"value":1410},"Related Skills",{"type":45,"tag":75,"props":1412,"children":1413},{},[1414,1424,1434,1458],{"type":45,"tag":79,"props":1415,"children":1416},{},[1417,1422],{"type":45,"tag":60,"props":1418,"children":1419},{},[1420],{"type":51,"value":1421},"render-web-services",{"type":51,"value":1423}," — Deploy lifecycle, health checks (disk disables zero-downtime)",{"type":45,"tag":79,"props":1425,"children":1426},{},[1427,1432],{"type":45,"tag":60,"props":1428,"children":1429},{},[1430],{"type":51,"value":1431},"render-private-services",{"type":51,"value":1433}," — Internal services with disks (Elasticsearch, MySQL)",{"type":45,"tag":79,"props":1435,"children":1436},{},[1437,1442,1444,1450,1452],{"type":45,"tag":60,"props":1438,"children":1439},{},[1440],{"type":51,"value":1441},"render-blueprints",{"type":51,"value":1443}," — ",{"type":45,"tag":224,"props":1445,"children":1447},{"className":1446},[],[1448],{"type":51,"value":1449},"disk",{"type":51,"value":1451}," field reference in ",{"type":45,"tag":224,"props":1453,"children":1455},{"className":1454},[],[1456],{"type":51,"value":1457},"render.yaml",{"type":45,"tag":79,"props":1459,"children":1460},{},[1461,1466],{"type":45,"tag":60,"props":1462,"children":1463},{},[1464],{"type":51,"value":1465},"render-postgres",{"type":51,"value":1467}," — Managed database alternative (no disk management needed)",{"type":45,"tag":1469,"props":1470,"children":1471},"style",{},[1472],{"type":51,"value":1473},"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":1475,"total":1596},[1476,1494,1510,1522,1542,1564,1584],{"slug":1477,"name":1477,"fn":1478,"description":1479,"org":1480,"tags":1481,"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},[1482,1485,1488,1491],{"name":1483,"slug":1484,"type":15},"Accessibility","accessibility",{"name":1486,"slug":1487,"type":15},"Charts","charts",{"name":1489,"slug":1490,"type":15},"Data Visualization","data-visualization",{"name":1492,"slug":1493,"type":15},"Design","design",{"slug":1495,"name":1495,"fn":1496,"description":1497,"org":1498,"tags":1499,"stars":25,"repoUrl":26,"updatedAt":1509},"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},[1500,1503,1506],{"name":1501,"slug":1502,"type":15},"Agents","agents",{"name":1504,"slug":1505,"type":15},"Browser Automation","browser-automation",{"name":1507,"slug":1508,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1511,"name":1511,"fn":1512,"description":1513,"org":1514,"tags":1515,"stars":25,"repoUrl":26,"updatedAt":1521},"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},[1516,1517,1520],{"name":1504,"slug":1505,"type":15},{"name":1518,"slug":1519,"type":15},"Local Development","local-development",{"name":1507,"slug":1508,"type":15},"2026-04-06T18:41:17.526867",{"slug":1523,"name":1523,"fn":1524,"description":1525,"org":1526,"tags":1527,"stars":25,"repoUrl":26,"updatedAt":1541},"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},[1528,1529,1532,1535,1538],{"name":1501,"slug":1502,"type":15},{"name":1530,"slug":1531,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1533,"slug":1534,"type":15},"SDK","sdk",{"name":1536,"slug":1537,"type":15},"Serverless","serverless",{"name":1539,"slug":1540,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1543,"name":1543,"fn":1544,"description":1545,"org":1546,"tags":1547,"stars":25,"repoUrl":26,"updatedAt":1563},"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},[1548,1551,1554,1557,1560],{"name":1549,"slug":1550,"type":15},"Frontend","frontend",{"name":1552,"slug":1553,"type":15},"React","react",{"name":1555,"slug":1556,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1558,"slug":1559,"type":15},"UI Components","ui-components",{"name":1561,"slug":1562,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1565,"name":1565,"fn":1566,"description":1567,"org":1568,"tags":1569,"stars":25,"repoUrl":26,"updatedAt":1583},"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},[1570,1573,1576,1579,1582],{"name":1571,"slug":1572,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1574,"slug":1575,"type":15},"Cost Optimization","cost-optimization",{"name":1577,"slug":1578,"type":15},"LLM","llm",{"name":1580,"slug":1581,"type":15},"Performance","performance",{"name":1561,"slug":1562,"type":15},"2026-04-06T18:40:44.377464",{"slug":1585,"name":1585,"fn":1586,"description":1587,"org":1588,"tags":1589,"stars":25,"repoUrl":26,"updatedAt":1595},"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},[1590,1591,1594],{"name":1574,"slug":1575,"type":15},{"name":1592,"slug":1593,"type":15},"Database","database",{"name":1577,"slug":1578,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1598,"total":1793},[1599,1620,1643,1660,1676,1691,1710,1722,1736,1750,1762,1777],{"slug":1600,"name":1600,"fn":1601,"description":1602,"org":1603,"tags":1604,"stars":1617,"repoUrl":1618,"updatedAt":1619},"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},[1605,1608,1611,1614],{"name":1606,"slug":1607,"type":15},"Documents","documents",{"name":1609,"slug":1610,"type":15},"Healthcare","healthcare",{"name":1612,"slug":1613,"type":15},"Insurance","insurance",{"name":1615,"slug":1616,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1621,"name":1621,"fn":1622,"description":1623,"org":1624,"tags":1625,"stars":1640,"repoUrl":1641,"updatedAt":1642},"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},[1626,1629,1631,1634,1637],{"name":1627,"slug":1628,"type":15},".NET","dotnet",{"name":1630,"slug":1621,"type":15},"ASP.NET Core",{"name":1632,"slug":1633,"type":15},"Blazor","blazor",{"name":1635,"slug":1636,"type":15},"C#","csharp",{"name":1638,"slug":1639,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1644,"name":1644,"fn":1645,"description":1646,"org":1647,"tags":1648,"stars":1640,"repoUrl":1641,"updatedAt":1659},"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},[1649,1652,1655,1658],{"name":1650,"slug":1651,"type":15},"Apps SDK","apps-sdk",{"name":1653,"slug":1654,"type":15},"ChatGPT","chatgpt",{"name":1656,"slug":1657,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1661,"name":1661,"fn":1662,"description":1663,"org":1664,"tags":1665,"stars":1640,"repoUrl":1641,"updatedAt":1675},"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},[1666,1669,1672],{"name":1667,"slug":1668,"type":15},"API Development","api-development",{"name":1670,"slug":1671,"type":15},"CLI","cli",{"name":1673,"slug":1674,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1677,"name":1677,"fn":1678,"description":1679,"org":1680,"tags":1681,"stars":1640,"repoUrl":1641,"updatedAt":1690},"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},[1682,1685,1688,1689],{"name":1683,"slug":1684,"type":15},"Cloudflare","cloudflare",{"name":1686,"slug":1687,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1530,"slug":1531,"type":15},{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":1692,"name":1692,"fn":1693,"description":1694,"org":1695,"tags":1696,"stars":1640,"repoUrl":1641,"updatedAt":1709},"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},[1697,1700,1703,1706],{"name":1698,"slug":1699,"type":15},"Productivity","productivity",{"name":1701,"slug":1702,"type":15},"Project Management","project-management",{"name":1704,"slug":1705,"type":15},"Strategy","strategy",{"name":1707,"slug":1708,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1711,"name":1711,"fn":1712,"description":1713,"org":1714,"tags":1715,"stars":1640,"repoUrl":1641,"updatedAt":1721},"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},[1716,1717,1719,1720],{"name":1492,"slug":1493,"type":15},{"name":1718,"slug":1711,"type":15},"Figma",{"name":1549,"slug":1550,"type":15},{"name":1656,"slug":1657,"type":15},"2026-04-12T05:06:47.939943",{"slug":1723,"name":1723,"fn":1724,"description":1725,"org":1726,"tags":1727,"stars":1640,"repoUrl":1641,"updatedAt":1735},"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},[1728,1729,1732,1733,1734],{"name":1492,"slug":1493,"type":15},{"name":1730,"slug":1731,"type":15},"Design System","design-system",{"name":1718,"slug":1711,"type":15},{"name":1549,"slug":1550,"type":15},{"name":1558,"slug":1559,"type":15},"2026-05-10T05:59:52.971881",{"slug":1737,"name":1737,"fn":1738,"description":1739,"org":1740,"tags":1741,"stars":1640,"repoUrl":1641,"updatedAt":1749},"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},[1742,1743,1744,1747,1748],{"name":1492,"slug":1493,"type":15},{"name":1730,"slug":1731,"type":15},{"name":1745,"slug":1746,"type":15},"Documentation","documentation",{"name":1718,"slug":1711,"type":15},{"name":1549,"slug":1550,"type":15},"2026-05-16T06:07:47.821474",{"slug":1751,"name":1751,"fn":1752,"description":1753,"org":1754,"tags":1755,"stars":1640,"repoUrl":1641,"updatedAt":1761},"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},[1756,1757,1758,1759,1760],{"name":1492,"slug":1493,"type":15},{"name":1718,"slug":1711,"type":15},{"name":1549,"slug":1550,"type":15},{"name":1558,"slug":1559,"type":15},{"name":1638,"slug":1639,"type":15},"2026-05-16T06:07:40.583615",{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":1640,"repoUrl":1641,"updatedAt":1776},"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},[1768,1771,1772,1775],{"name":1769,"slug":1770,"type":15},"Animation","animation",{"name":1673,"slug":1674,"type":15},{"name":1773,"slug":1774,"type":15},"Creative","creative",{"name":1492,"slug":1493,"type":15},"2026-05-02T05:31:48.48485",{"slug":1778,"name":1778,"fn":1779,"description":1780,"org":1781,"tags":1782,"stars":1640,"repoUrl":1641,"updatedAt":1792},"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},[1783,1784,1785,1788,1791],{"name":1773,"slug":1774,"type":15},{"name":1492,"slug":1493,"type":15},{"name":1786,"slug":1787,"type":15},"Image Generation","image-generation",{"name":1789,"slug":1790,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]