What problem does it solve? Writing Render Blueprints by hand is error-prone: miswired service references, deprecated field names, immutable fields changed after creation, and misconfigured preview environments all cause failed deploys or destroyed resources. This Skill provides the schema knowledge, wiring patterns, and validation workflow needed to author correct render.yaml files the first time. ## Core Features & Use Cases - Blueprint Authoring: Defines services (web, worker, cron, pserv, keyvalue, static), databases, env var groups, and projects/environments with correct field names and structure. - Cross-Service Wiring: Connects resources with fromDatabase, fromService, fromGroup, generateValue, and sync:false patterns instead of hardcoding connection strings. - Validation & Safety: Validates against the official JSON Schema and Render CLI, and flags immutable fields (type, runtime, database name/region/version) and destructive mistakes like empty readReplicas lists. - Use Case: You need to deploy a multi-service app with a web API, background worker, Postgres, and Key Value across production and staging environments. Use this Skill to generate a projects/environments Blueprint with proper wiring, then validate it with render blueprints validate before merging. ## Quick Start Ask the assistant to write a render.yaml Blueprint for your app with a web service, worker, Postgres database, and Key Value instance wired together, then validate it.