[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-docker":3,"mdc-oc9kpa-key":36,"related-repo-openai-render-docker":1439,"related-org-openai-render-docker":1561},{"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-docker","deploy Docker containers on Render","Builds and deploys Docker containers on Render—Dockerfiles, multi-stage builds, Blueprint Docker fields, private registries, layer caching, and platform constraints. Use when the user mentions Docker, Dockerfile, container images, multi-stage builds, container registry, GHCR, ECR, BuildKit, dockerContext, runtime docker or image, or optimizing Docker builds on Render.",{"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},"Deployment","deployment",{"name":20,"slug":21,"type":15},"Cloud","cloud",{"name":23,"slug":24,"type":15},"Docker","docker",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-docker","---\nname: render-docker\ndescription: >-\n  Builds and deploys Docker containers on Render—Dockerfiles, multi-stage\n  builds, Blueprint Docker fields, private registries, layer caching, and\n  platform constraints. Use when the user mentions Docker,\n  Dockerfile, container images, multi-stage builds, container registry,\n  GHCR, ECR, BuildKit, dockerContext, runtime docker or image, or\n  optimizing Docker builds on Render.\nlicense: MIT\ncompatibility: >-\n  Any Render compute service (web, private, worker, cron) with runtime: docker\n  or runtime: image.\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: deployment\n---\n\n# Render Docker Deployments\n\nRender uses **BuildKit** for Docker builds. All compute service types that support custom runtimes can use **`runtime: docker`** (build from a Dockerfile in the repo) or **`runtime: image`** (pull a prebuilt image; no Dockerfile build on Render). Deeper patterns and copy-paste templates live under `references\u002F`.\n\n## When to Use\n\n- Authoring or debugging a **Dockerfile** for a Render service\n- Choosing **`runtime: docker`** vs **`runtime: image`** in a Blueprint\n- Wiring **private base images** or **prebuilt images** with registry credentials\n- **Multi-stage builds**, **build args**, **secrets**, and **layer caching**\n- **Performance** and **security** hardening of container images on Render\n\nFor full Blueprint authoring, see **render-blueprints**. For end-to-end deploy flows, see **render-deploy**.\n\n## Render Docker Builds\n\n- **BuildKit** is used for Docker builds on Render.\n- **`runtime: docker`**: Render builds an image from your repo using `dockerfilePath`, `dockerContext`, and optional `dockerCommand` (overrides image `CMD`).\n- **`runtime: image`**: Render pulls **`image.url`**; no repo-based image build. Pair with **`registryCredential`** when the registry is private.\n\n## Blueprint Configuration\n\n| Field | Role |\n|-------|------|\n| `dockerfilePath` | Path to the Dockerfile (default `.\u002FDockerfile`) |\n| `dockerContext` | Build context directory (what is sent to the daemon) |\n| `dockerCommand` | Overrides the container `CMD` after the image is built |\n| `image.url` | Image reference for `runtime: image` (registry\u002Frepo:tag or digest) |\n| `registryCredential` | Auth for private pulls; often `fromRegistryCreds` → Dashboard-stored credential |\n\nExample sketch (values illustrative):\n\n```yaml\nservices:\n  - type: web\n    name: api\n    runtime: docker\n    region: oregon\n    plan: starter\n    dockerfilePath: .\u002FDockerfile\n    dockerContext: .\n    dockerCommand: node server.js\n    envVars:\n      - key: PORT\n        value: 10000\n```\n\nFor `runtime: image`, set `image.url` and, if needed, `registryCredential` per **Registry Configuration** below.\n\n## Multi-Stage Builds\n\n**Recommended for production.** Use a **builder** stage for compilation and dependency installation, and a minimal **runner** stage that only copies artifacts and runtime files. Benefits:\n\n- Smaller images and faster pulls\n- Fewer tools and secrets in the final image (smaller attack surface)\n- Clear separation between build-time and run-time dependencies\n\nSee `references\u002Fdockerfile-patterns.md` for language-specific templates.\n\n## Build Args vs Secrets\n\n**Critical:** **Never pass secrets via `ARG`.** Build arguments are stored in image **layers** and can be recovered from the image history or intermediate layers.\n\n- Prefer **runtime environment variables** (Render **env vars** \u002F secret files) for application secrets.\n- For **build-time** secrets (e.g. private package feeds), use **Docker BuildKit secret mounts** (`RUN --mount=type=secret,...`) rather than `ARG`.\n\nTreat anything sensitive as **runtime** or **BuildKit secret mount**, not as a build arg.\n\n## Registry Configuration\n\nPrivate **base images** (for `runtime: docker`) or **prebuilt images** (`runtime: image`) need authentication:\n\n- Store credentials in the Render Dashboard under **Registry Credentials**.\n- In Blueprint, reference them with **`registryCredential.fromRegistryCreds.name`** (match the Dashboard name).\n\nSupports common registries (Docker Hub, GHCR, ECR, Google Artifact Registry, and others). Step-by-step per provider: `references\u002Fregistry-setup.md`.\n\n**Prebuilt image services** do **not** auto-deploy when the tag moves in the registry; trigger a **manual redeploy** or use a **deploy hook** when you publish a new image.\n\n## Layer Caching\n\n- Render **caches Docker layers** between builds; **order Dockerfile instructions** so that frequently unchanged layers stay early (see `references\u002Foptimization-guide.md`).\n- **Tags and caching:** mutable tags like **`latest`** can resolve to **stale cached** images. Prefer **immutable** references: **digest** (`repo\u002Fimage@sha256:...`) or **version pins** (`v1.2.3`).\n\n## Platform Specifics\n\n- Render builds **linux\u002Famd64**. Avoid assumptions about other architectures in production images.\n- **Port binding** matches native services: bind HTTP to **`0.0.0.0:$PORT`** (Render sets `PORT`).\n- **Health checks** behave like non-Docker web services (`healthCheckPath`, etc.).\n- **Secret files** from Render appear under **`\u002Fetc\u002Fsecrets\u002F`** — do not rely on repo-root secret paths inside the container unless you copy or mount them explicitly in the image.\n\n## `.dockerignore` and Start Commands\n\n- Always maintain a **`.dockerignore`** that excludes **`node_modules`**, **`.git`**, **`.env`**, build artifacts, logs, and OS junk. This shrinks context upload time and avoids leaking local files into layers. Lists and rationale: `references\u002Foptimization-guide.md`.\n- **Custom start command:** if you need multiple shell steps, use a single shell form, e.g. **`\u002Fbin\u002Fsh -c 'set -e; .\u002Fmigrate && exec node server.js'`** (prefer **`exec`** so your app receives signals for graceful shutdown).\n\n## References\n\n| Document | Contents |\n|----------|----------|\n| `references\u002Fdockerfile-patterns.md` | Multi-stage templates (Node, Python, Go, Ruby, Rust, static sites) |\n| `references\u002Fregistry-setup.md` | Docker Hub, GHCR, ECR, Artifact Registry + Blueprint wiring |\n| `references\u002Foptimization-guide.md` | Layer order, `.dockerignore`, BuildKit cache mounts, debugging |\n\n## Related Skills\n\n- **render-deploy** — Deploy flows, Blueprint vs Dashboard, operational steps\n- **render-blueprints** — Full `render.yaml` schema, wiring, and validation\n- **render-web-services** — Web service behavior, health checks, and HTTP edge cases\n",{"data":37,"body":41},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Any Render compute service (web, private, worker, cron) with runtime: docker or runtime: image.",{"author":13,"version":40,"category":18},"1.0.0",{"type":42,"children":43},"root",[44,53,98,105,211,229,235,326,332,470,475,710,743,749,773,791,804,810,841,895,913,918,949,979,991,1022,1028,1118,1124,1206,1218,1305,1311,1388,1394,1433],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"render-docker-deployments",[50],{"type":51,"value":52},"text","Render Docker Deployments",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57,59,65,67,77,79,88,90,96],{"type":51,"value":58},"Render uses ",{"type":45,"tag":60,"props":61,"children":62},"strong",{},[63],{"type":51,"value":64},"BuildKit",{"type":51,"value":66}," for Docker builds. All compute service types that support custom runtimes can use ",{"type":45,"tag":60,"props":68,"children":69},{},[70],{"type":45,"tag":71,"props":72,"children":74},"code",{"className":73},[],[75],{"type":51,"value":76},"runtime: docker",{"type":51,"value":78}," (build from a Dockerfile in the repo) or ",{"type":45,"tag":60,"props":80,"children":81},{},[82],{"type":45,"tag":71,"props":83,"children":85},{"className":84},[],[86],{"type":51,"value":87},"runtime: image",{"type":51,"value":89}," (pull a prebuilt image; no Dockerfile build on Render). Deeper patterns and copy-paste templates live under ",{"type":45,"tag":71,"props":91,"children":93},{"className":92},[],[94],{"type":51,"value":95},"references\u002F",{"type":51,"value":97},".",{"type":45,"tag":99,"props":100,"children":102},"h2",{"id":101},"when-to-use",[103],{"type":51,"value":104},"When to Use",{"type":45,"tag":106,"props":107,"children":108},"ul",{},[109,122,147,166,194],{"type":45,"tag":110,"props":111,"children":112},"li",{},[113,115,120],{"type":51,"value":114},"Authoring or debugging a ",{"type":45,"tag":60,"props":116,"children":117},{},[118],{"type":51,"value":119},"Dockerfile",{"type":51,"value":121}," for a Render service",{"type":45,"tag":110,"props":123,"children":124},{},[125,127,135,137,145],{"type":51,"value":126},"Choosing ",{"type":45,"tag":60,"props":128,"children":129},{},[130],{"type":45,"tag":71,"props":131,"children":133},{"className":132},[],[134],{"type":51,"value":76},{"type":51,"value":136}," vs ",{"type":45,"tag":60,"props":138,"children":139},{},[140],{"type":45,"tag":71,"props":141,"children":143},{"className":142},[],[144],{"type":51,"value":87},{"type":51,"value":146}," in a Blueprint",{"type":45,"tag":110,"props":148,"children":149},{},[150,152,157,159,164],{"type":51,"value":151},"Wiring ",{"type":45,"tag":60,"props":153,"children":154},{},[155],{"type":51,"value":156},"private base images",{"type":51,"value":158}," or ",{"type":45,"tag":60,"props":160,"children":161},{},[162],{"type":51,"value":163},"prebuilt images",{"type":51,"value":165}," with registry credentials",{"type":45,"tag":110,"props":167,"children":168},{},[169,174,176,181,182,187,189],{"type":45,"tag":60,"props":170,"children":171},{},[172],{"type":51,"value":173},"Multi-stage builds",{"type":51,"value":175},", ",{"type":45,"tag":60,"props":177,"children":178},{},[179],{"type":51,"value":180},"build args",{"type":51,"value":175},{"type":45,"tag":60,"props":183,"children":184},{},[185],{"type":51,"value":186},"secrets",{"type":51,"value":188},", and ",{"type":45,"tag":60,"props":190,"children":191},{},[192],{"type":51,"value":193},"layer caching",{"type":45,"tag":110,"props":195,"children":196},{},[197,202,204,209],{"type":45,"tag":60,"props":198,"children":199},{},[200],{"type":51,"value":201},"Performance",{"type":51,"value":203}," and ",{"type":45,"tag":60,"props":205,"children":206},{},[207],{"type":51,"value":208},"security",{"type":51,"value":210}," hardening of container images on Render",{"type":45,"tag":54,"props":212,"children":213},{},[214,216,221,223,228],{"type":51,"value":215},"For full Blueprint authoring, see ",{"type":45,"tag":60,"props":217,"children":218},{},[219],{"type":51,"value":220},"render-blueprints",{"type":51,"value":222},". For end-to-end deploy flows, see ",{"type":45,"tag":60,"props":224,"children":225},{},[226],{"type":51,"value":227},"render-deploy",{"type":51,"value":97},{"type":45,"tag":99,"props":230,"children":232},{"id":231},"render-docker-builds",[233],{"type":51,"value":234},"Render Docker Builds",{"type":45,"tag":106,"props":236,"children":237},{},[238,247,291],{"type":45,"tag":110,"props":239,"children":240},{},[241,245],{"type":45,"tag":60,"props":242,"children":243},{},[244],{"type":51,"value":64},{"type":51,"value":246}," is used for Docker builds on Render.",{"type":45,"tag":110,"props":248,"children":249},{},[250,258,260,266,267,273,275,281,283,289],{"type":45,"tag":60,"props":251,"children":252},{},[253],{"type":45,"tag":71,"props":254,"children":256},{"className":255},[],[257],{"type":51,"value":76},{"type":51,"value":259},": Render builds an image from your repo using ",{"type":45,"tag":71,"props":261,"children":263},{"className":262},[],[264],{"type":51,"value":265},"dockerfilePath",{"type":51,"value":175},{"type":45,"tag":71,"props":268,"children":270},{"className":269},[],[271],{"type":51,"value":272},"dockerContext",{"type":51,"value":274},", and optional ",{"type":45,"tag":71,"props":276,"children":278},{"className":277},[],[279],{"type":51,"value":280},"dockerCommand",{"type":51,"value":282}," (overrides image ",{"type":45,"tag":71,"props":284,"children":286},{"className":285},[],[287],{"type":51,"value":288},"CMD",{"type":51,"value":290},").",{"type":45,"tag":110,"props":292,"children":293},{},[294,302,304,313,315,324],{"type":45,"tag":60,"props":295,"children":296},{},[297],{"type":45,"tag":71,"props":298,"children":300},{"className":299},[],[301],{"type":51,"value":87},{"type":51,"value":303},": Render pulls ",{"type":45,"tag":60,"props":305,"children":306},{},[307],{"type":45,"tag":71,"props":308,"children":310},{"className":309},[],[311],{"type":51,"value":312},"image.url",{"type":51,"value":314},"; no repo-based image build. Pair with ",{"type":45,"tag":60,"props":316,"children":317},{},[318],{"type":45,"tag":71,"props":319,"children":321},{"className":320},[],[322],{"type":51,"value":323},"registryCredential",{"type":51,"value":325}," when the registry is private.",{"type":45,"tag":99,"props":327,"children":329},{"id":328},"blueprint-configuration",[330],{"type":51,"value":331},"Blueprint Configuration",{"type":45,"tag":333,"props":334,"children":335},"table",{},[336,355],{"type":45,"tag":337,"props":338,"children":339},"thead",{},[340],{"type":45,"tag":341,"props":342,"children":343},"tr",{},[344,350],{"type":45,"tag":345,"props":346,"children":347},"th",{},[348],{"type":51,"value":349},"Field",{"type":45,"tag":345,"props":351,"children":352},{},[353],{"type":51,"value":354},"Role",{"type":45,"tag":356,"props":357,"children":358},"tbody",{},[359,384,400,423,446],{"type":45,"tag":341,"props":360,"children":361},{},[362,371],{"type":45,"tag":363,"props":364,"children":365},"td",{},[366],{"type":45,"tag":71,"props":367,"children":369},{"className":368},[],[370],{"type":51,"value":265},{"type":45,"tag":363,"props":372,"children":373},{},[374,376,382],{"type":51,"value":375},"Path to the Dockerfile (default ",{"type":45,"tag":71,"props":377,"children":379},{"className":378},[],[380],{"type":51,"value":381},".\u002FDockerfile",{"type":51,"value":383},")",{"type":45,"tag":341,"props":385,"children":386},{},[387,395],{"type":45,"tag":363,"props":388,"children":389},{},[390],{"type":45,"tag":71,"props":391,"children":393},{"className":392},[],[394],{"type":51,"value":272},{"type":45,"tag":363,"props":396,"children":397},{},[398],{"type":51,"value":399},"Build context directory (what is sent to the daemon)",{"type":45,"tag":341,"props":401,"children":402},{},[403,411],{"type":45,"tag":363,"props":404,"children":405},{},[406],{"type":45,"tag":71,"props":407,"children":409},{"className":408},[],[410],{"type":51,"value":280},{"type":45,"tag":363,"props":412,"children":413},{},[414,416,421],{"type":51,"value":415},"Overrides the container ",{"type":45,"tag":71,"props":417,"children":419},{"className":418},[],[420],{"type":51,"value":288},{"type":51,"value":422}," after the image is built",{"type":45,"tag":341,"props":424,"children":425},{},[426,434],{"type":45,"tag":363,"props":427,"children":428},{},[429],{"type":45,"tag":71,"props":430,"children":432},{"className":431},[],[433],{"type":51,"value":312},{"type":45,"tag":363,"props":435,"children":436},{},[437,439,444],{"type":51,"value":438},"Image reference for ",{"type":45,"tag":71,"props":440,"children":442},{"className":441},[],[443],{"type":51,"value":87},{"type":51,"value":445}," (registry\u002Frepo:tag or digest)",{"type":45,"tag":341,"props":447,"children":448},{},[449,457],{"type":45,"tag":363,"props":450,"children":451},{},[452],{"type":45,"tag":71,"props":453,"children":455},{"className":454},[],[456],{"type":51,"value":323},{"type":45,"tag":363,"props":458,"children":459},{},[460,462,468],{"type":51,"value":461},"Auth for private pulls; often ",{"type":45,"tag":71,"props":463,"children":465},{"className":464},[],[466],{"type":51,"value":467},"fromRegistryCreds",{"type":51,"value":469}," → Dashboard-stored credential",{"type":45,"tag":54,"props":471,"children":472},{},[473],{"type":51,"value":474},"Example sketch (values illustrative):",{"type":45,"tag":476,"props":477,"children":482},"pre",{"className":478,"code":479,"language":480,"meta":481,"style":481},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","services:\n  - type: web\n    name: api\n    runtime: docker\n    region: oregon\n    plan: starter\n    dockerfilePath: .\u002FDockerfile\n    dockerContext: .\n    dockerCommand: node server.js\n    envVars:\n      - key: PORT\n        value: 10000\n","yaml","",[483],{"type":45,"tag":71,"props":484,"children":485},{"__ignoreMap":481},[486,504,529,547,565,583,601,619,638,656,669,692],{"type":45,"tag":487,"props":488,"children":491},"span",{"class":489,"line":490},"line",1,[492,498],{"type":45,"tag":487,"props":493,"children":495},{"style":494},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[496],{"type":51,"value":497},"services",{"type":45,"tag":487,"props":499,"children":501},{"style":500},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[502],{"type":51,"value":503},":\n",{"type":45,"tag":487,"props":505,"children":507},{"class":489,"line":506},2,[508,513,518,523],{"type":45,"tag":487,"props":509,"children":510},{"style":500},[511],{"type":51,"value":512},"  -",{"type":45,"tag":487,"props":514,"children":515},{"style":494},[516],{"type":51,"value":517}," type",{"type":45,"tag":487,"props":519,"children":520},{"style":500},[521],{"type":51,"value":522},":",{"type":45,"tag":487,"props":524,"children":526},{"style":525},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[527],{"type":51,"value":528}," web\n",{"type":45,"tag":487,"props":530,"children":532},{"class":489,"line":531},3,[533,538,542],{"type":45,"tag":487,"props":534,"children":535},{"style":494},[536],{"type":51,"value":537},"    name",{"type":45,"tag":487,"props":539,"children":540},{"style":500},[541],{"type":51,"value":522},{"type":45,"tag":487,"props":543,"children":544},{"style":525},[545],{"type":51,"value":546}," api\n",{"type":45,"tag":487,"props":548,"children":550},{"class":489,"line":549},4,[551,556,560],{"type":45,"tag":487,"props":552,"children":553},{"style":494},[554],{"type":51,"value":555},"    runtime",{"type":45,"tag":487,"props":557,"children":558},{"style":500},[559],{"type":51,"value":522},{"type":45,"tag":487,"props":561,"children":562},{"style":525},[563],{"type":51,"value":564}," docker\n",{"type":45,"tag":487,"props":566,"children":568},{"class":489,"line":567},5,[569,574,578],{"type":45,"tag":487,"props":570,"children":571},{"style":494},[572],{"type":51,"value":573},"    region",{"type":45,"tag":487,"props":575,"children":576},{"style":500},[577],{"type":51,"value":522},{"type":45,"tag":487,"props":579,"children":580},{"style":525},[581],{"type":51,"value":582}," oregon\n",{"type":45,"tag":487,"props":584,"children":586},{"class":489,"line":585},6,[587,592,596],{"type":45,"tag":487,"props":588,"children":589},{"style":494},[590],{"type":51,"value":591},"    plan",{"type":45,"tag":487,"props":593,"children":594},{"style":500},[595],{"type":51,"value":522},{"type":45,"tag":487,"props":597,"children":598},{"style":525},[599],{"type":51,"value":600}," starter\n",{"type":45,"tag":487,"props":602,"children":604},{"class":489,"line":603},7,[605,610,614],{"type":45,"tag":487,"props":606,"children":607},{"style":494},[608],{"type":51,"value":609},"    dockerfilePath",{"type":45,"tag":487,"props":611,"children":612},{"style":500},[613],{"type":51,"value":522},{"type":45,"tag":487,"props":615,"children":616},{"style":525},[617],{"type":51,"value":618}," .\u002FDockerfile\n",{"type":45,"tag":487,"props":620,"children":622},{"class":489,"line":621},8,[623,628,632],{"type":45,"tag":487,"props":624,"children":625},{"style":494},[626],{"type":51,"value":627},"    dockerContext",{"type":45,"tag":487,"props":629,"children":630},{"style":500},[631],{"type":51,"value":522},{"type":45,"tag":487,"props":633,"children":635},{"style":634},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[636],{"type":51,"value":637}," .\n",{"type":45,"tag":487,"props":639,"children":641},{"class":489,"line":640},9,[642,647,651],{"type":45,"tag":487,"props":643,"children":644},{"style":494},[645],{"type":51,"value":646},"    dockerCommand",{"type":45,"tag":487,"props":648,"children":649},{"style":500},[650],{"type":51,"value":522},{"type":45,"tag":487,"props":652,"children":653},{"style":525},[654],{"type":51,"value":655}," node server.js\n",{"type":45,"tag":487,"props":657,"children":659},{"class":489,"line":658},10,[660,665],{"type":45,"tag":487,"props":661,"children":662},{"style":494},[663],{"type":51,"value":664},"    envVars",{"type":45,"tag":487,"props":666,"children":667},{"style":500},[668],{"type":51,"value":503},{"type":45,"tag":487,"props":670,"children":672},{"class":489,"line":671},11,[673,678,683,687],{"type":45,"tag":487,"props":674,"children":675},{"style":500},[676],{"type":51,"value":677},"      -",{"type":45,"tag":487,"props":679,"children":680},{"style":494},[681],{"type":51,"value":682}," key",{"type":45,"tag":487,"props":684,"children":685},{"style":500},[686],{"type":51,"value":522},{"type":45,"tag":487,"props":688,"children":689},{"style":525},[690],{"type":51,"value":691}," PORT\n",{"type":45,"tag":487,"props":693,"children":695},{"class":489,"line":694},12,[696,701,705],{"type":45,"tag":487,"props":697,"children":698},{"style":494},[699],{"type":51,"value":700},"        value",{"type":45,"tag":487,"props":702,"children":703},{"style":500},[704],{"type":51,"value":522},{"type":45,"tag":487,"props":706,"children":707},{"style":634},[708],{"type":51,"value":709}," 10000\n",{"type":45,"tag":54,"props":711,"children":712},{},[713,715,720,722,727,729,734,736,741],{"type":51,"value":714},"For ",{"type":45,"tag":71,"props":716,"children":718},{"className":717},[],[719],{"type":51,"value":87},{"type":51,"value":721},", set ",{"type":45,"tag":71,"props":723,"children":725},{"className":724},[],[726],{"type":51,"value":312},{"type":51,"value":728}," and, if needed, ",{"type":45,"tag":71,"props":730,"children":732},{"className":731},[],[733],{"type":51,"value":323},{"type":51,"value":735}," per ",{"type":45,"tag":60,"props":737,"children":738},{},[739],{"type":51,"value":740},"Registry Configuration",{"type":51,"value":742}," below.",{"type":45,"tag":99,"props":744,"children":746},{"id":745},"multi-stage-builds",[747],{"type":51,"value":748},"Multi-Stage Builds",{"type":45,"tag":54,"props":750,"children":751},{},[752,757,759,764,766,771],{"type":45,"tag":60,"props":753,"children":754},{},[755],{"type":51,"value":756},"Recommended for production.",{"type":51,"value":758}," Use a ",{"type":45,"tag":60,"props":760,"children":761},{},[762],{"type":51,"value":763},"builder",{"type":51,"value":765}," stage for compilation and dependency installation, and a minimal ",{"type":45,"tag":60,"props":767,"children":768},{},[769],{"type":51,"value":770},"runner",{"type":51,"value":772}," stage that only copies artifacts and runtime files. Benefits:",{"type":45,"tag":106,"props":774,"children":775},{},[776,781,786],{"type":45,"tag":110,"props":777,"children":778},{},[779],{"type":51,"value":780},"Smaller images and faster pulls",{"type":45,"tag":110,"props":782,"children":783},{},[784],{"type":51,"value":785},"Fewer tools and secrets in the final image (smaller attack surface)",{"type":45,"tag":110,"props":787,"children":788},{},[789],{"type":51,"value":790},"Clear separation between build-time and run-time dependencies",{"type":45,"tag":54,"props":792,"children":793},{},[794,796,802],{"type":51,"value":795},"See ",{"type":45,"tag":71,"props":797,"children":799},{"className":798},[],[800],{"type":51,"value":801},"references\u002Fdockerfile-patterns.md",{"type":51,"value":803}," for language-specific templates.",{"type":45,"tag":99,"props":805,"children":807},{"id":806},"build-args-vs-secrets",[808],{"type":51,"value":809},"Build Args vs Secrets",{"type":45,"tag":54,"props":811,"children":812},{},[813,818,820,832,834,839],{"type":45,"tag":60,"props":814,"children":815},{},[816],{"type":51,"value":817},"Critical:",{"type":51,"value":819}," ",{"type":45,"tag":60,"props":821,"children":822},{},[823,825,831],{"type":51,"value":824},"Never pass secrets via ",{"type":45,"tag":71,"props":826,"children":828},{"className":827},[],[829],{"type":51,"value":830},"ARG",{"type":51,"value":97},{"type":51,"value":833}," Build arguments are stored in image ",{"type":45,"tag":60,"props":835,"children":836},{},[837],{"type":51,"value":838},"layers",{"type":51,"value":840}," and can be recovered from the image history or intermediate layers.",{"type":45,"tag":106,"props":842,"children":843},{},[844,863],{"type":45,"tag":110,"props":845,"children":846},{},[847,849,854,856,861],{"type":51,"value":848},"Prefer ",{"type":45,"tag":60,"props":850,"children":851},{},[852],{"type":51,"value":853},"runtime environment variables",{"type":51,"value":855}," (Render ",{"type":45,"tag":60,"props":857,"children":858},{},[859],{"type":51,"value":860},"env vars",{"type":51,"value":862}," \u002F secret files) for application secrets.",{"type":45,"tag":110,"props":864,"children":865},{},[866,867,872,874,879,881,887,889,894],{"type":51,"value":714},{"type":45,"tag":60,"props":868,"children":869},{},[870],{"type":51,"value":871},"build-time",{"type":51,"value":873}," secrets (e.g. private package feeds), use ",{"type":45,"tag":60,"props":875,"children":876},{},[877],{"type":51,"value":878},"Docker BuildKit secret mounts",{"type":51,"value":880}," (",{"type":45,"tag":71,"props":882,"children":884},{"className":883},[],[885],{"type":51,"value":886},"RUN --mount=type=secret,...",{"type":51,"value":888},") rather than ",{"type":45,"tag":71,"props":890,"children":892},{"className":891},[],[893],{"type":51,"value":830},{"type":51,"value":97},{"type":45,"tag":54,"props":896,"children":897},{},[898,900,905,906,911],{"type":51,"value":899},"Treat anything sensitive as ",{"type":45,"tag":60,"props":901,"children":902},{},[903],{"type":51,"value":904},"runtime",{"type":51,"value":158},{"type":45,"tag":60,"props":907,"children":908},{},[909],{"type":51,"value":910},"BuildKit secret mount",{"type":51,"value":912},", not as a build arg.",{"type":45,"tag":99,"props":914,"children":916},{"id":915},"registry-configuration",[917],{"type":51,"value":740},{"type":45,"tag":54,"props":919,"children":920},{},[921,923,928,930,935,937,941,942,947],{"type":51,"value":922},"Private ",{"type":45,"tag":60,"props":924,"children":925},{},[926],{"type":51,"value":927},"base images",{"type":51,"value":929}," (for ",{"type":45,"tag":71,"props":931,"children":933},{"className":932},[],[934],{"type":51,"value":76},{"type":51,"value":936},") or ",{"type":45,"tag":60,"props":938,"children":939},{},[940],{"type":51,"value":163},{"type":51,"value":880},{"type":45,"tag":71,"props":943,"children":945},{"className":944},[],[946],{"type":51,"value":87},{"type":51,"value":948},") need authentication:",{"type":45,"tag":106,"props":950,"children":951},{},[952,963],{"type":45,"tag":110,"props":953,"children":954},{},[955,957,962],{"type":51,"value":956},"Store credentials in the Render Dashboard under ",{"type":45,"tag":60,"props":958,"children":959},{},[960],{"type":51,"value":961},"Registry Credentials",{"type":51,"value":97},{"type":45,"tag":110,"props":964,"children":965},{},[966,968,977],{"type":51,"value":967},"In Blueprint, reference them with ",{"type":45,"tag":60,"props":969,"children":970},{},[971],{"type":45,"tag":71,"props":972,"children":974},{"className":973},[],[975],{"type":51,"value":976},"registryCredential.fromRegistryCreds.name",{"type":51,"value":978}," (match the Dashboard name).",{"type":45,"tag":54,"props":980,"children":981},{},[982,984,990],{"type":51,"value":983},"Supports common registries (Docker Hub, GHCR, ECR, Google Artifact Registry, and others). Step-by-step per provider: ",{"type":45,"tag":71,"props":985,"children":987},{"className":986},[],[988],{"type":51,"value":989},"references\u002Fregistry-setup.md",{"type":51,"value":97},{"type":45,"tag":54,"props":992,"children":993},{},[994,999,1001,1006,1008,1013,1015,1020],{"type":45,"tag":60,"props":995,"children":996},{},[997],{"type":51,"value":998},"Prebuilt image services",{"type":51,"value":1000}," do ",{"type":45,"tag":60,"props":1002,"children":1003},{},[1004],{"type":51,"value":1005},"not",{"type":51,"value":1007}," auto-deploy when the tag moves in the registry; trigger a ",{"type":45,"tag":60,"props":1009,"children":1010},{},[1011],{"type":51,"value":1012},"manual redeploy",{"type":51,"value":1014}," or use a ",{"type":45,"tag":60,"props":1016,"children":1017},{},[1018],{"type":51,"value":1019},"deploy hook",{"type":51,"value":1021}," when you publish a new image.",{"type":45,"tag":99,"props":1023,"children":1025},{"id":1024},"layer-caching",[1026],{"type":51,"value":1027},"Layer Caching",{"type":45,"tag":106,"props":1029,"children":1030},{},[1031,1057],{"type":45,"tag":110,"props":1032,"children":1033},{},[1034,1036,1041,1043,1048,1050,1056],{"type":51,"value":1035},"Render ",{"type":45,"tag":60,"props":1037,"children":1038},{},[1039],{"type":51,"value":1040},"caches Docker layers",{"type":51,"value":1042}," between builds; ",{"type":45,"tag":60,"props":1044,"children":1045},{},[1046],{"type":51,"value":1047},"order Dockerfile instructions",{"type":51,"value":1049}," so that frequently unchanged layers stay early (see ",{"type":45,"tag":71,"props":1051,"children":1053},{"className":1052},[],[1054],{"type":51,"value":1055},"references\u002Foptimization-guide.md",{"type":51,"value":290},{"type":45,"tag":110,"props":1058,"children":1059},{},[1060,1065,1067,1076,1078,1083,1085,1090,1092,1097,1098,1104,1105,1110,1111,1117],{"type":45,"tag":60,"props":1061,"children":1062},{},[1063],{"type":51,"value":1064},"Tags and caching:",{"type":51,"value":1066}," mutable tags like ",{"type":45,"tag":60,"props":1068,"children":1069},{},[1070],{"type":45,"tag":71,"props":1071,"children":1073},{"className":1072},[],[1074],{"type":51,"value":1075},"latest",{"type":51,"value":1077}," can resolve to ",{"type":45,"tag":60,"props":1079,"children":1080},{},[1081],{"type":51,"value":1082},"stale cached",{"type":51,"value":1084}," images. Prefer ",{"type":45,"tag":60,"props":1086,"children":1087},{},[1088],{"type":51,"value":1089},"immutable",{"type":51,"value":1091}," references: ",{"type":45,"tag":60,"props":1093,"children":1094},{},[1095],{"type":51,"value":1096},"digest",{"type":51,"value":880},{"type":45,"tag":71,"props":1099,"children":1101},{"className":1100},[],[1102],{"type":51,"value":1103},"repo\u002Fimage@sha256:...",{"type":51,"value":936},{"type":45,"tag":60,"props":1106,"children":1107},{},[1108],{"type":51,"value":1109},"version pins",{"type":51,"value":880},{"type":45,"tag":71,"props":1112,"children":1114},{"className":1113},[],[1115],{"type":51,"value":1116},"v1.2.3",{"type":51,"value":290},{"type":45,"tag":99,"props":1119,"children":1121},{"id":1120},"platform-specifics",[1122],{"type":51,"value":1123},"Platform Specifics",{"type":45,"tag":106,"props":1125,"children":1126},{},[1127,1139,1167,1185],{"type":45,"tag":110,"props":1128,"children":1129},{},[1130,1132,1137],{"type":51,"value":1131},"Render builds ",{"type":45,"tag":60,"props":1133,"children":1134},{},[1135],{"type":51,"value":1136},"linux\u002Famd64",{"type":51,"value":1138},". Avoid assumptions about other architectures in production images.",{"type":45,"tag":110,"props":1140,"children":1141},{},[1142,1147,1149,1158,1160,1166],{"type":45,"tag":60,"props":1143,"children":1144},{},[1145],{"type":51,"value":1146},"Port binding",{"type":51,"value":1148}," matches native services: bind HTTP to ",{"type":45,"tag":60,"props":1150,"children":1151},{},[1152],{"type":45,"tag":71,"props":1153,"children":1155},{"className":1154},[],[1156],{"type":51,"value":1157},"0.0.0.0:$PORT",{"type":51,"value":1159}," (Render sets ",{"type":45,"tag":71,"props":1161,"children":1163},{"className":1162},[],[1164],{"type":51,"value":1165},"PORT",{"type":51,"value":290},{"type":45,"tag":110,"props":1168,"children":1169},{},[1170,1175,1177,1183],{"type":45,"tag":60,"props":1171,"children":1172},{},[1173],{"type":51,"value":1174},"Health checks",{"type":51,"value":1176}," behave like non-Docker web services (",{"type":45,"tag":71,"props":1178,"children":1180},{"className":1179},[],[1181],{"type":51,"value":1182},"healthCheckPath",{"type":51,"value":1184},", etc.).",{"type":45,"tag":110,"props":1186,"children":1187},{},[1188,1193,1195,1204],{"type":45,"tag":60,"props":1189,"children":1190},{},[1191],{"type":51,"value":1192},"Secret files",{"type":51,"value":1194}," from Render appear under ",{"type":45,"tag":60,"props":1196,"children":1197},{},[1198],{"type":45,"tag":71,"props":1199,"children":1201},{"className":1200},[],[1202],{"type":51,"value":1203},"\u002Fetc\u002Fsecrets\u002F",{"type":51,"value":1205}," — do not rely on repo-root secret paths inside the container unless you copy or mount them explicitly in the image.",{"type":45,"tag":99,"props":1207,"children":1209},{"id":1208},"dockerignore-and-start-commands",[1210,1216],{"type":45,"tag":71,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":51,"value":1215},".dockerignore",{"type":51,"value":1217}," and Start Commands",{"type":45,"tag":106,"props":1219,"children":1220},{},[1221,1273],{"type":45,"tag":110,"props":1222,"children":1223},{},[1224,1226,1234,1236,1245,1246,1255,1256,1265,1267,1272],{"type":51,"value":1225},"Always maintain a ",{"type":45,"tag":60,"props":1227,"children":1228},{},[1229],{"type":45,"tag":71,"props":1230,"children":1232},{"className":1231},[],[1233],{"type":51,"value":1215},{"type":51,"value":1235}," that excludes ",{"type":45,"tag":60,"props":1237,"children":1238},{},[1239],{"type":45,"tag":71,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":51,"value":1244},"node_modules",{"type":51,"value":175},{"type":45,"tag":60,"props":1247,"children":1248},{},[1249],{"type":45,"tag":71,"props":1250,"children":1252},{"className":1251},[],[1253],{"type":51,"value":1254},".git",{"type":51,"value":175},{"type":45,"tag":60,"props":1257,"children":1258},{},[1259],{"type":45,"tag":71,"props":1260,"children":1262},{"className":1261},[],[1263],{"type":51,"value":1264},".env",{"type":51,"value":1266},", build artifacts, logs, and OS junk. This shrinks context upload time and avoids leaking local files into layers. Lists and rationale: ",{"type":45,"tag":71,"props":1268,"children":1270},{"className":1269},[],[1271],{"type":51,"value":1055},{"type":51,"value":97},{"type":45,"tag":110,"props":1274,"children":1275},{},[1276,1281,1283,1292,1294,1303],{"type":45,"tag":60,"props":1277,"children":1278},{},[1279],{"type":51,"value":1280},"Custom start command:",{"type":51,"value":1282}," if you need multiple shell steps, use a single shell form, e.g. ",{"type":45,"tag":60,"props":1284,"children":1285},{},[1286],{"type":45,"tag":71,"props":1287,"children":1289},{"className":1288},[],[1290],{"type":51,"value":1291},"\u002Fbin\u002Fsh -c 'set -e; .\u002Fmigrate && exec node server.js'",{"type":51,"value":1293}," (prefer ",{"type":45,"tag":60,"props":1295,"children":1296},{},[1297],{"type":45,"tag":71,"props":1298,"children":1300},{"className":1299},[],[1301],{"type":51,"value":1302},"exec",{"type":51,"value":1304}," so your app receives signals for graceful shutdown).",{"type":45,"tag":99,"props":1306,"children":1308},{"id":1307},"references",[1309],{"type":51,"value":1310},"References",{"type":45,"tag":333,"props":1312,"children":1313},{},[1314,1330],{"type":45,"tag":337,"props":1315,"children":1316},{},[1317],{"type":45,"tag":341,"props":1318,"children":1319},{},[1320,1325],{"type":45,"tag":345,"props":1321,"children":1322},{},[1323],{"type":51,"value":1324},"Document",{"type":45,"tag":345,"props":1326,"children":1327},{},[1328],{"type":51,"value":1329},"Contents",{"type":45,"tag":356,"props":1331,"children":1332},{},[1333,1349,1365],{"type":45,"tag":341,"props":1334,"children":1335},{},[1336,1344],{"type":45,"tag":363,"props":1337,"children":1338},{},[1339],{"type":45,"tag":71,"props":1340,"children":1342},{"className":1341},[],[1343],{"type":51,"value":801},{"type":45,"tag":363,"props":1345,"children":1346},{},[1347],{"type":51,"value":1348},"Multi-stage templates (Node, Python, Go, Ruby, Rust, static sites)",{"type":45,"tag":341,"props":1350,"children":1351},{},[1352,1360],{"type":45,"tag":363,"props":1353,"children":1354},{},[1355],{"type":45,"tag":71,"props":1356,"children":1358},{"className":1357},[],[1359],{"type":51,"value":989},{"type":45,"tag":363,"props":1361,"children":1362},{},[1363],{"type":51,"value":1364},"Docker Hub, GHCR, ECR, Artifact Registry + Blueprint wiring",{"type":45,"tag":341,"props":1366,"children":1367},{},[1368,1376],{"type":45,"tag":363,"props":1369,"children":1370},{},[1371],{"type":45,"tag":71,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":51,"value":1055},{"type":45,"tag":363,"props":1377,"children":1378},{},[1379,1381,1386],{"type":51,"value":1380},"Layer order, ",{"type":45,"tag":71,"props":1382,"children":1384},{"className":1383},[],[1385],{"type":51,"value":1215},{"type":51,"value":1387},", BuildKit cache mounts, debugging",{"type":45,"tag":99,"props":1389,"children":1391},{"id":1390},"related-skills",[1392],{"type":51,"value":1393},"Related Skills",{"type":45,"tag":106,"props":1395,"children":1396},{},[1397,1406,1423],{"type":45,"tag":110,"props":1398,"children":1399},{},[1400,1404],{"type":45,"tag":60,"props":1401,"children":1402},{},[1403],{"type":51,"value":227},{"type":51,"value":1405}," — Deploy flows, Blueprint vs Dashboard, operational steps",{"type":45,"tag":110,"props":1407,"children":1408},{},[1409,1413,1415,1421],{"type":45,"tag":60,"props":1410,"children":1411},{},[1412],{"type":51,"value":220},{"type":51,"value":1414}," — Full ",{"type":45,"tag":71,"props":1416,"children":1418},{"className":1417},[],[1419],{"type":51,"value":1420},"render.yaml",{"type":51,"value":1422}," schema, wiring, and validation",{"type":45,"tag":110,"props":1424,"children":1425},{},[1426,1431],{"type":45,"tag":60,"props":1427,"children":1428},{},[1429],{"type":51,"value":1430},"render-web-services",{"type":51,"value":1432}," — Web service behavior, health checks, and HTTP edge cases",{"type":45,"tag":1434,"props":1435,"children":1436},"style",{},[1437],{"type":51,"value":1438},"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":1440,"total":1560},[1441,1459,1475,1487,1507,1529,1548],{"slug":1442,"name":1442,"fn":1443,"description":1444,"org":1445,"tags":1446,"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},[1447,1450,1453,1456],{"name":1448,"slug":1449,"type":15},"Accessibility","accessibility",{"name":1451,"slug":1452,"type":15},"Charts","charts",{"name":1454,"slug":1455,"type":15},"Data Visualization","data-visualization",{"name":1457,"slug":1458,"type":15},"Design","design",{"slug":1460,"name":1460,"fn":1461,"description":1462,"org":1463,"tags":1464,"stars":25,"repoUrl":26,"updatedAt":1474},"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},[1465,1468,1471],{"name":1466,"slug":1467,"type":15},"Agents","agents",{"name":1469,"slug":1470,"type":15},"Browser Automation","browser-automation",{"name":1472,"slug":1473,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1476,"name":1476,"fn":1477,"description":1478,"org":1479,"tags":1480,"stars":25,"repoUrl":26,"updatedAt":1486},"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},[1481,1482,1485],{"name":1469,"slug":1470,"type":15},{"name":1483,"slug":1484,"type":15},"Local Development","local-development",{"name":1472,"slug":1473,"type":15},"2026-04-06T18:41:17.526867",{"slug":1488,"name":1488,"fn":1489,"description":1490,"org":1491,"tags":1492,"stars":25,"repoUrl":26,"updatedAt":1506},"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},[1493,1494,1497,1500,1503],{"name":1466,"slug":1467,"type":15},{"name":1495,"slug":1496,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1498,"slug":1499,"type":15},"SDK","sdk",{"name":1501,"slug":1502,"type":15},"Serverless","serverless",{"name":1504,"slug":1505,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1508,"name":1508,"fn":1509,"description":1510,"org":1511,"tags":1512,"stars":25,"repoUrl":26,"updatedAt":1528},"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},[1513,1516,1519,1522,1525],{"name":1514,"slug":1515,"type":15},"Frontend","frontend",{"name":1517,"slug":1518,"type":15},"React","react",{"name":1520,"slug":1521,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1523,"slug":1524,"type":15},"UI Components","ui-components",{"name":1526,"slug":1527,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1530,"name":1530,"fn":1531,"description":1532,"org":1533,"tags":1534,"stars":25,"repoUrl":26,"updatedAt":1547},"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},[1535,1538,1541,1544,1546],{"name":1536,"slug":1537,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1539,"slug":1540,"type":15},"Cost Optimization","cost-optimization",{"name":1542,"slug":1543,"type":15},"LLM","llm",{"name":201,"slug":1545,"type":15},"performance",{"name":1526,"slug":1527,"type":15},"2026-04-06T18:40:44.377464",{"slug":1549,"name":1549,"fn":1550,"description":1551,"org":1552,"tags":1553,"stars":25,"repoUrl":26,"updatedAt":1559},"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},[1554,1555,1558],{"name":1539,"slug":1540,"type":15},{"name":1556,"slug":1557,"type":15},"Database","database",{"name":1542,"slug":1543,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1562,"total":1757},[1563,1584,1607,1624,1640,1655,1674,1686,1700,1714,1726,1741],{"slug":1564,"name":1564,"fn":1565,"description":1566,"org":1567,"tags":1568,"stars":1581,"repoUrl":1582,"updatedAt":1583},"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},[1569,1572,1575,1578],{"name":1570,"slug":1571,"type":15},"Documents","documents",{"name":1573,"slug":1574,"type":15},"Healthcare","healthcare",{"name":1576,"slug":1577,"type":15},"Insurance","insurance",{"name":1579,"slug":1580,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1585,"name":1585,"fn":1586,"description":1587,"org":1588,"tags":1589,"stars":1604,"repoUrl":1605,"updatedAt":1606},"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},[1590,1593,1595,1598,1601],{"name":1591,"slug":1592,"type":15},".NET","dotnet",{"name":1594,"slug":1585,"type":15},"ASP.NET Core",{"name":1596,"slug":1597,"type":15},"Blazor","blazor",{"name":1599,"slug":1600,"type":15},"C#","csharp",{"name":1602,"slug":1603,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1608,"name":1608,"fn":1609,"description":1610,"org":1611,"tags":1612,"stars":1604,"repoUrl":1605,"updatedAt":1623},"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},[1613,1616,1619,1622],{"name":1614,"slug":1615,"type":15},"Apps SDK","apps-sdk",{"name":1617,"slug":1618,"type":15},"ChatGPT","chatgpt",{"name":1620,"slug":1621,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1625,"name":1625,"fn":1626,"description":1627,"org":1628,"tags":1629,"stars":1604,"repoUrl":1605,"updatedAt":1639},"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},[1630,1633,1636],{"name":1631,"slug":1632,"type":15},"API Development","api-development",{"name":1634,"slug":1635,"type":15},"CLI","cli",{"name":1637,"slug":1638,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1641,"name":1641,"fn":1642,"description":1643,"org":1644,"tags":1645,"stars":1604,"repoUrl":1605,"updatedAt":1654},"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},[1646,1649,1652,1653],{"name":1647,"slug":1648,"type":15},"Cloudflare","cloudflare",{"name":1650,"slug":1651,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1495,"slug":1496,"type":15},{"name":17,"slug":18,"type":15},"2026-04-12T05:07:14.275118",{"slug":1656,"name":1656,"fn":1657,"description":1658,"org":1659,"tags":1660,"stars":1604,"repoUrl":1605,"updatedAt":1673},"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},[1661,1664,1667,1670],{"name":1662,"slug":1663,"type":15},"Productivity","productivity",{"name":1665,"slug":1666,"type":15},"Project Management","project-management",{"name":1668,"slug":1669,"type":15},"Strategy","strategy",{"name":1671,"slug":1672,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1675,"name":1675,"fn":1676,"description":1677,"org":1678,"tags":1679,"stars":1604,"repoUrl":1605,"updatedAt":1685},"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},[1680,1681,1683,1684],{"name":1457,"slug":1458,"type":15},{"name":1682,"slug":1675,"type":15},"Figma",{"name":1514,"slug":1515,"type":15},{"name":1620,"slug":1621,"type":15},"2026-04-12T05:06:47.939943",{"slug":1687,"name":1687,"fn":1688,"description":1689,"org":1690,"tags":1691,"stars":1604,"repoUrl":1605,"updatedAt":1699},"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},[1692,1693,1696,1697,1698],{"name":1457,"slug":1458,"type":15},{"name":1694,"slug":1695,"type":15},"Design System","design-system",{"name":1682,"slug":1675,"type":15},{"name":1514,"slug":1515,"type":15},{"name":1523,"slug":1524,"type":15},"2026-05-10T05:59:52.971881",{"slug":1701,"name":1701,"fn":1702,"description":1703,"org":1704,"tags":1705,"stars":1604,"repoUrl":1605,"updatedAt":1713},"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},[1706,1707,1708,1711,1712],{"name":1457,"slug":1458,"type":15},{"name":1694,"slug":1695,"type":15},{"name":1709,"slug":1710,"type":15},"Documentation","documentation",{"name":1682,"slug":1675,"type":15},{"name":1514,"slug":1515,"type":15},"2026-05-16T06:07:47.821474",{"slug":1715,"name":1715,"fn":1716,"description":1717,"org":1718,"tags":1719,"stars":1604,"repoUrl":1605,"updatedAt":1725},"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},[1720,1721,1722,1723,1724],{"name":1457,"slug":1458,"type":15},{"name":1682,"slug":1675,"type":15},{"name":1514,"slug":1515,"type":15},{"name":1523,"slug":1524,"type":15},{"name":1602,"slug":1603,"type":15},"2026-05-16T06:07:40.583615",{"slug":1727,"name":1727,"fn":1728,"description":1729,"org":1730,"tags":1731,"stars":1604,"repoUrl":1605,"updatedAt":1740},"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},[1732,1735,1736,1739],{"name":1733,"slug":1734,"type":15},"Animation","animation",{"name":1637,"slug":1638,"type":15},{"name":1737,"slug":1738,"type":15},"Creative","creative",{"name":1457,"slug":1458,"type":15},"2026-05-02T05:31:48.48485",{"slug":1742,"name":1742,"fn":1743,"description":1744,"org":1745,"tags":1746,"stars":1604,"repoUrl":1605,"updatedAt":1756},"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},[1747,1748,1749,1752,1755],{"name":1737,"slug":1738,"type":15},{"name":1457,"slug":1458,"type":15},{"name":1750,"slug":1751,"type":15},"Image Generation","image-generation",{"name":1753,"slug":1754,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]