What problem does it solve? Managing Render services through the Dashboard is slow for repetitive operations and impossible to script in CI/CD pipelines. This Skill provides the commands and patterns to install, authenticate, and operate the Render CLI for deploys, logs, database access, and Blueprint validation from any terminal or automation environment. ## Core Features & Use Cases - Deployment Automation: Trigger deploys with render deploys create, wait for completion, and deploy specific commits or Docker images with non-interactive flags. - Operational Access: Tail logs in real time, SSH into running instances or ephemeral shells, and run psql queries against Render Postgres with JSON or CSV output. - CI/CD Integration: Authenticate with RENDER_API_KEY, force machine-readable output with -o json and --confirm, and script the full workflow in GitHub Actions. - Use Case: A team wants every merge to main to deploy automatically. Install the CLI in a GitHub Actions job, set RENDER_API_KEY as a secret, and run render deploys create <service-id> --wait --confirm -o json so the pipeline fails if the deploy fails. ## Quick Start Install the Render CLI, authenticate with an API key, and trigger a deploy for my service while waiting for it to complete.