[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-blueprints":3,"mdc-jzf0r4-key":36,"related-repo-openai-render-blueprints":3141,"related-org-openai-render-blueprints":3263},{"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-blueprints","author and validate Render infrastructure blueprints","Authors and validates render.yaml Blueprints for Render infrastructure. Use when the user needs to write or edit a render.yaml, wire services together with fromDatabase\u002FfromService\u002FfromGroup, set up projects and environments for multi-service apps, configure preview environments, validate against the schema, or fix immutable field errors. Trigger terms: render.yaml, Blueprint, IaC, fromDatabase, fromService, envVarGroups, previews, projects, environments.",{"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},"YAML","yaml",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Infrastructure","infrastructure",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102","MIT",465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Frender\u002Fskills\u002Frender-blueprints","---\nname: render-blueprints\ndescription: >-\n  Authors and validates render.yaml Blueprints for Render infrastructure. Use\n  when the user needs to write or edit a render.yaml, wire services together\n  with fromDatabase\u002FfromService\u002FfromGroup, set up projects and environments\n  for multi-service apps, configure preview environments, validate against\n  the schema, or fix immutable field errors. Trigger terms: render.yaml,\n  Blueprint, IaC, fromDatabase, fromService, envVarGroups, previews, projects,\n  environments.\nlicense: MIT\ncompatibility: >-\n  Git repository on GitHub, GitLab, or Bitbucket for Blueprint sync. Render CLI\n  v2.7.0+ recommended for `render blueprints validate`. IDEs can validate\n  against the public JSON Schema URL below.\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: configuration\n---\n\n# Render Blueprints (render.yaml)\n\nBlueprints define Render infrastructure as YAML (commonly `render.yaml` at the repo root). This skill focuses on **authoring**, **wiring**, **projects\u002Fenvironments**, **previews**, **validation**, and **immutable fields**. Heavy detail lives under `references\u002F`.\n\n## When to Use\n\nApply this skill when the user:\n\n- Creates or edits a `render.yaml` \u002F Blueprint\n- Wires databases, private services, or Key Value into app env vars\n- Groups services with **projects** and **environments**\n- Configures **preview environments** for pull requests\n- Validates YAML against Render’s schema or CLI\n- Asks what can or cannot change after a resource is created\n\nFor end-to-end deploy flows and MCP\u002FCLI operations, see **render-deploy**. For env var strategy outside Blueprint syntax, see **render-env-vars**. For Docker-specific Blueprint fields, see **render-docker**.\n\n## Blueprint Structure\n\n### Top-level keys\n\n| Key | Purpose |\n|-----|---------|\n| `services` | Web, worker, cron, private service, Key Value, static (via `web` + `runtime: static`) |\n| `databases` | Managed PostgreSQL instances |\n| `envVarGroups` | Reusable env var sets attached to services |\n| `projects` | Optional grouping; contains `environments` and service lists |\n| `previews` | Defaults for PR preview environments |\n\nA Blueprint may also use patterns like **ungrouped** resources vs **environment-scoped** lists, depending on whether you adopt the projects model. Avoid duplicating the same logical resource in multiple places (see `references\u002Fcommon-mistakes.md`).\n\n### Schema and IDE validation\n\n- **JSON Schema URL:** `https:\u002F\u002Frender.com\u002Fschema\u002Frender.yaml.json`\n- Configure your editor to associate `render.yaml` with that schema for completions and diagnostics.\n\n### Minimal example: web + PostgreSQL\n\n```yaml\ndatabases:\n  - name: mydb\n    plan: basic-256mb\n    region: oregon\n\nservices:\n  - type: web\n    name: api\n    runtime: node\n    region: oregon\n    plan: starter\n    buildCommand: npm ci && npm run build\n    startCommand: npm start\n    envVars:\n      - key: DATABASE_URL\n        fromDatabase:\n          name: mydb\n          property: connectionString\n```\n\n## Service Types\n\n| `type` | Role |\n|--------|------|\n| `web` | Public HTTP service (use `runtime: static` for static sites) |\n| `pserv` | Private service (internal HTTP\u002FTCP; not public) |\n| `worker` | Long-running background process |\n| `cron` | Scheduled job (`schedule` required) |\n| `keyvalue` | Managed Key Value (Redis-compatible); alias **`redis`** accepted in Blueprints |\n\n## Runtimes\n\nCommon `runtime` values: **`node`**, **`python`**, **`go`**, **`ruby`**, **`rust`**, **`elixir`**, **`docker`**, **`image`**, **`static`**.\n\n- **`docker`**: Build from `Dockerfile` (see `dockerfilePath`, `dockerContext`, `dockerCommand`).\n- **`image`**: Run a prebuilt container image (registry + optional `registryCredential`).\n- **`static`**: Static site; requires `staticPublishPath` and build output paths (see references).\n\n## Cross-Service Wiring\n\nEnv vars under `envVars` (and analogous patterns in groups) can pull values from other resources instead of hardcoding secrets.\n\n### `fromDatabase`\n\nReference a database in `databases:` by `name`. Properties include:\n\n- `connectionString`, `host`, `port`, `user`, `password`, `database`\n\n### `fromService`\n\nReference a service by `name`. Typical properties:\n\n- `host`, `port`, `hostport`, `connectionString`, `envVarKey`\n\nWhich properties are valid depends on target service type (e.g. Key Value vs `pserv`). See `references\u002Fwiring-patterns.md`.\n\n### `fromGroup`\n\nAttach shared vars from `envVarGroups` (by group `name`).\n\n### Other env var keys\n\n- **`value`**: Literal string.\n- **`generateValue`**: Let Render generate a random secret (password\u002FAPI key).\n- **`sync`**: Set `sync: false` for secrets that should not sync from repo on every update (see edge cases in wiring reference).\n\nFull patterns and combinations: `references\u002Fwiring-patterns.md`.\n\n## Projects and Environments\n\nFor multi-service apps, use the **`projects`\u002F`environments`** pattern instead of flat top-level `services`\u002F`databases`. This groups all related resources into a single Render project, supports multiple environments (production, staging), and enables environment-scoped configuration.\n\n```yaml\nprojects:\n  - name: my-app\n    environments:\n      - name: production\n        services:\n          - type: web\n            name: api\n            runtime: node\n            plan: standard\n            buildCommand: npm ci && npm run build\n            startCommand: npm start\n            envVars:\n              - key: DATABASE_URL\n                fromDatabase:\n                  name: db\n                  property: connectionString\n              - key: REDIS_URL\n                fromService:\n                  type: keyvalue\n                  name: cache\n                  property: connectionString\n              - key: API_SECRET\n                sync: false\n\n          - type: worker\n            name: jobs\n            runtime: node\n            plan: starter\n            buildCommand: npm ci\n            startCommand: node worker.js\n            envVars:\n              - key: DATABASE_URL\n                fromDatabase:\n                  name: db\n                  property: connectionString\n              - key: REDIS_URL\n                fromService:\n                  type: keyvalue\n                  name: cache\n                  property: connectionString\n\n          - type: keyvalue\n            name: cache\n            plan: starter\n            maxmemoryPolicy: noeviction\n            ipAllowList:\n              - source: 0.0.0.0\u002F0\n                description: everywhere\n\n        databases:\n          - name: db\n            plan: starter\n```\n\nKey rules:\n\n- Each environment owns its `services` and `databases` lists.\n- Do not define the same resource at both the root level and inside an environment.\n- `envVarGroups` can be scoped to a project environment or shared across the workspace.\n- Environment isolation (Professional+) can block cross-environment private network traffic.\n\nFor single-service apps, flat top-level `services`\u002F`databases` is fine. Reach for the projects pattern when you have multiple services, need staging\u002Fproduction separation, or want environment-scoped env groups.\n\n## Preview Environments\n\nTop-level `previews` controls PR previews:\n\n- **`previews.generation`**: `off` (default), `manual`, or `automatic`\n- **`previews.expireAfterDays`**: Auto-delete preview stacks after N days\n\nServices can override preview behavior (e.g. service-level `previews.generation`). Limitations: autoscaling behavior, `sync: false` vars, `previewPlan` \u002F flexible instance constraints—see `references\u002Fpreview-environments.md`.\n\n## Validation\n\n```bash\nrender blueprints validate\n```\n\nRequires **Render CLI v2.7.0+**. Run from the repo root (or pass the appropriate path options your CLI version supports). Fix schema and semantic errors before merging Blueprint changes.\n\nOfficial schema: `https:\u002F\u002Frender.com\u002Fschema\u002Frender.yaml.json`\n\n## Immutable Fields\n\n**CRITICAL:** Some fields cannot change after the resource is created. Edits may be rejected or require replacement resources.\n\n### Services\n\n- **`type`**: Cannot change (e.g. web → worker).\n- **`runtime`**: Cannot change (e.g. node → docker).\n\n### Databases\n\nCannot change after creation:\n\n- `name` (logical Blueprint\u002Fdatabase identifier in this context)\n- `databaseName`\n- `user`\n- `region`\n- `postgresMajorVersion`\n\nPlan other fields (disk, HA, replicas) carefully up front; consult Render docs for fields that can scale vs require recreation.\n\n## Key Fields (Quick Map)\n\n| Area | Fields |\n|------|--------|\n| Plans | `plan`, `previewPlan` (previews), database `plan` |\n| Build\u002Frun | `buildCommand`, `startCommand`, `preDeployCommand`, `rootDir` |\n| Deploy | `autoDeployTrigger`: `commit`, `checksPass`, or `off` |\n| Lifecycle | `maxShutdownDelaySeconds`: 1–300, default **30** |\n| HTTP | `healthCheckPath`, `domains` |\n| Storage | `disk` (`name`, `mountPath`, `sizeGB`) |\n| Scale | `scaling` \u002F `numInstances` (see references) |\n| Monorepo | `buildFilter` (`paths`, `ignoredPaths`) |\n| Docker | `dockerfilePath`, `dockerContext`, `dockerCommand`, `registryCredential` |\n\nDeprecated names to avoid: `env` (use `runtime`), `redis` (use `keyvalue`), `autoDeploy` (use `autoDeployTrigger`), `pullRequestPreviewsEnabled` (use `previews.generation`). Details: `references\u002Fcommon-mistakes.md`.\n\n## References\n\n| Document | Contents |\n|----------|----------|\n| `references\u002Ffield-reference.md` | YAML fields by service type, database, groups, projects, previews, scaling, disk, static, Key Value |\n| `references\u002Fwiring-patterns.md` | `fromDatabase` \u002F `fromService` \u002F `fromGroup` examples, `sync: false`, `generateValue`, combinations |\n| `references\u002Fcommon-mistakes.md` | Branch + previews, `buildFilter`, replicas, duplicates, preview plans, wiring mistakes |\n| `references\u002Fpreview-environments.md` | `previews.generation`, expiry, overrides, `previewPlan`, disks, PR workflow |\n\n## Related Skills\n\n- **render-deploy** — Deploy flows, Blueprint vs direct create, MCP\u002Fdeeplinks\n- **render-env-vars** — Env var strategy, secrets, Dashboard vs Blueprint\n- **render-docker** — Dockerfile-backed services and image runtime nuances\n",{"data":37,"body":42},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Git repository on GitHub, GitLab, or Bitbucket for Blueprint sync. Render CLI v2.7.0+ recommended for `render blueprints validate`. IDEs can validate against the public JSON Schema URL below.",{"author":13,"version":40,"category":41},"1.0.0","configuration",{"type":43,"children":44},"root",[45,54,117,124,129,190,215,221,228,362,389,395,426,432,753,759,895,901,1004,1090,1096,1109,1119,1140,1187,1197,1209,1246,1265,1275,1293,1299,1352,1363,1369,1404,2243,2248,2289,2307,2313,2325,2378,2412,2417,2444,2456,2466,2472,2482,2487,2516,2521,2526,2574,2579,2585,2892,2957,2963,3099,3105,3135],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"render-blueprints-renderyaml",[51],{"type":52,"value":53},"text","Render Blueprints (render.yaml)",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58,60,67,69,75,77,82,83,88,89,94,95,100,102,107,109,115],{"type":52,"value":59},"Blueprints define Render infrastructure as YAML (commonly ",{"type":46,"tag":61,"props":62,"children":64},"code",{"className":63},[],[65],{"type":52,"value":66},"render.yaml",{"type":52,"value":68}," at the repo root). This skill focuses on ",{"type":46,"tag":70,"props":71,"children":72},"strong",{},[73],{"type":52,"value":74},"authoring",{"type":52,"value":76},", ",{"type":46,"tag":70,"props":78,"children":79},{},[80],{"type":52,"value":81},"wiring",{"type":52,"value":76},{"type":46,"tag":70,"props":84,"children":85},{},[86],{"type":52,"value":87},"projects\u002Fenvironments",{"type":52,"value":76},{"type":46,"tag":70,"props":90,"children":91},{},[92],{"type":52,"value":93},"previews",{"type":52,"value":76},{"type":46,"tag":70,"props":96,"children":97},{},[98],{"type":52,"value":99},"validation",{"type":52,"value":101},", and ",{"type":46,"tag":70,"props":103,"children":104},{},[105],{"type":52,"value":106},"immutable fields",{"type":52,"value":108},". Heavy detail lives under ",{"type":46,"tag":61,"props":110,"children":112},{"className":111},[],[113],{"type":52,"value":114},"references\u002F",{"type":52,"value":116},".",{"type":46,"tag":118,"props":119,"children":121},"h2",{"id":120},"when-to-use",[122],{"type":52,"value":123},"When to Use",{"type":46,"tag":55,"props":125,"children":126},{},[127],{"type":52,"value":128},"Apply this skill when the user:",{"type":46,"tag":130,"props":131,"children":132},"ul",{},[133,146,151,168,180,185],{"type":46,"tag":134,"props":135,"children":136},"li",{},[137,139,144],{"type":52,"value":138},"Creates or edits a ",{"type":46,"tag":61,"props":140,"children":142},{"className":141},[],[143],{"type":52,"value":66},{"type":52,"value":145}," \u002F Blueprint",{"type":46,"tag":134,"props":147,"children":148},{},[149],{"type":52,"value":150},"Wires databases, private services, or Key Value into app env vars",{"type":46,"tag":134,"props":152,"children":153},{},[154,156,161,163],{"type":52,"value":155},"Groups services with ",{"type":46,"tag":70,"props":157,"children":158},{},[159],{"type":52,"value":160},"projects",{"type":52,"value":162}," and ",{"type":46,"tag":70,"props":164,"children":165},{},[166],{"type":52,"value":167},"environments",{"type":46,"tag":134,"props":169,"children":170},{},[171,173,178],{"type":52,"value":172},"Configures ",{"type":46,"tag":70,"props":174,"children":175},{},[176],{"type":52,"value":177},"preview environments",{"type":52,"value":179}," for pull requests",{"type":46,"tag":134,"props":181,"children":182},{},[183],{"type":52,"value":184},"Validates YAML against Render’s schema or CLI",{"type":46,"tag":134,"props":186,"children":187},{},[188],{"type":52,"value":189},"Asks what can or cannot change after a resource is created",{"type":46,"tag":55,"props":191,"children":192},{},[193,195,200,202,207,209,214],{"type":52,"value":194},"For end-to-end deploy flows and MCP\u002FCLI operations, see ",{"type":46,"tag":70,"props":196,"children":197},{},[198],{"type":52,"value":199},"render-deploy",{"type":52,"value":201},". For env var strategy outside Blueprint syntax, see ",{"type":46,"tag":70,"props":203,"children":204},{},[205],{"type":52,"value":206},"render-env-vars",{"type":52,"value":208},". For Docker-specific Blueprint fields, see ",{"type":46,"tag":70,"props":210,"children":211},{},[212],{"type":52,"value":213},"render-docker",{"type":52,"value":116},{"type":46,"tag":118,"props":216,"children":218},{"id":217},"blueprint-structure",[219],{"type":52,"value":220},"Blueprint Structure",{"type":46,"tag":222,"props":223,"children":225},"h3",{"id":224},"top-level-keys",[226],{"type":52,"value":227},"Top-level keys",{"type":46,"tag":229,"props":230,"children":231},"table",{},[232,251],{"type":46,"tag":233,"props":234,"children":235},"thead",{},[236],{"type":46,"tag":237,"props":238,"children":239},"tr",{},[240,246],{"type":46,"tag":241,"props":242,"children":243},"th",{},[244],{"type":52,"value":245},"Key",{"type":46,"tag":241,"props":247,"children":248},{},[249],{"type":52,"value":250},"Purpose",{"type":46,"tag":252,"props":253,"children":254},"tbody",{},[255,289,306,323,346],{"type":46,"tag":237,"props":256,"children":257},{},[258,268],{"type":46,"tag":259,"props":260,"children":261},"td",{},[262],{"type":46,"tag":61,"props":263,"children":265},{"className":264},[],[266],{"type":52,"value":267},"services",{"type":46,"tag":259,"props":269,"children":270},{},[271,273,279,281,287],{"type":52,"value":272},"Web, worker, cron, private service, Key Value, static (via ",{"type":46,"tag":61,"props":274,"children":276},{"className":275},[],[277],{"type":52,"value":278},"web",{"type":52,"value":280}," + ",{"type":46,"tag":61,"props":282,"children":284},{"className":283},[],[285],{"type":52,"value":286},"runtime: static",{"type":52,"value":288},")",{"type":46,"tag":237,"props":290,"children":291},{},[292,301],{"type":46,"tag":259,"props":293,"children":294},{},[295],{"type":46,"tag":61,"props":296,"children":298},{"className":297},[],[299],{"type":52,"value":300},"databases",{"type":46,"tag":259,"props":302,"children":303},{},[304],{"type":52,"value":305},"Managed PostgreSQL instances",{"type":46,"tag":237,"props":307,"children":308},{},[309,318],{"type":46,"tag":259,"props":310,"children":311},{},[312],{"type":46,"tag":61,"props":313,"children":315},{"className":314},[],[316],{"type":52,"value":317},"envVarGroups",{"type":46,"tag":259,"props":319,"children":320},{},[321],{"type":52,"value":322},"Reusable env var sets attached to services",{"type":46,"tag":237,"props":324,"children":325},{},[326,334],{"type":46,"tag":259,"props":327,"children":328},{},[329],{"type":46,"tag":61,"props":330,"children":332},{"className":331},[],[333],{"type":52,"value":160},{"type":46,"tag":259,"props":335,"children":336},{},[337,339,344],{"type":52,"value":338},"Optional grouping; contains ",{"type":46,"tag":61,"props":340,"children":342},{"className":341},[],[343],{"type":52,"value":167},{"type":52,"value":345}," and service lists",{"type":46,"tag":237,"props":347,"children":348},{},[349,357],{"type":46,"tag":259,"props":350,"children":351},{},[352],{"type":46,"tag":61,"props":353,"children":355},{"className":354},[],[356],{"type":52,"value":93},{"type":46,"tag":259,"props":358,"children":359},{},[360],{"type":52,"value":361},"Defaults for PR preview environments",{"type":46,"tag":55,"props":363,"children":364},{},[365,367,372,374,379,381,387],{"type":52,"value":366},"A Blueprint may also use patterns like ",{"type":46,"tag":70,"props":368,"children":369},{},[370],{"type":52,"value":371},"ungrouped",{"type":52,"value":373}," resources vs ",{"type":46,"tag":70,"props":375,"children":376},{},[377],{"type":52,"value":378},"environment-scoped",{"type":52,"value":380}," lists, depending on whether you adopt the projects model. Avoid duplicating the same logical resource in multiple places (see ",{"type":46,"tag":61,"props":382,"children":384},{"className":383},[],[385],{"type":52,"value":386},"references\u002Fcommon-mistakes.md",{"type":52,"value":388},").",{"type":46,"tag":222,"props":390,"children":392},{"id":391},"schema-and-ide-validation",[393],{"type":52,"value":394},"Schema and IDE validation",{"type":46,"tag":130,"props":396,"children":397},{},[398,414],{"type":46,"tag":134,"props":399,"children":400},{},[401,406,408],{"type":46,"tag":70,"props":402,"children":403},{},[404],{"type":52,"value":405},"JSON Schema URL:",{"type":52,"value":407}," ",{"type":46,"tag":61,"props":409,"children":411},{"className":410},[],[412],{"type":52,"value":413},"https:\u002F\u002Frender.com\u002Fschema\u002Frender.yaml.json",{"type":46,"tag":134,"props":415,"children":416},{},[417,419,424],{"type":52,"value":418},"Configure your editor to associate ",{"type":46,"tag":61,"props":420,"children":422},{"className":421},[],[423],{"type":52,"value":66},{"type":52,"value":425}," with that schema for completions and diagnostics.",{"type":46,"tag":222,"props":427,"children":429},{"id":428},"minimal-example-web-postgresql",[430],{"type":52,"value":431},"Minimal example: web + PostgreSQL",{"type":46,"tag":433,"props":434,"children":438},"pre",{"className":435,"code":436,"language":18,"meta":437,"style":437},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","databases:\n  - name: mydb\n    plan: basic-256mb\n    region: oregon\n\nservices:\n  - type: web\n    name: api\n    runtime: node\n    region: oregon\n    plan: starter\n    buildCommand: npm ci && npm run build\n    startCommand: npm start\n    envVars:\n      - key: DATABASE_URL\n        fromDatabase:\n          name: mydb\n          property: connectionString\n","",[439],{"type":46,"tag":61,"props":440,"children":441},{"__ignoreMap":437},[442,459,484,502,520,530,542,564,582,600,616,633,651,669,682,705,718,735],{"type":46,"tag":443,"props":444,"children":447},"span",{"class":445,"line":446},"line",1,[448,453],{"type":46,"tag":443,"props":449,"children":451},{"style":450},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[452],{"type":52,"value":300},{"type":46,"tag":443,"props":454,"children":456},{"style":455},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[457],{"type":52,"value":458},":\n",{"type":46,"tag":443,"props":460,"children":462},{"class":445,"line":461},2,[463,468,473,478],{"type":46,"tag":443,"props":464,"children":465},{"style":455},[466],{"type":52,"value":467},"  -",{"type":46,"tag":443,"props":469,"children":470},{"style":450},[471],{"type":52,"value":472}," name",{"type":46,"tag":443,"props":474,"children":475},{"style":455},[476],{"type":52,"value":477},":",{"type":46,"tag":443,"props":479,"children":481},{"style":480},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[482],{"type":52,"value":483}," mydb\n",{"type":46,"tag":443,"props":485,"children":487},{"class":445,"line":486},3,[488,493,497],{"type":46,"tag":443,"props":489,"children":490},{"style":450},[491],{"type":52,"value":492},"    plan",{"type":46,"tag":443,"props":494,"children":495},{"style":455},[496],{"type":52,"value":477},{"type":46,"tag":443,"props":498,"children":499},{"style":480},[500],{"type":52,"value":501}," basic-256mb\n",{"type":46,"tag":443,"props":503,"children":505},{"class":445,"line":504},4,[506,511,515],{"type":46,"tag":443,"props":507,"children":508},{"style":450},[509],{"type":52,"value":510},"    region",{"type":46,"tag":443,"props":512,"children":513},{"style":455},[514],{"type":52,"value":477},{"type":46,"tag":443,"props":516,"children":517},{"style":480},[518],{"type":52,"value":519}," oregon\n",{"type":46,"tag":443,"props":521,"children":523},{"class":445,"line":522},5,[524],{"type":46,"tag":443,"props":525,"children":527},{"emptyLinePlaceholder":526},true,[528],{"type":52,"value":529},"\n",{"type":46,"tag":443,"props":531,"children":533},{"class":445,"line":532},6,[534,538],{"type":46,"tag":443,"props":535,"children":536},{"style":450},[537],{"type":52,"value":267},{"type":46,"tag":443,"props":539,"children":540},{"style":455},[541],{"type":52,"value":458},{"type":46,"tag":443,"props":543,"children":545},{"class":445,"line":544},7,[546,550,555,559],{"type":46,"tag":443,"props":547,"children":548},{"style":455},[549],{"type":52,"value":467},{"type":46,"tag":443,"props":551,"children":552},{"style":450},[553],{"type":52,"value":554}," type",{"type":46,"tag":443,"props":556,"children":557},{"style":455},[558],{"type":52,"value":477},{"type":46,"tag":443,"props":560,"children":561},{"style":480},[562],{"type":52,"value":563}," web\n",{"type":46,"tag":443,"props":565,"children":567},{"class":445,"line":566},8,[568,573,577],{"type":46,"tag":443,"props":569,"children":570},{"style":450},[571],{"type":52,"value":572},"    name",{"type":46,"tag":443,"props":574,"children":575},{"style":455},[576],{"type":52,"value":477},{"type":46,"tag":443,"props":578,"children":579},{"style":480},[580],{"type":52,"value":581}," api\n",{"type":46,"tag":443,"props":583,"children":585},{"class":445,"line":584},9,[586,591,595],{"type":46,"tag":443,"props":587,"children":588},{"style":450},[589],{"type":52,"value":590},"    runtime",{"type":46,"tag":443,"props":592,"children":593},{"style":455},[594],{"type":52,"value":477},{"type":46,"tag":443,"props":596,"children":597},{"style":480},[598],{"type":52,"value":599}," node\n",{"type":46,"tag":443,"props":601,"children":603},{"class":445,"line":602},10,[604,608,612],{"type":46,"tag":443,"props":605,"children":606},{"style":450},[607],{"type":52,"value":510},{"type":46,"tag":443,"props":609,"children":610},{"style":455},[611],{"type":52,"value":477},{"type":46,"tag":443,"props":613,"children":614},{"style":480},[615],{"type":52,"value":519},{"type":46,"tag":443,"props":617,"children":619},{"class":445,"line":618},11,[620,624,628],{"type":46,"tag":443,"props":621,"children":622},{"style":450},[623],{"type":52,"value":492},{"type":46,"tag":443,"props":625,"children":626},{"style":455},[627],{"type":52,"value":477},{"type":46,"tag":443,"props":629,"children":630},{"style":480},[631],{"type":52,"value":632}," starter\n",{"type":46,"tag":443,"props":634,"children":636},{"class":445,"line":635},12,[637,642,646],{"type":46,"tag":443,"props":638,"children":639},{"style":450},[640],{"type":52,"value":641},"    buildCommand",{"type":46,"tag":443,"props":643,"children":644},{"style":455},[645],{"type":52,"value":477},{"type":46,"tag":443,"props":647,"children":648},{"style":480},[649],{"type":52,"value":650}," npm ci && npm run build\n",{"type":46,"tag":443,"props":652,"children":654},{"class":445,"line":653},13,[655,660,664],{"type":46,"tag":443,"props":656,"children":657},{"style":450},[658],{"type":52,"value":659},"    startCommand",{"type":46,"tag":443,"props":661,"children":662},{"style":455},[663],{"type":52,"value":477},{"type":46,"tag":443,"props":665,"children":666},{"style":480},[667],{"type":52,"value":668}," npm start\n",{"type":46,"tag":443,"props":670,"children":672},{"class":445,"line":671},14,[673,678],{"type":46,"tag":443,"props":674,"children":675},{"style":450},[676],{"type":52,"value":677},"    envVars",{"type":46,"tag":443,"props":679,"children":680},{"style":455},[681],{"type":52,"value":458},{"type":46,"tag":443,"props":683,"children":685},{"class":445,"line":684},15,[686,691,696,700],{"type":46,"tag":443,"props":687,"children":688},{"style":455},[689],{"type":52,"value":690},"      -",{"type":46,"tag":443,"props":692,"children":693},{"style":450},[694],{"type":52,"value":695}," key",{"type":46,"tag":443,"props":697,"children":698},{"style":455},[699],{"type":52,"value":477},{"type":46,"tag":443,"props":701,"children":702},{"style":480},[703],{"type":52,"value":704}," DATABASE_URL\n",{"type":46,"tag":443,"props":706,"children":708},{"class":445,"line":707},16,[709,714],{"type":46,"tag":443,"props":710,"children":711},{"style":450},[712],{"type":52,"value":713},"        fromDatabase",{"type":46,"tag":443,"props":715,"children":716},{"style":455},[717],{"type":52,"value":458},{"type":46,"tag":443,"props":719,"children":721},{"class":445,"line":720},17,[722,727,731],{"type":46,"tag":443,"props":723,"children":724},{"style":450},[725],{"type":52,"value":726},"          name",{"type":46,"tag":443,"props":728,"children":729},{"style":455},[730],{"type":52,"value":477},{"type":46,"tag":443,"props":732,"children":733},{"style":480},[734],{"type":52,"value":483},{"type":46,"tag":443,"props":736,"children":738},{"class":445,"line":737},18,[739,744,748],{"type":46,"tag":443,"props":740,"children":741},{"style":450},[742],{"type":52,"value":743},"          property",{"type":46,"tag":443,"props":745,"children":746},{"style":455},[747],{"type":52,"value":477},{"type":46,"tag":443,"props":749,"children":750},{"style":480},[751],{"type":52,"value":752}," connectionString\n",{"type":46,"tag":118,"props":754,"children":756},{"id":755},"service-types",[757],{"type":52,"value":758},"Service Types",{"type":46,"tag":229,"props":760,"children":761},{},[762,782],{"type":46,"tag":233,"props":763,"children":764},{},[765],{"type":46,"tag":237,"props":766,"children":767},{},[768,777],{"type":46,"tag":241,"props":769,"children":770},{},[771],{"type":46,"tag":61,"props":772,"children":774},{"className":773},[],[775],{"type":52,"value":776},"type",{"type":46,"tag":241,"props":778,"children":779},{},[780],{"type":52,"value":781},"Role",{"type":46,"tag":252,"props":783,"children":784},{},[785,808,825,842,867],{"type":46,"tag":237,"props":786,"children":787},{},[788,796],{"type":46,"tag":259,"props":789,"children":790},{},[791],{"type":46,"tag":61,"props":792,"children":794},{"className":793},[],[795],{"type":52,"value":278},{"type":46,"tag":259,"props":797,"children":798},{},[799,801,806],{"type":52,"value":800},"Public HTTP service (use ",{"type":46,"tag":61,"props":802,"children":804},{"className":803},[],[805],{"type":52,"value":286},{"type":52,"value":807}," for static sites)",{"type":46,"tag":237,"props":809,"children":810},{},[811,820],{"type":46,"tag":259,"props":812,"children":813},{},[814],{"type":46,"tag":61,"props":815,"children":817},{"className":816},[],[818],{"type":52,"value":819},"pserv",{"type":46,"tag":259,"props":821,"children":822},{},[823],{"type":52,"value":824},"Private service (internal HTTP\u002FTCP; not public)",{"type":46,"tag":237,"props":826,"children":827},{},[828,837],{"type":46,"tag":259,"props":829,"children":830},{},[831],{"type":46,"tag":61,"props":832,"children":834},{"className":833},[],[835],{"type":52,"value":836},"worker",{"type":46,"tag":259,"props":838,"children":839},{},[840],{"type":52,"value":841},"Long-running background process",{"type":46,"tag":237,"props":843,"children":844},{},[845,854],{"type":46,"tag":259,"props":846,"children":847},{},[848],{"type":46,"tag":61,"props":849,"children":851},{"className":850},[],[852],{"type":52,"value":853},"cron",{"type":46,"tag":259,"props":855,"children":856},{},[857,859,865],{"type":52,"value":858},"Scheduled job (",{"type":46,"tag":61,"props":860,"children":862},{"className":861},[],[863],{"type":52,"value":864},"schedule",{"type":52,"value":866}," required)",{"type":46,"tag":237,"props":868,"children":869},{},[870,879],{"type":46,"tag":259,"props":871,"children":872},{},[873],{"type":46,"tag":61,"props":874,"children":876},{"className":875},[],[877],{"type":52,"value":878},"keyvalue",{"type":46,"tag":259,"props":880,"children":881},{},[882,884,893],{"type":52,"value":883},"Managed Key Value (Redis-compatible); alias ",{"type":46,"tag":70,"props":885,"children":886},{},[887],{"type":46,"tag":61,"props":888,"children":890},{"className":889},[],[891],{"type":52,"value":892},"redis",{"type":52,"value":894}," accepted in Blueprints",{"type":46,"tag":118,"props":896,"children":898},{"id":897},"runtimes",[899],{"type":52,"value":900},"Runtimes",{"type":46,"tag":55,"props":902,"children":903},{},[904,906,912,914,923,924,933,934,943,944,953,954,963,964,973,974,983,984,993,994,1003],{"type":52,"value":905},"Common ",{"type":46,"tag":61,"props":907,"children":909},{"className":908},[],[910],{"type":52,"value":911},"runtime",{"type":52,"value":913}," values: ",{"type":46,"tag":70,"props":915,"children":916},{},[917],{"type":46,"tag":61,"props":918,"children":920},{"className":919},[],[921],{"type":52,"value":922},"node",{"type":52,"value":76},{"type":46,"tag":70,"props":925,"children":926},{},[927],{"type":46,"tag":61,"props":928,"children":930},{"className":929},[],[931],{"type":52,"value":932},"python",{"type":52,"value":76},{"type":46,"tag":70,"props":935,"children":936},{},[937],{"type":46,"tag":61,"props":938,"children":940},{"className":939},[],[941],{"type":52,"value":942},"go",{"type":52,"value":76},{"type":46,"tag":70,"props":945,"children":946},{},[947],{"type":46,"tag":61,"props":948,"children":950},{"className":949},[],[951],{"type":52,"value":952},"ruby",{"type":52,"value":76},{"type":46,"tag":70,"props":955,"children":956},{},[957],{"type":46,"tag":61,"props":958,"children":960},{"className":959},[],[961],{"type":52,"value":962},"rust",{"type":52,"value":76},{"type":46,"tag":70,"props":965,"children":966},{},[967],{"type":46,"tag":61,"props":968,"children":970},{"className":969},[],[971],{"type":52,"value":972},"elixir",{"type":52,"value":76},{"type":46,"tag":70,"props":975,"children":976},{},[977],{"type":46,"tag":61,"props":978,"children":980},{"className":979},[],[981],{"type":52,"value":982},"docker",{"type":52,"value":76},{"type":46,"tag":70,"props":985,"children":986},{},[987],{"type":46,"tag":61,"props":988,"children":990},{"className":989},[],[991],{"type":52,"value":992},"image",{"type":52,"value":76},{"type":46,"tag":70,"props":995,"children":996},{},[997],{"type":46,"tag":61,"props":998,"children":1000},{"className":999},[],[1001],{"type":52,"value":1002},"static",{"type":52,"value":116},{"type":46,"tag":130,"props":1005,"children":1006},{},[1007,1049,1069],{"type":46,"tag":134,"props":1008,"children":1009},{},[1010,1018,1020,1026,1028,1034,1035,1041,1042,1048],{"type":46,"tag":70,"props":1011,"children":1012},{},[1013],{"type":46,"tag":61,"props":1014,"children":1016},{"className":1015},[],[1017],{"type":52,"value":982},{"type":52,"value":1019},": Build from ",{"type":46,"tag":61,"props":1021,"children":1023},{"className":1022},[],[1024],{"type":52,"value":1025},"Dockerfile",{"type":52,"value":1027}," (see ",{"type":46,"tag":61,"props":1029,"children":1031},{"className":1030},[],[1032],{"type":52,"value":1033},"dockerfilePath",{"type":52,"value":76},{"type":46,"tag":61,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":52,"value":1040},"dockerContext",{"type":52,"value":76},{"type":46,"tag":61,"props":1043,"children":1045},{"className":1044},[],[1046],{"type":52,"value":1047},"dockerCommand",{"type":52,"value":388},{"type":46,"tag":134,"props":1050,"children":1051},{},[1052,1060,1062,1068],{"type":46,"tag":70,"props":1053,"children":1054},{},[1055],{"type":46,"tag":61,"props":1056,"children":1058},{"className":1057},[],[1059],{"type":52,"value":992},{"type":52,"value":1061},": Run a prebuilt container image (registry + optional ",{"type":46,"tag":61,"props":1063,"children":1065},{"className":1064},[],[1066],{"type":52,"value":1067},"registryCredential",{"type":52,"value":388},{"type":46,"tag":134,"props":1070,"children":1071},{},[1072,1080,1082,1088],{"type":46,"tag":70,"props":1073,"children":1074},{},[1075],{"type":46,"tag":61,"props":1076,"children":1078},{"className":1077},[],[1079],{"type":52,"value":1002},{"type":52,"value":1081},": Static site; requires ",{"type":46,"tag":61,"props":1083,"children":1085},{"className":1084},[],[1086],{"type":52,"value":1087},"staticPublishPath",{"type":52,"value":1089}," and build output paths (see references).",{"type":46,"tag":118,"props":1091,"children":1093},{"id":1092},"cross-service-wiring",[1094],{"type":52,"value":1095},"Cross-Service Wiring",{"type":46,"tag":55,"props":1097,"children":1098},{},[1099,1101,1107],{"type":52,"value":1100},"Env vars under ",{"type":46,"tag":61,"props":1102,"children":1104},{"className":1103},[],[1105],{"type":52,"value":1106},"envVars",{"type":52,"value":1108}," (and analogous patterns in groups) can pull values from other resources instead of hardcoding secrets.",{"type":46,"tag":222,"props":1110,"children":1112},{"id":1111},"fromdatabase",[1113],{"type":46,"tag":61,"props":1114,"children":1116},{"className":1115},[],[1117],{"type":52,"value":1118},"fromDatabase",{"type":46,"tag":55,"props":1120,"children":1121},{},[1122,1124,1130,1132,1138],{"type":52,"value":1123},"Reference a database in ",{"type":46,"tag":61,"props":1125,"children":1127},{"className":1126},[],[1128],{"type":52,"value":1129},"databases:",{"type":52,"value":1131}," by ",{"type":46,"tag":61,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":52,"value":1137},"name",{"type":52,"value":1139},". Properties include:",{"type":46,"tag":130,"props":1141,"children":1142},{},[1143],{"type":46,"tag":134,"props":1144,"children":1145},{},[1146,1152,1153,1159,1160,1166,1167,1173,1174,1180,1181],{"type":46,"tag":61,"props":1147,"children":1149},{"className":1148},[],[1150],{"type":52,"value":1151},"connectionString",{"type":52,"value":76},{"type":46,"tag":61,"props":1154,"children":1156},{"className":1155},[],[1157],{"type":52,"value":1158},"host",{"type":52,"value":76},{"type":46,"tag":61,"props":1161,"children":1163},{"className":1162},[],[1164],{"type":52,"value":1165},"port",{"type":52,"value":76},{"type":46,"tag":61,"props":1168,"children":1170},{"className":1169},[],[1171],{"type":52,"value":1172},"user",{"type":52,"value":76},{"type":46,"tag":61,"props":1175,"children":1177},{"className":1176},[],[1178],{"type":52,"value":1179},"password",{"type":52,"value":76},{"type":46,"tag":61,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":52,"value":1186},"database",{"type":46,"tag":222,"props":1188,"children":1190},{"id":1189},"fromservice",[1191],{"type":46,"tag":61,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":52,"value":1196},"fromService",{"type":46,"tag":55,"props":1198,"children":1199},{},[1200,1202,1207],{"type":52,"value":1201},"Reference a service by ",{"type":46,"tag":61,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":52,"value":1137},{"type":52,"value":1208},". Typical properties:",{"type":46,"tag":130,"props":1210,"children":1211},{},[1212],{"type":46,"tag":134,"props":1213,"children":1214},{},[1215,1220,1221,1226,1227,1233,1234,1239,1240],{"type":46,"tag":61,"props":1216,"children":1218},{"className":1217},[],[1219],{"type":52,"value":1158},{"type":52,"value":76},{"type":46,"tag":61,"props":1222,"children":1224},{"className":1223},[],[1225],{"type":52,"value":1165},{"type":52,"value":76},{"type":46,"tag":61,"props":1228,"children":1230},{"className":1229},[],[1231],{"type":52,"value":1232},"hostport",{"type":52,"value":76},{"type":46,"tag":61,"props":1235,"children":1237},{"className":1236},[],[1238],{"type":52,"value":1151},{"type":52,"value":76},{"type":46,"tag":61,"props":1241,"children":1243},{"className":1242},[],[1244],{"type":52,"value":1245},"envVarKey",{"type":46,"tag":55,"props":1247,"children":1248},{},[1249,1251,1256,1258,1264],{"type":52,"value":1250},"Which properties are valid depends on target service type (e.g. Key Value vs ",{"type":46,"tag":61,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":52,"value":819},{"type":52,"value":1257},"). See ",{"type":46,"tag":61,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":52,"value":1263},"references\u002Fwiring-patterns.md",{"type":52,"value":116},{"type":46,"tag":222,"props":1266,"children":1268},{"id":1267},"fromgroup",[1269],{"type":46,"tag":61,"props":1270,"children":1272},{"className":1271},[],[1273],{"type":52,"value":1274},"fromGroup",{"type":46,"tag":55,"props":1276,"children":1277},{},[1278,1280,1285,1287,1292],{"type":52,"value":1279},"Attach shared vars from ",{"type":46,"tag":61,"props":1281,"children":1283},{"className":1282},[],[1284],{"type":52,"value":317},{"type":52,"value":1286}," (by group ",{"type":46,"tag":61,"props":1288,"children":1290},{"className":1289},[],[1291],{"type":52,"value":1137},{"type":52,"value":388},{"type":46,"tag":222,"props":1294,"children":1296},{"id":1295},"other-env-var-keys",[1297],{"type":52,"value":1298},"Other env var keys",{"type":46,"tag":130,"props":1300,"children":1301},{},[1302,1316,1330],{"type":46,"tag":134,"props":1303,"children":1304},{},[1305,1314],{"type":46,"tag":70,"props":1306,"children":1307},{},[1308],{"type":46,"tag":61,"props":1309,"children":1311},{"className":1310},[],[1312],{"type":52,"value":1313},"value",{"type":52,"value":1315},": Literal string.",{"type":46,"tag":134,"props":1317,"children":1318},{},[1319,1328],{"type":46,"tag":70,"props":1320,"children":1321},{},[1322],{"type":46,"tag":61,"props":1323,"children":1325},{"className":1324},[],[1326],{"type":52,"value":1327},"generateValue",{"type":52,"value":1329},": Let Render generate a random secret (password\u002FAPI key).",{"type":46,"tag":134,"props":1331,"children":1332},{},[1333,1342,1344,1350],{"type":46,"tag":70,"props":1334,"children":1335},{},[1336],{"type":46,"tag":61,"props":1337,"children":1339},{"className":1338},[],[1340],{"type":52,"value":1341},"sync",{"type":52,"value":1343},": Set ",{"type":46,"tag":61,"props":1345,"children":1347},{"className":1346},[],[1348],{"type":52,"value":1349},"sync: false",{"type":52,"value":1351}," for secrets that should not sync from repo on every update (see edge cases in wiring reference).",{"type":46,"tag":55,"props":1353,"children":1354},{},[1355,1357,1362],{"type":52,"value":1356},"Full patterns and combinations: ",{"type":46,"tag":61,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":52,"value":1263},{"type":52,"value":116},{"type":46,"tag":118,"props":1364,"children":1366},{"id":1365},"projects-and-environments",[1367],{"type":52,"value":1368},"Projects and Environments",{"type":46,"tag":55,"props":1370,"children":1371},{},[1372,1374,1389,1391,1396,1397,1402],{"type":52,"value":1373},"For multi-service apps, use the ",{"type":46,"tag":70,"props":1375,"children":1376},{},[1377,1382,1384],{"type":46,"tag":61,"props":1378,"children":1380},{"className":1379},[],[1381],{"type":52,"value":160},{"type":52,"value":1383},"\u002F",{"type":46,"tag":61,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":52,"value":167},{"type":52,"value":1390}," pattern instead of flat top-level ",{"type":46,"tag":61,"props":1392,"children":1394},{"className":1393},[],[1395],{"type":52,"value":267},{"type":52,"value":1383},{"type":46,"tag":61,"props":1398,"children":1400},{"className":1399},[],[1401],{"type":52,"value":300},{"type":52,"value":1403},". This groups all related resources into a single Render project, supports multiple environments (production, staging), and enables environment-scoped configuration.",{"type":46,"tag":433,"props":1405,"children":1407},{"className":435,"code":1406,"language":18,"meta":437,"style":437},"projects:\n  - name: my-app\n    environments:\n      - name: production\n        services:\n          - type: web\n            name: api\n            runtime: node\n            plan: standard\n            buildCommand: npm ci && npm run build\n            startCommand: npm start\n            envVars:\n              - key: DATABASE_URL\n                fromDatabase:\n                  name: db\n                  property: connectionString\n              - key: REDIS_URL\n                fromService:\n                  type: keyvalue\n                  name: cache\n                  property: connectionString\n              - key: API_SECRET\n                sync: false\n\n          - type: worker\n            name: jobs\n            runtime: node\n            plan: starter\n            buildCommand: npm ci\n            startCommand: node worker.js\n            envVars:\n              - key: DATABASE_URL\n                fromDatabase:\n                  name: db\n                  property: connectionString\n              - key: REDIS_URL\n                fromService:\n                  type: keyvalue\n                  name: cache\n                  property: connectionString\n\n          - type: keyvalue\n            name: cache\n            plan: starter\n            maxmemoryPolicy: noeviction\n            ipAllowList:\n              - source: 0.0.0.0\u002F0\n                description: everywhere\n\n        databases:\n          - name: db\n            plan: starter\n",[1408],{"type":46,"tag":61,"props":1409,"children":1410},{"__ignoreMap":437},[1411,1422,1442,1454,1474,1486,1506,1522,1538,1555,1571,1587,1599,1619,1631,1648,1664,1684,1696,1714,1731,1747,1768,1787,1795,1816,1833,1849,1865,1882,1899,1911,1931,1943,1959,1975,1995,2007,2023,2039,2055,2063,2083,2099,2115,2133,2146,2168,2186,2194,2207,2227],{"type":46,"tag":443,"props":1412,"children":1413},{"class":445,"line":446},[1414,1418],{"type":46,"tag":443,"props":1415,"children":1416},{"style":450},[1417],{"type":52,"value":160},{"type":46,"tag":443,"props":1419,"children":1420},{"style":455},[1421],{"type":52,"value":458},{"type":46,"tag":443,"props":1423,"children":1424},{"class":445,"line":461},[1425,1429,1433,1437],{"type":46,"tag":443,"props":1426,"children":1427},{"style":455},[1428],{"type":52,"value":467},{"type":46,"tag":443,"props":1430,"children":1431},{"style":450},[1432],{"type":52,"value":472},{"type":46,"tag":443,"props":1434,"children":1435},{"style":455},[1436],{"type":52,"value":477},{"type":46,"tag":443,"props":1438,"children":1439},{"style":480},[1440],{"type":52,"value":1441}," my-app\n",{"type":46,"tag":443,"props":1443,"children":1444},{"class":445,"line":486},[1445,1450],{"type":46,"tag":443,"props":1446,"children":1447},{"style":450},[1448],{"type":52,"value":1449},"    environments",{"type":46,"tag":443,"props":1451,"children":1452},{"style":455},[1453],{"type":52,"value":458},{"type":46,"tag":443,"props":1455,"children":1456},{"class":445,"line":504},[1457,1461,1465,1469],{"type":46,"tag":443,"props":1458,"children":1459},{"style":455},[1460],{"type":52,"value":690},{"type":46,"tag":443,"props":1462,"children":1463},{"style":450},[1464],{"type":52,"value":472},{"type":46,"tag":443,"props":1466,"children":1467},{"style":455},[1468],{"type":52,"value":477},{"type":46,"tag":443,"props":1470,"children":1471},{"style":480},[1472],{"type":52,"value":1473}," production\n",{"type":46,"tag":443,"props":1475,"children":1476},{"class":445,"line":522},[1477,1482],{"type":46,"tag":443,"props":1478,"children":1479},{"style":450},[1480],{"type":52,"value":1481},"        services",{"type":46,"tag":443,"props":1483,"children":1484},{"style":455},[1485],{"type":52,"value":458},{"type":46,"tag":443,"props":1487,"children":1488},{"class":445,"line":532},[1489,1494,1498,1502],{"type":46,"tag":443,"props":1490,"children":1491},{"style":455},[1492],{"type":52,"value":1493},"          -",{"type":46,"tag":443,"props":1495,"children":1496},{"style":450},[1497],{"type":52,"value":554},{"type":46,"tag":443,"props":1499,"children":1500},{"style":455},[1501],{"type":52,"value":477},{"type":46,"tag":443,"props":1503,"children":1504},{"style":480},[1505],{"type":52,"value":563},{"type":46,"tag":443,"props":1507,"children":1508},{"class":445,"line":544},[1509,1514,1518],{"type":46,"tag":443,"props":1510,"children":1511},{"style":450},[1512],{"type":52,"value":1513},"            name",{"type":46,"tag":443,"props":1515,"children":1516},{"style":455},[1517],{"type":52,"value":477},{"type":46,"tag":443,"props":1519,"children":1520},{"style":480},[1521],{"type":52,"value":581},{"type":46,"tag":443,"props":1523,"children":1524},{"class":445,"line":566},[1525,1530,1534],{"type":46,"tag":443,"props":1526,"children":1527},{"style":450},[1528],{"type":52,"value":1529},"            runtime",{"type":46,"tag":443,"props":1531,"children":1532},{"style":455},[1533],{"type":52,"value":477},{"type":46,"tag":443,"props":1535,"children":1536},{"style":480},[1537],{"type":52,"value":599},{"type":46,"tag":443,"props":1539,"children":1540},{"class":445,"line":584},[1541,1546,1550],{"type":46,"tag":443,"props":1542,"children":1543},{"style":450},[1544],{"type":52,"value":1545},"            plan",{"type":46,"tag":443,"props":1547,"children":1548},{"style":455},[1549],{"type":52,"value":477},{"type":46,"tag":443,"props":1551,"children":1552},{"style":480},[1553],{"type":52,"value":1554}," standard\n",{"type":46,"tag":443,"props":1556,"children":1557},{"class":445,"line":602},[1558,1563,1567],{"type":46,"tag":443,"props":1559,"children":1560},{"style":450},[1561],{"type":52,"value":1562},"            buildCommand",{"type":46,"tag":443,"props":1564,"children":1565},{"style":455},[1566],{"type":52,"value":477},{"type":46,"tag":443,"props":1568,"children":1569},{"style":480},[1570],{"type":52,"value":650},{"type":46,"tag":443,"props":1572,"children":1573},{"class":445,"line":618},[1574,1579,1583],{"type":46,"tag":443,"props":1575,"children":1576},{"style":450},[1577],{"type":52,"value":1578},"            startCommand",{"type":46,"tag":443,"props":1580,"children":1581},{"style":455},[1582],{"type":52,"value":477},{"type":46,"tag":443,"props":1584,"children":1585},{"style":480},[1586],{"type":52,"value":668},{"type":46,"tag":443,"props":1588,"children":1589},{"class":445,"line":635},[1590,1595],{"type":46,"tag":443,"props":1591,"children":1592},{"style":450},[1593],{"type":52,"value":1594},"            envVars",{"type":46,"tag":443,"props":1596,"children":1597},{"style":455},[1598],{"type":52,"value":458},{"type":46,"tag":443,"props":1600,"children":1601},{"class":445,"line":653},[1602,1607,1611,1615],{"type":46,"tag":443,"props":1603,"children":1604},{"style":455},[1605],{"type":52,"value":1606},"              -",{"type":46,"tag":443,"props":1608,"children":1609},{"style":450},[1610],{"type":52,"value":695},{"type":46,"tag":443,"props":1612,"children":1613},{"style":455},[1614],{"type":52,"value":477},{"type":46,"tag":443,"props":1616,"children":1617},{"style":480},[1618],{"type":52,"value":704},{"type":46,"tag":443,"props":1620,"children":1621},{"class":445,"line":671},[1622,1627],{"type":46,"tag":443,"props":1623,"children":1624},{"style":450},[1625],{"type":52,"value":1626},"                fromDatabase",{"type":46,"tag":443,"props":1628,"children":1629},{"style":455},[1630],{"type":52,"value":458},{"type":46,"tag":443,"props":1632,"children":1633},{"class":445,"line":684},[1634,1639,1643],{"type":46,"tag":443,"props":1635,"children":1636},{"style":450},[1637],{"type":52,"value":1638},"                  name",{"type":46,"tag":443,"props":1640,"children":1641},{"style":455},[1642],{"type":52,"value":477},{"type":46,"tag":443,"props":1644,"children":1645},{"style":480},[1646],{"type":52,"value":1647}," db\n",{"type":46,"tag":443,"props":1649,"children":1650},{"class":445,"line":707},[1651,1656,1660],{"type":46,"tag":443,"props":1652,"children":1653},{"style":450},[1654],{"type":52,"value":1655},"                  property",{"type":46,"tag":443,"props":1657,"children":1658},{"style":455},[1659],{"type":52,"value":477},{"type":46,"tag":443,"props":1661,"children":1662},{"style":480},[1663],{"type":52,"value":752},{"type":46,"tag":443,"props":1665,"children":1666},{"class":445,"line":720},[1667,1671,1675,1679],{"type":46,"tag":443,"props":1668,"children":1669},{"style":455},[1670],{"type":52,"value":1606},{"type":46,"tag":443,"props":1672,"children":1673},{"style":450},[1674],{"type":52,"value":695},{"type":46,"tag":443,"props":1676,"children":1677},{"style":455},[1678],{"type":52,"value":477},{"type":46,"tag":443,"props":1680,"children":1681},{"style":480},[1682],{"type":52,"value":1683}," REDIS_URL\n",{"type":46,"tag":443,"props":1685,"children":1686},{"class":445,"line":737},[1687,1692],{"type":46,"tag":443,"props":1688,"children":1689},{"style":450},[1690],{"type":52,"value":1691},"                fromService",{"type":46,"tag":443,"props":1693,"children":1694},{"style":455},[1695],{"type":52,"value":458},{"type":46,"tag":443,"props":1697,"children":1699},{"class":445,"line":1698},19,[1700,1705,1709],{"type":46,"tag":443,"props":1701,"children":1702},{"style":450},[1703],{"type":52,"value":1704},"                  type",{"type":46,"tag":443,"props":1706,"children":1707},{"style":455},[1708],{"type":52,"value":477},{"type":46,"tag":443,"props":1710,"children":1711},{"style":480},[1712],{"type":52,"value":1713}," keyvalue\n",{"type":46,"tag":443,"props":1715,"children":1717},{"class":445,"line":1716},20,[1718,1722,1726],{"type":46,"tag":443,"props":1719,"children":1720},{"style":450},[1721],{"type":52,"value":1638},{"type":46,"tag":443,"props":1723,"children":1724},{"style":455},[1725],{"type":52,"value":477},{"type":46,"tag":443,"props":1727,"children":1728},{"style":480},[1729],{"type":52,"value":1730}," cache\n",{"type":46,"tag":443,"props":1732,"children":1734},{"class":445,"line":1733},21,[1735,1739,1743],{"type":46,"tag":443,"props":1736,"children":1737},{"style":450},[1738],{"type":52,"value":1655},{"type":46,"tag":443,"props":1740,"children":1741},{"style":455},[1742],{"type":52,"value":477},{"type":46,"tag":443,"props":1744,"children":1745},{"style":480},[1746],{"type":52,"value":752},{"type":46,"tag":443,"props":1748,"children":1750},{"class":445,"line":1749},22,[1751,1755,1759,1763],{"type":46,"tag":443,"props":1752,"children":1753},{"style":455},[1754],{"type":52,"value":1606},{"type":46,"tag":443,"props":1756,"children":1757},{"style":450},[1758],{"type":52,"value":695},{"type":46,"tag":443,"props":1760,"children":1761},{"style":455},[1762],{"type":52,"value":477},{"type":46,"tag":443,"props":1764,"children":1765},{"style":480},[1766],{"type":52,"value":1767}," API_SECRET\n",{"type":46,"tag":443,"props":1769,"children":1771},{"class":445,"line":1770},23,[1772,1777,1781],{"type":46,"tag":443,"props":1773,"children":1774},{"style":450},[1775],{"type":52,"value":1776},"                sync",{"type":46,"tag":443,"props":1778,"children":1779},{"style":455},[1780],{"type":52,"value":477},{"type":46,"tag":443,"props":1782,"children":1784},{"style":1783},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1785],{"type":52,"value":1786}," false\n",{"type":46,"tag":443,"props":1788,"children":1790},{"class":445,"line":1789},24,[1791],{"type":46,"tag":443,"props":1792,"children":1793},{"emptyLinePlaceholder":526},[1794],{"type":52,"value":529},{"type":46,"tag":443,"props":1796,"children":1798},{"class":445,"line":1797},25,[1799,1803,1807,1811],{"type":46,"tag":443,"props":1800,"children":1801},{"style":455},[1802],{"type":52,"value":1493},{"type":46,"tag":443,"props":1804,"children":1805},{"style":450},[1806],{"type":52,"value":554},{"type":46,"tag":443,"props":1808,"children":1809},{"style":455},[1810],{"type":52,"value":477},{"type":46,"tag":443,"props":1812,"children":1813},{"style":480},[1814],{"type":52,"value":1815}," worker\n",{"type":46,"tag":443,"props":1817,"children":1819},{"class":445,"line":1818},26,[1820,1824,1828],{"type":46,"tag":443,"props":1821,"children":1822},{"style":450},[1823],{"type":52,"value":1513},{"type":46,"tag":443,"props":1825,"children":1826},{"style":455},[1827],{"type":52,"value":477},{"type":46,"tag":443,"props":1829,"children":1830},{"style":480},[1831],{"type":52,"value":1832}," jobs\n",{"type":46,"tag":443,"props":1834,"children":1836},{"class":445,"line":1835},27,[1837,1841,1845],{"type":46,"tag":443,"props":1838,"children":1839},{"style":450},[1840],{"type":52,"value":1529},{"type":46,"tag":443,"props":1842,"children":1843},{"style":455},[1844],{"type":52,"value":477},{"type":46,"tag":443,"props":1846,"children":1847},{"style":480},[1848],{"type":52,"value":599},{"type":46,"tag":443,"props":1850,"children":1852},{"class":445,"line":1851},28,[1853,1857,1861],{"type":46,"tag":443,"props":1854,"children":1855},{"style":450},[1856],{"type":52,"value":1545},{"type":46,"tag":443,"props":1858,"children":1859},{"style":455},[1860],{"type":52,"value":477},{"type":46,"tag":443,"props":1862,"children":1863},{"style":480},[1864],{"type":52,"value":632},{"type":46,"tag":443,"props":1866,"children":1868},{"class":445,"line":1867},29,[1869,1873,1877],{"type":46,"tag":443,"props":1870,"children":1871},{"style":450},[1872],{"type":52,"value":1562},{"type":46,"tag":443,"props":1874,"children":1875},{"style":455},[1876],{"type":52,"value":477},{"type":46,"tag":443,"props":1878,"children":1879},{"style":480},[1880],{"type":52,"value":1881}," npm ci\n",{"type":46,"tag":443,"props":1883,"children":1885},{"class":445,"line":1884},30,[1886,1890,1894],{"type":46,"tag":443,"props":1887,"children":1888},{"style":450},[1889],{"type":52,"value":1578},{"type":46,"tag":443,"props":1891,"children":1892},{"style":455},[1893],{"type":52,"value":477},{"type":46,"tag":443,"props":1895,"children":1896},{"style":480},[1897],{"type":52,"value":1898}," node worker.js\n",{"type":46,"tag":443,"props":1900,"children":1902},{"class":445,"line":1901},31,[1903,1907],{"type":46,"tag":443,"props":1904,"children":1905},{"style":450},[1906],{"type":52,"value":1594},{"type":46,"tag":443,"props":1908,"children":1909},{"style":455},[1910],{"type":52,"value":458},{"type":46,"tag":443,"props":1912,"children":1914},{"class":445,"line":1913},32,[1915,1919,1923,1927],{"type":46,"tag":443,"props":1916,"children":1917},{"style":455},[1918],{"type":52,"value":1606},{"type":46,"tag":443,"props":1920,"children":1921},{"style":450},[1922],{"type":52,"value":695},{"type":46,"tag":443,"props":1924,"children":1925},{"style":455},[1926],{"type":52,"value":477},{"type":46,"tag":443,"props":1928,"children":1929},{"style":480},[1930],{"type":52,"value":704},{"type":46,"tag":443,"props":1932,"children":1934},{"class":445,"line":1933},33,[1935,1939],{"type":46,"tag":443,"props":1936,"children":1937},{"style":450},[1938],{"type":52,"value":1626},{"type":46,"tag":443,"props":1940,"children":1941},{"style":455},[1942],{"type":52,"value":458},{"type":46,"tag":443,"props":1944,"children":1946},{"class":445,"line":1945},34,[1947,1951,1955],{"type":46,"tag":443,"props":1948,"children":1949},{"style":450},[1950],{"type":52,"value":1638},{"type":46,"tag":443,"props":1952,"children":1953},{"style":455},[1954],{"type":52,"value":477},{"type":46,"tag":443,"props":1956,"children":1957},{"style":480},[1958],{"type":52,"value":1647},{"type":46,"tag":443,"props":1960,"children":1962},{"class":445,"line":1961},35,[1963,1967,1971],{"type":46,"tag":443,"props":1964,"children":1965},{"style":450},[1966],{"type":52,"value":1655},{"type":46,"tag":443,"props":1968,"children":1969},{"style":455},[1970],{"type":52,"value":477},{"type":46,"tag":443,"props":1972,"children":1973},{"style":480},[1974],{"type":52,"value":752},{"type":46,"tag":443,"props":1976,"children":1978},{"class":445,"line":1977},36,[1979,1983,1987,1991],{"type":46,"tag":443,"props":1980,"children":1981},{"style":455},[1982],{"type":52,"value":1606},{"type":46,"tag":443,"props":1984,"children":1985},{"style":450},[1986],{"type":52,"value":695},{"type":46,"tag":443,"props":1988,"children":1989},{"style":455},[1990],{"type":52,"value":477},{"type":46,"tag":443,"props":1992,"children":1993},{"style":480},[1994],{"type":52,"value":1683},{"type":46,"tag":443,"props":1996,"children":1998},{"class":445,"line":1997},37,[1999,2003],{"type":46,"tag":443,"props":2000,"children":2001},{"style":450},[2002],{"type":52,"value":1691},{"type":46,"tag":443,"props":2004,"children":2005},{"style":455},[2006],{"type":52,"value":458},{"type":46,"tag":443,"props":2008,"children":2010},{"class":445,"line":2009},38,[2011,2015,2019],{"type":46,"tag":443,"props":2012,"children":2013},{"style":450},[2014],{"type":52,"value":1704},{"type":46,"tag":443,"props":2016,"children":2017},{"style":455},[2018],{"type":52,"value":477},{"type":46,"tag":443,"props":2020,"children":2021},{"style":480},[2022],{"type":52,"value":1713},{"type":46,"tag":443,"props":2024,"children":2026},{"class":445,"line":2025},39,[2027,2031,2035],{"type":46,"tag":443,"props":2028,"children":2029},{"style":450},[2030],{"type":52,"value":1638},{"type":46,"tag":443,"props":2032,"children":2033},{"style":455},[2034],{"type":52,"value":477},{"type":46,"tag":443,"props":2036,"children":2037},{"style":480},[2038],{"type":52,"value":1730},{"type":46,"tag":443,"props":2040,"children":2042},{"class":445,"line":2041},40,[2043,2047,2051],{"type":46,"tag":443,"props":2044,"children":2045},{"style":450},[2046],{"type":52,"value":1655},{"type":46,"tag":443,"props":2048,"children":2049},{"style":455},[2050],{"type":52,"value":477},{"type":46,"tag":443,"props":2052,"children":2053},{"style":480},[2054],{"type":52,"value":752},{"type":46,"tag":443,"props":2056,"children":2058},{"class":445,"line":2057},41,[2059],{"type":46,"tag":443,"props":2060,"children":2061},{"emptyLinePlaceholder":526},[2062],{"type":52,"value":529},{"type":46,"tag":443,"props":2064,"children":2066},{"class":445,"line":2065},42,[2067,2071,2075,2079],{"type":46,"tag":443,"props":2068,"children":2069},{"style":455},[2070],{"type":52,"value":1493},{"type":46,"tag":443,"props":2072,"children":2073},{"style":450},[2074],{"type":52,"value":554},{"type":46,"tag":443,"props":2076,"children":2077},{"style":455},[2078],{"type":52,"value":477},{"type":46,"tag":443,"props":2080,"children":2081},{"style":480},[2082],{"type":52,"value":1713},{"type":46,"tag":443,"props":2084,"children":2086},{"class":445,"line":2085},43,[2087,2091,2095],{"type":46,"tag":443,"props":2088,"children":2089},{"style":450},[2090],{"type":52,"value":1513},{"type":46,"tag":443,"props":2092,"children":2093},{"style":455},[2094],{"type":52,"value":477},{"type":46,"tag":443,"props":2096,"children":2097},{"style":480},[2098],{"type":52,"value":1730},{"type":46,"tag":443,"props":2100,"children":2102},{"class":445,"line":2101},44,[2103,2107,2111],{"type":46,"tag":443,"props":2104,"children":2105},{"style":450},[2106],{"type":52,"value":1545},{"type":46,"tag":443,"props":2108,"children":2109},{"style":455},[2110],{"type":52,"value":477},{"type":46,"tag":443,"props":2112,"children":2113},{"style":480},[2114],{"type":52,"value":632},{"type":46,"tag":443,"props":2116,"children":2118},{"class":445,"line":2117},45,[2119,2124,2128],{"type":46,"tag":443,"props":2120,"children":2121},{"style":450},[2122],{"type":52,"value":2123},"            maxmemoryPolicy",{"type":46,"tag":443,"props":2125,"children":2126},{"style":455},[2127],{"type":52,"value":477},{"type":46,"tag":443,"props":2129,"children":2130},{"style":480},[2131],{"type":52,"value":2132}," noeviction\n",{"type":46,"tag":443,"props":2134,"children":2136},{"class":445,"line":2135},46,[2137,2142],{"type":46,"tag":443,"props":2138,"children":2139},{"style":450},[2140],{"type":52,"value":2141},"            ipAllowList",{"type":46,"tag":443,"props":2143,"children":2144},{"style":455},[2145],{"type":52,"value":458},{"type":46,"tag":443,"props":2147,"children":2149},{"class":445,"line":2148},47,[2150,2154,2159,2163],{"type":46,"tag":443,"props":2151,"children":2152},{"style":455},[2153],{"type":52,"value":1606},{"type":46,"tag":443,"props":2155,"children":2156},{"style":450},[2157],{"type":52,"value":2158}," source",{"type":46,"tag":443,"props":2160,"children":2161},{"style":455},[2162],{"type":52,"value":477},{"type":46,"tag":443,"props":2164,"children":2165},{"style":480},[2166],{"type":52,"value":2167}," 0.0.0.0\u002F0\n",{"type":46,"tag":443,"props":2169,"children":2171},{"class":445,"line":2170},48,[2172,2177,2181],{"type":46,"tag":443,"props":2173,"children":2174},{"style":450},[2175],{"type":52,"value":2176},"                description",{"type":46,"tag":443,"props":2178,"children":2179},{"style":455},[2180],{"type":52,"value":477},{"type":46,"tag":443,"props":2182,"children":2183},{"style":480},[2184],{"type":52,"value":2185}," everywhere\n",{"type":46,"tag":443,"props":2187,"children":2189},{"class":445,"line":2188},49,[2190],{"type":46,"tag":443,"props":2191,"children":2192},{"emptyLinePlaceholder":526},[2193],{"type":52,"value":529},{"type":46,"tag":443,"props":2195,"children":2197},{"class":445,"line":2196},50,[2198,2203],{"type":46,"tag":443,"props":2199,"children":2200},{"style":450},[2201],{"type":52,"value":2202},"        databases",{"type":46,"tag":443,"props":2204,"children":2205},{"style":455},[2206],{"type":52,"value":458},{"type":46,"tag":443,"props":2208,"children":2210},{"class":445,"line":2209},51,[2211,2215,2219,2223],{"type":46,"tag":443,"props":2212,"children":2213},{"style":455},[2214],{"type":52,"value":1493},{"type":46,"tag":443,"props":2216,"children":2217},{"style":450},[2218],{"type":52,"value":472},{"type":46,"tag":443,"props":2220,"children":2221},{"style":455},[2222],{"type":52,"value":477},{"type":46,"tag":443,"props":2224,"children":2225},{"style":480},[2226],{"type":52,"value":1647},{"type":46,"tag":443,"props":2228,"children":2230},{"class":445,"line":2229},52,[2231,2235,2239],{"type":46,"tag":443,"props":2232,"children":2233},{"style":450},[2234],{"type":52,"value":1545},{"type":46,"tag":443,"props":2236,"children":2237},{"style":455},[2238],{"type":52,"value":477},{"type":46,"tag":443,"props":2240,"children":2241},{"style":480},[2242],{"type":52,"value":632},{"type":46,"tag":55,"props":2244,"children":2245},{},[2246],{"type":52,"value":2247},"Key rules:",{"type":46,"tag":130,"props":2249,"children":2250},{},[2251,2269,2274,2284],{"type":46,"tag":134,"props":2252,"children":2253},{},[2254,2256,2261,2262,2267],{"type":52,"value":2255},"Each environment owns its ",{"type":46,"tag":61,"props":2257,"children":2259},{"className":2258},[],[2260],{"type":52,"value":267},{"type":52,"value":162},{"type":46,"tag":61,"props":2263,"children":2265},{"className":2264},[],[2266],{"type":52,"value":300},{"type":52,"value":2268}," lists.",{"type":46,"tag":134,"props":2270,"children":2271},{},[2272],{"type":52,"value":2273},"Do not define the same resource at both the root level and inside an environment.",{"type":46,"tag":134,"props":2275,"children":2276},{},[2277,2282],{"type":46,"tag":61,"props":2278,"children":2280},{"className":2279},[],[2281],{"type":52,"value":317},{"type":52,"value":2283}," can be scoped to a project environment or shared across the workspace.",{"type":46,"tag":134,"props":2285,"children":2286},{},[2287],{"type":52,"value":2288},"Environment isolation (Professional+) can block cross-environment private network traffic.",{"type":46,"tag":55,"props":2290,"children":2291},{},[2292,2294,2299,2300,2305],{"type":52,"value":2293},"For single-service apps, flat top-level ",{"type":46,"tag":61,"props":2295,"children":2297},{"className":2296},[],[2298],{"type":52,"value":267},{"type":52,"value":1383},{"type":46,"tag":61,"props":2301,"children":2303},{"className":2302},[],[2304],{"type":52,"value":300},{"type":52,"value":2306}," is fine. Reach for the projects pattern when you have multiple services, need staging\u002Fproduction separation, or want environment-scoped env groups.",{"type":46,"tag":118,"props":2308,"children":2310},{"id":2309},"preview-environments",[2311],{"type":52,"value":2312},"Preview Environments",{"type":46,"tag":55,"props":2314,"children":2315},{},[2316,2318,2323],{"type":52,"value":2317},"Top-level ",{"type":46,"tag":61,"props":2319,"children":2321},{"className":2320},[],[2322],{"type":52,"value":93},{"type":52,"value":2324}," controls PR previews:",{"type":46,"tag":130,"props":2326,"children":2327},{},[2328,2364],{"type":46,"tag":134,"props":2329,"children":2330},{},[2331,2340,2342,2348,2350,2356,2358],{"type":46,"tag":70,"props":2332,"children":2333},{},[2334],{"type":46,"tag":61,"props":2335,"children":2337},{"className":2336},[],[2338],{"type":52,"value":2339},"previews.generation",{"type":52,"value":2341},": ",{"type":46,"tag":61,"props":2343,"children":2345},{"className":2344},[],[2346],{"type":52,"value":2347},"off",{"type":52,"value":2349}," (default), ",{"type":46,"tag":61,"props":2351,"children":2353},{"className":2352},[],[2354],{"type":52,"value":2355},"manual",{"type":52,"value":2357},", or ",{"type":46,"tag":61,"props":2359,"children":2361},{"className":2360},[],[2362],{"type":52,"value":2363},"automatic",{"type":46,"tag":134,"props":2365,"children":2366},{},[2367,2376],{"type":46,"tag":70,"props":2368,"children":2369},{},[2370],{"type":46,"tag":61,"props":2371,"children":2373},{"className":2372},[],[2374],{"type":52,"value":2375},"previews.expireAfterDays",{"type":52,"value":2377},": Auto-delete preview stacks after N days",{"type":46,"tag":55,"props":2379,"children":2380},{},[2381,2383,2388,2390,2395,2397,2403,2405,2411],{"type":52,"value":2382},"Services can override preview behavior (e.g. service-level ",{"type":46,"tag":61,"props":2384,"children":2386},{"className":2385},[],[2387],{"type":52,"value":2339},{"type":52,"value":2389},"). Limitations: autoscaling behavior, ",{"type":46,"tag":61,"props":2391,"children":2393},{"className":2392},[],[2394],{"type":52,"value":1349},{"type":52,"value":2396}," vars, ",{"type":46,"tag":61,"props":2398,"children":2400},{"className":2399},[],[2401],{"type":52,"value":2402},"previewPlan",{"type":52,"value":2404}," \u002F flexible instance constraints—see ",{"type":46,"tag":61,"props":2406,"children":2408},{"className":2407},[],[2409],{"type":52,"value":2410},"references\u002Fpreview-environments.md",{"type":52,"value":116},{"type":46,"tag":118,"props":2413,"children":2414},{"id":99},[2415],{"type":52,"value":2416},"Validation",{"type":46,"tag":433,"props":2418,"children":2422},{"className":2419,"code":2420,"language":2421,"meta":437,"style":437},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","render blueprints validate\n","bash",[2423],{"type":46,"tag":61,"props":2424,"children":2425},{"__ignoreMap":437},[2426],{"type":46,"tag":443,"props":2427,"children":2428},{"class":445,"line":446},[2429,2434,2439],{"type":46,"tag":443,"props":2430,"children":2432},{"style":2431},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[2433],{"type":52,"value":14},{"type":46,"tag":443,"props":2435,"children":2436},{"style":480},[2437],{"type":52,"value":2438}," blueprints",{"type":46,"tag":443,"props":2440,"children":2441},{"style":480},[2442],{"type":52,"value":2443}," validate\n",{"type":46,"tag":55,"props":2445,"children":2446},{},[2447,2449,2454],{"type":52,"value":2448},"Requires ",{"type":46,"tag":70,"props":2450,"children":2451},{},[2452],{"type":52,"value":2453},"Render CLI v2.7.0+",{"type":52,"value":2455},". Run from the repo root (or pass the appropriate path options your CLI version supports). Fix schema and semantic errors before merging Blueprint changes.",{"type":46,"tag":55,"props":2457,"children":2458},{},[2459,2461],{"type":52,"value":2460},"Official schema: ",{"type":46,"tag":61,"props":2462,"children":2464},{"className":2463},[],[2465],{"type":52,"value":413},{"type":46,"tag":118,"props":2467,"children":2469},{"id":2468},"immutable-fields",[2470],{"type":52,"value":2471},"Immutable Fields",{"type":46,"tag":55,"props":2473,"children":2474},{},[2475,2480],{"type":46,"tag":70,"props":2476,"children":2477},{},[2478],{"type":52,"value":2479},"CRITICAL:",{"type":52,"value":2481}," Some fields cannot change after the resource is created. Edits may be rejected or require replacement resources.",{"type":46,"tag":222,"props":2483,"children":2484},{"id":267},[2485],{"type":52,"value":2486},"Services",{"type":46,"tag":130,"props":2488,"children":2489},{},[2490,2503],{"type":46,"tag":134,"props":2491,"children":2492},{},[2493,2501],{"type":46,"tag":70,"props":2494,"children":2495},{},[2496],{"type":46,"tag":61,"props":2497,"children":2499},{"className":2498},[],[2500],{"type":52,"value":776},{"type":52,"value":2502},": Cannot change (e.g. web → worker).",{"type":46,"tag":134,"props":2504,"children":2505},{},[2506,2514],{"type":46,"tag":70,"props":2507,"children":2508},{},[2509],{"type":46,"tag":61,"props":2510,"children":2512},{"className":2511},[],[2513],{"type":52,"value":911},{"type":52,"value":2515},": Cannot change (e.g. node → docker).",{"type":46,"tag":222,"props":2517,"children":2518},{"id":300},[2519],{"type":52,"value":2520},"Databases",{"type":46,"tag":55,"props":2522,"children":2523},{},[2524],{"type":52,"value":2525},"Cannot change after creation:",{"type":46,"tag":130,"props":2527,"children":2528},{},[2529,2539,2548,2556,2565],{"type":46,"tag":134,"props":2530,"children":2531},{},[2532,2537],{"type":46,"tag":61,"props":2533,"children":2535},{"className":2534},[],[2536],{"type":52,"value":1137},{"type":52,"value":2538}," (logical Blueprint\u002Fdatabase identifier in this context)",{"type":46,"tag":134,"props":2540,"children":2541},{},[2542],{"type":46,"tag":61,"props":2543,"children":2545},{"className":2544},[],[2546],{"type":52,"value":2547},"databaseName",{"type":46,"tag":134,"props":2549,"children":2550},{},[2551],{"type":46,"tag":61,"props":2552,"children":2554},{"className":2553},[],[2555],{"type":52,"value":1172},{"type":46,"tag":134,"props":2557,"children":2558},{},[2559],{"type":46,"tag":61,"props":2560,"children":2562},{"className":2561},[],[2563],{"type":52,"value":2564},"region",{"type":46,"tag":134,"props":2566,"children":2567},{},[2568],{"type":46,"tag":61,"props":2569,"children":2571},{"className":2570},[],[2572],{"type":52,"value":2573},"postgresMajorVersion",{"type":46,"tag":55,"props":2575,"children":2576},{},[2577],{"type":52,"value":2578},"Plan other fields (disk, HA, replicas) carefully up front; consult Render docs for fields that can scale vs require recreation.",{"type":46,"tag":118,"props":2580,"children":2582},{"id":2581},"key-fields-quick-map",[2583],{"type":52,"value":2584},"Key Fields (Quick Map)",{"type":46,"tag":229,"props":2586,"children":2587},{},[2588,2604],{"type":46,"tag":233,"props":2589,"children":2590},{},[2591],{"type":46,"tag":237,"props":2592,"children":2593},{},[2594,2599],{"type":46,"tag":241,"props":2595,"children":2596},{},[2597],{"type":52,"value":2598},"Area",{"type":46,"tag":241,"props":2600,"children":2601},{},[2602],{"type":52,"value":2603},"Fields",{"type":46,"tag":252,"props":2605,"children":2606},{},[2607,2637,2675,2712,2736,2760,2799,2826,2858],{"type":46,"tag":237,"props":2608,"children":2609},{},[2610,2615],{"type":46,"tag":259,"props":2611,"children":2612},{},[2613],{"type":52,"value":2614},"Plans",{"type":46,"tag":259,"props":2616,"children":2617},{},[2618,2624,2625,2630,2632],{"type":46,"tag":61,"props":2619,"children":2621},{"className":2620},[],[2622],{"type":52,"value":2623},"plan",{"type":52,"value":76},{"type":46,"tag":61,"props":2626,"children":2628},{"className":2627},[],[2629],{"type":52,"value":2402},{"type":52,"value":2631}," (previews), database ",{"type":46,"tag":61,"props":2633,"children":2635},{"className":2634},[],[2636],{"type":52,"value":2623},{"type":46,"tag":237,"props":2638,"children":2639},{},[2640,2645],{"type":46,"tag":259,"props":2641,"children":2642},{},[2643],{"type":52,"value":2644},"Build\u002Frun",{"type":46,"tag":259,"props":2646,"children":2647},{},[2648,2654,2655,2661,2662,2668,2669],{"type":46,"tag":61,"props":2649,"children":2651},{"className":2650},[],[2652],{"type":52,"value":2653},"buildCommand",{"type":52,"value":76},{"type":46,"tag":61,"props":2656,"children":2658},{"className":2657},[],[2659],{"type":52,"value":2660},"startCommand",{"type":52,"value":76},{"type":46,"tag":61,"props":2663,"children":2665},{"className":2664},[],[2666],{"type":52,"value":2667},"preDeployCommand",{"type":52,"value":76},{"type":46,"tag":61,"props":2670,"children":2672},{"className":2671},[],[2673],{"type":52,"value":2674},"rootDir",{"type":46,"tag":237,"props":2676,"children":2677},{},[2678,2683],{"type":46,"tag":259,"props":2679,"children":2680},{},[2681],{"type":52,"value":2682},"Deploy",{"type":46,"tag":259,"props":2684,"children":2685},{},[2686,2692,2693,2699,2700,2706,2707],{"type":46,"tag":61,"props":2687,"children":2689},{"className":2688},[],[2690],{"type":52,"value":2691},"autoDeployTrigger",{"type":52,"value":2341},{"type":46,"tag":61,"props":2694,"children":2696},{"className":2695},[],[2697],{"type":52,"value":2698},"commit",{"type":52,"value":76},{"type":46,"tag":61,"props":2701,"children":2703},{"className":2702},[],[2704],{"type":52,"value":2705},"checksPass",{"type":52,"value":2357},{"type":46,"tag":61,"props":2708,"children":2710},{"className":2709},[],[2711],{"type":52,"value":2347},{"type":46,"tag":237,"props":2713,"children":2714},{},[2715,2720],{"type":46,"tag":259,"props":2716,"children":2717},{},[2718],{"type":52,"value":2719},"Lifecycle",{"type":46,"tag":259,"props":2721,"children":2722},{},[2723,2729,2731],{"type":46,"tag":61,"props":2724,"children":2726},{"className":2725},[],[2727],{"type":52,"value":2728},"maxShutdownDelaySeconds",{"type":52,"value":2730},": 1–300, default ",{"type":46,"tag":70,"props":2732,"children":2733},{},[2734],{"type":52,"value":2735},"30",{"type":46,"tag":237,"props":2737,"children":2738},{},[2739,2744],{"type":46,"tag":259,"props":2740,"children":2741},{},[2742],{"type":52,"value":2743},"HTTP",{"type":46,"tag":259,"props":2745,"children":2746},{},[2747,2753,2754],{"type":46,"tag":61,"props":2748,"children":2750},{"className":2749},[],[2751],{"type":52,"value":2752},"healthCheckPath",{"type":52,"value":76},{"type":46,"tag":61,"props":2755,"children":2757},{"className":2756},[],[2758],{"type":52,"value":2759},"domains",{"type":46,"tag":237,"props":2761,"children":2762},{},[2763,2768],{"type":46,"tag":259,"props":2764,"children":2765},{},[2766],{"type":52,"value":2767},"Storage",{"type":46,"tag":259,"props":2769,"children":2770},{},[2771,2777,2779,2784,2785,2791,2792,2798],{"type":46,"tag":61,"props":2772,"children":2774},{"className":2773},[],[2775],{"type":52,"value":2776},"disk",{"type":52,"value":2778}," (",{"type":46,"tag":61,"props":2780,"children":2782},{"className":2781},[],[2783],{"type":52,"value":1137},{"type":52,"value":76},{"type":46,"tag":61,"props":2786,"children":2788},{"className":2787},[],[2789],{"type":52,"value":2790},"mountPath",{"type":52,"value":76},{"type":46,"tag":61,"props":2793,"children":2795},{"className":2794},[],[2796],{"type":52,"value":2797},"sizeGB",{"type":52,"value":288},{"type":46,"tag":237,"props":2800,"children":2801},{},[2802,2807],{"type":46,"tag":259,"props":2803,"children":2804},{},[2805],{"type":52,"value":2806},"Scale",{"type":46,"tag":259,"props":2808,"children":2809},{},[2810,2816,2818,2824],{"type":46,"tag":61,"props":2811,"children":2813},{"className":2812},[],[2814],{"type":52,"value":2815},"scaling",{"type":52,"value":2817}," \u002F ",{"type":46,"tag":61,"props":2819,"children":2821},{"className":2820},[],[2822],{"type":52,"value":2823},"numInstances",{"type":52,"value":2825}," (see references)",{"type":46,"tag":237,"props":2827,"children":2828},{},[2829,2834],{"type":46,"tag":259,"props":2830,"children":2831},{},[2832],{"type":52,"value":2833},"Monorepo",{"type":46,"tag":259,"props":2835,"children":2836},{},[2837,2843,2844,2850,2851,2857],{"type":46,"tag":61,"props":2838,"children":2840},{"className":2839},[],[2841],{"type":52,"value":2842},"buildFilter",{"type":52,"value":2778},{"type":46,"tag":61,"props":2845,"children":2847},{"className":2846},[],[2848],{"type":52,"value":2849},"paths",{"type":52,"value":76},{"type":46,"tag":61,"props":2852,"children":2854},{"className":2853},[],[2855],{"type":52,"value":2856},"ignoredPaths",{"type":52,"value":288},{"type":46,"tag":237,"props":2859,"children":2860},{},[2861,2866],{"type":46,"tag":259,"props":2862,"children":2863},{},[2864],{"type":52,"value":2865},"Docker",{"type":46,"tag":259,"props":2867,"children":2868},{},[2869,2874,2875,2880,2881,2886,2887],{"type":46,"tag":61,"props":2870,"children":2872},{"className":2871},[],[2873],{"type":52,"value":1033},{"type":52,"value":76},{"type":46,"tag":61,"props":2876,"children":2878},{"className":2877},[],[2879],{"type":52,"value":1040},{"type":52,"value":76},{"type":46,"tag":61,"props":2882,"children":2884},{"className":2883},[],[2885],{"type":52,"value":1047},{"type":52,"value":76},{"type":46,"tag":61,"props":2888,"children":2890},{"className":2889},[],[2891],{"type":52,"value":1067},{"type":46,"tag":55,"props":2893,"children":2894},{},[2895,2897,2903,2905,2910,2912,2917,2918,2923,2924,2930,2931,2936,2937,2943,2944,2949,2951,2956],{"type":52,"value":2896},"Deprecated names to avoid: ",{"type":46,"tag":61,"props":2898,"children":2900},{"className":2899},[],[2901],{"type":52,"value":2902},"env",{"type":52,"value":2904}," (use ",{"type":46,"tag":61,"props":2906,"children":2908},{"className":2907},[],[2909],{"type":52,"value":911},{"type":52,"value":2911},"), ",{"type":46,"tag":61,"props":2913,"children":2915},{"className":2914},[],[2916],{"type":52,"value":892},{"type":52,"value":2904},{"type":46,"tag":61,"props":2919,"children":2921},{"className":2920},[],[2922],{"type":52,"value":878},{"type":52,"value":2911},{"type":46,"tag":61,"props":2925,"children":2927},{"className":2926},[],[2928],{"type":52,"value":2929},"autoDeploy",{"type":52,"value":2904},{"type":46,"tag":61,"props":2932,"children":2934},{"className":2933},[],[2935],{"type":52,"value":2691},{"type":52,"value":2911},{"type":46,"tag":61,"props":2938,"children":2940},{"className":2939},[],[2941],{"type":52,"value":2942},"pullRequestPreviewsEnabled",{"type":52,"value":2904},{"type":46,"tag":61,"props":2945,"children":2947},{"className":2946},[],[2948],{"type":52,"value":2339},{"type":52,"value":2950},"). Details: ",{"type":46,"tag":61,"props":2952,"children":2954},{"className":2953},[],[2955],{"type":52,"value":386},{"type":52,"value":116},{"type":46,"tag":118,"props":2958,"children":2960},{"id":2959},"references",[2961],{"type":52,"value":2962},"References",{"type":46,"tag":229,"props":2964,"children":2965},{},[2966,2982],{"type":46,"tag":233,"props":2967,"children":2968},{},[2969],{"type":46,"tag":237,"props":2970,"children":2971},{},[2972,2977],{"type":46,"tag":241,"props":2973,"children":2974},{},[2975],{"type":52,"value":2976},"Document",{"type":46,"tag":241,"props":2978,"children":2979},{},[2980],{"type":52,"value":2981},"Contents",{"type":46,"tag":252,"props":2983,"children":2984},{},[2985,3002,3048,3071],{"type":46,"tag":237,"props":2986,"children":2987},{},[2988,2997],{"type":46,"tag":259,"props":2989,"children":2990},{},[2991],{"type":46,"tag":61,"props":2992,"children":2994},{"className":2993},[],[2995],{"type":52,"value":2996},"references\u002Ffield-reference.md",{"type":46,"tag":259,"props":2998,"children":2999},{},[3000],{"type":52,"value":3001},"YAML fields by service type, database, groups, projects, previews, scaling, disk, static, Key Value",{"type":46,"tag":237,"props":3003,"children":3004},{},[3005,3013],{"type":46,"tag":259,"props":3006,"children":3007},{},[3008],{"type":46,"tag":61,"props":3009,"children":3011},{"className":3010},[],[3012],{"type":52,"value":1263},{"type":46,"tag":259,"props":3014,"children":3015},{},[3016,3021,3022,3027,3028,3033,3035,3040,3041,3046],{"type":46,"tag":61,"props":3017,"children":3019},{"className":3018},[],[3020],{"type":52,"value":1118},{"type":52,"value":2817},{"type":46,"tag":61,"props":3023,"children":3025},{"className":3024},[],[3026],{"type":52,"value":1196},{"type":52,"value":2817},{"type":46,"tag":61,"props":3029,"children":3031},{"className":3030},[],[3032],{"type":52,"value":1274},{"type":52,"value":3034}," examples, ",{"type":46,"tag":61,"props":3036,"children":3038},{"className":3037},[],[3039],{"type":52,"value":1349},{"type":52,"value":76},{"type":46,"tag":61,"props":3042,"children":3044},{"className":3043},[],[3045],{"type":52,"value":1327},{"type":52,"value":3047},", combinations",{"type":46,"tag":237,"props":3049,"children":3050},{},[3051,3059],{"type":46,"tag":259,"props":3052,"children":3053},{},[3054],{"type":46,"tag":61,"props":3055,"children":3057},{"className":3056},[],[3058],{"type":52,"value":386},{"type":46,"tag":259,"props":3060,"children":3061},{},[3062,3064,3069],{"type":52,"value":3063},"Branch + previews, ",{"type":46,"tag":61,"props":3065,"children":3067},{"className":3066},[],[3068],{"type":52,"value":2842},{"type":52,"value":3070},", replicas, duplicates, preview plans, wiring mistakes",{"type":46,"tag":237,"props":3072,"children":3073},{},[3074,3082],{"type":46,"tag":259,"props":3075,"children":3076},{},[3077],{"type":46,"tag":61,"props":3078,"children":3080},{"className":3079},[],[3081],{"type":52,"value":2410},{"type":46,"tag":259,"props":3083,"children":3084},{},[3085,3090,3092,3097],{"type":46,"tag":61,"props":3086,"children":3088},{"className":3087},[],[3089],{"type":52,"value":2339},{"type":52,"value":3091},", expiry, overrides, ",{"type":46,"tag":61,"props":3093,"children":3095},{"className":3094},[],[3096],{"type":52,"value":2402},{"type":52,"value":3098},", disks, PR workflow",{"type":46,"tag":118,"props":3100,"children":3102},{"id":3101},"related-skills",[3103],{"type":52,"value":3104},"Related Skills",{"type":46,"tag":130,"props":3106,"children":3107},{},[3108,3117,3126],{"type":46,"tag":134,"props":3109,"children":3110},{},[3111,3115],{"type":46,"tag":70,"props":3112,"children":3113},{},[3114],{"type":52,"value":199},{"type":52,"value":3116}," — Deploy flows, Blueprint vs direct create, MCP\u002Fdeeplinks",{"type":46,"tag":134,"props":3118,"children":3119},{},[3120,3124],{"type":46,"tag":70,"props":3121,"children":3122},{},[3123],{"type":52,"value":206},{"type":52,"value":3125}," — Env var strategy, secrets, Dashboard vs Blueprint",{"type":46,"tag":134,"props":3127,"children":3128},{},[3129,3133],{"type":46,"tag":70,"props":3130,"children":3131},{},[3132],{"type":52,"value":213},{"type":52,"value":3134}," — Dockerfile-backed services and image runtime nuances",{"type":46,"tag":3136,"props":3137,"children":3138},"style",{},[3139],{"type":52,"value":3140},"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":3142,"total":3262},[3143,3161,3177,3189,3209,3231,3251],{"slug":3144,"name":3144,"fn":3145,"description":3146,"org":3147,"tags":3148,"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},[3149,3152,3155,3158],{"name":3150,"slug":3151,"type":15},"Accessibility","accessibility",{"name":3153,"slug":3154,"type":15},"Charts","charts",{"name":3156,"slug":3157,"type":15},"Data Visualization","data-visualization",{"name":3159,"slug":3160,"type":15},"Design","design",{"slug":3162,"name":3162,"fn":3163,"description":3164,"org":3165,"tags":3166,"stars":25,"repoUrl":26,"updatedAt":3176},"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},[3167,3170,3173],{"name":3168,"slug":3169,"type":15},"Agents","agents",{"name":3171,"slug":3172,"type":15},"Browser Automation","browser-automation",{"name":3174,"slug":3175,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":3178,"name":3178,"fn":3179,"description":3180,"org":3181,"tags":3182,"stars":25,"repoUrl":26,"updatedAt":3188},"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},[3183,3184,3187],{"name":3171,"slug":3172,"type":15},{"name":3185,"slug":3186,"type":15},"Local Development","local-development",{"name":3174,"slug":3175,"type":15},"2026-04-06T18:41:17.526867",{"slug":3190,"name":3190,"fn":3191,"description":3192,"org":3193,"tags":3194,"stars":25,"repoUrl":26,"updatedAt":3208},"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},[3195,3196,3199,3202,3205],{"name":3168,"slug":3169,"type":15},{"name":3197,"slug":3198,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":3200,"slug":3201,"type":15},"SDK","sdk",{"name":3203,"slug":3204,"type":15},"Serverless","serverless",{"name":3206,"slug":3207,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":3210,"name":3210,"fn":3211,"description":3212,"org":3213,"tags":3214,"stars":25,"repoUrl":26,"updatedAt":3230},"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},[3215,3218,3221,3224,3227],{"name":3216,"slug":3217,"type":15},"Frontend","frontend",{"name":3219,"slug":3220,"type":15},"React","react",{"name":3222,"slug":3223,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":3225,"slug":3226,"type":15},"UI Components","ui-components",{"name":3228,"slug":3229,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":3232,"name":3232,"fn":3233,"description":3234,"org":3235,"tags":3236,"stars":25,"repoUrl":26,"updatedAt":3250},"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},[3237,3240,3243,3246,3249],{"name":3238,"slug":3239,"type":15},"AI Infrastructure","ai-infrastructure",{"name":3241,"slug":3242,"type":15},"Cost Optimization","cost-optimization",{"name":3244,"slug":3245,"type":15},"LLM","llm",{"name":3247,"slug":3248,"type":15},"Performance","performance",{"name":3228,"slug":3229,"type":15},"2026-04-06T18:40:44.377464",{"slug":3252,"name":3252,"fn":3253,"description":3254,"org":3255,"tags":3256,"stars":25,"repoUrl":26,"updatedAt":3261},"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},[3257,3258,3260],{"name":3241,"slug":3242,"type":15},{"name":3259,"slug":1186,"type":15},"Database",{"name":3244,"slug":3245,"type":15},"2026-04-06T18:41:08.513425",600,{"items":3264,"total":3459},[3265,3286,3309,3326,3342,3357,3376,3388,3402,3416,3428,3443],{"slug":3266,"name":3266,"fn":3267,"description":3268,"org":3269,"tags":3270,"stars":3283,"repoUrl":3284,"updatedAt":3285},"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},[3271,3274,3277,3280],{"name":3272,"slug":3273,"type":15},"Documents","documents",{"name":3275,"slug":3276,"type":15},"Healthcare","healthcare",{"name":3278,"slug":3279,"type":15},"Insurance","insurance",{"name":3281,"slug":3282,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":3287,"name":3287,"fn":3288,"description":3289,"org":3290,"tags":3291,"stars":3306,"repoUrl":3307,"updatedAt":3308},"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},[3292,3295,3297,3300,3303],{"name":3293,"slug":3294,"type":15},".NET","dotnet",{"name":3296,"slug":3287,"type":15},"ASP.NET Core",{"name":3298,"slug":3299,"type":15},"Blazor","blazor",{"name":3301,"slug":3302,"type":15},"C#","csharp",{"name":3304,"slug":3305,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":3310,"name":3310,"fn":3311,"description":3312,"org":3313,"tags":3314,"stars":3306,"repoUrl":3307,"updatedAt":3325},"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},[3315,3318,3321,3324],{"name":3316,"slug":3317,"type":15},"Apps SDK","apps-sdk",{"name":3319,"slug":3320,"type":15},"ChatGPT","chatgpt",{"name":3322,"slug":3323,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":3327,"name":3327,"fn":3328,"description":3329,"org":3330,"tags":3331,"stars":3306,"repoUrl":3307,"updatedAt":3341},"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},[3332,3335,3338],{"name":3333,"slug":3334,"type":15},"API Development","api-development",{"name":3336,"slug":3337,"type":15},"CLI","cli",{"name":3339,"slug":3340,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":3343,"name":3343,"fn":3344,"description":3345,"org":3346,"tags":3347,"stars":3306,"repoUrl":3307,"updatedAt":3356},"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},[3348,3351,3354,3355],{"name":3349,"slug":3350,"type":15},"Cloudflare","cloudflare",{"name":3352,"slug":3353,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":3197,"slug":3198,"type":15},{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":3358,"name":3358,"fn":3359,"description":3360,"org":3361,"tags":3362,"stars":3306,"repoUrl":3307,"updatedAt":3375},"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},[3363,3366,3369,3372],{"name":3364,"slug":3365,"type":15},"Productivity","productivity",{"name":3367,"slug":3368,"type":15},"Project Management","project-management",{"name":3370,"slug":3371,"type":15},"Strategy","strategy",{"name":3373,"slug":3374,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":3377,"name":3377,"fn":3378,"description":3379,"org":3380,"tags":3381,"stars":3306,"repoUrl":3307,"updatedAt":3387},"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},[3382,3383,3385,3386],{"name":3159,"slug":3160,"type":15},{"name":3384,"slug":3377,"type":15},"Figma",{"name":3216,"slug":3217,"type":15},{"name":3322,"slug":3323,"type":15},"2026-04-12T05:06:47.939943",{"slug":3389,"name":3389,"fn":3390,"description":3391,"org":3392,"tags":3393,"stars":3306,"repoUrl":3307,"updatedAt":3401},"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},[3394,3395,3398,3399,3400],{"name":3159,"slug":3160,"type":15},{"name":3396,"slug":3397,"type":15},"Design System","design-system",{"name":3384,"slug":3377,"type":15},{"name":3216,"slug":3217,"type":15},{"name":3225,"slug":3226,"type":15},"2026-05-10T05:59:52.971881",{"slug":3403,"name":3403,"fn":3404,"description":3405,"org":3406,"tags":3407,"stars":3306,"repoUrl":3307,"updatedAt":3415},"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},[3408,3409,3410,3413,3414],{"name":3159,"slug":3160,"type":15},{"name":3396,"slug":3397,"type":15},{"name":3411,"slug":3412,"type":15},"Documentation","documentation",{"name":3384,"slug":3377,"type":15},{"name":3216,"slug":3217,"type":15},"2026-05-16T06:07:47.821474",{"slug":3417,"name":3417,"fn":3418,"description":3419,"org":3420,"tags":3421,"stars":3306,"repoUrl":3307,"updatedAt":3427},"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},[3422,3423,3424,3425,3426],{"name":3159,"slug":3160,"type":15},{"name":3384,"slug":3377,"type":15},{"name":3216,"slug":3217,"type":15},{"name":3225,"slug":3226,"type":15},{"name":3304,"slug":3305,"type":15},"2026-05-16T06:07:40.583615",{"slug":3429,"name":3429,"fn":3430,"description":3431,"org":3432,"tags":3433,"stars":3306,"repoUrl":3307,"updatedAt":3442},"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},[3434,3437,3438,3441],{"name":3435,"slug":3436,"type":15},"Animation","animation",{"name":3339,"slug":3340,"type":15},{"name":3439,"slug":3440,"type":15},"Creative","creative",{"name":3159,"slug":3160,"type":15},"2026-05-02T05:31:48.48485",{"slug":3444,"name":3444,"fn":3445,"description":3446,"org":3447,"tags":3448,"stars":3306,"repoUrl":3307,"updatedAt":3458},"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},[3449,3450,3451,3454,3457],{"name":3439,"slug":3440,"type":15},{"name":3159,"slug":3160,"type":15},{"name":3452,"slug":3453,"type":15},"Image Generation","image-generation",{"name":3455,"slug":3456,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]