What problem does it solve? Managing environment variables and secrets across Render services is error-prone: values are always strings, Blueprint and Dashboard behavior diverge, and miswired references cause runtime failures. This Skill provides authoritative guidance for setting, wiring, and debugging env vars on Render. ## Core Features & Use Cases - Three configuration paths: Covers Dashboard edits, Blueprint envVars in render.yaml, and MCP/API automation for CI-driven secret rotation. - Secret management patterns: Explains generateValue: true, sync: false behavior, secret files under /etc/secrets/, and environment group precedence rules. - Blueprint wiring reference: Documents fromDatabase, fromService, and fromGroup patterns with complete YAML examples, plus platform-injected variables like PORT and RENDER_*. - Use Case: You are deploying a Node.js API on Render that needs a Postgres connection string, a Redis URL, and a third-party API key. Use this Skill to wire fromDatabase and fromService references in render.yaml and mark the API key as sync: false so it is never committed to Git. ## Quick Start Ask the assistant to wire a DATABASE_URL from a Render Postgres database and a generated session secret into your render.yaml service definition.