A catalog of 21 skills that teach AI coding tools how to deploy, operate, and debug apps on Render. Each skill is a self-contained SKILL.md plus references that any compatible agent can use.
Use this repo to:
| Feature | Claude Code | Codex | OpenCode | Cursor |
|---|---|---|---|---|
Skill prompts (SKILL.md) | ✅ | ✅ | ✅ | ✅ |
| Render CLI commands | ✅ | ✅ | ✅ | ✅ |
| Render MCP tools | ✅ | ✅ | ✅ | ✅ |
| Auto-approval hooks | ✅ | ❌ | ❌ | ❌ |
The recommended way to install Render skills is the Render CLI:
render skills install
Other useful commands:
render skills # interactive management
render skills list # show installed skills
render skills update # update installed skills
npx skills add render-oss/skills/plugin marketplace add render-oss/skills then /plugin install render@skillsskills/ into your tool's skills path (~/.claude/skills/, ~/.codex/skills/, ~/.config/opencode/skills/, or ~/.cursor/skills/)RENDER_API_KEY environment variable| Skill | What it helps with |
|---|---|
render-mcp | Set up and troubleshoot the Render MCP server |
render-cli | Install and use the Render CLI for deploys, logs, SSH, and automation |
render-deploy | Deploy applications to Render |
render-blueprints | Author and validate render.yaml Blueprints |
| Skill | What it helps with |
|---|---|
render-web-services | Configure public web services, health checks, and TLS |
render-private-services | Design internal-only services on Render's private network |
render-static-sites | Deploy static sites, SPAs, redirects, and custom headers |
render-background-workers | Set up queue-based background workers and graceful shutdown |
render-cron-jobs | Configure scheduled jobs and cron expressions |
render-workflows | Set up and develop Render Workflows |
| Skill | What it helps with |
|---|---|
render-docker | Build and deploy Docker-based services |
render-env-vars | Manage env vars, secrets, and env groups |
render-disks | Attach and manage persistent disks |
| Skill | What it helps with |
|---|---|
render-domains | Configure custom domains and troubleshoot TLS |
render-networking | Connect services over Render's private network |
| Skill | What it helps with |
|---|---|
render-postgres | Operate Managed PostgreSQL, backups, replicas, and connections |
render-keyvalue | Provision and tune Render Key Value |
| Skill | What it helps with |
|---|---|
render-monitor | Check service health, metrics, and logs |
render-debug | Diagnose failed deploys, startup issues, and runtime errors |
render-scaling | Configure autoscaling, instance sizing, and cost tradeoffs |
render-migrate-from-heroku | Migrate Heroku apps to Render |
Once installed, ask your agent things like:
The repo ships hook configuration that lets Claude Code auto-approve safe, read-only Render CLI operations:
render services list, render services -o jsonrender logs -r, render logs --rawrender workspace current, render workspace listAnything that changes infrastructure still requires explicit approval, including deploys, restarts, service creation and deletion, configuration changes, and workspace changes.
Create skills/your-skill-name/ with a SKILL.md.
Add supporting files as needed: references/, assets/, and evals.json.
Add frontmatter at the top of SKILL.md:
---
name: your-skill-name
description: One sentence describing when an agent should use this skill.
license: MIT
compatibility: Prerequisites and requirements
metadata:
author: Render
version: "1.0.0"
category: deployment
---
Keep SKILL.md short and action-oriented. Move depth into references/.
Test locally with your target tool.
For reference, look at render-deploy, render-debug, render-monitor, or render-workflows.
skills/
├── .github/workflows/ # CI
├── hooks/ # Auto-approval hook config for Claude Code
├── scripts/ # Install and helper scripts
├── skills/ # 21 skill directories
├── README.md
└── LICENSE
MIT License. See LICENSE.
Shell
100.0%
A catalog of 21 skills that teach AI coding tools how to deploy, operate, and debug apps on Render. Each skill is a self-contained SKILL.md plus references that any compatible agent can use.
Use this repo to:
| Feature | Claude Code | Codex | OpenCode | Cursor |
|---|---|---|---|---|
Skill prompts (SKILL.md) | ✅ | ✅ | ✅ | ✅ |
| Render CLI commands | ✅ | ✅ | ✅ | ✅ |
| Render MCP tools | ✅ | ✅ | ✅ | ✅ |
| Auto-approval hooks | ✅ | ❌ | ❌ | ❌ |
The recommended way to install Render skills is the Render CLI:
render skills install
Other useful commands:
render skills # interactive management
render skills list # show installed skills
render skills update # update installed skills
npx skills add render-oss/skills/plugin marketplace add render-oss/skills then /plugin install render@skillsskills/ into your tool's skills path (~/.claude/skills/, ~/.codex/skills/, ~/.config/opencode/skills/, or ~/.cursor/skills/)RENDER_API_KEY environment variable| Skill | What it helps with |
|---|---|
render-mcp | Set up and troubleshoot the Render MCP server |
render-cli | Install and use the Render CLI for deploys, logs, SSH, and automation |
render-deploy | Deploy applications to Render |
render-blueprints | Author and validate render.yaml Blueprints |
| Skill | What it helps with |
|---|---|
render-web-services | Configure public web services, health checks, and TLS |
render-private-services | Design internal-only services on Render's private network |
render-static-sites | Deploy static sites, SPAs, redirects, and custom headers |
render-background-workers | Set up queue-based background workers and graceful shutdown |
render-cron-jobs | Configure scheduled jobs and cron expressions |
render-workflows | Set up and develop Render Workflows |
| Skill | What it helps with |
|---|---|
render-docker | Build and deploy Docker-based services |
render-env-vars | Manage env vars, secrets, and env groups |
render-disks | Attach and manage persistent disks |
| Skill | What it helps with |
|---|---|
render-domains | Configure custom domains and troubleshoot TLS |
render-networking | Connect services over Render's private network |
| Skill | What it helps with |
|---|---|
render-postgres | Operate Managed PostgreSQL, backups, replicas, and connections |
render-keyvalue | Provision and tune Render Key Value |
| Skill | What it helps with |
|---|---|
render-monitor | Check service health, metrics, and logs |
render-debug | Diagnose failed deploys, startup issues, and runtime errors |
render-scaling | Configure autoscaling, instance sizing, and cost tradeoffs |
render-migrate-from-heroku | Migrate Heroku apps to Render |
Once installed, ask your agent things like:
The repo ships hook configuration that lets Claude Code auto-approve safe, read-only Render CLI operations:
render services list, render services -o jsonrender logs -r, render logs --rawrender workspace current, render workspace listAnything that changes infrastructure still requires explicit approval, including deploys, restarts, service creation and deletion, configuration changes, and workspace changes.
Create skills/your-skill-name/ with a SKILL.md.
Add supporting files as needed: references/, assets/, and evals.json.
Add frontmatter at the top of SKILL.md:
---
name: your-skill-name
description: One sentence describing when an agent should use this skill.
license: MIT
compatibility: Prerequisites and requirements
metadata:
author: Render
version: "1.0.0"
category: deployment
---
Keep SKILL.md short and action-oriented. Move depth into references/.
Test locally with your target tool.
For reference, look at render-deploy, render-debug, render-monitor, or render-workflows.
skills/
├── .github/workflows/ # CI
├── hooks/ # Auto-approval hook config for Claude Code
├── scripts/ # Install and helper scripts
├── skills/ # 21 skill directories
├── README.md
└── LICENSE
MIT License. See LICENSE.
Shell
100.0%