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:
- Install Render skills into your AI tool (Claude Code, Codex, Cursor, OpenCode)
- Browse what each skill does and link straight to its docs
- Contribute new skills or improve existing ones
| 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 installOther useful commands:
render skills # interactive management
render skills list # show installed skills
render skills update # update installed skills- Skills CLI:
npx skills add render-oss/skills - Claude Code plugin:
/plugin marketplace add render-oss/skillsthen/plugin install render@skills - Manual: copy any directory from
skills/into your tool's skills path (~/.claude/skills/,~/.codex/skills/,~/.config/opencode/skills/, or~/.cursor/skills/)
- A Render account with the Render MCP server configured, or the Render CLI installed
- A
RENDER_API_KEYenvironment variable - A Git repository on GitHub, GitLab, or Bitbucket for any deploy-related skill
| 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:
- "Deploy my application to Render."
- "Debug why my Render service won't start."
- "Is my Render service healthy?"
- "Set up a private service for this internal API."
- "Add a cron job that runs every night."
- "Configure custom domains for this web service."
- "Migrate my Heroku app to Render."
The repo ships hook configuration that lets Claude Code auto-approve safe, read-only Render CLI operations:
- Listing services:
render services list,render services -o json - Reading logs:
render logs -r,render logs --raw - Checking workspaces:
render workspace current,render workspace list
Anything 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 aSKILL.md. -
Add supporting files as needed:
references/,assets/, andevals.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.mdshort and action-oriented. Move depth intoreferences/. -
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
- Documentation: https://render.com/docs
- Issues: https://github.com/render-oss/skills/issues
- Render Support: mailto:support@render.com
MIT License. See LICENSE.