Best use case
Render — Cloud Application Platform is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
## Overview
Teams using Render — Cloud Application Platform should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/render/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How Render — Cloud Application Platform Compares
| Feature / Agent | Render — Cloud Application Platform | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
## Overview
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Render — Cloud Application Platform
## Overview
Render, the modern cloud platform for deploying web applications, APIs, databases, and background workers. Helps developers configure Render services using `render.yaml` Infrastructure as Code, set up auto-deploy from Git, manage environment variables, and optimize for production workloads.
## Instructions
### Infrastructure as Code
Define all services in a single `render.yaml`:
```yaml
# render.yaml — Complete application infrastructure
services:
# Web service — auto-deployed from Git
- type: web
name: api-server
runtime: node
region: oregon
plan: standard # free | starter | standard | pro
buildCommand: npm ci && npm run build
startCommand: npm start
envVars:
- key: NODE_ENV
value: production
- key: DATABASE_URL
fromDatabase:
name: main-db
property: connectionString
- key: REDIS_URL
fromService:
name: redis-cache
type: redis
property: connectionString
- key: JWT_SECRET
generateValue: true # Auto-generate a random secret
- key: SENTRY_DSN
sync: false # Must be set manually in dashboard
autoDeploy: true # Deploy on every push to branch
healthCheckPath: /health
numInstances: 2 # Horizontal scaling
scaling:
minInstances: 1
maxInstances: 5
targetMemoryPercent: 70
targetCPUPercent: 60
# Background worker — same repo, different entry point
- type: worker
name: job-processor
runtime: node
buildCommand: npm ci && npm run build
startCommand: npm run worker
envVars:
- key: DATABASE_URL
fromDatabase:
name: main-db
property: connectionString
- key: REDIS_URL
fromService:
name: redis-cache
type: redis
property: connectionString
# Static site — frontend SPA
- type: web
name: frontend
runtime: static
buildCommand: cd frontend && npm ci && npm run build
staticPublishPath: frontend/dist
headers:
- path: /*
name: Cache-Control
value: public, max-age=31536000, immutable
- path: /index.html
name: Cache-Control
value: no-cache
routes:
- type: rewrite
source: /*
destination: /index.html # SPA routing fallback
# Cron job — scheduled tasks
- type: cron
name: daily-cleanup
runtime: node
buildCommand: npm ci
startCommand: npm run cleanup
schedule: "0 3 * * *" # 3 AM daily
envVars:
- key: DATABASE_URL
fromDatabase:
name: main-db
property: connectionString
# Private service (internal only, no public URL)
- type: pserv
name: internal-api
runtime: docker
dockerfilePath: ./Dockerfile
envVars:
- key: PORT
value: "3001"
databases:
- name: main-db
plan: standard # free | starter | standard | pro
databaseName: myapp
postgresMajorVersion: 16
ipAllowList: [] # Empty = allow all Render services
- name: redis-cache
plan: starter
```
### Dockerfile Deployment
Deploy any application with Docker:
```dockerfile
# Dockerfile — Multi-stage build for a Node.js API
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
RUN npm run build
FROM node:20-alpine AS runner
WORKDIR /app
RUN addgroup -g 1001 -S nodejs && adduser -S nodejs -u 1001
COPY --from=builder --chown=nodejs:nodejs /app/dist ./dist
COPY --from=builder --chown=nodejs:nodejs /app/node_modules ./node_modules
COPY --from=builder --chown=nodejs:nodejs /app/package.json ./
USER nodejs
EXPOSE 3000
ENV NODE_ENV=production
CMD ["node", "dist/index.js"]
```
### Blueprint Sync API
Programmatically manage services:
```typescript
// scripts/deploy.ts — Trigger manual deploy via Render API
const RENDER_API_KEY = process.env.RENDER_API_KEY!;
const SERVICE_ID = process.env.RENDER_SERVICE_ID!;
async function triggerDeploy(commitId?: string) {
const response = await fetch(
`https://api.render.com/v1/services/${SERVICE_ID}/deploys`,
{
method: "POST",
headers: {
Authorization: `Bearer ${RENDER_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
clearCache: "do_not_clear",
}),
}
);
const deploy = await response.json();
console.log(`Deploy triggered: ${deploy.id} (status: ${deploy.status})`);
return deploy;
}
// List recent deploys
async function getDeployHistory() {
const response = await fetch(
`https://api.render.com/v1/services/${SERVICE_ID}/deploys?limit=10`,
{
headers: { Authorization: `Bearer ${RENDER_API_KEY}` },
}
);
return response.json();
}
// Scale service
async function scaleService(numInstances: number) {
const response = await fetch(
`https://api.render.com/v1/services/${SERVICE_ID}/scale`,
{
method: "POST",
headers: {
Authorization: `Bearer ${RENDER_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({ numInstances }),
}
);
return response.json();
}
```
### Custom Domains and SSL
```yaml
# render.yaml — Custom domain configuration
services:
- type: web
name: api-server
customDomains:
- domain: api.myapp.com # SSL auto-provisioned via Let's Encrypt
- domain: api.myapp.io
```
### Environment Groups
Share environment variables across services:
```yaml
# render.yaml — Using environment groups
envVarGroups:
- name: shared-config
envVars:
- key: LOG_LEVEL
value: info
- key: CORS_ORIGIN
value: https://myapp.com
- key: AWS_REGION
value: us-east-1
services:
- type: web
name: api-server
envVars:
- fromGroup: shared-config
- key: PORT
value: "3000"
- type: worker
name: job-processor
envVars:
- fromGroup: shared-config
```
## Examples
### Example 1: Setting up Render for a microservices project
**User request:**
```
I have a Node.js API and a React frontend running in Docker. Set up Render for monitoring/deployment.
```
The agent creates the necessary configuration files based on patterns like `# render.yaml — Complete application infrastructure`, sets up the integration with the existing Docker setup, configures appropriate defaults for a Node.js + React stack, and provides verification commands to confirm everything is working.
### Example 2: Troubleshooting dockerfile deployment issues
**User request:**
```
Render is showing errors in our dockerfile deployment. Here are the logs: [error output]
```
The agent analyzes the error output, identifies the root cause by cross-referencing with common Render issues, applies the fix (updating configuration, adjusting resource limits, or correcting syntax), and verifies the resolution with appropriate health checks.
## Guidelines
1. **Use render.yaml** — Infrastructure as Code is versioned with your app; no manual dashboard config to reproduce
2. **Health checks are mandatory** — Set `healthCheckPath` so Render knows when your service is ready and can route traffic
3. **Auto-scaling for production** — Configure min/max instances with CPU/memory targets instead of fixed instance counts
4. **Environment groups for shared config** — Don't duplicate environment variables across services; use `fromGroup`
5. **Use `generateValue: true` for secrets** — Let Render generate random values for JWT secrets, API keys, etc.
6. **Preview environments** — Enable pull request previews for staging; each PR gets its own URL
7. **Multi-stage Docker builds** — Keep production images small; separate build and runtime stages
8. **Database connection pooling** — Use PgBouncer or connection pooling in your ORM; Render databases have connection limitsRelated Skills
tracking-application-response-times
Track and optimize application response times across API endpoints, database queries, and service calls. Use when monitoring performance or identifying bottlenecks. Trigger with phrases like "track response times", "monitor API performance", or "analyze latency".
profiling-application-performance
Execute this skill enables AI assistant to profile application performance, analyzing cpu usage, memory consumption, and execution time. it is triggered when the user requests performance analysis, bottleneck identification, or optimization recommendations. the... Use when optimizing performance. Trigger with phrases like 'optimize', 'performance', or 'speed up'.
optimizing-cloud-costs
Execute use when you need to work with cloud cost optimization. This skill provides cost analysis and optimization with comprehensive guidance and automation. Trigger with phrases like "optimize costs", "analyze spending", or "reduce costs".
Google Cloud Agent SDK Master
Execute automatic activation for all google cloud agent development kit (adk) Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.
cloudwatch-alarm-creator
Cloudwatch Alarm Creator - Auto-activating skill for AWS Skills. Triggers on: cloudwatch alarm creator, cloudwatch alarm creator Part of the AWS Skills skill category.
cloudfront-distribution-setup
Cloudfront Distribution Setup - Auto-activating skill for AWS Skills. Triggers on: cloudfront distribution setup, cloudfront distribution setup Part of the AWS Skills skill category.
cloudformation-template-creator
Cloudformation Template Creator - Auto-activating skill for AWS Skills. Triggers on: cloudformation template creator, cloudformation template creator Part of the AWS Skills skill category.
cloud-tasks-queue-setup
Cloud Tasks Queue Setup - Auto-activating skill for GCP Skills. Triggers on: cloud tasks queue setup, cloud tasks queue setup Part of the GCP Skills skill category.
cloud-sql-instance-setup
Cloud Sql Instance Setup - Auto-activating skill for GCP Skills. Triggers on: cloud sql instance setup, cloud sql instance setup Part of the GCP Skills skill category.
cloud-security-posture
Cloud Security Posture - Auto-activating skill for Security Advanced. Triggers on: cloud security posture, cloud security posture Part of the Security Advanced skill category.
cloud-scheduler-job-creator
Cloud Scheduler Job Creator - Auto-activating skill for GCP Skills. Triggers on: cloud scheduler job creator, cloud scheduler job creator Part of the GCP Skills skill category.
cloud-run-service-config
Cloud Run Service Config - Auto-activating skill for GCP Skills. Triggers on: cloud run service config, cloud run service config Part of the GCP Skills skill category.