[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-env-vars":3,"mdc--utt8ae-key":36,"related-repo-openai-render-env-vars":1627,"related-org-openai-render-env-vars":1749},{"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-env-vars","configure Render environment variables","Configures environment variables, secrets, and env groups on Render. Use when the user needs to set env vars, wire secrets between services, create env groups, use generateValue, set sync: false, or troubleshoot missing or incorrect environment variable values in Blueprints or the Dashboard.",{"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},"Configuration","configuration","tag",{"name":17,"slug":18,"type":15},"Render","render",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Environment Variables","environment-variables",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-env-vars","---\nname: render-env-vars\ndescription: >-\n  Configures environment variables, secrets, and env groups on Render. Use when\n  the user needs to set env vars, wire secrets between services, create env\n  groups, use generateValue, set sync: false, or troubleshoot missing or\n  incorrect environment variable values in Blueprints or the Dashboard.\nlicense: MIT\ncompatibility: Render Dashboard, CLI, or MCP tools\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: configuration\n---\n\n# Environment Variables on Render\n\nRender exposes configuration to services as **environment variables**. Values are always **strings** at the platform layer—applications must parse numbers, booleans, and structured data explicitly.\n\nThere are **three** primary ways to set variables:\n\n1. **Render Dashboard** — per-service UI, bulk import from `.env`, save\u002Fredeploy options\n2. **Blueprint** — `envVars` (and related keys) in `render.yaml`\n3. **MCP \u002F API** — e.g. `update_environment_variables` on a service\n\nDeep wiring patterns, full platform variable tables, and language-specific notes live under `references\u002F`.\n\n## When to Use This Skill\n\nUse this skill when users want to:\n\n- Add, change, or remove environment variables or secrets\n- Understand Dashboard vs Blueprint vs API\u002FMCP flows\n- Use **environment groups** for shared configuration\n- Wire `fromDatabase`, `fromService`, `fromGroup`, `sync: false`, or `generateValue` in Blueprints\n- Debug missing vars, secret files, precedence, or platform-injected names\n\nFor full Blueprint authoring, pair with **render-blueprints**. For first-time deploys, **render-deploy**. For web service behavior and ports, **render-web-services**.\n\n## Setting Variables\n\n### Dashboard\n\n- Add variables **individually** (name + value) or **in bulk** by pasting\u002Fuploading a `.env`-style file.\n- **Save options** typically include:\n  - **Save and rebuild & deploy** — picks up build-time changes\n  - **Deploy only** — runtime change without a full rebuild (when applicable)\n  - **Save only** — persist without triggering a deploy\n\nUse Dashboard edits when iterating quickly or when the repo should not carry certain values.\n\n### Blueprint (`render.yaml`)\n\nDeclare `envVars` on each service. Values can be literals, generated secrets, sync-disabled prompts, or references to databases, other services, or env groups. See **Blueprint Wiring** below and `references\u002Fwiring-reference.md` for exhaustive patterns and YAML.\n\n### MCP \u002F API\n\nAutomation tools can set variables on existing services (e.g. `update_environment_variables`). Useful for CI, rotation, or keeping Dashboard state in sync with external secret stores—without committing secrets to Git.\n\n## Secret Management\n\n- **`sync: false`** — Render prompts in the Dashboard for the value **only on initial Blueprint setup** when the resource is first created. On **Blueprint updates**, `sync: false` is **ignored** (values are not re-prompted from the file alone). These vars are **excluded from preview environments** and are **invalid inside environment groups**.\n- **`generateValue: true`** — Render generates a **base64-encoded 256-bit** random value at provision time. Use for passwords, signing keys, or tokens that do not need human-chosen values.\n- **Never commit real secrets** in `render.yaml` as plain `value:` entries. Prefer Dashboard, secret manager integration, `generateValue`, or `sync: false` with Dashboard entry.\n\n### Secret files\n\n- Store sensitive file content as **secret files** (not inline env strings). They appear as **plaintext files** under **`\u002Fetc\u002Fsecrets\u002F\u003Cfilename>`**.\n- **Combined limit**: **1 MB** total secret file payload per service or per linked env group (as applicable to your setup).\n- **Docker**: secret files are available under **`\u002Fetc\u002Fsecrets\u002F`** on the running instance.\n\n## Environment Groups\n\n**Environment groups** are named collections of variables linked to **multiple services**.\n\n- **Precedence**: **Service-level** variables **override** variables from linked groups with the same name.\n- **Multiple groups** on one service: the group that was **most recently created** wins for overlapping keys. This ordering is **not documented as stable**—avoid relying on it; use distinct names or consolidate groups.\n- Groups can be **scoped to a project environment** so staging and production differ without duplicating every service definition.\n\n## Blueprint Wiring (Summary)\n\nFull syntax, examples, and edge cases: `references\u002Fwiring-reference.md`. Authoritative Blueprint docs: **render-blueprints** skill.\n\n| Mechanism | Role |\n|-----------|------|\n| `value` | Hardcoded string (non-secret config only) |\n| `generateValue: true` | Platform-generated secret |\n| `sync: false` | Dashboard prompt on **initial** create only |\n| `fromDatabase` | Inject DB fields (`connectionString`, `host`, `port`, `user`, `password`, `database`) |\n| `fromService` | Key Value: `type: keyvalue` + properties; private\u002Fweb: `host`, `hostport`, or `envVarKey` |\n| `fromGroup` | Link all vars from a named group |\n\n## Platform-Injected Variables\n\nRender sets **read-only** variables your app can read at runtime (and some at build). A concise list:\n\n| Variable | Typical meaning |\n|----------|-----------------|\n| `RENDER` | `\"true\"` when running on Render |\n| `RENDER_SERVICE_TYPE` | Service kind (e.g. web, worker) |\n| `RENDER_SERVICE_ID` | Service identifier |\n| `RENDER_SERVICE_NAME` | Human-readable service name |\n| `RENDER_INSTANCE_ID` | Current instance |\n| `RENDER_EXTERNAL_URL` | Public URL (when applicable) |\n| `RENDER_EXTERNAL_HOSTNAME` | Public hostname |\n| `RENDER_DISCOVERY_SERVICE` | Service discovery hostname (private network) |\n| `RENDER_GIT_COMMIT` | Deployed commit SHA |\n| `RENDER_GIT_BRANCH` | Branch for this deploy |\n| `PORT` | HTTP port to bind (**default `10000`**) |\n| `IS_PULL_REQUEST` | Preview deploy indicator |\n| `RENDER_CPU_COUNT` | vCPU count for the instance |\n| `RENDER_WEB_CONCURRENCY` | Suggested worker\u002Fprocess count hint |\n\nBuild vs runtime availability, language version env vars, and **WEB_CONCURRENCY** defaults: `references\u002Fplatform-variables.md`.\n\n## Runtime-Specific Defaults\n\nRender and buildpacks may set defaults (verify in your service’s **Environment** tab):\n\n| Runtime | Notable defaults |\n|---------|------------------|\n| **Node.js** | `NODE_ENV=production` |\n| **Python** | `PYTHON_VERSION` (pinned by build); Gunicorn-oriented images often set `GUNICORN_CMD_ARGS` to bind **`0.0.0.0:10000`** |\n| **Ruby** | `RAILS_ENV=production`, `RAILS_LOG_TO_STDOUT=true` |\n| **Go** | `GO111MODULE=on` (legacy modules flag; still seen on older stacks) |\n| **Rust** | `ROCKET_PORT=10000` (Rocket convention) |\n\nAlways bind HTTP servers to **`0.0.0.0`** and **`PORT`** (or the stack’s documented port env) unless using a static site or custom Docker entrypoint.\n\n## Common Issues\n\n1. **Everything is a string** — `DEBUG=false` is truthy in many parsers; use explicit comparison or typed config loaders.\n2. **`WEB_CONCURRENCY`** — Default behavior changed for services **created after December 8, 2025**. Compare with older services when debugging worker counts; see `references\u002Fplatform-variables.md`.\n3. **Undocumented `RENDER_*` variables** — Names and semantics may change; do not depend on undocumented injection for critical logic.\n4. **Blueprint vs Dashboard drift** — Editing only `render.yaml` does not retroactively apply `sync: false` prompts on update; merge strategy for env keys is easy to misunderstand—test in a scratch service.\n5. **Secret file paths** — Code must read **`\u002Fetc\u002Fsecrets\u002F\u003Cfilename>`**; wrong paths or missing mounts usually show as file-not-found at runtime.\n\n## References\n\n- `references\u002Fwiring-reference.md` — Complete Blueprint `envVar` wiring, YAML examples, precedence, edge cases\n- `references\u002Fplatform-variables.md` — Injected variables (build vs runtime), language versions, concurrency, reading vars from code\n\n## Related Skills\n\n- **render-blueprints** — Full Blueprint authoring, validation, multi-service layouts\n- **render-deploy** — First deploy, repo requirements, MCP vs YAML\n- **render-web-services** — Ports, health checks, scaling behavior tied to env-driven servers\n",{"data":37,"body":41},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Render Dashboard, CLI, or MCP tools",{"author":17,"version":40,"category":14},"1.0.0",{"type":42,"children":43},"root",[44,53,74,86,152,165,172,177,251,276,282,289,361,366,379,406,411,423,429,544,550,620,626,642,704,710,728,929,935,947,1225,1244,1250,1262,1414,1440,1446,1554,1560,1591,1597],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"environment-variables-on-render",[50],{"type":51,"value":52},"text","Environment Variables on Render",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57,59,65,67,72],{"type":51,"value":58},"Render exposes configuration to services as ",{"type":45,"tag":60,"props":61,"children":62},"strong",{},[63],{"type":51,"value":64},"environment variables",{"type":51,"value":66},". Values are always ",{"type":45,"tag":60,"props":68,"children":69},{},[70],{"type":51,"value":71},"strings",{"type":51,"value":73}," at the platform layer—applications must parse numbers, booleans, and structured data explicitly.",{"type":45,"tag":54,"props":75,"children":76},{},[77,79,84],{"type":51,"value":78},"There are ",{"type":45,"tag":60,"props":80,"children":81},{},[82],{"type":51,"value":83},"three",{"type":51,"value":85}," primary ways to set variables:",{"type":45,"tag":87,"props":88,"children":89},"ol",{},[90,110,134],{"type":45,"tag":91,"props":92,"children":93},"li",{},[94,99,101,108],{"type":45,"tag":60,"props":95,"children":96},{},[97],{"type":51,"value":98},"Render Dashboard",{"type":51,"value":100}," — per-service UI, bulk import from ",{"type":45,"tag":102,"props":103,"children":105},"code",{"className":104},[],[106],{"type":51,"value":107},".env",{"type":51,"value":109},", save\u002Fredeploy options",{"type":45,"tag":91,"props":111,"children":112},{},[113,118,120,126,128],{"type":45,"tag":60,"props":114,"children":115},{},[116],{"type":51,"value":117},"Blueprint",{"type":51,"value":119}," — ",{"type":45,"tag":102,"props":121,"children":123},{"className":122},[],[124],{"type":51,"value":125},"envVars",{"type":51,"value":127}," (and related keys) in ",{"type":45,"tag":102,"props":129,"children":131},{"className":130},[],[132],{"type":51,"value":133},"render.yaml",{"type":45,"tag":91,"props":135,"children":136},{},[137,142,144,150],{"type":45,"tag":60,"props":138,"children":139},{},[140],{"type":51,"value":141},"MCP \u002F API",{"type":51,"value":143}," — e.g. ",{"type":45,"tag":102,"props":145,"children":147},{"className":146},[],[148],{"type":51,"value":149},"update_environment_variables",{"type":51,"value":151}," on a service",{"type":45,"tag":54,"props":153,"children":154},{},[155,157,163],{"type":51,"value":156},"Deep wiring patterns, full platform variable tables, and language-specific notes live under ",{"type":45,"tag":102,"props":158,"children":160},{"className":159},[],[161],{"type":51,"value":162},"references\u002F",{"type":51,"value":164},".",{"type":45,"tag":166,"props":167,"children":169},"h2",{"id":168},"when-to-use-this-skill",[170],{"type":51,"value":171},"When to Use This Skill",{"type":45,"tag":54,"props":173,"children":174},{},[175],{"type":51,"value":176},"Use this skill when users want to:",{"type":45,"tag":178,"props":179,"children":180},"ul",{},[181,186,191,203,246],{"type":45,"tag":91,"props":182,"children":183},{},[184],{"type":51,"value":185},"Add, change, or remove environment variables or secrets",{"type":45,"tag":91,"props":187,"children":188},{},[189],{"type":51,"value":190},"Understand Dashboard vs Blueprint vs API\u002FMCP flows",{"type":45,"tag":91,"props":192,"children":193},{},[194,196,201],{"type":51,"value":195},"Use ",{"type":45,"tag":60,"props":197,"children":198},{},[199],{"type":51,"value":200},"environment groups",{"type":51,"value":202}," for shared configuration",{"type":45,"tag":91,"props":204,"children":205},{},[206,208,214,216,222,223,229,230,236,238,244],{"type":51,"value":207},"Wire ",{"type":45,"tag":102,"props":209,"children":211},{"className":210},[],[212],{"type":51,"value":213},"fromDatabase",{"type":51,"value":215},", ",{"type":45,"tag":102,"props":217,"children":219},{"className":218},[],[220],{"type":51,"value":221},"fromService",{"type":51,"value":215},{"type":45,"tag":102,"props":224,"children":226},{"className":225},[],[227],{"type":51,"value":228},"fromGroup",{"type":51,"value":215},{"type":45,"tag":102,"props":231,"children":233},{"className":232},[],[234],{"type":51,"value":235},"sync: false",{"type":51,"value":237},", or ",{"type":45,"tag":102,"props":239,"children":241},{"className":240},[],[242],{"type":51,"value":243},"generateValue",{"type":51,"value":245}," in Blueprints",{"type":45,"tag":91,"props":247,"children":248},{},[249],{"type":51,"value":250},"Debug missing vars, secret files, precedence, or platform-injected names",{"type":45,"tag":54,"props":252,"children":253},{},[254,256,261,263,268,270,275],{"type":51,"value":255},"For full Blueprint authoring, pair with ",{"type":45,"tag":60,"props":257,"children":258},{},[259],{"type":51,"value":260},"render-blueprints",{"type":51,"value":262},". For first-time deploys, ",{"type":45,"tag":60,"props":264,"children":265},{},[266],{"type":51,"value":267},"render-deploy",{"type":51,"value":269},". For web service behavior and ports, ",{"type":45,"tag":60,"props":271,"children":272},{},[273],{"type":51,"value":274},"render-web-services",{"type":51,"value":164},{"type":45,"tag":166,"props":277,"children":279},{"id":278},"setting-variables",[280],{"type":51,"value":281},"Setting Variables",{"type":45,"tag":283,"props":284,"children":286},"h3",{"id":285},"dashboard",[287],{"type":51,"value":288},"Dashboard",{"type":45,"tag":178,"props":290,"children":291},{},[292,318],{"type":45,"tag":91,"props":293,"children":294},{},[295,297,302,304,309,311,316],{"type":51,"value":296},"Add variables ",{"type":45,"tag":60,"props":298,"children":299},{},[300],{"type":51,"value":301},"individually",{"type":51,"value":303}," (name + value) or ",{"type":45,"tag":60,"props":305,"children":306},{},[307],{"type":51,"value":308},"in bulk",{"type":51,"value":310}," by pasting\u002Fuploading a ",{"type":45,"tag":102,"props":312,"children":314},{"className":313},[],[315],{"type":51,"value":107},{"type":51,"value":317},"-style file.",{"type":45,"tag":91,"props":319,"children":320},{},[321,326,328],{"type":45,"tag":60,"props":322,"children":323},{},[324],{"type":51,"value":325},"Save options",{"type":51,"value":327}," typically include:\n",{"type":45,"tag":178,"props":329,"children":330},{},[331,341,351],{"type":45,"tag":91,"props":332,"children":333},{},[334,339],{"type":45,"tag":60,"props":335,"children":336},{},[337],{"type":51,"value":338},"Save and rebuild & deploy",{"type":51,"value":340}," — picks up build-time changes",{"type":45,"tag":91,"props":342,"children":343},{},[344,349],{"type":45,"tag":60,"props":345,"children":346},{},[347],{"type":51,"value":348},"Deploy only",{"type":51,"value":350}," — runtime change without a full rebuild (when applicable)",{"type":45,"tag":91,"props":352,"children":353},{},[354,359],{"type":45,"tag":60,"props":355,"children":356},{},[357],{"type":51,"value":358},"Save only",{"type":51,"value":360}," — persist without triggering a deploy",{"type":45,"tag":54,"props":362,"children":363},{},[364],{"type":51,"value":365},"Use Dashboard edits when iterating quickly or when the repo should not carry certain values.",{"type":45,"tag":283,"props":367,"children":369},{"id":368},"blueprint-renderyaml",[370,372,377],{"type":51,"value":371},"Blueprint (",{"type":45,"tag":102,"props":373,"children":375},{"className":374},[],[376],{"type":51,"value":133},{"type":51,"value":378},")",{"type":45,"tag":54,"props":380,"children":381},{},[382,384,389,391,396,398,404],{"type":51,"value":383},"Declare ",{"type":45,"tag":102,"props":385,"children":387},{"className":386},[],[388],{"type":51,"value":125},{"type":51,"value":390}," on each service. Values can be literals, generated secrets, sync-disabled prompts, or references to databases, other services, or env groups. See ",{"type":45,"tag":60,"props":392,"children":393},{},[394],{"type":51,"value":395},"Blueprint Wiring",{"type":51,"value":397}," below and ",{"type":45,"tag":102,"props":399,"children":401},{"className":400},[],[402],{"type":51,"value":403},"references\u002Fwiring-reference.md",{"type":51,"value":405}," for exhaustive patterns and YAML.",{"type":45,"tag":283,"props":407,"children":409},{"id":408},"mcp-api",[410],{"type":51,"value":141},{"type":45,"tag":54,"props":412,"children":413},{},[414,416,421],{"type":51,"value":415},"Automation tools can set variables on existing services (e.g. ",{"type":45,"tag":102,"props":417,"children":419},{"className":418},[],[420],{"type":51,"value":149},{"type":51,"value":422},"). Useful for CI, rotation, or keeping Dashboard state in sync with external secret stores—without committing secrets to Git.",{"type":45,"tag":166,"props":424,"children":426},{"id":425},"secret-management",[427],{"type":51,"value":428},"Secret Management",{"type":45,"tag":178,"props":430,"children":431},{},[432,485,506],{"type":45,"tag":91,"props":433,"children":434},{},[435,443,445,450,452,457,458,463,465,470,472,477,479,484],{"type":45,"tag":60,"props":436,"children":437},{},[438],{"type":45,"tag":102,"props":439,"children":441},{"className":440},[],[442],{"type":51,"value":235},{"type":51,"value":444}," — Render prompts in the Dashboard for the value ",{"type":45,"tag":60,"props":446,"children":447},{},[448],{"type":51,"value":449},"only on initial Blueprint setup",{"type":51,"value":451}," when the resource is first created. On ",{"type":45,"tag":60,"props":453,"children":454},{},[455],{"type":51,"value":456},"Blueprint updates",{"type":51,"value":215},{"type":45,"tag":102,"props":459,"children":461},{"className":460},[],[462],{"type":51,"value":235},{"type":51,"value":464}," is ",{"type":45,"tag":60,"props":466,"children":467},{},[468],{"type":51,"value":469},"ignored",{"type":51,"value":471}," (values are not re-prompted from the file alone). These vars are ",{"type":45,"tag":60,"props":473,"children":474},{},[475],{"type":51,"value":476},"excluded from preview environments",{"type":51,"value":478}," and are ",{"type":45,"tag":60,"props":480,"children":481},{},[482],{"type":51,"value":483},"invalid inside environment groups",{"type":51,"value":164},{"type":45,"tag":91,"props":486,"children":487},{},[488,497,499,504],{"type":45,"tag":60,"props":489,"children":490},{},[491],{"type":45,"tag":102,"props":492,"children":494},{"className":493},[],[495],{"type":51,"value":496},"generateValue: true",{"type":51,"value":498}," — Render generates a ",{"type":45,"tag":60,"props":500,"children":501},{},[502],{"type":51,"value":503},"base64-encoded 256-bit",{"type":51,"value":505}," random value at provision time. Use for passwords, signing keys, or tokens that do not need human-chosen values.",{"type":45,"tag":91,"props":507,"children":508},{},[509,514,516,521,523,529,531,536,537,542],{"type":45,"tag":60,"props":510,"children":511},{},[512],{"type":51,"value":513},"Never commit real secrets",{"type":51,"value":515}," in ",{"type":45,"tag":102,"props":517,"children":519},{"className":518},[],[520],{"type":51,"value":133},{"type":51,"value":522}," as plain ",{"type":45,"tag":102,"props":524,"children":526},{"className":525},[],[527],{"type":51,"value":528},"value:",{"type":51,"value":530}," entries. Prefer Dashboard, secret manager integration, ",{"type":45,"tag":102,"props":532,"children":534},{"className":533},[],[535],{"type":51,"value":243},{"type":51,"value":237},{"type":45,"tag":102,"props":538,"children":540},{"className":539},[],[541],{"type":51,"value":235},{"type":51,"value":543}," with Dashboard entry.",{"type":45,"tag":283,"props":545,"children":547},{"id":546},"secret-files",[548],{"type":51,"value":549},"Secret files",{"type":45,"tag":178,"props":551,"children":552},{},[553,582,599],{"type":45,"tag":91,"props":554,"children":555},{},[556,558,563,565,570,572,581],{"type":51,"value":557},"Store sensitive file content as ",{"type":45,"tag":60,"props":559,"children":560},{},[561],{"type":51,"value":562},"secret files",{"type":51,"value":564}," (not inline env strings). They appear as ",{"type":45,"tag":60,"props":566,"children":567},{},[568],{"type":51,"value":569},"plaintext files",{"type":51,"value":571}," under ",{"type":45,"tag":60,"props":573,"children":574},{},[575],{"type":45,"tag":102,"props":576,"children":578},{"className":577},[],[579],{"type":51,"value":580},"\u002Fetc\u002Fsecrets\u002F\u003Cfilename>",{"type":51,"value":164},{"type":45,"tag":91,"props":583,"children":584},{},[585,590,592,597],{"type":45,"tag":60,"props":586,"children":587},{},[588],{"type":51,"value":589},"Combined limit",{"type":51,"value":591},": ",{"type":45,"tag":60,"props":593,"children":594},{},[595],{"type":51,"value":596},"1 MB",{"type":51,"value":598}," total secret file payload per service or per linked env group (as applicable to your setup).",{"type":45,"tag":91,"props":600,"children":601},{},[602,607,609,618],{"type":45,"tag":60,"props":603,"children":604},{},[605],{"type":51,"value":606},"Docker",{"type":51,"value":608},": secret files are available under ",{"type":45,"tag":60,"props":610,"children":611},{},[612],{"type":45,"tag":102,"props":613,"children":615},{"className":614},[],[616],{"type":51,"value":617},"\u002Fetc\u002Fsecrets\u002F",{"type":51,"value":619}," on the running instance.",{"type":45,"tag":166,"props":621,"children":623},{"id":622},"environment-groups",[624],{"type":51,"value":625},"Environment Groups",{"type":45,"tag":54,"props":627,"children":628},{},[629,634,636,641],{"type":45,"tag":60,"props":630,"children":631},{},[632],{"type":51,"value":633},"Environment groups",{"type":51,"value":635}," are named collections of variables linked to ",{"type":45,"tag":60,"props":637,"children":638},{},[639],{"type":51,"value":640},"multiple services",{"type":51,"value":164},{"type":45,"tag":178,"props":643,"children":644},{},[645,668,692],{"type":45,"tag":91,"props":646,"children":647},{},[648,653,654,659,661,666],{"type":45,"tag":60,"props":649,"children":650},{},[651],{"type":51,"value":652},"Precedence",{"type":51,"value":591},{"type":45,"tag":60,"props":655,"children":656},{},[657],{"type":51,"value":658},"Service-level",{"type":51,"value":660}," variables ",{"type":45,"tag":60,"props":662,"children":663},{},[664],{"type":51,"value":665},"override",{"type":51,"value":667}," variables from linked groups with the same name.",{"type":45,"tag":91,"props":669,"children":670},{},[671,676,678,683,685,690],{"type":45,"tag":60,"props":672,"children":673},{},[674],{"type":51,"value":675},"Multiple groups",{"type":51,"value":677}," on one service: the group that was ",{"type":45,"tag":60,"props":679,"children":680},{},[681],{"type":51,"value":682},"most recently created",{"type":51,"value":684}," wins for overlapping keys. This ordering is ",{"type":45,"tag":60,"props":686,"children":687},{},[688],{"type":51,"value":689},"not documented as stable",{"type":51,"value":691},"—avoid relying on it; use distinct names or consolidate groups.",{"type":45,"tag":91,"props":693,"children":694},{},[695,697,702],{"type":51,"value":696},"Groups can be ",{"type":45,"tag":60,"props":698,"children":699},{},[700],{"type":51,"value":701},"scoped to a project environment",{"type":51,"value":703}," so staging and production differ without duplicating every service definition.",{"type":45,"tag":166,"props":705,"children":707},{"id":706},"blueprint-wiring-summary",[708],{"type":51,"value":709},"Blueprint Wiring (Summary)",{"type":45,"tag":54,"props":711,"children":712},{},[713,715,720,722,726],{"type":51,"value":714},"Full syntax, examples, and edge cases: ",{"type":45,"tag":102,"props":716,"children":718},{"className":717},[],[719],{"type":51,"value":403},{"type":51,"value":721},". Authoritative Blueprint docs: ",{"type":45,"tag":60,"props":723,"children":724},{},[725],{"type":51,"value":260},{"type":51,"value":727}," skill.",{"type":45,"tag":729,"props":730,"children":731},"table",{},[732,751],{"type":45,"tag":733,"props":734,"children":735},"thead",{},[736],{"type":45,"tag":737,"props":738,"children":739},"tr",{},[740,746],{"type":45,"tag":741,"props":742,"children":743},"th",{},[744],{"type":51,"value":745},"Mechanism",{"type":45,"tag":741,"props":747,"children":748},{},[749],{"type":51,"value":750},"Role",{"type":45,"tag":752,"props":753,"children":754},"tbody",{},[755,773,789,812,870,913],{"type":45,"tag":737,"props":756,"children":757},{},[758,768],{"type":45,"tag":759,"props":760,"children":761},"td",{},[762],{"type":45,"tag":102,"props":763,"children":765},{"className":764},[],[766],{"type":51,"value":767},"value",{"type":45,"tag":759,"props":769,"children":770},{},[771],{"type":51,"value":772},"Hardcoded string (non-secret config only)",{"type":45,"tag":737,"props":774,"children":775},{},[776,784],{"type":45,"tag":759,"props":777,"children":778},{},[779],{"type":45,"tag":102,"props":780,"children":782},{"className":781},[],[783],{"type":51,"value":496},{"type":45,"tag":759,"props":785,"children":786},{},[787],{"type":51,"value":788},"Platform-generated secret",{"type":45,"tag":737,"props":790,"children":791},{},[792,800],{"type":45,"tag":759,"props":793,"children":794},{},[795],{"type":45,"tag":102,"props":796,"children":798},{"className":797},[],[799],{"type":51,"value":235},{"type":45,"tag":759,"props":801,"children":802},{},[803,805,810],{"type":51,"value":804},"Dashboard prompt on ",{"type":45,"tag":60,"props":806,"children":807},{},[808],{"type":51,"value":809},"initial",{"type":51,"value":811}," create only",{"type":45,"tag":737,"props":813,"children":814},{},[815,823],{"type":45,"tag":759,"props":816,"children":817},{},[818],{"type":45,"tag":102,"props":819,"children":821},{"className":820},[],[822],{"type":51,"value":213},{"type":45,"tag":759,"props":824,"children":825},{},[826,828,834,835,841,842,848,849,855,856,862,863,869],{"type":51,"value":827},"Inject DB fields (",{"type":45,"tag":102,"props":829,"children":831},{"className":830},[],[832],{"type":51,"value":833},"connectionString",{"type":51,"value":215},{"type":45,"tag":102,"props":836,"children":838},{"className":837},[],[839],{"type":51,"value":840},"host",{"type":51,"value":215},{"type":45,"tag":102,"props":843,"children":845},{"className":844},[],[846],{"type":51,"value":847},"port",{"type":51,"value":215},{"type":45,"tag":102,"props":850,"children":852},{"className":851},[],[853],{"type":51,"value":854},"user",{"type":51,"value":215},{"type":45,"tag":102,"props":857,"children":859},{"className":858},[],[860],{"type":51,"value":861},"password",{"type":51,"value":215},{"type":45,"tag":102,"props":864,"children":866},{"className":865},[],[867],{"type":51,"value":868},"database",{"type":51,"value":378},{"type":45,"tag":737,"props":871,"children":872},{},[873,881],{"type":45,"tag":759,"props":874,"children":875},{},[876],{"type":45,"tag":102,"props":877,"children":879},{"className":878},[],[880],{"type":51,"value":221},{"type":45,"tag":759,"props":882,"children":883},{},[884,886,892,894,899,900,906,907],{"type":51,"value":885},"Key Value: ",{"type":45,"tag":102,"props":887,"children":889},{"className":888},[],[890],{"type":51,"value":891},"type: keyvalue",{"type":51,"value":893}," + properties; private\u002Fweb: ",{"type":45,"tag":102,"props":895,"children":897},{"className":896},[],[898],{"type":51,"value":840},{"type":51,"value":215},{"type":45,"tag":102,"props":901,"children":903},{"className":902},[],[904],{"type":51,"value":905},"hostport",{"type":51,"value":237},{"type":45,"tag":102,"props":908,"children":910},{"className":909},[],[911],{"type":51,"value":912},"envVarKey",{"type":45,"tag":737,"props":914,"children":915},{},[916,924],{"type":45,"tag":759,"props":917,"children":918},{},[919],{"type":45,"tag":102,"props":920,"children":922},{"className":921},[],[923],{"type":51,"value":228},{"type":45,"tag":759,"props":925,"children":926},{},[927],{"type":51,"value":928},"Link all vars from a named group",{"type":45,"tag":166,"props":930,"children":932},{"id":931},"platform-injected-variables",[933],{"type":51,"value":934},"Platform-Injected Variables",{"type":45,"tag":54,"props":936,"children":937},{},[938,940,945],{"type":51,"value":939},"Render sets ",{"type":45,"tag":60,"props":941,"children":942},{},[943],{"type":51,"value":944},"read-only",{"type":51,"value":946}," variables your app can read at runtime (and some at build). A concise list:",{"type":45,"tag":729,"props":948,"children":949},{},[950,966],{"type":45,"tag":733,"props":951,"children":952},{},[953],{"type":45,"tag":737,"props":954,"children":955},{},[956,961],{"type":45,"tag":741,"props":957,"children":958},{},[959],{"type":51,"value":960},"Variable",{"type":45,"tag":741,"props":962,"children":963},{},[964],{"type":51,"value":965},"Typical meaning",{"type":45,"tag":752,"props":967,"children":968},{},[969,992,1009,1026,1043,1060,1077,1094,1111,1128,1145,1174,1191,1208],{"type":45,"tag":737,"props":970,"children":971},{},[972,981],{"type":45,"tag":759,"props":973,"children":974},{},[975],{"type":45,"tag":102,"props":976,"children":978},{"className":977},[],[979],{"type":51,"value":980},"RENDER",{"type":45,"tag":759,"props":982,"children":983},{},[984,990],{"type":45,"tag":102,"props":985,"children":987},{"className":986},[],[988],{"type":51,"value":989},"\"true\"",{"type":51,"value":991}," when running on Render",{"type":45,"tag":737,"props":993,"children":994},{},[995,1004],{"type":45,"tag":759,"props":996,"children":997},{},[998],{"type":45,"tag":102,"props":999,"children":1001},{"className":1000},[],[1002],{"type":51,"value":1003},"RENDER_SERVICE_TYPE",{"type":45,"tag":759,"props":1005,"children":1006},{},[1007],{"type":51,"value":1008},"Service kind (e.g. web, worker)",{"type":45,"tag":737,"props":1010,"children":1011},{},[1012,1021],{"type":45,"tag":759,"props":1013,"children":1014},{},[1015],{"type":45,"tag":102,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":51,"value":1020},"RENDER_SERVICE_ID",{"type":45,"tag":759,"props":1022,"children":1023},{},[1024],{"type":51,"value":1025},"Service identifier",{"type":45,"tag":737,"props":1027,"children":1028},{},[1029,1038],{"type":45,"tag":759,"props":1030,"children":1031},{},[1032],{"type":45,"tag":102,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":51,"value":1037},"RENDER_SERVICE_NAME",{"type":45,"tag":759,"props":1039,"children":1040},{},[1041],{"type":51,"value":1042},"Human-readable service name",{"type":45,"tag":737,"props":1044,"children":1045},{},[1046,1055],{"type":45,"tag":759,"props":1047,"children":1048},{},[1049],{"type":45,"tag":102,"props":1050,"children":1052},{"className":1051},[],[1053],{"type":51,"value":1054},"RENDER_INSTANCE_ID",{"type":45,"tag":759,"props":1056,"children":1057},{},[1058],{"type":51,"value":1059},"Current instance",{"type":45,"tag":737,"props":1061,"children":1062},{},[1063,1072],{"type":45,"tag":759,"props":1064,"children":1065},{},[1066],{"type":45,"tag":102,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":51,"value":1071},"RENDER_EXTERNAL_URL",{"type":45,"tag":759,"props":1073,"children":1074},{},[1075],{"type":51,"value":1076},"Public URL (when applicable)",{"type":45,"tag":737,"props":1078,"children":1079},{},[1080,1089],{"type":45,"tag":759,"props":1081,"children":1082},{},[1083],{"type":45,"tag":102,"props":1084,"children":1086},{"className":1085},[],[1087],{"type":51,"value":1088},"RENDER_EXTERNAL_HOSTNAME",{"type":45,"tag":759,"props":1090,"children":1091},{},[1092],{"type":51,"value":1093},"Public hostname",{"type":45,"tag":737,"props":1095,"children":1096},{},[1097,1106],{"type":45,"tag":759,"props":1098,"children":1099},{},[1100],{"type":45,"tag":102,"props":1101,"children":1103},{"className":1102},[],[1104],{"type":51,"value":1105},"RENDER_DISCOVERY_SERVICE",{"type":45,"tag":759,"props":1107,"children":1108},{},[1109],{"type":51,"value":1110},"Service discovery hostname (private network)",{"type":45,"tag":737,"props":1112,"children":1113},{},[1114,1123],{"type":45,"tag":759,"props":1115,"children":1116},{},[1117],{"type":45,"tag":102,"props":1118,"children":1120},{"className":1119},[],[1121],{"type":51,"value":1122},"RENDER_GIT_COMMIT",{"type":45,"tag":759,"props":1124,"children":1125},{},[1126],{"type":51,"value":1127},"Deployed commit SHA",{"type":45,"tag":737,"props":1129,"children":1130},{},[1131,1140],{"type":45,"tag":759,"props":1132,"children":1133},{},[1134],{"type":45,"tag":102,"props":1135,"children":1137},{"className":1136},[],[1138],{"type":51,"value":1139},"RENDER_GIT_BRANCH",{"type":45,"tag":759,"props":1141,"children":1142},{},[1143],{"type":51,"value":1144},"Branch for this deploy",{"type":45,"tag":737,"props":1146,"children":1147},{},[1148,1157],{"type":45,"tag":759,"props":1149,"children":1150},{},[1151],{"type":45,"tag":102,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":51,"value":1156},"PORT",{"type":45,"tag":759,"props":1158,"children":1159},{},[1160,1162,1173],{"type":51,"value":1161},"HTTP port to bind (",{"type":45,"tag":60,"props":1163,"children":1164},{},[1165,1167],{"type":51,"value":1166},"default ",{"type":45,"tag":102,"props":1168,"children":1170},{"className":1169},[],[1171],{"type":51,"value":1172},"10000",{"type":51,"value":378},{"type":45,"tag":737,"props":1175,"children":1176},{},[1177,1186],{"type":45,"tag":759,"props":1178,"children":1179},{},[1180],{"type":45,"tag":102,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":51,"value":1185},"IS_PULL_REQUEST",{"type":45,"tag":759,"props":1187,"children":1188},{},[1189],{"type":51,"value":1190},"Preview deploy indicator",{"type":45,"tag":737,"props":1192,"children":1193},{},[1194,1203],{"type":45,"tag":759,"props":1195,"children":1196},{},[1197],{"type":45,"tag":102,"props":1198,"children":1200},{"className":1199},[],[1201],{"type":51,"value":1202},"RENDER_CPU_COUNT",{"type":45,"tag":759,"props":1204,"children":1205},{},[1206],{"type":51,"value":1207},"vCPU count for the instance",{"type":45,"tag":737,"props":1209,"children":1210},{},[1211,1220],{"type":45,"tag":759,"props":1212,"children":1213},{},[1214],{"type":45,"tag":102,"props":1215,"children":1217},{"className":1216},[],[1218],{"type":51,"value":1219},"RENDER_WEB_CONCURRENCY",{"type":45,"tag":759,"props":1221,"children":1222},{},[1223],{"type":51,"value":1224},"Suggested worker\u002Fprocess count hint",{"type":45,"tag":54,"props":1226,"children":1227},{},[1228,1230,1235,1237,1243],{"type":51,"value":1229},"Build vs runtime availability, language version env vars, and ",{"type":45,"tag":60,"props":1231,"children":1232},{},[1233],{"type":51,"value":1234},"WEB_CONCURRENCY",{"type":51,"value":1236}," defaults: ",{"type":45,"tag":102,"props":1238,"children":1240},{"className":1239},[],[1241],{"type":51,"value":1242},"references\u002Fplatform-variables.md",{"type":51,"value":164},{"type":45,"tag":166,"props":1245,"children":1247},{"id":1246},"runtime-specific-defaults",[1248],{"type":51,"value":1249},"Runtime-Specific Defaults",{"type":45,"tag":54,"props":1251,"children":1252},{},[1253,1255,1260],{"type":51,"value":1254},"Render and buildpacks may set defaults (verify in your service’s ",{"type":45,"tag":60,"props":1256,"children":1257},{},[1258],{"type":51,"value":1259},"Environment",{"type":51,"value":1261}," tab):",{"type":45,"tag":729,"props":1263,"children":1264},{},[1265,1281],{"type":45,"tag":733,"props":1266,"children":1267},{},[1268],{"type":45,"tag":737,"props":1269,"children":1270},{},[1271,1276],{"type":45,"tag":741,"props":1272,"children":1273},{},[1274],{"type":51,"value":1275},"Runtime",{"type":45,"tag":741,"props":1277,"children":1278},{},[1279],{"type":51,"value":1280},"Notable defaults",{"type":45,"tag":752,"props":1282,"children":1283},{},[1284,1304,1343,1370,1392],{"type":45,"tag":737,"props":1285,"children":1286},{},[1287,1295],{"type":45,"tag":759,"props":1288,"children":1289},{},[1290],{"type":45,"tag":60,"props":1291,"children":1292},{},[1293],{"type":51,"value":1294},"Node.js",{"type":45,"tag":759,"props":1296,"children":1297},{},[1298],{"type":45,"tag":102,"props":1299,"children":1301},{"className":1300},[],[1302],{"type":51,"value":1303},"NODE_ENV=production",{"type":45,"tag":737,"props":1305,"children":1306},{},[1307,1315],{"type":45,"tag":759,"props":1308,"children":1309},{},[1310],{"type":45,"tag":60,"props":1311,"children":1312},{},[1313],{"type":51,"value":1314},"Python",{"type":45,"tag":759,"props":1316,"children":1317},{},[1318,1324,1326,1332,1334],{"type":45,"tag":102,"props":1319,"children":1321},{"className":1320},[],[1322],{"type":51,"value":1323},"PYTHON_VERSION",{"type":51,"value":1325}," (pinned by build); Gunicorn-oriented images often set ",{"type":45,"tag":102,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":51,"value":1331},"GUNICORN_CMD_ARGS",{"type":51,"value":1333}," to bind ",{"type":45,"tag":60,"props":1335,"children":1336},{},[1337],{"type":45,"tag":102,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":51,"value":1342},"0.0.0.0:10000",{"type":45,"tag":737,"props":1344,"children":1345},{},[1346,1354],{"type":45,"tag":759,"props":1347,"children":1348},{},[1349],{"type":45,"tag":60,"props":1350,"children":1351},{},[1352],{"type":51,"value":1353},"Ruby",{"type":45,"tag":759,"props":1355,"children":1356},{},[1357,1363,1364],{"type":45,"tag":102,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":51,"value":1362},"RAILS_ENV=production",{"type":51,"value":215},{"type":45,"tag":102,"props":1365,"children":1367},{"className":1366},[],[1368],{"type":51,"value":1369},"RAILS_LOG_TO_STDOUT=true",{"type":45,"tag":737,"props":1371,"children":1372},{},[1373,1381],{"type":45,"tag":759,"props":1374,"children":1375},{},[1376],{"type":45,"tag":60,"props":1377,"children":1378},{},[1379],{"type":51,"value":1380},"Go",{"type":45,"tag":759,"props":1382,"children":1383},{},[1384,1390],{"type":45,"tag":102,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":51,"value":1389},"GO111MODULE=on",{"type":51,"value":1391}," (legacy modules flag; still seen on older stacks)",{"type":45,"tag":737,"props":1393,"children":1394},{},[1395,1403],{"type":45,"tag":759,"props":1396,"children":1397},{},[1398],{"type":45,"tag":60,"props":1399,"children":1400},{},[1401],{"type":51,"value":1402},"Rust",{"type":45,"tag":759,"props":1404,"children":1405},{},[1406,1412],{"type":45,"tag":102,"props":1407,"children":1409},{"className":1408},[],[1410],{"type":51,"value":1411},"ROCKET_PORT=10000",{"type":51,"value":1413}," (Rocket convention)",{"type":45,"tag":54,"props":1415,"children":1416},{},[1417,1419,1428,1430,1438],{"type":51,"value":1418},"Always bind HTTP servers to ",{"type":45,"tag":60,"props":1420,"children":1421},{},[1422],{"type":45,"tag":102,"props":1423,"children":1425},{"className":1424},[],[1426],{"type":51,"value":1427},"0.0.0.0",{"type":51,"value":1429}," and ",{"type":45,"tag":60,"props":1431,"children":1432},{},[1433],{"type":45,"tag":102,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":51,"value":1156},{"type":51,"value":1439}," (or the stack’s documented port env) unless using a static site or custom Docker entrypoint.",{"type":45,"tag":166,"props":1441,"children":1443},{"id":1442},"common-issues",[1444],{"type":51,"value":1445},"Common Issues",{"type":45,"tag":87,"props":1447,"children":1448},{},[1449,1466,1492,1510,1534],{"type":45,"tag":91,"props":1450,"children":1451},{},[1452,1457,1458,1464],{"type":45,"tag":60,"props":1453,"children":1454},{},[1455],{"type":51,"value":1456},"Everything is a string",{"type":51,"value":119},{"type":45,"tag":102,"props":1459,"children":1461},{"className":1460},[],[1462],{"type":51,"value":1463},"DEBUG=false",{"type":51,"value":1465}," is truthy in many parsers; use explicit comparison or typed config loaders.",{"type":45,"tag":91,"props":1467,"children":1468},{},[1469,1477,1479,1484,1486,1491],{"type":45,"tag":60,"props":1470,"children":1471},{},[1472],{"type":45,"tag":102,"props":1473,"children":1475},{"className":1474},[],[1476],{"type":51,"value":1234},{"type":51,"value":1478}," — Default behavior changed for services ",{"type":45,"tag":60,"props":1480,"children":1481},{},[1482],{"type":51,"value":1483},"created after December 8, 2025",{"type":51,"value":1485},". Compare with older services when debugging worker counts; see ",{"type":45,"tag":102,"props":1487,"children":1489},{"className":1488},[],[1490],{"type":51,"value":1242},{"type":51,"value":164},{"type":45,"tag":91,"props":1493,"children":1494},{},[1495,1508],{"type":45,"tag":60,"props":1496,"children":1497},{},[1498,1500,1506],{"type":51,"value":1499},"Undocumented ",{"type":45,"tag":102,"props":1501,"children":1503},{"className":1502},[],[1504],{"type":51,"value":1505},"RENDER_*",{"type":51,"value":1507}," variables",{"type":51,"value":1509}," — Names and semantics may change; do not depend on undocumented injection for critical logic.",{"type":45,"tag":91,"props":1511,"children":1512},{},[1513,1518,1520,1525,1527,1532],{"type":45,"tag":60,"props":1514,"children":1515},{},[1516],{"type":51,"value":1517},"Blueprint vs Dashboard drift",{"type":51,"value":1519}," — Editing only ",{"type":45,"tag":102,"props":1521,"children":1523},{"className":1522},[],[1524],{"type":51,"value":133},{"type":51,"value":1526}," does not retroactively apply ",{"type":45,"tag":102,"props":1528,"children":1530},{"className":1529},[],[1531],{"type":51,"value":235},{"type":51,"value":1533}," prompts on update; merge strategy for env keys is easy to misunderstand—test in a scratch service.",{"type":45,"tag":91,"props":1535,"children":1536},{},[1537,1542,1544,1552],{"type":45,"tag":60,"props":1538,"children":1539},{},[1540],{"type":51,"value":1541},"Secret file paths",{"type":51,"value":1543}," — Code must read ",{"type":45,"tag":60,"props":1545,"children":1546},{},[1547],{"type":45,"tag":102,"props":1548,"children":1550},{"className":1549},[],[1551],{"type":51,"value":580},{"type":51,"value":1553},"; wrong paths or missing mounts usually show as file-not-found at runtime.",{"type":45,"tag":166,"props":1555,"children":1557},{"id":1556},"references",[1558],{"type":51,"value":1559},"References",{"type":45,"tag":178,"props":1561,"children":1562},{},[1563,1581],{"type":45,"tag":91,"props":1564,"children":1565},{},[1566,1571,1573,1579],{"type":45,"tag":102,"props":1567,"children":1569},{"className":1568},[],[1570],{"type":51,"value":403},{"type":51,"value":1572}," — Complete Blueprint ",{"type":45,"tag":102,"props":1574,"children":1576},{"className":1575},[],[1577],{"type":51,"value":1578},"envVar",{"type":51,"value":1580}," wiring, YAML examples, precedence, edge cases",{"type":45,"tag":91,"props":1582,"children":1583},{},[1584,1589],{"type":45,"tag":102,"props":1585,"children":1587},{"className":1586},[],[1588],{"type":51,"value":1242},{"type":51,"value":1590}," — Injected variables (build vs runtime), language versions, concurrency, reading vars from code",{"type":45,"tag":166,"props":1592,"children":1594},{"id":1593},"related-skills",[1595],{"type":51,"value":1596},"Related Skills",{"type":45,"tag":178,"props":1598,"children":1599},{},[1600,1609,1618],{"type":45,"tag":91,"props":1601,"children":1602},{},[1603,1607],{"type":45,"tag":60,"props":1604,"children":1605},{},[1606],{"type":51,"value":260},{"type":51,"value":1608}," — Full Blueprint authoring, validation, multi-service layouts",{"type":45,"tag":91,"props":1610,"children":1611},{},[1612,1616],{"type":45,"tag":60,"props":1613,"children":1614},{},[1615],{"type":51,"value":267},{"type":51,"value":1617}," — First deploy, repo requirements, MCP vs YAML",{"type":45,"tag":91,"props":1619,"children":1620},{},[1621,1625],{"type":45,"tag":60,"props":1622,"children":1623},{},[1624],{"type":51,"value":274},{"type":51,"value":1626}," — Ports, health checks, scaling behavior tied to env-driven servers",{"items":1628,"total":1748},[1629,1647,1663,1675,1695,1717,1737],{"slug":1630,"name":1630,"fn":1631,"description":1632,"org":1633,"tags":1634,"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},[1635,1638,1641,1644],{"name":1636,"slug":1637,"type":15},"Accessibility","accessibility",{"name":1639,"slug":1640,"type":15},"Charts","charts",{"name":1642,"slug":1643,"type":15},"Data Visualization","data-visualization",{"name":1645,"slug":1646,"type":15},"Design","design",{"slug":1648,"name":1648,"fn":1649,"description":1650,"org":1651,"tags":1652,"stars":25,"repoUrl":26,"updatedAt":1662},"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},[1653,1656,1659],{"name":1654,"slug":1655,"type":15},"Agents","agents",{"name":1657,"slug":1658,"type":15},"Browser Automation","browser-automation",{"name":1660,"slug":1661,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1664,"name":1664,"fn":1665,"description":1666,"org":1667,"tags":1668,"stars":25,"repoUrl":26,"updatedAt":1674},"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},[1669,1670,1673],{"name":1657,"slug":1658,"type":15},{"name":1671,"slug":1672,"type":15},"Local Development","local-development",{"name":1660,"slug":1661,"type":15},"2026-04-06T18:41:17.526867",{"slug":1676,"name":1676,"fn":1677,"description":1678,"org":1679,"tags":1680,"stars":25,"repoUrl":26,"updatedAt":1694},"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},[1681,1682,1685,1688,1691],{"name":1654,"slug":1655,"type":15},{"name":1683,"slug":1684,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1686,"slug":1687,"type":15},"SDK","sdk",{"name":1689,"slug":1690,"type":15},"Serverless","serverless",{"name":1692,"slug":1693,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1696,"name":1696,"fn":1697,"description":1698,"org":1699,"tags":1700,"stars":25,"repoUrl":26,"updatedAt":1716},"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},[1701,1704,1707,1710,1713],{"name":1702,"slug":1703,"type":15},"Frontend","frontend",{"name":1705,"slug":1706,"type":15},"React","react",{"name":1708,"slug":1709,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1711,"slug":1712,"type":15},"UI Components","ui-components",{"name":1714,"slug":1715,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1718,"name":1718,"fn":1719,"description":1720,"org":1721,"tags":1722,"stars":25,"repoUrl":26,"updatedAt":1736},"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},[1723,1726,1729,1732,1735],{"name":1724,"slug":1725,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1727,"slug":1728,"type":15},"Cost Optimization","cost-optimization",{"name":1730,"slug":1731,"type":15},"LLM","llm",{"name":1733,"slug":1734,"type":15},"Performance","performance",{"name":1714,"slug":1715,"type":15},"2026-04-06T18:40:44.377464",{"slug":1738,"name":1738,"fn":1739,"description":1740,"org":1741,"tags":1742,"stars":25,"repoUrl":26,"updatedAt":1747},"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},[1743,1744,1746],{"name":1727,"slug":1728,"type":15},{"name":1745,"slug":868,"type":15},"Database",{"name":1730,"slug":1731,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1750,"total":1945},[1751,1772,1795,1812,1828,1843,1862,1874,1888,1902,1914,1929],{"slug":1752,"name":1752,"fn":1753,"description":1754,"org":1755,"tags":1756,"stars":1769,"repoUrl":1770,"updatedAt":1771},"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},[1757,1760,1763,1766],{"name":1758,"slug":1759,"type":15},"Documents","documents",{"name":1761,"slug":1762,"type":15},"Healthcare","healthcare",{"name":1764,"slug":1765,"type":15},"Insurance","insurance",{"name":1767,"slug":1768,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1773,"name":1773,"fn":1774,"description":1775,"org":1776,"tags":1777,"stars":1792,"repoUrl":1793,"updatedAt":1794},"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},[1778,1781,1783,1786,1789],{"name":1779,"slug":1780,"type":15},".NET","dotnet",{"name":1782,"slug":1773,"type":15},"ASP.NET Core",{"name":1784,"slug":1785,"type":15},"Blazor","blazor",{"name":1787,"slug":1788,"type":15},"C#","csharp",{"name":1790,"slug":1791,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1796,"name":1796,"fn":1797,"description":1798,"org":1799,"tags":1800,"stars":1792,"repoUrl":1793,"updatedAt":1811},"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},[1801,1804,1807,1810],{"name":1802,"slug":1803,"type":15},"Apps SDK","apps-sdk",{"name":1805,"slug":1806,"type":15},"ChatGPT","chatgpt",{"name":1808,"slug":1809,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1813,"name":1813,"fn":1814,"description":1815,"org":1816,"tags":1817,"stars":1792,"repoUrl":1793,"updatedAt":1827},"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},[1818,1821,1824],{"name":1819,"slug":1820,"type":15},"API Development","api-development",{"name":1822,"slug":1823,"type":15},"CLI","cli",{"name":1825,"slug":1826,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1829,"name":1829,"fn":1830,"description":1831,"org":1832,"tags":1833,"stars":1792,"repoUrl":1793,"updatedAt":1842},"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},[1834,1837,1840,1841],{"name":1835,"slug":1836,"type":15},"Cloudflare","cloudflare",{"name":1838,"slug":1839,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1683,"slug":1684,"type":15},{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":1844,"name":1844,"fn":1845,"description":1846,"org":1847,"tags":1848,"stars":1792,"repoUrl":1793,"updatedAt":1861},"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},[1849,1852,1855,1858],{"name":1850,"slug":1851,"type":15},"Productivity","productivity",{"name":1853,"slug":1854,"type":15},"Project Management","project-management",{"name":1856,"slug":1857,"type":15},"Strategy","strategy",{"name":1859,"slug":1860,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1863,"name":1863,"fn":1864,"description":1865,"org":1866,"tags":1867,"stars":1792,"repoUrl":1793,"updatedAt":1873},"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},[1868,1869,1871,1872],{"name":1645,"slug":1646,"type":15},{"name":1870,"slug":1863,"type":15},"Figma",{"name":1702,"slug":1703,"type":15},{"name":1808,"slug":1809,"type":15},"2026-04-12T05:06:47.939943",{"slug":1875,"name":1875,"fn":1876,"description":1877,"org":1878,"tags":1879,"stars":1792,"repoUrl":1793,"updatedAt":1887},"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},[1880,1881,1884,1885,1886],{"name":1645,"slug":1646,"type":15},{"name":1882,"slug":1883,"type":15},"Design System","design-system",{"name":1870,"slug":1863,"type":15},{"name":1702,"slug":1703,"type":15},{"name":1711,"slug":1712,"type":15},"2026-05-10T05:59:52.971881",{"slug":1889,"name":1889,"fn":1890,"description":1891,"org":1892,"tags":1893,"stars":1792,"repoUrl":1793,"updatedAt":1901},"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},[1894,1895,1896,1899,1900],{"name":1645,"slug":1646,"type":15},{"name":1882,"slug":1883,"type":15},{"name":1897,"slug":1898,"type":15},"Documentation","documentation",{"name":1870,"slug":1863,"type":15},{"name":1702,"slug":1703,"type":15},"2026-05-16T06:07:47.821474",{"slug":1903,"name":1903,"fn":1904,"description":1905,"org":1906,"tags":1907,"stars":1792,"repoUrl":1793,"updatedAt":1913},"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},[1908,1909,1910,1911,1912],{"name":1645,"slug":1646,"type":15},{"name":1870,"slug":1863,"type":15},{"name":1702,"slug":1703,"type":15},{"name":1711,"slug":1712,"type":15},{"name":1790,"slug":1791,"type":15},"2026-05-16T06:07:40.583615",{"slug":1915,"name":1915,"fn":1916,"description":1917,"org":1918,"tags":1919,"stars":1792,"repoUrl":1793,"updatedAt":1928},"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},[1920,1923,1924,1927],{"name":1921,"slug":1922,"type":15},"Animation","animation",{"name":1825,"slug":1826,"type":15},{"name":1925,"slug":1926,"type":15},"Creative","creative",{"name":1645,"slug":1646,"type":15},"2026-05-02T05:31:48.48485",{"slug":1930,"name":1930,"fn":1931,"description":1932,"org":1933,"tags":1934,"stars":1792,"repoUrl":1793,"updatedAt":1944},"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},[1935,1936,1937,1940,1943],{"name":1925,"slug":1926,"type":15},{"name":1645,"slug":1646,"type":15},{"name":1938,"slug":1939,"type":15},"Image Generation","image-generation",{"name":1941,"slug":1942,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]