# Render Deploy

> Use when the user wants to deploy, publish, or set up an application on Render; prefer the Git-backed Blueprint flow with `render.yaml`, validate when the Render CLI is available, and return a dashboard deeplink plus next steps.

- Skill: `hebertzhu/render-deploy` (Agent Skill)
- Install (CLI): `npx skillmds@latest add hebertzhu/render-deploy`
- Raw SKILL.md: https://api.skillmd.com/api/skills/hebertzhu/render-deploy/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: hebertzhu (https://skillmd.com/u/hebertzhu)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/hebertzhu/render-deploy

---


# Render Deploy

## Intent
- Use for Render deployment planning, `render.yaml` authoring, and Git-backed Blueprint handoff with a reproducible deploy path.

## Default operating pattern
1. Confirm the repository already has a pushed Git remote before designing the deploy flow; if not, stop and ask the user to push the repo first.
2. Analyze the app shape and decide whether the Blueprint should include a web service, static site, worker, cron job, or supporting datastore.
3. Create or update a minimal `render.yaml` that keeps secrets unresolved and documents the actual build, start, and runtime requirements.
4. If the Render CLI is available, run `render blueprints validate`; otherwise, call out the missing validation step clearly instead of pretending it was checked.
5. Convert the Git remote to an HTTPS URL if needed, then build the Blueprint deeplink as `https://dashboard.render.com/blueprint/new?repo=<HTTPS_REPO_URL>`.
6. Return the deeplink and the next manual steps: push `render.yaml`, fill secrets, apply the Blueprint, and monitor the first deploy in Render.

## Pack fit
- Included in: `deploy-ops`
- Favor the reproducible Blueprint path over host-specific automation or private deployment glue.

## Boundary
- Do not continue with a Blueprint flow if the repository is not pushed to a supported Git host.
- Do not assume image-backed direct deploys, MCP automation, or pre-created infrastructure unless the current environment already exposes them.

