What problem does it solve? Managing environment variables across Render services is error-prone: values arrive as strings, secrets risk being committed to Git, and Blueprint wiring patterns like sync: false and fromService behave in non-obvious ways. This Skill provides authoritative guidance for setting, wiring, and debugging environment configuration on Render. ## Core Features & Use Cases - Three configuration paths: Covers Dashboard edits (individual or bulk .env import), Blueprint envVars in render.yaml, and MCP/API automation for CI-driven secret rotation. - Secret management patterns: Explains generateValue: true for platform-generated 256-bit secrets, sync: false for Dashboard-prompted values, and secret files mounted at /etc/secrets/<filename>. - Blueprint wiring reference: Documents fromDatabase, fromService, and fromGroup patterns with YAML examples, plus precedence rules where service-level vars override group vars. - Use Case: You are deploying a Fastify API that needs a database connection string, a Redis URL, and a third-party API key. Use this Skill to wire DATABASE_URL via fromDatabase, REDIS_URL via fromService, and the API key via sync: false without committing secrets to Git. ## Quick Start Ask the assistant to configure a DATABASE_URL environment variable on your Render web service using a Blueprint fromDatabase reference.