[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-deploy":3,"mdc--dhkp21-key":30,"related-repo-openai-render-deploy":3133,"related-org-openai-render-deploy":3256},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":19,"repoUrl":20,"updatedAt":21,"license":22,"forks":23,"topics":24,"repo":25,"sourceUrl":28,"mdContent":29},"render-deploy","deploy applications to Render","Deploy applications to Render by analyzing codebases, generating render.yaml Blueprints, and providing Dashboard deeplinks. Use when the user wants to deploy, host, publish, or set up their application on Render's cloud platform.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16],{"name":13,"slug":14,"type":15},"Render","render","tag",{"name":17,"slug":18,"type":15},"Deployment","deployment",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:08.110317",null,1614,[],{"repoUrl":20,"stars":19,"forks":23,"topics":26,"description":27},[],"Skills Catalog for Codex","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002F.curated\u002Frender-deploy","---\nname: render-deploy\ndescription: Deploy applications to Render by analyzing codebases, generating render.yaml Blueprints, and providing Dashboard deeplinks. Use when the user wants to deploy, host, publish, or set up their application on Render's cloud platform.\n---\n\n# Deploy to Render\n\nRender supports **Git-backed** services and **prebuilt Docker image** services.\n\nThis skill covers **Git-backed** flows:\n1. **Blueprint Method** - Generate render.yaml for Infrastructure-as-Code deployments\n2. **Direct Creation** - Create services instantly via MCP tools\n\nBlueprints can also run a **prebuilt Docker image** by using `runtime: image`, but the `render.yaml` still must live in a Git repo.\n\nIf there is no Git remote, stop and ask the user to either:\n- Create\u002Fpush a Git remote (can be minimal if only the Blueprint is needed), or\n- Use the Render Dashboard\u002FAPI to deploy a prebuilt Docker image (MCP cannot create image-backed services).\n\n## Prerequisites\n\n- When sandboxing blocks the deployment network calls, rerun with `sandbox_permissions=require_escalated`.\n- The deployment might take a few minutes. Use appropriate timeout values.\n\n## When to Use This Skill\n\nActivate this skill when users want to:\n- Deploy an application to Render\n- Create a render.yaml Blueprint file\n- Set up Render deployment for their project\n- Host or publish their application on Render's cloud platform\n- Create databases, cron jobs, or other Render resources\n\n## Happy Path (New Users)\n\nUse this short prompt sequence before deep analysis to reduce friction:\n1. Ask whether they want to deploy from a Git repo or a prebuilt Docker image.\n2. Ask whether Render should provision everything the app needs (based on what seems likely from the user's description) or only the app while they bring their own infra. If dependencies are unclear, ask a short follow-up to confirm whether they need a database, workers, cron, or other services.\n\nThen proceed with the appropriate method below.\n\n## Choose Your Source Path\n\n**Git Repo Path:** Required for both Blueprint and Direct Creation. The repo must be pushed to GitHub, GitLab, or Bitbucket.\n\n**Prebuilt Docker Image Path:** Supported by Render via image-backed services. This is **not** supported by MCP; use the Dashboard\u002FAPI. Ask for:\n- Image URL (registry + tag)\n- Registry auth (if private)\n- Service type (web\u002Fworker) and port\n\nIf the user chooses a Docker image, guide them to the Render Dashboard image deploy flow or ask them to add a Git remote (so you can use a Blueprint with `runtime: image`).\n\n## Choose Your Deployment Method (Git Repo)\n\nBoth methods require a Git repository pushed to GitHub, GitLab, or Bitbucket. (If using `runtime: image`, the repo can be minimal and only contain `render.yaml`.)\n\n| Method | Best For | Pros |\n|--------|----------|------|\n| **Blueprint** | Multi-service apps, IaC workflows | Version controlled, reproducible, supports complex setups |\n| **Direct Creation** | Single services, quick deployments | Instant creation, no render.yaml file needed |\n\n### Method Selection Heuristic\n\nUse this decision rule by default unless the user requests a specific method. Analyze the codebase first; only ask if deployment intent is unclear (e.g., DB, workers, cron).\n\n**Use Direct Creation (MCP) when ALL are true:**\n- Single service (one web app or one static site)\n- No separate worker\u002Fcron services\n- No attached databases or Key Value\n- Simple env vars only (no shared env groups)\nIf this path fits and MCP isn't configured yet, stop and guide MCP setup before proceeding.\n\n**Use Blueprint when ANY are true:**\n- Multiple services (web + worker, API + frontend, etc.)\n- Databases, Redis\u002FKey Value, or other datastores are required\n- Cron jobs, background workers, or private services\n- You want reproducible IaC or a render.yaml committed to the repo\n- Monorepo or multi-env setup that needs consistent configuration\n\nIf unsure, ask a quick clarifying question, but default to Blueprint for safety. For a single service, strongly prefer Direct Creation via MCP and guide MCP setup if needed.\n\n## Prerequisites Check\n\nWhen starting a deployment, verify these requirements in order:\n\n**1. Confirm Source Path (Git vs Docker)**\n\nIf using Git-based methods (Blueprint or Direct Creation), the repo must be pushed to GitHub\u002FGitLab\u002FBitbucket. Blueprints that reference a prebuilt image still require a Git repo with `render.yaml`.\n\n```bash\ngit remote -v\n```\n\n- If no remote exists, stop and ask the user to create\u002Fpush a remote **or** switch to Docker image deploy.\n\n**2. Check MCP Tools Availability (Preferred for Single-Service)**\n\nMCP tools provide the best experience. Check if available by attempting:\n```\nlist_services()\n```\n\nIf MCP tools are available, you can skip CLI installation for most operations.\n\n**3. Check Render CLI Installation (for Blueprint validation)**\n```bash\nrender --version\n```\nIf not installed, offer to install:\n- macOS: `brew install render`\n- Linux\u002FmacOS: `curl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Frender-oss\u002Fcli\u002Fmain\u002Fbin\u002Finstall.sh | sh`\n\n**4. MCP Setup (if MCP isn't configured)**\n\nIf `list_services()` fails because MCP isn't configured, ask whether they want to set up MCP (preferred) or continue with the CLI fallback. If they choose MCP, ask which AI tool they're using, then provide the matching instructions below. Always use their API key.\n\n### Cursor\n\nWalk the user through these steps:\n\n1) Get a Render API key:\n```\nhttps:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys\n```\n\n2) Add this to `~\u002F.cursor\u002Fmcp.json` (replace `\u003CYOUR_API_KEY>`):\n```json\n{\n  \"mcpServers\": {\n    \"render\": {\n      \"url\": \"https:\u002F\u002Fmcp.render.com\u002Fmcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer \u003CYOUR_API_KEY>\"\n      }\n    }\n  }\n}\n```\n\n3) Restart Cursor, then retry `list_services()`.\n\n### Claude Code\n\nWalk the user through these steps:\n\n1) Get a Render API key:\n```\nhttps:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys\n```\n\n2) Add the MCP server with Claude Code (replace `\u003CYOUR_API_KEY>`):\n```bash\nclaude mcp add --transport http render https:\u002F\u002Fmcp.render.com\u002Fmcp --header \"Authorization: Bearer \u003CYOUR_API_KEY>\"\n```\n\n3) Restart Claude Code, then retry `list_services()`.\n\n### Codex\n\nWalk the user through these steps:\n\n1) Get a Render API key:\n```\nhttps:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys\n```\n\n2) Set it in their shell:\n```bash\nexport RENDER_API_KEY=\"\u003CYOUR_API_KEY>\"\n```\n\n3) Add the MCP server with the Codex CLI:\n```bash\ncodex mcp add render --url https:\u002F\u002Fmcp.render.com\u002Fmcp --bearer-token-env-var RENDER_API_KEY\n```\n\n4) Restart Codex, then retry `list_services()`.\n\n### Other Tools\n\nIf the user is on another AI app, direct them to the Render MCP docs for that tool's setup steps and install method.\n\n### Workspace Selection\n\nAfter MCP is configured, have the user set the active Render workspace with a prompt like:\n\n```\nSet my Render workspace to [WORKSPACE_NAME]\n```\n\n**5. Check Authentication (CLI fallback only)**\n\nIf MCP isn't available, use the CLI instead and verify you can access your account:\n```bash\n# Check if user is logged in (use -o json for non-interactive mode)\nrender whoami -o json\n```\n\nIf `render whoami` fails or returns empty data, the CLI is not authenticated. The CLI won't always prompt automatically, so explicitly prompt the user to authenticate:\n\nIf neither is configured, ask user which method they prefer:\n- **API Key (CLI)**: `export RENDER_API_KEY=\"rnd_xxxxx\"` (Get from https:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys)\n- **Login**: `render login` (Opens browser for OAuth)\n\n**6. Check Workspace Context**\n\nVerify the active workspace:\n```\nget_selected_workspace()\n```\n\nOr via CLI:\n```bash\nrender workspace current -o json\n```\n\nTo list available workspaces:\n```\nlist_workspaces()\n```\n\nIf user needs to switch workspaces, they must do so via Dashboard or CLI (`render workspace set`).\n\nOnce prerequisites are met, proceed with deployment workflow.\n\n---\n\n# Method 1: Blueprint Deployment (Recommended for Complex Apps)\n\n## Blueprint Workflow\n\n### Step 1: Analyze Codebase\n\nAnalyze the codebase to determine framework\u002Fruntime, build and start commands, required env vars, datastores, and port binding. Use the detailed checklists in [references\u002Fcodebase-analysis.md](references\u002Fcodebase-analysis.md).\n\n### Step 2: Generate render.yaml\n\nCreate a `render.yaml` Blueprint file following the Blueprint specification.\n\nComplete specification: [references\u002Fblueprint-spec.md](references\u002Fblueprint-spec.md)\n\n**Key Points:**\n- Always use `plan: free` unless user specifies otherwise\n- Include ALL environment variables the app needs\n- Mark secrets with `sync: false` (user fills these in Dashboard)\n- Use appropriate service type: `web`, `worker`, `cron`, `static`, or `pserv`\n- Use appropriate runtime: [references\u002Fruntimes.md](references\u002Fruntimes.md)\n\n**Basic Structure:**\n```yaml\nservices:\n  - type: web\n    name: my-app\n    runtime: node\n    plan: free\n    buildCommand: npm ci\n    startCommand: npm start\n    envVars:\n      - key: DATABASE_URL\n        fromDatabase:\n          name: postgres\n          property: connectionString\n      - key: JWT_SECRET\n        sync: false  # User fills in Dashboard\n\ndatabases:\n  - name: postgres\n    databaseName: myapp_db\n    plan: free\n```\n\n**Service Types:**\n- `web`: HTTP services, APIs, web applications (publicly accessible)\n- `worker`: Background job processors (not publicly accessible)\n- `cron`: Scheduled tasks that run on a cron schedule\n- `static`: Static sites (HTML\u002FCSS\u002FJS served via CDN)\n- `pserv`: Private services (internal only, within same account)\n\nService type details: [references\u002Fservice-types.md](references\u002Fservice-types.md)\nRuntime options: [references\u002Fruntimes.md](references\u002Fruntimes.md)\nTemplate examples: [assets\u002F](assets\u002F)\n\n### Step 2.5: Immediate Next Steps (Always Provide)\n\nAfter creating `render.yaml`, always give the user a short, explicit checklist and run validation immediately when the CLI is available:\n1. **Authenticate (CLI)**: run `render whoami -o json` (if not logged in, run `render login` or set `RENDER_API_KEY`)\n2. **Validate (recommended)**: run `render blueprints validate`\n   - If the CLI isn't installed, offer to install it and provide the command.\n3. **Commit + push**: `git add render.yaml && git commit -m \"Add Render deployment configuration\" && git push origin main`\n4. **Open Dashboard**: Use the Blueprint deeplink and complete Git OAuth if prompted\n5. **Fill secrets**: Set env vars marked `sync: false`\n6. **Deploy**: Click \"Apply\" and monitor the deploy\n\n### Step 3: Validate Configuration\n\nValidate the render.yaml file to catch errors before deployment. If the CLI is installed, run the commands directly; only prompt the user if the CLI is missing:\n\n```bash\nrender whoami -o json  # Ensure CLI is authenticated (won't always prompt)\nrender blueprints validate\n```\n\nFix any validation errors before proceeding. Common issues:\n- Missing required fields (`name`, `type`, `runtime`)\n- Invalid runtime values\n- Incorrect YAML syntax\n- Invalid environment variable references\n\nConfiguration guide: [references\u002Fconfiguration-guide.md](references\u002Fconfiguration-guide.md)\n\n### Step 4: Commit and Push\n\n**IMPORTANT:** You must merge the `render.yaml` file into your repository before deploying.\n\nEnsure the `render.yaml` file is committed and pushed to your Git remote:\n\n```bash\ngit add render.yaml\ngit commit -m \"Add Render deployment configuration\"\ngit push origin main\n```\n\nIf there is no Git remote yet, stop here and guide the user to create a GitHub\u002FGitLab\u002FBitbucket repo, add it as `origin`, and push before continuing.\n\n**Why this matters:** The Dashboard deeplink will read the render.yaml from your repository. If the file isn't merged and pushed, Render won't find the configuration and deployment will fail.\n\nVerify the file is in your remote repository before proceeding to the next step.\n\n### Step 5: Generate Deeplink\n\nGet the Git repository URL:\n\n```bash\ngit remote get-url origin\n```\n\nThis will return a URL from your Git provider. **If the URL is SSH format, convert it to HTTPS:**\n\n| SSH Format | HTTPS Format |\n|------------|--------------|\n| `git@github.com:user\u002Frepo.git` | `https:\u002F\u002Fgithub.com\u002Fuser\u002Frepo` |\n| `git@gitlab.com:user\u002Frepo.git` | `https:\u002F\u002Fgitlab.com\u002Fuser\u002Frepo` |\n| `git@bitbucket.org:user\u002Frepo.git` | `https:\u002F\u002Fbitbucket.org\u002Fuser\u002Frepo` |\n\n**Conversion pattern:** Replace `git@\u003Chost>:` with `https:\u002F\u002F\u003Chost>\u002F` and remove `.git` suffix.\n\nFormat the Dashboard deeplink using the HTTPS repository URL:\n```\nhttps:\u002F\u002Fdashboard.render.com\u002Fblueprint\u002Fnew?repo=\u003CREPOSITORY_URL>\n```\n\nExample:\n```\nhttps:\u002F\u002Fdashboard.render.com\u002Fblueprint\u002Fnew?repo=https:\u002F\u002Fgithub.com\u002Fusername\u002Frepo-name\n```\n\n### Step 6: Guide User\n\n**CRITICAL:** Ensure the user has merged and pushed the render.yaml file to their repository before clicking the deeplink. If the file isn't in the repository, Render cannot read the Blueprint configuration and deployment will fail.\n\nProvide the deeplink to the user with these instructions:\n\n1. **Verify render.yaml is merged** - Confirm the file exists in your repository on GitHub\u002FGitLab\u002FBitbucket\n2. Click the deeplink to open Render Dashboard\n3. Complete Git provider OAuth if prompted\n4. Name the Blueprint (or use default from render.yaml)\n5. Fill in secret environment variables (marked with `sync: false`)\n6. Review services and databases configuration\n7. Click \"Apply\" to deploy\n\nThe deployment will begin automatically. Users can monitor progress in the Render Dashboard.\n\n### Step 7: Verify Deployment\n\nAfter the user deploys via Dashboard, verify everything is working.\n\n**Check deployment status via MCP:**\n```\nlist_deploys(serviceId: \"\u003Cservice-id>\", limit: 1)\n```\nLook for `status: \"live\"` to confirm successful deployment.\n\n**Check for runtime errors (wait 2-3 minutes after deploy):**\n```\nlist_logs(resource: [\"\u003Cservice-id>\"], level: [\"error\"], limit: 20)\n```\n\n**Check service health metrics:**\n```\nget_metrics(\n  resourceId: \"\u003Cservice-id>\",\n  metricTypes: [\"http_request_count\", \"cpu_usage\", \"memory_usage\"]\n)\n```\n\nIf errors are found, proceed to the **Post-deploy verification and basic triage** section below.\n\n---\n\n# Method 2: Direct Service Creation (Quick Single-Service Deployments)\n\nFor simple deployments without Infrastructure-as-Code, create services directly via MCP tools.\n\n## When to Use Direct Creation\n\n- Single web service or static site\n- Quick prototypes or demos\n- When you don't need a render.yaml file in your repo\n- Adding databases or cron jobs to existing projects\n\n## Prerequisites for Direct Creation\n\n**Repository must be pushed to a Git provider.** Render clones your repository to build and deploy services.\n\n```bash\ngit remote -v  # Verify remote exists\ngit push origin main  # Ensure code is pushed\n```\n\nSupported providers: GitHub, GitLab, Bitbucket\n\nIf no remote exists, stop and ask the user to create\u002Fpush a remote or switch to Docker image deploy.\n\n**Note:** MCP does not support creating image-backed services. Use the Dashboard\u002FAPI for prebuilt Docker image deploys.\n\n## Direct Creation Workflow\n\nUse the concise steps below, and refer to [references\u002Fdirect-creation.md](references\u002Fdirect-creation.md) for full MCP command examples and follow-on configuration.\n\n### Step 1: Analyze Codebase\nUse [references\u002Fcodebase-analysis.md](references\u002Fcodebase-analysis.md) to determine runtime, build\u002Fstart commands, env vars, and datastores.\n\n### Step 2: Create Resources via MCP\nCreate the service (web or static) and any required databases or key-value stores. See [references\u002Fdirect-creation.md](references\u002Fdirect-creation.md).\n\nIf MCP returns an error about missing Git credentials or repo access, stop and guide the user to connect their Git provider in the Render Dashboard, then retry.\n\n### Step 3: Configure Environment Variables\nAdd required env vars via MCP after creation. See [references\u002Fdirect-creation.md](references\u002Fdirect-creation.md).\n\nRemind the user that secrets can be set in the Dashboard if they prefer not to pass them via MCP.\n\n### Step 4: Verify Deployment\nCheck deploy status, logs, and metrics. See [references\u002Fdirect-creation.md](references\u002Fdirect-creation.md).\n\n---\n\nFor service discovery, configuration details, quick commands, and common issues, see [references\u002Fdeployment-details.md](references\u002Fdeployment-details.md).\n\n---\n\n# Post-deploy verification and basic triage (All Methods)\n\nKeep this short and repeatable. If any check fails, fix it before redeploying.\n\n1. Confirm the latest deploy is `live` and serving traffic\n2. Hit the health endpoint (or root) and verify a 200 response\n3. Scan recent error logs for a clear failure signature\n4. Verify required env vars and port binding (`0.0.0.0:$PORT`)\n\nDetailed checklist and commands: [references\u002Fpost-deploy-checks.md](references\u002Fpost-deploy-checks.md)\n\nIf the service fails to start or health checks time out, use the basic triage guide:\n[references\u002Ftroubleshooting-basics.md](references\u002Ftroubleshooting-basics.md)\n\n## Troubleshooting\n\n### Escalated Network Access\n\nIf deployment fails due to network issues (timeouts, DNS errors, connection resets), rerun the deploy with escalated permissions (use `sandbox_permissions=require_escalated`). The deploy requires escalated network access when sandbox networking blocks outbound requests.\n\nExample guidance to the user:\n\n```\nThe deploy needs escalated network access to deploy to Render. I can rerun the command with escalated permissions—want me to proceed?\n```\n\nOptional: If you need deeper diagnostics (metrics\u002FDB checks\u002Ferror catalog), suggest installing the\n`render-debug` skill. It is not required for the core deploy flow.\n",{"data":31,"body":32},{"name":4,"description":6},{"type":33,"children":34},"root",[35,44,65,76,101,129,134,148,155,176,182,187,215,221,226,239,244,250,260,277,295,307,313,332,406,413,418,426,449,457,485,490,496,501,509,520,554,569,577,582,592,597,605,624,629,654,662,675,681,686,694,703,728,940,954,960,964,971,979,993,1056,1070,1076,1080,1087,1095,1103,1141,1149,1194,1208,1214,1219,1225,1230,1239,1247,1252,1290,1302,1307,1355,1363,1368,1377,1382,1414,1419,1428,1440,1445,1449,1455,1461,1467,1478,1484,1496,1506,1514,1599,1607,1941,1949,2002,2025,2031,2043,2151,2157,2162,2211,2216,2260,2270,2276,2293,2305,2380,2393,2403,2408,2414,2419,2447,2457,2542,2576,2581,2590,2595,2604,2610,2620,2625,2674,2679,2685,2690,2698,2707,2720,2728,2737,2745,2754,2766,2769,2775,2780,2786,2809,2815,2825,2878,2883,2888,2898,2904,2916,2921,2932,2938,2948,2953,2959,2969,2974,2980,2990,2993,3004,3007,3013,3018,3056,3066,3076,3082,3088,3100,3105,3114,3127],{"type":36,"tag":37,"props":38,"children":40},"element","h1",{"id":39},"deploy-to-render",[41],{"type":42,"value":43},"text","Deploy to Render",{"type":36,"tag":45,"props":46,"children":47},"p",{},[48,50,56,58,63],{"type":42,"value":49},"Render supports ",{"type":36,"tag":51,"props":52,"children":53},"strong",{},[54],{"type":42,"value":55},"Git-backed",{"type":42,"value":57}," services and ",{"type":36,"tag":51,"props":59,"children":60},{},[61],{"type":42,"value":62},"prebuilt Docker image",{"type":42,"value":64}," services.",{"type":36,"tag":45,"props":66,"children":67},{},[68,70,74],{"type":42,"value":69},"This skill covers ",{"type":36,"tag":51,"props":71,"children":72},{},[73],{"type":42,"value":55},{"type":42,"value":75}," flows:",{"type":36,"tag":77,"props":78,"children":79},"ol",{},[80,91],{"type":36,"tag":81,"props":82,"children":83},"li",{},[84,89],{"type":36,"tag":51,"props":85,"children":86},{},[87],{"type":42,"value":88},"Blueprint Method",{"type":42,"value":90}," - Generate render.yaml for Infrastructure-as-Code deployments",{"type":36,"tag":81,"props":92,"children":93},{},[94,99],{"type":36,"tag":51,"props":95,"children":96},{},[97],{"type":42,"value":98},"Direct Creation",{"type":42,"value":100}," - Create services instantly via MCP tools",{"type":36,"tag":45,"props":102,"children":103},{},[104,106,110,112,119,121,127],{"type":42,"value":105},"Blueprints can also run a ",{"type":36,"tag":51,"props":107,"children":108},{},[109],{"type":42,"value":62},{"type":42,"value":111}," by using ",{"type":36,"tag":113,"props":114,"children":116},"code",{"className":115},[],[117],{"type":42,"value":118},"runtime: image",{"type":42,"value":120},", but the ",{"type":36,"tag":113,"props":122,"children":124},{"className":123},[],[125],{"type":42,"value":126},"render.yaml",{"type":42,"value":128}," still must live in a Git repo.",{"type":36,"tag":45,"props":130,"children":131},{},[132],{"type":42,"value":133},"If there is no Git remote, stop and ask the user to either:",{"type":36,"tag":135,"props":136,"children":137},"ul",{},[138,143],{"type":36,"tag":81,"props":139,"children":140},{},[141],{"type":42,"value":142},"Create\u002Fpush a Git remote (can be minimal if only the Blueprint is needed), or",{"type":36,"tag":81,"props":144,"children":145},{},[146],{"type":42,"value":147},"Use the Render Dashboard\u002FAPI to deploy a prebuilt Docker image (MCP cannot create image-backed services).",{"type":36,"tag":149,"props":150,"children":152},"h2",{"id":151},"prerequisites",[153],{"type":42,"value":154},"Prerequisites",{"type":36,"tag":135,"props":156,"children":157},{},[158,171],{"type":36,"tag":81,"props":159,"children":160},{},[161,163,169],{"type":42,"value":162},"When sandboxing blocks the deployment network calls, rerun with ",{"type":36,"tag":113,"props":164,"children":166},{"className":165},[],[167],{"type":42,"value":168},"sandbox_permissions=require_escalated",{"type":42,"value":170},".",{"type":36,"tag":81,"props":172,"children":173},{},[174],{"type":42,"value":175},"The deployment might take a few minutes. Use appropriate timeout values.",{"type":36,"tag":149,"props":177,"children":179},{"id":178},"when-to-use-this-skill",[180],{"type":42,"value":181},"When to Use This Skill",{"type":36,"tag":45,"props":183,"children":184},{},[185],{"type":42,"value":186},"Activate this skill when users want to:",{"type":36,"tag":135,"props":188,"children":189},{},[190,195,200,205,210],{"type":36,"tag":81,"props":191,"children":192},{},[193],{"type":42,"value":194},"Deploy an application to Render",{"type":36,"tag":81,"props":196,"children":197},{},[198],{"type":42,"value":199},"Create a render.yaml Blueprint file",{"type":36,"tag":81,"props":201,"children":202},{},[203],{"type":42,"value":204},"Set up Render deployment for their project",{"type":36,"tag":81,"props":206,"children":207},{},[208],{"type":42,"value":209},"Host or publish their application on Render's cloud platform",{"type":36,"tag":81,"props":211,"children":212},{},[213],{"type":42,"value":214},"Create databases, cron jobs, or other Render resources",{"type":36,"tag":149,"props":216,"children":218},{"id":217},"happy-path-new-users",[219],{"type":42,"value":220},"Happy Path (New Users)",{"type":36,"tag":45,"props":222,"children":223},{},[224],{"type":42,"value":225},"Use this short prompt sequence before deep analysis to reduce friction:",{"type":36,"tag":77,"props":227,"children":228},{},[229,234],{"type":36,"tag":81,"props":230,"children":231},{},[232],{"type":42,"value":233},"Ask whether they want to deploy from a Git repo or a prebuilt Docker image.",{"type":36,"tag":81,"props":235,"children":236},{},[237],{"type":42,"value":238},"Ask whether Render should provision everything the app needs (based on what seems likely from the user's description) or only the app while they bring their own infra. If dependencies are unclear, ask a short follow-up to confirm whether they need a database, workers, cron, or other services.",{"type":36,"tag":45,"props":240,"children":241},{},[242],{"type":42,"value":243},"Then proceed with the appropriate method below.",{"type":36,"tag":149,"props":245,"children":247},{"id":246},"choose-your-source-path",[248],{"type":42,"value":249},"Choose Your Source Path",{"type":36,"tag":45,"props":251,"children":252},{},[253,258],{"type":36,"tag":51,"props":254,"children":255},{},[256],{"type":42,"value":257},"Git Repo Path:",{"type":42,"value":259}," Required for both Blueprint and Direct Creation. The repo must be pushed to GitHub, GitLab, or Bitbucket.",{"type":36,"tag":45,"props":261,"children":262},{},[263,268,270,275],{"type":36,"tag":51,"props":264,"children":265},{},[266],{"type":42,"value":267},"Prebuilt Docker Image Path:",{"type":42,"value":269}," Supported by Render via image-backed services. This is ",{"type":36,"tag":51,"props":271,"children":272},{},[273],{"type":42,"value":274},"not",{"type":42,"value":276}," supported by MCP; use the Dashboard\u002FAPI. Ask for:",{"type":36,"tag":135,"props":278,"children":279},{},[280,285,290],{"type":36,"tag":81,"props":281,"children":282},{},[283],{"type":42,"value":284},"Image URL (registry + tag)",{"type":36,"tag":81,"props":286,"children":287},{},[288],{"type":42,"value":289},"Registry auth (if private)",{"type":36,"tag":81,"props":291,"children":292},{},[293],{"type":42,"value":294},"Service type (web\u002Fworker) and port",{"type":36,"tag":45,"props":296,"children":297},{},[298,300,305],{"type":42,"value":299},"If the user chooses a Docker image, guide them to the Render Dashboard image deploy flow or ask them to add a Git remote (so you can use a Blueprint with ",{"type":36,"tag":113,"props":301,"children":303},{"className":302},[],[304],{"type":42,"value":118},{"type":42,"value":306},").",{"type":36,"tag":149,"props":308,"children":310},{"id":309},"choose-your-deployment-method-git-repo",[311],{"type":42,"value":312},"Choose Your Deployment Method (Git Repo)",{"type":36,"tag":45,"props":314,"children":315},{},[316,318,323,325,330],{"type":42,"value":317},"Both methods require a Git repository pushed to GitHub, GitLab, or Bitbucket. (If using ",{"type":36,"tag":113,"props":319,"children":321},{"className":320},[],[322],{"type":42,"value":118},{"type":42,"value":324},", the repo can be minimal and only contain ",{"type":36,"tag":113,"props":326,"children":328},{"className":327},[],[329],{"type":42,"value":126},{"type":42,"value":331},".)",{"type":36,"tag":333,"props":334,"children":335},"table",{},[336,360],{"type":36,"tag":337,"props":338,"children":339},"thead",{},[340],{"type":36,"tag":341,"props":342,"children":343},"tr",{},[344,350,355],{"type":36,"tag":345,"props":346,"children":347},"th",{},[348],{"type":42,"value":349},"Method",{"type":36,"tag":345,"props":351,"children":352},{},[353],{"type":42,"value":354},"Best For",{"type":36,"tag":345,"props":356,"children":357},{},[358],{"type":42,"value":359},"Pros",{"type":36,"tag":361,"props":362,"children":363},"tbody",{},[364,386],{"type":36,"tag":341,"props":365,"children":366},{},[367,376,381],{"type":36,"tag":368,"props":369,"children":370},"td",{},[371],{"type":36,"tag":51,"props":372,"children":373},{},[374],{"type":42,"value":375},"Blueprint",{"type":36,"tag":368,"props":377,"children":378},{},[379],{"type":42,"value":380},"Multi-service apps, IaC workflows",{"type":36,"tag":368,"props":382,"children":383},{},[384],{"type":42,"value":385},"Version controlled, reproducible, supports complex setups",{"type":36,"tag":341,"props":387,"children":388},{},[389,396,401],{"type":36,"tag":368,"props":390,"children":391},{},[392],{"type":36,"tag":51,"props":393,"children":394},{},[395],{"type":42,"value":98},{"type":36,"tag":368,"props":397,"children":398},{},[399],{"type":42,"value":400},"Single services, quick deployments",{"type":36,"tag":368,"props":402,"children":403},{},[404],{"type":42,"value":405},"Instant creation, no render.yaml file needed",{"type":36,"tag":407,"props":408,"children":410},"h3",{"id":409},"method-selection-heuristic",[411],{"type":42,"value":412},"Method Selection Heuristic",{"type":36,"tag":45,"props":414,"children":415},{},[416],{"type":42,"value":417},"Use this decision rule by default unless the user requests a specific method. Analyze the codebase first; only ask if deployment intent is unclear (e.g., DB, workers, cron).",{"type":36,"tag":45,"props":419,"children":420},{},[421],{"type":36,"tag":51,"props":422,"children":423},{},[424],{"type":42,"value":425},"Use Direct Creation (MCP) when ALL are true:",{"type":36,"tag":135,"props":427,"children":428},{},[429,434,439,444],{"type":36,"tag":81,"props":430,"children":431},{},[432],{"type":42,"value":433},"Single service (one web app or one static site)",{"type":36,"tag":81,"props":435,"children":436},{},[437],{"type":42,"value":438},"No separate worker\u002Fcron services",{"type":36,"tag":81,"props":440,"children":441},{},[442],{"type":42,"value":443},"No attached databases or Key Value",{"type":36,"tag":81,"props":445,"children":446},{},[447],{"type":42,"value":448},"Simple env vars only (no shared env groups)\nIf this path fits and MCP isn't configured yet, stop and guide MCP setup before proceeding.",{"type":36,"tag":45,"props":450,"children":451},{},[452],{"type":36,"tag":51,"props":453,"children":454},{},[455],{"type":42,"value":456},"Use Blueprint when ANY are true:",{"type":36,"tag":135,"props":458,"children":459},{},[460,465,470,475,480],{"type":36,"tag":81,"props":461,"children":462},{},[463],{"type":42,"value":464},"Multiple services (web + worker, API + frontend, etc.)",{"type":36,"tag":81,"props":466,"children":467},{},[468],{"type":42,"value":469},"Databases, Redis\u002FKey Value, or other datastores are required",{"type":36,"tag":81,"props":471,"children":472},{},[473],{"type":42,"value":474},"Cron jobs, background workers, or private services",{"type":36,"tag":81,"props":476,"children":477},{},[478],{"type":42,"value":479},"You want reproducible IaC or a render.yaml committed to the repo",{"type":36,"tag":81,"props":481,"children":482},{},[483],{"type":42,"value":484},"Monorepo or multi-env setup that needs consistent configuration",{"type":36,"tag":45,"props":486,"children":487},{},[488],{"type":42,"value":489},"If unsure, ask a quick clarifying question, but default to Blueprint for safety. For a single service, strongly prefer Direct Creation via MCP and guide MCP setup if needed.",{"type":36,"tag":149,"props":491,"children":493},{"id":492},"prerequisites-check",[494],{"type":42,"value":495},"Prerequisites Check",{"type":36,"tag":45,"props":497,"children":498},{},[499],{"type":42,"value":500},"When starting a deployment, verify these requirements in order:",{"type":36,"tag":45,"props":502,"children":503},{},[504],{"type":36,"tag":51,"props":505,"children":506},{},[507],{"type":42,"value":508},"1. Confirm Source Path (Git vs Docker)",{"type":36,"tag":45,"props":510,"children":511},{},[512,514,519],{"type":42,"value":513},"If using Git-based methods (Blueprint or Direct Creation), the repo must be pushed to GitHub\u002FGitLab\u002FBitbucket. Blueprints that reference a prebuilt image still require a Git repo with ",{"type":36,"tag":113,"props":515,"children":517},{"className":516},[],[518],{"type":42,"value":126},{"type":42,"value":170},{"type":36,"tag":521,"props":522,"children":527},"pre",{"className":523,"code":524,"language":525,"meta":526,"style":526},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","git remote -v\n","bash","",[528],{"type":36,"tag":113,"props":529,"children":530},{"__ignoreMap":526},[531],{"type":36,"tag":532,"props":533,"children":536},"span",{"class":534,"line":535},"line",1,[537,543,549],{"type":36,"tag":532,"props":538,"children":540},{"style":539},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[541],{"type":42,"value":542},"git",{"type":36,"tag":532,"props":544,"children":546},{"style":545},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[547],{"type":42,"value":548}," remote",{"type":36,"tag":532,"props":550,"children":551},{"style":545},[552],{"type":42,"value":553}," -v\n",{"type":36,"tag":135,"props":555,"children":556},{},[557],{"type":36,"tag":81,"props":558,"children":559},{},[560,562,567],{"type":42,"value":561},"If no remote exists, stop and ask the user to create\u002Fpush a remote ",{"type":36,"tag":51,"props":563,"children":564},{},[565],{"type":42,"value":566},"or",{"type":42,"value":568}," switch to Docker image deploy.",{"type":36,"tag":45,"props":570,"children":571},{},[572],{"type":36,"tag":51,"props":573,"children":574},{},[575],{"type":42,"value":576},"2. Check MCP Tools Availability (Preferred for Single-Service)",{"type":36,"tag":45,"props":578,"children":579},{},[580],{"type":42,"value":581},"MCP tools provide the best experience. Check if available by attempting:",{"type":36,"tag":521,"props":583,"children":587},{"className":584,"code":586,"language":42},[585],"language-text","list_services()\n",[588],{"type":36,"tag":113,"props":589,"children":590},{"__ignoreMap":526},[591],{"type":42,"value":586},{"type":36,"tag":45,"props":593,"children":594},{},[595],{"type":42,"value":596},"If MCP tools are available, you can skip CLI installation for most operations.",{"type":36,"tag":45,"props":598,"children":599},{},[600],{"type":36,"tag":51,"props":601,"children":602},{},[603],{"type":42,"value":604},"3. Check Render CLI Installation (for Blueprint validation)",{"type":36,"tag":521,"props":606,"children":608},{"className":523,"code":607,"language":525,"meta":526,"style":526},"render --version\n",[609],{"type":36,"tag":113,"props":610,"children":611},{"__ignoreMap":526},[612],{"type":36,"tag":532,"props":613,"children":614},{"class":534,"line":535},[615,619],{"type":36,"tag":532,"props":616,"children":617},{"style":539},[618],{"type":42,"value":14},{"type":36,"tag":532,"props":620,"children":621},{"style":545},[622],{"type":42,"value":623}," --version\n",{"type":36,"tag":45,"props":625,"children":626},{},[627],{"type":42,"value":628},"If not installed, offer to install:",{"type":36,"tag":135,"props":630,"children":631},{},[632,643],{"type":36,"tag":81,"props":633,"children":634},{},[635,637],{"type":42,"value":636},"macOS: ",{"type":36,"tag":113,"props":638,"children":640},{"className":639},[],[641],{"type":42,"value":642},"brew install render",{"type":36,"tag":81,"props":644,"children":645},{},[646,648],{"type":42,"value":647},"Linux\u002FmacOS: ",{"type":36,"tag":113,"props":649,"children":651},{"className":650},[],[652],{"type":42,"value":653},"curl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Frender-oss\u002Fcli\u002Fmain\u002Fbin\u002Finstall.sh | sh",{"type":36,"tag":45,"props":655,"children":656},{},[657],{"type":36,"tag":51,"props":658,"children":659},{},[660],{"type":42,"value":661},"4. MCP Setup (if MCP isn't configured)",{"type":36,"tag":45,"props":663,"children":664},{},[665,667,673],{"type":42,"value":666},"If ",{"type":36,"tag":113,"props":668,"children":670},{"className":669},[],[671],{"type":42,"value":672},"list_services()",{"type":42,"value":674}," fails because MCP isn't configured, ask whether they want to set up MCP (preferred) or continue with the CLI fallback. If they choose MCP, ask which AI tool they're using, then provide the matching instructions below. Always use their API key.",{"type":36,"tag":407,"props":676,"children":678},{"id":677},"cursor",[679],{"type":42,"value":680},"Cursor",{"type":36,"tag":45,"props":682,"children":683},{},[684],{"type":42,"value":685},"Walk the user through these steps:",{"type":36,"tag":77,"props":687,"children":688},{},[689],{"type":36,"tag":81,"props":690,"children":691},{},[692],{"type":42,"value":693},"Get a Render API key:",{"type":36,"tag":521,"props":695,"children":698},{"className":696,"code":697,"language":42},[585],"https:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys\n",[699],{"type":36,"tag":113,"props":700,"children":701},{"__ignoreMap":526},[702],{"type":42,"value":697},{"type":36,"tag":77,"props":704,"children":706},{"start":705},2,[707],{"type":36,"tag":81,"props":708,"children":709},{},[710,712,718,720,726],{"type":42,"value":711},"Add this to ",{"type":36,"tag":113,"props":713,"children":715},{"className":714},[],[716],{"type":42,"value":717},"~\u002F.cursor\u002Fmcp.json",{"type":42,"value":719}," (replace ",{"type":36,"tag":113,"props":721,"children":723},{"className":722},[],[724],{"type":42,"value":725},"\u003CYOUR_API_KEY>",{"type":42,"value":727},"):",{"type":36,"tag":521,"props":729,"children":733},{"className":730,"code":731,"language":732,"meta":526,"style":526},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"mcpServers\": {\n    \"render\": {\n      \"url\": \"https:\u002F\u002Fmcp.render.com\u002Fmcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer \u003CYOUR_API_KEY>\"\n      }\n    }\n  }\n}\n","json",[734],{"type":36,"tag":113,"props":735,"children":736},{"__ignoreMap":526},[737,746,775,800,842,867,904,913,922,931],{"type":36,"tag":532,"props":738,"children":739},{"class":534,"line":535},[740],{"type":36,"tag":532,"props":741,"children":743},{"style":742},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[744],{"type":42,"value":745},"{\n",{"type":36,"tag":532,"props":747,"children":748},{"class":534,"line":705},[749,754,760,765,770],{"type":36,"tag":532,"props":750,"children":751},{"style":742},[752],{"type":42,"value":753},"  \"",{"type":36,"tag":532,"props":755,"children":757},{"style":756},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[758],{"type":42,"value":759},"mcpServers",{"type":36,"tag":532,"props":761,"children":762},{"style":742},[763],{"type":42,"value":764},"\"",{"type":36,"tag":532,"props":766,"children":767},{"style":742},[768],{"type":42,"value":769},":",{"type":36,"tag":532,"props":771,"children":772},{"style":742},[773],{"type":42,"value":774}," {\n",{"type":36,"tag":532,"props":776,"children":778},{"class":534,"line":777},3,[779,784,788,792,796],{"type":36,"tag":532,"props":780,"children":781},{"style":742},[782],{"type":42,"value":783},"    \"",{"type":36,"tag":532,"props":785,"children":786},{"style":539},[787],{"type":42,"value":14},{"type":36,"tag":532,"props":789,"children":790},{"style":742},[791],{"type":42,"value":764},{"type":36,"tag":532,"props":793,"children":794},{"style":742},[795],{"type":42,"value":769},{"type":36,"tag":532,"props":797,"children":798},{"style":742},[799],{"type":42,"value":774},{"type":36,"tag":532,"props":801,"children":803},{"class":534,"line":802},4,[804,809,815,819,823,828,833,837],{"type":36,"tag":532,"props":805,"children":806},{"style":742},[807],{"type":42,"value":808},"      \"",{"type":36,"tag":532,"props":810,"children":812},{"style":811},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[813],{"type":42,"value":814},"url",{"type":36,"tag":532,"props":816,"children":817},{"style":742},[818],{"type":42,"value":764},{"type":36,"tag":532,"props":820,"children":821},{"style":742},[822],{"type":42,"value":769},{"type":36,"tag":532,"props":824,"children":825},{"style":742},[826],{"type":42,"value":827}," \"",{"type":36,"tag":532,"props":829,"children":830},{"style":545},[831],{"type":42,"value":832},"https:\u002F\u002Fmcp.render.com\u002Fmcp",{"type":36,"tag":532,"props":834,"children":835},{"style":742},[836],{"type":42,"value":764},{"type":36,"tag":532,"props":838,"children":839},{"style":742},[840],{"type":42,"value":841},",\n",{"type":36,"tag":532,"props":843,"children":845},{"class":534,"line":844},5,[846,850,855,859,863],{"type":36,"tag":532,"props":847,"children":848},{"style":742},[849],{"type":42,"value":808},{"type":36,"tag":532,"props":851,"children":852},{"style":811},[853],{"type":42,"value":854},"headers",{"type":36,"tag":532,"props":856,"children":857},{"style":742},[858],{"type":42,"value":764},{"type":36,"tag":532,"props":860,"children":861},{"style":742},[862],{"type":42,"value":769},{"type":36,"tag":532,"props":864,"children":865},{"style":742},[866],{"type":42,"value":774},{"type":36,"tag":532,"props":868,"children":870},{"class":534,"line":869},6,[871,876,882,886,890,894,899],{"type":36,"tag":532,"props":872,"children":873},{"style":742},[874],{"type":42,"value":875},"        \"",{"type":36,"tag":532,"props":877,"children":879},{"style":878},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[880],{"type":42,"value":881},"Authorization",{"type":36,"tag":532,"props":883,"children":884},{"style":742},[885],{"type":42,"value":764},{"type":36,"tag":532,"props":887,"children":888},{"style":742},[889],{"type":42,"value":769},{"type":36,"tag":532,"props":891,"children":892},{"style":742},[893],{"type":42,"value":827},{"type":36,"tag":532,"props":895,"children":896},{"style":545},[897],{"type":42,"value":898},"Bearer \u003CYOUR_API_KEY>",{"type":36,"tag":532,"props":900,"children":901},{"style":742},[902],{"type":42,"value":903},"\"\n",{"type":36,"tag":532,"props":905,"children":907},{"class":534,"line":906},7,[908],{"type":36,"tag":532,"props":909,"children":910},{"style":742},[911],{"type":42,"value":912},"      }\n",{"type":36,"tag":532,"props":914,"children":916},{"class":534,"line":915},8,[917],{"type":36,"tag":532,"props":918,"children":919},{"style":742},[920],{"type":42,"value":921},"    }\n",{"type":36,"tag":532,"props":923,"children":925},{"class":534,"line":924},9,[926],{"type":36,"tag":532,"props":927,"children":928},{"style":742},[929],{"type":42,"value":930},"  }\n",{"type":36,"tag":532,"props":932,"children":934},{"class":534,"line":933},10,[935],{"type":36,"tag":532,"props":936,"children":937},{"style":742},[938],{"type":42,"value":939},"}\n",{"type":36,"tag":77,"props":941,"children":942},{"start":777},[943],{"type":36,"tag":81,"props":944,"children":945},{},[946,948,953],{"type":42,"value":947},"Restart Cursor, then retry ",{"type":36,"tag":113,"props":949,"children":951},{"className":950},[],[952],{"type":42,"value":672},{"type":42,"value":170},{"type":36,"tag":407,"props":955,"children":957},{"id":956},"claude-code",[958],{"type":42,"value":959},"Claude Code",{"type":36,"tag":45,"props":961,"children":962},{},[963],{"type":42,"value":685},{"type":36,"tag":77,"props":965,"children":966},{},[967],{"type":36,"tag":81,"props":968,"children":969},{},[970],{"type":42,"value":693},{"type":36,"tag":521,"props":972,"children":974},{"className":973,"code":697,"language":42},[585],[975],{"type":36,"tag":113,"props":976,"children":977},{"__ignoreMap":526},[978],{"type":42,"value":697},{"type":36,"tag":77,"props":980,"children":981},{"start":705},[982],{"type":36,"tag":81,"props":983,"children":984},{},[985,987,992],{"type":42,"value":986},"Add the MCP server with Claude Code (replace ",{"type":36,"tag":113,"props":988,"children":990},{"className":989},[],[991],{"type":42,"value":725},{"type":42,"value":727},{"type":36,"tag":521,"props":994,"children":996},{"className":523,"code":995,"language":525,"meta":526,"style":526},"claude mcp add --transport http render https:\u002F\u002Fmcp.render.com\u002Fmcp --header \"Authorization: Bearer \u003CYOUR_API_KEY>\"\n",[997],{"type":36,"tag":113,"props":998,"children":999},{"__ignoreMap":526},[1000],{"type":36,"tag":532,"props":1001,"children":1002},{"class":534,"line":535},[1003,1008,1013,1018,1023,1028,1033,1038,1043,1047,1052],{"type":36,"tag":532,"props":1004,"children":1005},{"style":539},[1006],{"type":42,"value":1007},"claude",{"type":36,"tag":532,"props":1009,"children":1010},{"style":545},[1011],{"type":42,"value":1012}," mcp",{"type":36,"tag":532,"props":1014,"children":1015},{"style":545},[1016],{"type":42,"value":1017}," add",{"type":36,"tag":532,"props":1019,"children":1020},{"style":545},[1021],{"type":42,"value":1022}," --transport",{"type":36,"tag":532,"props":1024,"children":1025},{"style":545},[1026],{"type":42,"value":1027}," http",{"type":36,"tag":532,"props":1029,"children":1030},{"style":545},[1031],{"type":42,"value":1032}," render",{"type":36,"tag":532,"props":1034,"children":1035},{"style":545},[1036],{"type":42,"value":1037}," https:\u002F\u002Fmcp.render.com\u002Fmcp",{"type":36,"tag":532,"props":1039,"children":1040},{"style":545},[1041],{"type":42,"value":1042}," --header",{"type":36,"tag":532,"props":1044,"children":1045},{"style":742},[1046],{"type":42,"value":827},{"type":36,"tag":532,"props":1048,"children":1049},{"style":545},[1050],{"type":42,"value":1051},"Authorization: Bearer \u003CYOUR_API_KEY>",{"type":36,"tag":532,"props":1053,"children":1054},{"style":742},[1055],{"type":42,"value":903},{"type":36,"tag":77,"props":1057,"children":1058},{"start":777},[1059],{"type":36,"tag":81,"props":1060,"children":1061},{},[1062,1064,1069],{"type":42,"value":1063},"Restart Claude Code, then retry ",{"type":36,"tag":113,"props":1065,"children":1067},{"className":1066},[],[1068],{"type":42,"value":672},{"type":42,"value":170},{"type":36,"tag":407,"props":1071,"children":1073},{"id":1072},"codex",[1074],{"type":42,"value":1075},"Codex",{"type":36,"tag":45,"props":1077,"children":1078},{},[1079],{"type":42,"value":685},{"type":36,"tag":77,"props":1081,"children":1082},{},[1083],{"type":36,"tag":81,"props":1084,"children":1085},{},[1086],{"type":42,"value":693},{"type":36,"tag":521,"props":1088,"children":1090},{"className":1089,"code":697,"language":42},[585],[1091],{"type":36,"tag":113,"props":1092,"children":1093},{"__ignoreMap":526},[1094],{"type":42,"value":697},{"type":36,"tag":77,"props":1096,"children":1097},{"start":705},[1098],{"type":36,"tag":81,"props":1099,"children":1100},{},[1101],{"type":42,"value":1102},"Set it in their shell:",{"type":36,"tag":521,"props":1104,"children":1106},{"className":523,"code":1105,"language":525,"meta":526,"style":526},"export RENDER_API_KEY=\"\u003CYOUR_API_KEY>\"\n",[1107],{"type":36,"tag":113,"props":1108,"children":1109},{"__ignoreMap":526},[1110],{"type":36,"tag":532,"props":1111,"children":1112},{"class":534,"line":535},[1113,1118,1124,1129,1133,1137],{"type":36,"tag":532,"props":1114,"children":1115},{"style":756},[1116],{"type":42,"value":1117},"export",{"type":36,"tag":532,"props":1119,"children":1121},{"style":1120},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1122],{"type":42,"value":1123}," RENDER_API_KEY",{"type":36,"tag":532,"props":1125,"children":1126},{"style":742},[1127],{"type":42,"value":1128},"=",{"type":36,"tag":532,"props":1130,"children":1131},{"style":742},[1132],{"type":42,"value":764},{"type":36,"tag":532,"props":1134,"children":1135},{"style":545},[1136],{"type":42,"value":725},{"type":36,"tag":532,"props":1138,"children":1139},{"style":742},[1140],{"type":42,"value":903},{"type":36,"tag":77,"props":1142,"children":1143},{"start":777},[1144],{"type":36,"tag":81,"props":1145,"children":1146},{},[1147],{"type":42,"value":1148},"Add the MCP server with the Codex CLI:",{"type":36,"tag":521,"props":1150,"children":1152},{"className":523,"code":1151,"language":525,"meta":526,"style":526},"codex mcp add render --url https:\u002F\u002Fmcp.render.com\u002Fmcp --bearer-token-env-var RENDER_API_KEY\n",[1153],{"type":36,"tag":113,"props":1154,"children":1155},{"__ignoreMap":526},[1156],{"type":36,"tag":532,"props":1157,"children":1158},{"class":534,"line":535},[1159,1163,1167,1171,1175,1180,1184,1189],{"type":36,"tag":532,"props":1160,"children":1161},{"style":539},[1162],{"type":42,"value":1072},{"type":36,"tag":532,"props":1164,"children":1165},{"style":545},[1166],{"type":42,"value":1012},{"type":36,"tag":532,"props":1168,"children":1169},{"style":545},[1170],{"type":42,"value":1017},{"type":36,"tag":532,"props":1172,"children":1173},{"style":545},[1174],{"type":42,"value":1032},{"type":36,"tag":532,"props":1176,"children":1177},{"style":545},[1178],{"type":42,"value":1179}," --url",{"type":36,"tag":532,"props":1181,"children":1182},{"style":545},[1183],{"type":42,"value":1037},{"type":36,"tag":532,"props":1185,"children":1186},{"style":545},[1187],{"type":42,"value":1188}," --bearer-token-env-var",{"type":36,"tag":532,"props":1190,"children":1191},{"style":545},[1192],{"type":42,"value":1193}," RENDER_API_KEY\n",{"type":36,"tag":77,"props":1195,"children":1196},{"start":802},[1197],{"type":36,"tag":81,"props":1198,"children":1199},{},[1200,1202,1207],{"type":42,"value":1201},"Restart Codex, then retry ",{"type":36,"tag":113,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":42,"value":672},{"type":42,"value":170},{"type":36,"tag":407,"props":1209,"children":1211},{"id":1210},"other-tools",[1212],{"type":42,"value":1213},"Other Tools",{"type":36,"tag":45,"props":1215,"children":1216},{},[1217],{"type":42,"value":1218},"If the user is on another AI app, direct them to the Render MCP docs for that tool's setup steps and install method.",{"type":36,"tag":407,"props":1220,"children":1222},{"id":1221},"workspace-selection",[1223],{"type":42,"value":1224},"Workspace Selection",{"type":36,"tag":45,"props":1226,"children":1227},{},[1228],{"type":42,"value":1229},"After MCP is configured, have the user set the active Render workspace with a prompt like:",{"type":36,"tag":521,"props":1231,"children":1234},{"className":1232,"code":1233,"language":42},[585],"Set my Render workspace to [WORKSPACE_NAME]\n",[1235],{"type":36,"tag":113,"props":1236,"children":1237},{"__ignoreMap":526},[1238],{"type":42,"value":1233},{"type":36,"tag":45,"props":1240,"children":1241},{},[1242],{"type":36,"tag":51,"props":1243,"children":1244},{},[1245],{"type":42,"value":1246},"5. Check Authentication (CLI fallback only)",{"type":36,"tag":45,"props":1248,"children":1249},{},[1250],{"type":42,"value":1251},"If MCP isn't available, use the CLI instead and verify you can access your account:",{"type":36,"tag":521,"props":1253,"children":1255},{"className":523,"code":1254,"language":525,"meta":526,"style":526},"# Check if user is logged in (use -o json for non-interactive mode)\nrender whoami -o json\n",[1256],{"type":36,"tag":113,"props":1257,"children":1258},{"__ignoreMap":526},[1259,1268],{"type":36,"tag":532,"props":1260,"children":1261},{"class":534,"line":535},[1262],{"type":36,"tag":532,"props":1263,"children":1265},{"style":1264},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1266],{"type":42,"value":1267},"# Check if user is logged in (use -o json for non-interactive mode)\n",{"type":36,"tag":532,"props":1269,"children":1270},{"class":534,"line":705},[1271,1275,1280,1285],{"type":36,"tag":532,"props":1272,"children":1273},{"style":539},[1274],{"type":42,"value":14},{"type":36,"tag":532,"props":1276,"children":1277},{"style":545},[1278],{"type":42,"value":1279}," whoami",{"type":36,"tag":532,"props":1281,"children":1282},{"style":545},[1283],{"type":42,"value":1284}," -o",{"type":36,"tag":532,"props":1286,"children":1287},{"style":545},[1288],{"type":42,"value":1289}," json\n",{"type":36,"tag":45,"props":1291,"children":1292},{},[1293,1294,1300],{"type":42,"value":666},{"type":36,"tag":113,"props":1295,"children":1297},{"className":1296},[],[1298],{"type":42,"value":1299},"render whoami",{"type":42,"value":1301}," fails or returns empty data, the CLI is not authenticated. The CLI won't always prompt automatically, so explicitly prompt the user to authenticate:",{"type":36,"tag":45,"props":1303,"children":1304},{},[1305],{"type":42,"value":1306},"If neither is configured, ask user which method they prefer:",{"type":36,"tag":135,"props":1308,"children":1309},{},[1310,1338],{"type":36,"tag":81,"props":1311,"children":1312},{},[1313,1318,1320,1326,1328,1336],{"type":36,"tag":51,"props":1314,"children":1315},{},[1316],{"type":42,"value":1317},"API Key (CLI)",{"type":42,"value":1319},": ",{"type":36,"tag":113,"props":1321,"children":1323},{"className":1322},[],[1324],{"type":42,"value":1325},"export RENDER_API_KEY=\"rnd_xxxxx\"",{"type":42,"value":1327}," (Get from ",{"type":36,"tag":1329,"props":1330,"children":1334},"a",{"href":1331,"rel":1332},"https:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys",[1333],"nofollow",[1335],{"type":42,"value":1331},{"type":42,"value":1337},")",{"type":36,"tag":81,"props":1339,"children":1340},{},[1341,1346,1347,1353],{"type":36,"tag":51,"props":1342,"children":1343},{},[1344],{"type":42,"value":1345},"Login",{"type":42,"value":1319},{"type":36,"tag":113,"props":1348,"children":1350},{"className":1349},[],[1351],{"type":42,"value":1352},"render login",{"type":42,"value":1354}," (Opens browser for OAuth)",{"type":36,"tag":45,"props":1356,"children":1357},{},[1358],{"type":36,"tag":51,"props":1359,"children":1360},{},[1361],{"type":42,"value":1362},"6. Check Workspace Context",{"type":36,"tag":45,"props":1364,"children":1365},{},[1366],{"type":42,"value":1367},"Verify the active workspace:",{"type":36,"tag":521,"props":1369,"children":1372},{"className":1370,"code":1371,"language":42},[585],"get_selected_workspace()\n",[1373],{"type":36,"tag":113,"props":1374,"children":1375},{"__ignoreMap":526},[1376],{"type":42,"value":1371},{"type":36,"tag":45,"props":1378,"children":1379},{},[1380],{"type":42,"value":1381},"Or via CLI:",{"type":36,"tag":521,"props":1383,"children":1385},{"className":523,"code":1384,"language":525,"meta":526,"style":526},"render workspace current -o json\n",[1386],{"type":36,"tag":113,"props":1387,"children":1388},{"__ignoreMap":526},[1389],{"type":36,"tag":532,"props":1390,"children":1391},{"class":534,"line":535},[1392,1396,1401,1406,1410],{"type":36,"tag":532,"props":1393,"children":1394},{"style":539},[1395],{"type":42,"value":14},{"type":36,"tag":532,"props":1397,"children":1398},{"style":545},[1399],{"type":42,"value":1400}," workspace",{"type":36,"tag":532,"props":1402,"children":1403},{"style":545},[1404],{"type":42,"value":1405}," current",{"type":36,"tag":532,"props":1407,"children":1408},{"style":545},[1409],{"type":42,"value":1284},{"type":36,"tag":532,"props":1411,"children":1412},{"style":545},[1413],{"type":42,"value":1289},{"type":36,"tag":45,"props":1415,"children":1416},{},[1417],{"type":42,"value":1418},"To list available workspaces:",{"type":36,"tag":521,"props":1420,"children":1423},{"className":1421,"code":1422,"language":42},[585],"list_workspaces()\n",[1424],{"type":36,"tag":113,"props":1425,"children":1426},{"__ignoreMap":526},[1427],{"type":42,"value":1422},{"type":36,"tag":45,"props":1429,"children":1430},{},[1431,1433,1439],{"type":42,"value":1432},"If user needs to switch workspaces, they must do so via Dashboard or CLI (",{"type":36,"tag":113,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":42,"value":1438},"render workspace set",{"type":42,"value":306},{"type":36,"tag":45,"props":1441,"children":1442},{},[1443],{"type":42,"value":1444},"Once prerequisites are met, proceed with deployment workflow.",{"type":36,"tag":1446,"props":1447,"children":1448},"hr",{},[],{"type":36,"tag":37,"props":1450,"children":1452},{"id":1451},"method-1-blueprint-deployment-recommended-for-complex-apps",[1453],{"type":42,"value":1454},"Method 1: Blueprint Deployment (Recommended for Complex Apps)",{"type":36,"tag":149,"props":1456,"children":1458},{"id":1457},"blueprint-workflow",[1459],{"type":42,"value":1460},"Blueprint Workflow",{"type":36,"tag":407,"props":1462,"children":1464},{"id":1463},"step-1-analyze-codebase",[1465],{"type":42,"value":1466},"Step 1: Analyze Codebase",{"type":36,"tag":45,"props":1468,"children":1469},{},[1470,1472,1477],{"type":42,"value":1471},"Analyze the codebase to determine framework\u002Fruntime, build and start commands, required env vars, datastores, and port binding. Use the detailed checklists in ",{"type":36,"tag":1329,"props":1473,"children":1475},{"href":1474},"references\u002Fcodebase-analysis.md",[1476],{"type":42,"value":1474},{"type":42,"value":170},{"type":36,"tag":407,"props":1479,"children":1481},{"id":1480},"step-2-generate-renderyaml",[1482],{"type":42,"value":1483},"Step 2: Generate render.yaml",{"type":36,"tag":45,"props":1485,"children":1486},{},[1487,1489,1494],{"type":42,"value":1488},"Create a ",{"type":36,"tag":113,"props":1490,"children":1492},{"className":1491},[],[1493],{"type":42,"value":126},{"type":42,"value":1495}," Blueprint file following the Blueprint specification.",{"type":36,"tag":45,"props":1497,"children":1498},{},[1499,1501],{"type":42,"value":1500},"Complete specification: ",{"type":36,"tag":1329,"props":1502,"children":1504},{"href":1503},"references\u002Fblueprint-spec.md",[1505],{"type":42,"value":1503},{"type":36,"tag":45,"props":1507,"children":1508},{},[1509],{"type":36,"tag":51,"props":1510,"children":1511},{},[1512],{"type":42,"value":1513},"Key Points:",{"type":36,"tag":135,"props":1515,"children":1516},{},[1517,1530,1535,1548,1589],{"type":36,"tag":81,"props":1518,"children":1519},{},[1520,1522,1528],{"type":42,"value":1521},"Always use ",{"type":36,"tag":113,"props":1523,"children":1525},{"className":1524},[],[1526],{"type":42,"value":1527},"plan: free",{"type":42,"value":1529}," unless user specifies otherwise",{"type":36,"tag":81,"props":1531,"children":1532},{},[1533],{"type":42,"value":1534},"Include ALL environment variables the app needs",{"type":36,"tag":81,"props":1536,"children":1537},{},[1538,1540,1546],{"type":42,"value":1539},"Mark secrets with ",{"type":36,"tag":113,"props":1541,"children":1543},{"className":1542},[],[1544],{"type":42,"value":1545},"sync: false",{"type":42,"value":1547}," (user fills these in Dashboard)",{"type":36,"tag":81,"props":1549,"children":1550},{},[1551,1553,1559,1561,1567,1568,1574,1575,1581,1583],{"type":42,"value":1552},"Use appropriate service type: ",{"type":36,"tag":113,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":42,"value":1558},"web",{"type":42,"value":1560},", ",{"type":36,"tag":113,"props":1562,"children":1564},{"className":1563},[],[1565],{"type":42,"value":1566},"worker",{"type":42,"value":1560},{"type":36,"tag":113,"props":1569,"children":1571},{"className":1570},[],[1572],{"type":42,"value":1573},"cron",{"type":42,"value":1560},{"type":36,"tag":113,"props":1576,"children":1578},{"className":1577},[],[1579],{"type":42,"value":1580},"static",{"type":42,"value":1582},", or ",{"type":36,"tag":113,"props":1584,"children":1586},{"className":1585},[],[1587],{"type":42,"value":1588},"pserv",{"type":36,"tag":81,"props":1590,"children":1591},{},[1592,1594],{"type":42,"value":1593},"Use appropriate runtime: ",{"type":36,"tag":1329,"props":1595,"children":1597},{"href":1596},"references\u002Fruntimes.md",[1598],{"type":42,"value":1596},{"type":36,"tag":45,"props":1600,"children":1601},{},[1602],{"type":36,"tag":51,"props":1603,"children":1604},{},[1605],{"type":42,"value":1606},"Basic Structure:",{"type":36,"tag":521,"props":1608,"children":1612},{"className":1609,"code":1610,"language":1611,"meta":526,"style":526},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","services:\n  - type: web\n    name: my-app\n    runtime: node\n    plan: free\n    buildCommand: npm ci\n    startCommand: npm start\n    envVars:\n      - key: DATABASE_URL\n        fromDatabase:\n          name: postgres\n          property: connectionString\n      - key: JWT_SECRET\n        sync: false  # User fills in Dashboard\n\ndatabases:\n  - name: postgres\n    databaseName: myapp_db\n    plan: free\n","yaml",[1613],{"type":36,"tag":113,"props":1614,"children":1615},{"__ignoreMap":526},[1616,1629,1651,1668,1685,1702,1719,1736,1748,1770,1782,1800,1818,1839,1863,1873,1886,1907,1925],{"type":36,"tag":532,"props":1617,"children":1618},{"class":534,"line":535},[1619,1624],{"type":36,"tag":532,"props":1620,"children":1621},{"style":878},[1622],{"type":42,"value":1623},"services",{"type":36,"tag":532,"props":1625,"children":1626},{"style":742},[1627],{"type":42,"value":1628},":\n",{"type":36,"tag":532,"props":1630,"children":1631},{"class":534,"line":705},[1632,1637,1642,1646],{"type":36,"tag":532,"props":1633,"children":1634},{"style":742},[1635],{"type":42,"value":1636},"  -",{"type":36,"tag":532,"props":1638,"children":1639},{"style":878},[1640],{"type":42,"value":1641}," type",{"type":36,"tag":532,"props":1643,"children":1644},{"style":742},[1645],{"type":42,"value":769},{"type":36,"tag":532,"props":1647,"children":1648},{"style":545},[1649],{"type":42,"value":1650}," web\n",{"type":36,"tag":532,"props":1652,"children":1653},{"class":534,"line":777},[1654,1659,1663],{"type":36,"tag":532,"props":1655,"children":1656},{"style":878},[1657],{"type":42,"value":1658},"    name",{"type":36,"tag":532,"props":1660,"children":1661},{"style":742},[1662],{"type":42,"value":769},{"type":36,"tag":532,"props":1664,"children":1665},{"style":545},[1666],{"type":42,"value":1667}," my-app\n",{"type":36,"tag":532,"props":1669,"children":1670},{"class":534,"line":802},[1671,1676,1680],{"type":36,"tag":532,"props":1672,"children":1673},{"style":878},[1674],{"type":42,"value":1675},"    runtime",{"type":36,"tag":532,"props":1677,"children":1678},{"style":742},[1679],{"type":42,"value":769},{"type":36,"tag":532,"props":1681,"children":1682},{"style":545},[1683],{"type":42,"value":1684}," node\n",{"type":36,"tag":532,"props":1686,"children":1687},{"class":534,"line":844},[1688,1693,1697],{"type":36,"tag":532,"props":1689,"children":1690},{"style":878},[1691],{"type":42,"value":1692},"    plan",{"type":36,"tag":532,"props":1694,"children":1695},{"style":742},[1696],{"type":42,"value":769},{"type":36,"tag":532,"props":1698,"children":1699},{"style":545},[1700],{"type":42,"value":1701}," free\n",{"type":36,"tag":532,"props":1703,"children":1704},{"class":534,"line":869},[1705,1710,1714],{"type":36,"tag":532,"props":1706,"children":1707},{"style":878},[1708],{"type":42,"value":1709},"    buildCommand",{"type":36,"tag":532,"props":1711,"children":1712},{"style":742},[1713],{"type":42,"value":769},{"type":36,"tag":532,"props":1715,"children":1716},{"style":545},[1717],{"type":42,"value":1718}," npm ci\n",{"type":36,"tag":532,"props":1720,"children":1721},{"class":534,"line":906},[1722,1727,1731],{"type":36,"tag":532,"props":1723,"children":1724},{"style":878},[1725],{"type":42,"value":1726},"    startCommand",{"type":36,"tag":532,"props":1728,"children":1729},{"style":742},[1730],{"type":42,"value":769},{"type":36,"tag":532,"props":1732,"children":1733},{"style":545},[1734],{"type":42,"value":1735}," npm start\n",{"type":36,"tag":532,"props":1737,"children":1738},{"class":534,"line":915},[1739,1744],{"type":36,"tag":532,"props":1740,"children":1741},{"style":878},[1742],{"type":42,"value":1743},"    envVars",{"type":36,"tag":532,"props":1745,"children":1746},{"style":742},[1747],{"type":42,"value":1628},{"type":36,"tag":532,"props":1749,"children":1750},{"class":534,"line":924},[1751,1756,1761,1765],{"type":36,"tag":532,"props":1752,"children":1753},{"style":742},[1754],{"type":42,"value":1755},"      -",{"type":36,"tag":532,"props":1757,"children":1758},{"style":878},[1759],{"type":42,"value":1760}," key",{"type":36,"tag":532,"props":1762,"children":1763},{"style":742},[1764],{"type":42,"value":769},{"type":36,"tag":532,"props":1766,"children":1767},{"style":545},[1768],{"type":42,"value":1769}," DATABASE_URL\n",{"type":36,"tag":532,"props":1771,"children":1772},{"class":534,"line":933},[1773,1778],{"type":36,"tag":532,"props":1774,"children":1775},{"style":878},[1776],{"type":42,"value":1777},"        fromDatabase",{"type":36,"tag":532,"props":1779,"children":1780},{"style":742},[1781],{"type":42,"value":1628},{"type":36,"tag":532,"props":1783,"children":1785},{"class":534,"line":1784},11,[1786,1791,1795],{"type":36,"tag":532,"props":1787,"children":1788},{"style":878},[1789],{"type":42,"value":1790},"          name",{"type":36,"tag":532,"props":1792,"children":1793},{"style":742},[1794],{"type":42,"value":769},{"type":36,"tag":532,"props":1796,"children":1797},{"style":545},[1798],{"type":42,"value":1799}," postgres\n",{"type":36,"tag":532,"props":1801,"children":1803},{"class":534,"line":1802},12,[1804,1809,1813],{"type":36,"tag":532,"props":1805,"children":1806},{"style":878},[1807],{"type":42,"value":1808},"          property",{"type":36,"tag":532,"props":1810,"children":1811},{"style":742},[1812],{"type":42,"value":769},{"type":36,"tag":532,"props":1814,"children":1815},{"style":545},[1816],{"type":42,"value":1817}," connectionString\n",{"type":36,"tag":532,"props":1819,"children":1821},{"class":534,"line":1820},13,[1822,1826,1830,1834],{"type":36,"tag":532,"props":1823,"children":1824},{"style":742},[1825],{"type":42,"value":1755},{"type":36,"tag":532,"props":1827,"children":1828},{"style":878},[1829],{"type":42,"value":1760},{"type":36,"tag":532,"props":1831,"children":1832},{"style":742},[1833],{"type":42,"value":769},{"type":36,"tag":532,"props":1835,"children":1836},{"style":545},[1837],{"type":42,"value":1838}," JWT_SECRET\n",{"type":36,"tag":532,"props":1840,"children":1842},{"class":534,"line":1841},14,[1843,1848,1852,1858],{"type":36,"tag":532,"props":1844,"children":1845},{"style":878},[1846],{"type":42,"value":1847},"        sync",{"type":36,"tag":532,"props":1849,"children":1850},{"style":742},[1851],{"type":42,"value":769},{"type":36,"tag":532,"props":1853,"children":1855},{"style":1854},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1856],{"type":42,"value":1857}," false",{"type":36,"tag":532,"props":1859,"children":1860},{"style":1264},[1861],{"type":42,"value":1862},"  # User fills in Dashboard\n",{"type":36,"tag":532,"props":1864,"children":1866},{"class":534,"line":1865},15,[1867],{"type":36,"tag":532,"props":1868,"children":1870},{"emptyLinePlaceholder":1869},true,[1871],{"type":42,"value":1872},"\n",{"type":36,"tag":532,"props":1874,"children":1876},{"class":534,"line":1875},16,[1877,1882],{"type":36,"tag":532,"props":1878,"children":1879},{"style":878},[1880],{"type":42,"value":1881},"databases",{"type":36,"tag":532,"props":1883,"children":1884},{"style":742},[1885],{"type":42,"value":1628},{"type":36,"tag":532,"props":1887,"children":1889},{"class":534,"line":1888},17,[1890,1894,1899,1903],{"type":36,"tag":532,"props":1891,"children":1892},{"style":742},[1893],{"type":42,"value":1636},{"type":36,"tag":532,"props":1895,"children":1896},{"style":878},[1897],{"type":42,"value":1898}," name",{"type":36,"tag":532,"props":1900,"children":1901},{"style":742},[1902],{"type":42,"value":769},{"type":36,"tag":532,"props":1904,"children":1905},{"style":545},[1906],{"type":42,"value":1799},{"type":36,"tag":532,"props":1908,"children":1910},{"class":534,"line":1909},18,[1911,1916,1920],{"type":36,"tag":532,"props":1912,"children":1913},{"style":878},[1914],{"type":42,"value":1915},"    databaseName",{"type":36,"tag":532,"props":1917,"children":1918},{"style":742},[1919],{"type":42,"value":769},{"type":36,"tag":532,"props":1921,"children":1922},{"style":545},[1923],{"type":42,"value":1924}," myapp_db\n",{"type":36,"tag":532,"props":1926,"children":1928},{"class":534,"line":1927},19,[1929,1933,1937],{"type":36,"tag":532,"props":1930,"children":1931},{"style":878},[1932],{"type":42,"value":1692},{"type":36,"tag":532,"props":1934,"children":1935},{"style":742},[1936],{"type":42,"value":769},{"type":36,"tag":532,"props":1938,"children":1939},{"style":545},[1940],{"type":42,"value":1701},{"type":36,"tag":45,"props":1942,"children":1943},{},[1944],{"type":36,"tag":51,"props":1945,"children":1946},{},[1947],{"type":42,"value":1948},"Service Types:",{"type":36,"tag":135,"props":1950,"children":1951},{},[1952,1962,1972,1982,1992],{"type":36,"tag":81,"props":1953,"children":1954},{},[1955,1960],{"type":36,"tag":113,"props":1956,"children":1958},{"className":1957},[],[1959],{"type":42,"value":1558},{"type":42,"value":1961},": HTTP services, APIs, web applications (publicly accessible)",{"type":36,"tag":81,"props":1963,"children":1964},{},[1965,1970],{"type":36,"tag":113,"props":1966,"children":1968},{"className":1967},[],[1969],{"type":42,"value":1566},{"type":42,"value":1971},": Background job processors (not publicly accessible)",{"type":36,"tag":81,"props":1973,"children":1974},{},[1975,1980],{"type":36,"tag":113,"props":1976,"children":1978},{"className":1977},[],[1979],{"type":42,"value":1573},{"type":42,"value":1981},": Scheduled tasks that run on a cron schedule",{"type":36,"tag":81,"props":1983,"children":1984},{},[1985,1990],{"type":36,"tag":113,"props":1986,"children":1988},{"className":1987},[],[1989],{"type":42,"value":1580},{"type":42,"value":1991},": Static sites (HTML\u002FCSS\u002FJS served via CDN)",{"type":36,"tag":81,"props":1993,"children":1994},{},[1995,2000],{"type":36,"tag":113,"props":1996,"children":1998},{"className":1997},[],[1999],{"type":42,"value":1588},{"type":42,"value":2001},": Private services (internal only, within same account)",{"type":36,"tag":45,"props":2003,"children":2004},{},[2005,2007,2012,2014,2018,2020],{"type":42,"value":2006},"Service type details: ",{"type":36,"tag":1329,"props":2008,"children":2010},{"href":2009},"references\u002Fservice-types.md",[2011],{"type":42,"value":2009},{"type":42,"value":2013},"\nRuntime options: ",{"type":36,"tag":1329,"props":2015,"children":2016},{"href":1596},[2017],{"type":42,"value":1596},{"type":42,"value":2019},"\nTemplate examples: ",{"type":36,"tag":1329,"props":2021,"children":2023},{"href":2022},"assets\u002F",[2024],{"type":42,"value":2022},{"type":36,"tag":407,"props":2026,"children":2028},{"id":2027},"step-25-immediate-next-steps-always-provide",[2029],{"type":42,"value":2030},"Step 2.5: Immediate Next Steps (Always Provide)",{"type":36,"tag":45,"props":2032,"children":2033},{},[2034,2036,2041],{"type":42,"value":2035},"After creating ",{"type":36,"tag":113,"props":2037,"children":2039},{"className":2038},[],[2040],{"type":42,"value":126},{"type":42,"value":2042},", always give the user a short, explicit checklist and run validation immediately when the CLI is available:",{"type":36,"tag":77,"props":2044,"children":2045},{},[2046,2078,2101,2116,2126,2141],{"type":36,"tag":81,"props":2047,"children":2048},{},[2049,2054,2056,2062,2064,2069,2071,2077],{"type":36,"tag":51,"props":2050,"children":2051},{},[2052],{"type":42,"value":2053},"Authenticate (CLI)",{"type":42,"value":2055},": run ",{"type":36,"tag":113,"props":2057,"children":2059},{"className":2058},[],[2060],{"type":42,"value":2061},"render whoami -o json",{"type":42,"value":2063}," (if not logged in, run ",{"type":36,"tag":113,"props":2065,"children":2067},{"className":2066},[],[2068],{"type":42,"value":1352},{"type":42,"value":2070}," or set ",{"type":36,"tag":113,"props":2072,"children":2074},{"className":2073},[],[2075],{"type":42,"value":2076},"RENDER_API_KEY",{"type":42,"value":1337},{"type":36,"tag":81,"props":2079,"children":2080},{},[2081,2086,2087,2093],{"type":36,"tag":51,"props":2082,"children":2083},{},[2084],{"type":42,"value":2085},"Validate (recommended)",{"type":42,"value":2055},{"type":36,"tag":113,"props":2088,"children":2090},{"className":2089},[],[2091],{"type":42,"value":2092},"render blueprints validate",{"type":36,"tag":135,"props":2094,"children":2095},{},[2096],{"type":36,"tag":81,"props":2097,"children":2098},{},[2099],{"type":42,"value":2100},"If the CLI isn't installed, offer to install it and provide the command.",{"type":36,"tag":81,"props":2102,"children":2103},{},[2104,2109,2110],{"type":36,"tag":51,"props":2105,"children":2106},{},[2107],{"type":42,"value":2108},"Commit + push",{"type":42,"value":1319},{"type":36,"tag":113,"props":2111,"children":2113},{"className":2112},[],[2114],{"type":42,"value":2115},"git add render.yaml && git commit -m \"Add Render deployment configuration\" && git push origin main",{"type":36,"tag":81,"props":2117,"children":2118},{},[2119,2124],{"type":36,"tag":51,"props":2120,"children":2121},{},[2122],{"type":42,"value":2123},"Open Dashboard",{"type":42,"value":2125},": Use the Blueprint deeplink and complete Git OAuth if prompted",{"type":36,"tag":81,"props":2127,"children":2128},{},[2129,2134,2136],{"type":36,"tag":51,"props":2130,"children":2131},{},[2132],{"type":42,"value":2133},"Fill secrets",{"type":42,"value":2135},": Set env vars marked ",{"type":36,"tag":113,"props":2137,"children":2139},{"className":2138},[],[2140],{"type":42,"value":1545},{"type":36,"tag":81,"props":2142,"children":2143},{},[2144,2149],{"type":36,"tag":51,"props":2145,"children":2146},{},[2147],{"type":42,"value":2148},"Deploy",{"type":42,"value":2150},": Click \"Apply\" and monitor the deploy",{"type":36,"tag":407,"props":2152,"children":2154},{"id":2153},"step-3-validate-configuration",[2155],{"type":42,"value":2156},"Step 3: Validate Configuration",{"type":36,"tag":45,"props":2158,"children":2159},{},[2160],{"type":42,"value":2161},"Validate the render.yaml file to catch errors before deployment. If the CLI is installed, run the commands directly; only prompt the user if the CLI is missing:",{"type":36,"tag":521,"props":2163,"children":2165},{"className":523,"code":2164,"language":525,"meta":526,"style":526},"render whoami -o json  # Ensure CLI is authenticated (won't always prompt)\nrender blueprints validate\n",[2166],{"type":36,"tag":113,"props":2167,"children":2168},{"__ignoreMap":526},[2169,2194],{"type":36,"tag":532,"props":2170,"children":2171},{"class":534,"line":535},[2172,2176,2180,2184,2189],{"type":36,"tag":532,"props":2173,"children":2174},{"style":539},[2175],{"type":42,"value":14},{"type":36,"tag":532,"props":2177,"children":2178},{"style":545},[2179],{"type":42,"value":1279},{"type":36,"tag":532,"props":2181,"children":2182},{"style":545},[2183],{"type":42,"value":1284},{"type":36,"tag":532,"props":2185,"children":2186},{"style":545},[2187],{"type":42,"value":2188}," json",{"type":36,"tag":532,"props":2190,"children":2191},{"style":1264},[2192],{"type":42,"value":2193},"  # Ensure CLI is authenticated (won't always prompt)\n",{"type":36,"tag":532,"props":2195,"children":2196},{"class":534,"line":705},[2197,2201,2206],{"type":36,"tag":532,"props":2198,"children":2199},{"style":539},[2200],{"type":42,"value":14},{"type":36,"tag":532,"props":2202,"children":2203},{"style":545},[2204],{"type":42,"value":2205}," blueprints",{"type":36,"tag":532,"props":2207,"children":2208},{"style":545},[2209],{"type":42,"value":2210}," validate\n",{"type":36,"tag":45,"props":2212,"children":2213},{},[2214],{"type":42,"value":2215},"Fix any validation errors before proceeding. Common issues:",{"type":36,"tag":135,"props":2217,"children":2218},{},[2219,2245,2250,2255],{"type":36,"tag":81,"props":2220,"children":2221},{},[2222,2224,2230,2231,2237,2238,2244],{"type":42,"value":2223},"Missing required fields (",{"type":36,"tag":113,"props":2225,"children":2227},{"className":2226},[],[2228],{"type":42,"value":2229},"name",{"type":42,"value":1560},{"type":36,"tag":113,"props":2232,"children":2234},{"className":2233},[],[2235],{"type":42,"value":2236},"type",{"type":42,"value":1560},{"type":36,"tag":113,"props":2239,"children":2241},{"className":2240},[],[2242],{"type":42,"value":2243},"runtime",{"type":42,"value":1337},{"type":36,"tag":81,"props":2246,"children":2247},{},[2248],{"type":42,"value":2249},"Invalid runtime values",{"type":36,"tag":81,"props":2251,"children":2252},{},[2253],{"type":42,"value":2254},"Incorrect YAML syntax",{"type":36,"tag":81,"props":2256,"children":2257},{},[2258],{"type":42,"value":2259},"Invalid environment variable references",{"type":36,"tag":45,"props":2261,"children":2262},{},[2263,2265],{"type":42,"value":2264},"Configuration guide: ",{"type":36,"tag":1329,"props":2266,"children":2268},{"href":2267},"references\u002Fconfiguration-guide.md",[2269],{"type":42,"value":2267},{"type":36,"tag":407,"props":2271,"children":2273},{"id":2272},"step-4-commit-and-push",[2274],{"type":42,"value":2275},"Step 4: Commit and Push",{"type":36,"tag":45,"props":2277,"children":2278},{},[2279,2284,2286,2291],{"type":36,"tag":51,"props":2280,"children":2281},{},[2282],{"type":42,"value":2283},"IMPORTANT:",{"type":42,"value":2285}," You must merge the ",{"type":36,"tag":113,"props":2287,"children":2289},{"className":2288},[],[2290],{"type":42,"value":126},{"type":42,"value":2292}," file into your repository before deploying.",{"type":36,"tag":45,"props":2294,"children":2295},{},[2296,2298,2303],{"type":42,"value":2297},"Ensure the ",{"type":36,"tag":113,"props":2299,"children":2301},{"className":2300},[],[2302],{"type":42,"value":126},{"type":42,"value":2304}," file is committed and pushed to your Git remote:",{"type":36,"tag":521,"props":2306,"children":2308},{"className":523,"code":2307,"language":525,"meta":526,"style":526},"git add render.yaml\ngit commit -m \"Add Render deployment configuration\"\ngit push origin main\n",[2309],{"type":36,"tag":113,"props":2310,"children":2311},{"__ignoreMap":526},[2312,2328,2358],{"type":36,"tag":532,"props":2313,"children":2314},{"class":534,"line":535},[2315,2319,2323],{"type":36,"tag":532,"props":2316,"children":2317},{"style":539},[2318],{"type":42,"value":542},{"type":36,"tag":532,"props":2320,"children":2321},{"style":545},[2322],{"type":42,"value":1017},{"type":36,"tag":532,"props":2324,"children":2325},{"style":545},[2326],{"type":42,"value":2327}," render.yaml\n",{"type":36,"tag":532,"props":2329,"children":2330},{"class":534,"line":705},[2331,2335,2340,2345,2349,2354],{"type":36,"tag":532,"props":2332,"children":2333},{"style":539},[2334],{"type":42,"value":542},{"type":36,"tag":532,"props":2336,"children":2337},{"style":545},[2338],{"type":42,"value":2339}," commit",{"type":36,"tag":532,"props":2341,"children":2342},{"style":545},[2343],{"type":42,"value":2344}," -m",{"type":36,"tag":532,"props":2346,"children":2347},{"style":742},[2348],{"type":42,"value":827},{"type":36,"tag":532,"props":2350,"children":2351},{"style":545},[2352],{"type":42,"value":2353},"Add Render deployment configuration",{"type":36,"tag":532,"props":2355,"children":2356},{"style":742},[2357],{"type":42,"value":903},{"type":36,"tag":532,"props":2359,"children":2360},{"class":534,"line":777},[2361,2365,2370,2375],{"type":36,"tag":532,"props":2362,"children":2363},{"style":539},[2364],{"type":42,"value":542},{"type":36,"tag":532,"props":2366,"children":2367},{"style":545},[2368],{"type":42,"value":2369}," push",{"type":36,"tag":532,"props":2371,"children":2372},{"style":545},[2373],{"type":42,"value":2374}," origin",{"type":36,"tag":532,"props":2376,"children":2377},{"style":545},[2378],{"type":42,"value":2379}," main\n",{"type":36,"tag":45,"props":2381,"children":2382},{},[2383,2385,2391],{"type":42,"value":2384},"If there is no Git remote yet, stop here and guide the user to create a GitHub\u002FGitLab\u002FBitbucket repo, add it as ",{"type":36,"tag":113,"props":2386,"children":2388},{"className":2387},[],[2389],{"type":42,"value":2390},"origin",{"type":42,"value":2392},", and push before continuing.",{"type":36,"tag":45,"props":2394,"children":2395},{},[2396,2401],{"type":36,"tag":51,"props":2397,"children":2398},{},[2399],{"type":42,"value":2400},"Why this matters:",{"type":42,"value":2402}," The Dashboard deeplink will read the render.yaml from your repository. If the file isn't merged and pushed, Render won't find the configuration and deployment will fail.",{"type":36,"tag":45,"props":2404,"children":2405},{},[2406],{"type":42,"value":2407},"Verify the file is in your remote repository before proceeding to the next step.",{"type":36,"tag":407,"props":2409,"children":2411},{"id":2410},"step-5-generate-deeplink",[2412],{"type":42,"value":2413},"Step 5: Generate Deeplink",{"type":36,"tag":45,"props":2415,"children":2416},{},[2417],{"type":42,"value":2418},"Get the Git repository URL:",{"type":36,"tag":521,"props":2420,"children":2422},{"className":523,"code":2421,"language":525,"meta":526,"style":526},"git remote get-url origin\n",[2423],{"type":36,"tag":113,"props":2424,"children":2425},{"__ignoreMap":526},[2426],{"type":36,"tag":532,"props":2427,"children":2428},{"class":534,"line":535},[2429,2433,2437,2442],{"type":36,"tag":532,"props":2430,"children":2431},{"style":539},[2432],{"type":42,"value":542},{"type":36,"tag":532,"props":2434,"children":2435},{"style":545},[2436],{"type":42,"value":548},{"type":36,"tag":532,"props":2438,"children":2439},{"style":545},[2440],{"type":42,"value":2441}," get-url",{"type":36,"tag":532,"props":2443,"children":2444},{"style":545},[2445],{"type":42,"value":2446}," origin\n",{"type":36,"tag":45,"props":2448,"children":2449},{},[2450,2452],{"type":42,"value":2451},"This will return a URL from your Git provider. ",{"type":36,"tag":51,"props":2453,"children":2454},{},[2455],{"type":42,"value":2456},"If the URL is SSH format, convert it to HTTPS:",{"type":36,"tag":333,"props":2458,"children":2459},{},[2460,2476],{"type":36,"tag":337,"props":2461,"children":2462},{},[2463],{"type":36,"tag":341,"props":2464,"children":2465},{},[2466,2471],{"type":36,"tag":345,"props":2467,"children":2468},{},[2469],{"type":42,"value":2470},"SSH Format",{"type":36,"tag":345,"props":2472,"children":2473},{},[2474],{"type":42,"value":2475},"HTTPS Format",{"type":36,"tag":361,"props":2477,"children":2478},{},[2479,2500,2521],{"type":36,"tag":341,"props":2480,"children":2481},{},[2482,2491],{"type":36,"tag":368,"props":2483,"children":2484},{},[2485],{"type":36,"tag":113,"props":2486,"children":2488},{"className":2487},[],[2489],{"type":42,"value":2490},"git@github.com:user\u002Frepo.git",{"type":36,"tag":368,"props":2492,"children":2493},{},[2494],{"type":36,"tag":113,"props":2495,"children":2497},{"className":2496},[],[2498],{"type":42,"value":2499},"https:\u002F\u002Fgithub.com\u002Fuser\u002Frepo",{"type":36,"tag":341,"props":2501,"children":2502},{},[2503,2512],{"type":36,"tag":368,"props":2504,"children":2505},{},[2506],{"type":36,"tag":113,"props":2507,"children":2509},{"className":2508},[],[2510],{"type":42,"value":2511},"git@gitlab.com:user\u002Frepo.git",{"type":36,"tag":368,"props":2513,"children":2514},{},[2515],{"type":36,"tag":113,"props":2516,"children":2518},{"className":2517},[],[2519],{"type":42,"value":2520},"https:\u002F\u002Fgitlab.com\u002Fuser\u002Frepo",{"type":36,"tag":341,"props":2522,"children":2523},{},[2524,2533],{"type":36,"tag":368,"props":2525,"children":2526},{},[2527],{"type":36,"tag":113,"props":2528,"children":2530},{"className":2529},[],[2531],{"type":42,"value":2532},"git@bitbucket.org:user\u002Frepo.git",{"type":36,"tag":368,"props":2534,"children":2535},{},[2536],{"type":36,"tag":113,"props":2537,"children":2539},{"className":2538},[],[2540],{"type":42,"value":2541},"https:\u002F\u002Fbitbucket.org\u002Fuser\u002Frepo",{"type":36,"tag":45,"props":2543,"children":2544},{},[2545,2550,2552,2558,2560,2566,2568,2574],{"type":36,"tag":51,"props":2546,"children":2547},{},[2548],{"type":42,"value":2549},"Conversion pattern:",{"type":42,"value":2551}," Replace ",{"type":36,"tag":113,"props":2553,"children":2555},{"className":2554},[],[2556],{"type":42,"value":2557},"git@\u003Chost>:",{"type":42,"value":2559}," with ",{"type":36,"tag":113,"props":2561,"children":2563},{"className":2562},[],[2564],{"type":42,"value":2565},"https:\u002F\u002F\u003Chost>\u002F",{"type":42,"value":2567}," and remove ",{"type":36,"tag":113,"props":2569,"children":2571},{"className":2570},[],[2572],{"type":42,"value":2573},".git",{"type":42,"value":2575}," suffix.",{"type":36,"tag":45,"props":2577,"children":2578},{},[2579],{"type":42,"value":2580},"Format the Dashboard deeplink using the HTTPS repository URL:",{"type":36,"tag":521,"props":2582,"children":2585},{"className":2583,"code":2584,"language":42},[585],"https:\u002F\u002Fdashboard.render.com\u002Fblueprint\u002Fnew?repo=\u003CREPOSITORY_URL>\n",[2586],{"type":36,"tag":113,"props":2587,"children":2588},{"__ignoreMap":526},[2589],{"type":42,"value":2584},{"type":36,"tag":45,"props":2591,"children":2592},{},[2593],{"type":42,"value":2594},"Example:",{"type":36,"tag":521,"props":2596,"children":2599},{"className":2597,"code":2598,"language":42},[585],"https:\u002F\u002Fdashboard.render.com\u002Fblueprint\u002Fnew?repo=https:\u002F\u002Fgithub.com\u002Fusername\u002Frepo-name\n",[2600],{"type":36,"tag":113,"props":2601,"children":2602},{"__ignoreMap":526},[2603],{"type":42,"value":2598},{"type":36,"tag":407,"props":2605,"children":2607},{"id":2606},"step-6-guide-user",[2608],{"type":42,"value":2609},"Step 6: Guide User",{"type":36,"tag":45,"props":2611,"children":2612},{},[2613,2618],{"type":36,"tag":51,"props":2614,"children":2615},{},[2616],{"type":42,"value":2617},"CRITICAL:",{"type":42,"value":2619}," Ensure the user has merged and pushed the render.yaml file to their repository before clicking the deeplink. If the file isn't in the repository, Render cannot read the Blueprint configuration and deployment will fail.",{"type":36,"tag":45,"props":2621,"children":2622},{},[2623],{"type":42,"value":2624},"Provide the deeplink to the user with these instructions:",{"type":36,"tag":77,"props":2626,"children":2627},{},[2628,2638,2643,2648,2653,2664,2669],{"type":36,"tag":81,"props":2629,"children":2630},{},[2631,2636],{"type":36,"tag":51,"props":2632,"children":2633},{},[2634],{"type":42,"value":2635},"Verify render.yaml is merged",{"type":42,"value":2637}," - Confirm the file exists in your repository on GitHub\u002FGitLab\u002FBitbucket",{"type":36,"tag":81,"props":2639,"children":2640},{},[2641],{"type":42,"value":2642},"Click the deeplink to open Render Dashboard",{"type":36,"tag":81,"props":2644,"children":2645},{},[2646],{"type":42,"value":2647},"Complete Git provider OAuth if prompted",{"type":36,"tag":81,"props":2649,"children":2650},{},[2651],{"type":42,"value":2652},"Name the Blueprint (or use default from render.yaml)",{"type":36,"tag":81,"props":2654,"children":2655},{},[2656,2658,2663],{"type":42,"value":2657},"Fill in secret environment variables (marked with ",{"type":36,"tag":113,"props":2659,"children":2661},{"className":2660},[],[2662],{"type":42,"value":1545},{"type":42,"value":1337},{"type":36,"tag":81,"props":2665,"children":2666},{},[2667],{"type":42,"value":2668},"Review services and databases configuration",{"type":36,"tag":81,"props":2670,"children":2671},{},[2672],{"type":42,"value":2673},"Click \"Apply\" to deploy",{"type":36,"tag":45,"props":2675,"children":2676},{},[2677],{"type":42,"value":2678},"The deployment will begin automatically. Users can monitor progress in the Render Dashboard.",{"type":36,"tag":407,"props":2680,"children":2682},{"id":2681},"step-7-verify-deployment",[2683],{"type":42,"value":2684},"Step 7: Verify Deployment",{"type":36,"tag":45,"props":2686,"children":2687},{},[2688],{"type":42,"value":2689},"After the user deploys via Dashboard, verify everything is working.",{"type":36,"tag":45,"props":2691,"children":2692},{},[2693],{"type":36,"tag":51,"props":2694,"children":2695},{},[2696],{"type":42,"value":2697},"Check deployment status via MCP:",{"type":36,"tag":521,"props":2699,"children":2702},{"className":2700,"code":2701,"language":42},[585],"list_deploys(serviceId: \"\u003Cservice-id>\", limit: 1)\n",[2703],{"type":36,"tag":113,"props":2704,"children":2705},{"__ignoreMap":526},[2706],{"type":42,"value":2701},{"type":36,"tag":45,"props":2708,"children":2709},{},[2710,2712,2718],{"type":42,"value":2711},"Look for ",{"type":36,"tag":113,"props":2713,"children":2715},{"className":2714},[],[2716],{"type":42,"value":2717},"status: \"live\"",{"type":42,"value":2719}," to confirm successful deployment.",{"type":36,"tag":45,"props":2721,"children":2722},{},[2723],{"type":36,"tag":51,"props":2724,"children":2725},{},[2726],{"type":42,"value":2727},"Check for runtime errors (wait 2-3 minutes after deploy):",{"type":36,"tag":521,"props":2729,"children":2732},{"className":2730,"code":2731,"language":42},[585],"list_logs(resource: [\"\u003Cservice-id>\"], level: [\"error\"], limit: 20)\n",[2733],{"type":36,"tag":113,"props":2734,"children":2735},{"__ignoreMap":526},[2736],{"type":42,"value":2731},{"type":36,"tag":45,"props":2738,"children":2739},{},[2740],{"type":36,"tag":51,"props":2741,"children":2742},{},[2743],{"type":42,"value":2744},"Check service health metrics:",{"type":36,"tag":521,"props":2746,"children":2749},{"className":2747,"code":2748,"language":42},[585],"get_metrics(\n  resourceId: \"\u003Cservice-id>\",\n  metricTypes: [\"http_request_count\", \"cpu_usage\", \"memory_usage\"]\n)\n",[2750],{"type":36,"tag":113,"props":2751,"children":2752},{"__ignoreMap":526},[2753],{"type":42,"value":2748},{"type":36,"tag":45,"props":2755,"children":2756},{},[2757,2759,2764],{"type":42,"value":2758},"If errors are found, proceed to the ",{"type":36,"tag":51,"props":2760,"children":2761},{},[2762],{"type":42,"value":2763},"Post-deploy verification and basic triage",{"type":42,"value":2765}," section below.",{"type":36,"tag":1446,"props":2767,"children":2768},{},[],{"type":36,"tag":37,"props":2770,"children":2772},{"id":2771},"method-2-direct-service-creation-quick-single-service-deployments",[2773],{"type":42,"value":2774},"Method 2: Direct Service Creation (Quick Single-Service Deployments)",{"type":36,"tag":45,"props":2776,"children":2777},{},[2778],{"type":42,"value":2779},"For simple deployments without Infrastructure-as-Code, create services directly via MCP tools.",{"type":36,"tag":149,"props":2781,"children":2783},{"id":2782},"when-to-use-direct-creation",[2784],{"type":42,"value":2785},"When to Use Direct Creation",{"type":36,"tag":135,"props":2787,"children":2788},{},[2789,2794,2799,2804],{"type":36,"tag":81,"props":2790,"children":2791},{},[2792],{"type":42,"value":2793},"Single web service or static site",{"type":36,"tag":81,"props":2795,"children":2796},{},[2797],{"type":42,"value":2798},"Quick prototypes or demos",{"type":36,"tag":81,"props":2800,"children":2801},{},[2802],{"type":42,"value":2803},"When you don't need a render.yaml file in your repo",{"type":36,"tag":81,"props":2805,"children":2806},{},[2807],{"type":42,"value":2808},"Adding databases or cron jobs to existing projects",{"type":36,"tag":149,"props":2810,"children":2812},{"id":2811},"prerequisites-for-direct-creation",[2813],{"type":42,"value":2814},"Prerequisites for Direct Creation",{"type":36,"tag":45,"props":2816,"children":2817},{},[2818,2823],{"type":36,"tag":51,"props":2819,"children":2820},{},[2821],{"type":42,"value":2822},"Repository must be pushed to a Git provider.",{"type":42,"value":2824}," Render clones your repository to build and deploy services.",{"type":36,"tag":521,"props":2826,"children":2828},{"className":523,"code":2827,"language":525,"meta":526,"style":526},"git remote -v  # Verify remote exists\ngit push origin main  # Ensure code is pushed\n",[2829],{"type":36,"tag":113,"props":2830,"children":2831},{"__ignoreMap":526},[2832,2853],{"type":36,"tag":532,"props":2833,"children":2834},{"class":534,"line":535},[2835,2839,2843,2848],{"type":36,"tag":532,"props":2836,"children":2837},{"style":539},[2838],{"type":42,"value":542},{"type":36,"tag":532,"props":2840,"children":2841},{"style":545},[2842],{"type":42,"value":548},{"type":36,"tag":532,"props":2844,"children":2845},{"style":545},[2846],{"type":42,"value":2847}," -v",{"type":36,"tag":532,"props":2849,"children":2850},{"style":1264},[2851],{"type":42,"value":2852},"  # Verify remote exists\n",{"type":36,"tag":532,"props":2854,"children":2855},{"class":534,"line":705},[2856,2860,2864,2868,2873],{"type":36,"tag":532,"props":2857,"children":2858},{"style":539},[2859],{"type":42,"value":542},{"type":36,"tag":532,"props":2861,"children":2862},{"style":545},[2863],{"type":42,"value":2369},{"type":36,"tag":532,"props":2865,"children":2866},{"style":545},[2867],{"type":42,"value":2374},{"type":36,"tag":532,"props":2869,"children":2870},{"style":545},[2871],{"type":42,"value":2872}," main",{"type":36,"tag":532,"props":2874,"children":2875},{"style":1264},[2876],{"type":42,"value":2877},"  # Ensure code is pushed\n",{"type":36,"tag":45,"props":2879,"children":2880},{},[2881],{"type":42,"value":2882},"Supported providers: GitHub, GitLab, Bitbucket",{"type":36,"tag":45,"props":2884,"children":2885},{},[2886],{"type":42,"value":2887},"If no remote exists, stop and ask the user to create\u002Fpush a remote or switch to Docker image deploy.",{"type":36,"tag":45,"props":2889,"children":2890},{},[2891,2896],{"type":36,"tag":51,"props":2892,"children":2893},{},[2894],{"type":42,"value":2895},"Note:",{"type":42,"value":2897}," MCP does not support creating image-backed services. Use the Dashboard\u002FAPI for prebuilt Docker image deploys.",{"type":36,"tag":149,"props":2899,"children":2901},{"id":2900},"direct-creation-workflow",[2902],{"type":42,"value":2903},"Direct Creation Workflow",{"type":36,"tag":45,"props":2905,"children":2906},{},[2907,2909,2914],{"type":42,"value":2908},"Use the concise steps below, and refer to ",{"type":36,"tag":1329,"props":2910,"children":2912},{"href":2911},"references\u002Fdirect-creation.md",[2913],{"type":42,"value":2911},{"type":42,"value":2915}," for full MCP command examples and follow-on configuration.",{"type":36,"tag":407,"props":2917,"children":2919},{"id":2918},"step-1-analyze-codebase-1",[2920],{"type":42,"value":1466},{"type":36,"tag":45,"props":2922,"children":2923},{},[2924,2926,2930],{"type":42,"value":2925},"Use ",{"type":36,"tag":1329,"props":2927,"children":2928},{"href":1474},[2929],{"type":42,"value":1474},{"type":42,"value":2931}," to determine runtime, build\u002Fstart commands, env vars, and datastores.",{"type":36,"tag":407,"props":2933,"children":2935},{"id":2934},"step-2-create-resources-via-mcp",[2936],{"type":42,"value":2937},"Step 2: Create Resources via MCP",{"type":36,"tag":45,"props":2939,"children":2940},{},[2941,2943,2947],{"type":42,"value":2942},"Create the service (web or static) and any required databases or key-value stores. See ",{"type":36,"tag":1329,"props":2944,"children":2945},{"href":2911},[2946],{"type":42,"value":2911},{"type":42,"value":170},{"type":36,"tag":45,"props":2949,"children":2950},{},[2951],{"type":42,"value":2952},"If MCP returns an error about missing Git credentials or repo access, stop and guide the user to connect their Git provider in the Render Dashboard, then retry.",{"type":36,"tag":407,"props":2954,"children":2956},{"id":2955},"step-3-configure-environment-variables",[2957],{"type":42,"value":2958},"Step 3: Configure Environment Variables",{"type":36,"tag":45,"props":2960,"children":2961},{},[2962,2964,2968],{"type":42,"value":2963},"Add required env vars via MCP after creation. See ",{"type":36,"tag":1329,"props":2965,"children":2966},{"href":2911},[2967],{"type":42,"value":2911},{"type":42,"value":170},{"type":36,"tag":45,"props":2970,"children":2971},{},[2972],{"type":42,"value":2973},"Remind the user that secrets can be set in the Dashboard if they prefer not to pass them via MCP.",{"type":36,"tag":407,"props":2975,"children":2977},{"id":2976},"step-4-verify-deployment",[2978],{"type":42,"value":2979},"Step 4: Verify Deployment",{"type":36,"tag":45,"props":2981,"children":2982},{},[2983,2985,2989],{"type":42,"value":2984},"Check deploy status, logs, and metrics. See ",{"type":36,"tag":1329,"props":2986,"children":2987},{"href":2911},[2988],{"type":42,"value":2911},{"type":42,"value":170},{"type":36,"tag":1446,"props":2991,"children":2992},{},[],{"type":36,"tag":45,"props":2994,"children":2995},{},[2996,2998,3003],{"type":42,"value":2997},"For service discovery, configuration details, quick commands, and common issues, see ",{"type":36,"tag":1329,"props":2999,"children":3001},{"href":3000},"references\u002Fdeployment-details.md",[3002],{"type":42,"value":3000},{"type":42,"value":170},{"type":36,"tag":1446,"props":3005,"children":3006},{},[],{"type":36,"tag":37,"props":3008,"children":3010},{"id":3009},"post-deploy-verification-and-basic-triage-all-methods",[3011],{"type":42,"value":3012},"Post-deploy verification and basic triage (All Methods)",{"type":36,"tag":45,"props":3014,"children":3015},{},[3016],{"type":42,"value":3017},"Keep this short and repeatable. If any check fails, fix it before redeploying.",{"type":36,"tag":77,"props":3019,"children":3020},{},[3021,3034,3039,3044],{"type":36,"tag":81,"props":3022,"children":3023},{},[3024,3026,3032],{"type":42,"value":3025},"Confirm the latest deploy is ",{"type":36,"tag":113,"props":3027,"children":3029},{"className":3028},[],[3030],{"type":42,"value":3031},"live",{"type":42,"value":3033}," and serving traffic",{"type":36,"tag":81,"props":3035,"children":3036},{},[3037],{"type":42,"value":3038},"Hit the health endpoint (or root) and verify a 200 response",{"type":36,"tag":81,"props":3040,"children":3041},{},[3042],{"type":42,"value":3043},"Scan recent error logs for a clear failure signature",{"type":36,"tag":81,"props":3045,"children":3046},{},[3047,3049,3055],{"type":42,"value":3048},"Verify required env vars and port binding (",{"type":36,"tag":113,"props":3050,"children":3052},{"className":3051},[],[3053],{"type":42,"value":3054},"0.0.0.0:$PORT",{"type":42,"value":1337},{"type":36,"tag":45,"props":3057,"children":3058},{},[3059,3061],{"type":42,"value":3060},"Detailed checklist and commands: ",{"type":36,"tag":1329,"props":3062,"children":3064},{"href":3063},"references\u002Fpost-deploy-checks.md",[3065],{"type":42,"value":3063},{"type":36,"tag":45,"props":3067,"children":3068},{},[3069,3071],{"type":42,"value":3070},"If the service fails to start or health checks time out, use the basic triage guide:\n",{"type":36,"tag":1329,"props":3072,"children":3074},{"href":3073},"references\u002Ftroubleshooting-basics.md",[3075],{"type":42,"value":3073},{"type":36,"tag":149,"props":3077,"children":3079},{"id":3078},"troubleshooting",[3080],{"type":42,"value":3081},"Troubleshooting",{"type":36,"tag":407,"props":3083,"children":3085},{"id":3084},"escalated-network-access",[3086],{"type":42,"value":3087},"Escalated Network Access",{"type":36,"tag":45,"props":3089,"children":3090},{},[3091,3093,3098],{"type":42,"value":3092},"If deployment fails due to network issues (timeouts, DNS errors, connection resets), rerun the deploy with escalated permissions (use ",{"type":36,"tag":113,"props":3094,"children":3096},{"className":3095},[],[3097],{"type":42,"value":168},{"type":42,"value":3099},"). The deploy requires escalated network access when sandbox networking blocks outbound requests.",{"type":36,"tag":45,"props":3101,"children":3102},{},[3103],{"type":42,"value":3104},"Example guidance to the user:",{"type":36,"tag":521,"props":3106,"children":3109},{"className":3107,"code":3108,"language":42},[585],"The deploy needs escalated network access to deploy to Render. I can rerun the command with escalated permissions—want me to proceed?\n",[3110],{"type":36,"tag":113,"props":3111,"children":3112},{"__ignoreMap":526},[3113],{"type":42,"value":3108},{"type":36,"tag":45,"props":3115,"children":3116},{},[3117,3119,3125],{"type":42,"value":3118},"Optional: If you need deeper diagnostics (metrics\u002FDB checks\u002Ferror catalog), suggest installing the\n",{"type":36,"tag":113,"props":3120,"children":3122},{"className":3121},[],[3123],{"type":42,"value":3124},"render-debug",{"type":42,"value":3126}," skill. It is not required for the core deploy flow.",{"type":36,"tag":3128,"props":3129,"children":3130},"style",{},[3131],{"type":42,"value":3132},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3134,"total":3255},[3135,3156,3173,3187,3204,3223,3239],{"slug":3136,"name":3136,"fn":3137,"description":3138,"org":3139,"tags":3140,"stars":19,"repoUrl":20,"updatedAt":3155},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3141,3144,3146,3149,3152],{"name":3142,"slug":3143,"type":15},".NET","dotnet",{"name":3145,"slug":3136,"type":15},"ASP.NET Core",{"name":3147,"slug":3148,"type":15},"Blazor","blazor",{"name":3150,"slug":3151,"type":15},"C#","csharp",{"name":3153,"slug":3154,"type":15},"Web Development","web-development","2026-04-12T05:07:02.819491",{"slug":3157,"name":3157,"fn":3158,"description":3159,"org":3160,"tags":3161,"stars":19,"repoUrl":20,"updatedAt":3172},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3162,3165,3168,3171],{"name":3163,"slug":3164,"type":15},"Apps SDK","apps-sdk",{"name":3166,"slug":3167,"type":15},"ChatGPT","chatgpt",{"name":3169,"slug":3170,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":3174,"name":3174,"fn":3175,"description":3176,"org":3177,"tags":3178,"stars":19,"repoUrl":20,"updatedAt":3186},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3179,3182,3185],{"name":3180,"slug":3181,"type":15},"API Development","api-development",{"name":3183,"slug":3184,"type":15},"CLI","cli",{"name":1075,"slug":1072,"type":15},"2026-04-12T05:07:04.132762",{"slug":3188,"name":3188,"fn":3189,"description":3190,"org":3191,"tags":3192,"stars":19,"repoUrl":20,"updatedAt":3203},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3193,3196,3199,3202],{"name":3194,"slug":3195,"type":15},"Cloudflare","cloudflare",{"name":3197,"slug":3198,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":3200,"slug":3201,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":17,"slug":18,"type":15},"2026-04-12T05:07:14.275118",{"slug":3205,"name":3205,"fn":3206,"description":3207,"org":3208,"tags":3209,"stars":19,"repoUrl":20,"updatedAt":3222},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3210,3213,3216,3219],{"name":3211,"slug":3212,"type":15},"Productivity","productivity",{"name":3214,"slug":3215,"type":15},"Project Management","project-management",{"name":3217,"slug":3218,"type":15},"Strategy","strategy",{"name":3220,"slug":3221,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":3224,"name":3224,"fn":3225,"description":3226,"org":3227,"tags":3228,"stars":19,"repoUrl":20,"updatedAt":3238},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3229,3232,3234,3237],{"name":3230,"slug":3231,"type":15},"Design","design",{"name":3233,"slug":3224,"type":15},"Figma",{"name":3235,"slug":3236,"type":15},"Frontend","frontend",{"name":3169,"slug":3170,"type":15},"2026-04-12T05:06:47.939943",{"slug":3240,"name":3240,"fn":3241,"description":3242,"org":3243,"tags":3244,"stars":19,"repoUrl":20,"updatedAt":3254},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3245,3246,3249,3250,3251],{"name":3230,"slug":3231,"type":15},{"name":3247,"slug":3248,"type":15},"Design System","design-system",{"name":3233,"slug":3224,"type":15},{"name":3235,"slug":3236,"type":15},{"name":3252,"slug":3253,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",29,{"items":3257,"total":3386},[3258,3279,3287,3294,3300,3307,3314,3321,3329,3343,3355,3370],{"slug":3259,"name":3259,"fn":3260,"description":3261,"org":3262,"tags":3263,"stars":3276,"repoUrl":3277,"updatedAt":3278},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3264,3267,3270,3273],{"name":3265,"slug":3266,"type":15},"Documents","documents",{"name":3268,"slug":3269,"type":15},"Healthcare","healthcare",{"name":3271,"slug":3272,"type":15},"Insurance","insurance",{"name":3274,"slug":3275,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":3136,"name":3136,"fn":3137,"description":3138,"org":3280,"tags":3281,"stars":19,"repoUrl":20,"updatedAt":3155},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3282,3283,3284,3285,3286],{"name":3142,"slug":3143,"type":15},{"name":3145,"slug":3136,"type":15},{"name":3147,"slug":3148,"type":15},{"name":3150,"slug":3151,"type":15},{"name":3153,"slug":3154,"type":15},{"slug":3157,"name":3157,"fn":3158,"description":3159,"org":3288,"tags":3289,"stars":19,"repoUrl":20,"updatedAt":3172},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3290,3291,3292,3293],{"name":3163,"slug":3164,"type":15},{"name":3166,"slug":3167,"type":15},{"name":3169,"slug":3170,"type":15},{"name":9,"slug":8,"type":15},{"slug":3174,"name":3174,"fn":3175,"description":3176,"org":3295,"tags":3296,"stars":19,"repoUrl":20,"updatedAt":3186},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3297,3298,3299],{"name":3180,"slug":3181,"type":15},{"name":3183,"slug":3184,"type":15},{"name":1075,"slug":1072,"type":15},{"slug":3188,"name":3188,"fn":3189,"description":3190,"org":3301,"tags":3302,"stars":19,"repoUrl":20,"updatedAt":3203},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3303,3304,3305,3306],{"name":3194,"slug":3195,"type":15},{"name":3197,"slug":3198,"type":15},{"name":3200,"slug":3201,"type":15},{"name":17,"slug":18,"type":15},{"slug":3205,"name":3205,"fn":3206,"description":3207,"org":3308,"tags":3309,"stars":19,"repoUrl":20,"updatedAt":3222},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3310,3311,3312,3313],{"name":3211,"slug":3212,"type":15},{"name":3214,"slug":3215,"type":15},{"name":3217,"slug":3218,"type":15},{"name":3220,"slug":3221,"type":15},{"slug":3224,"name":3224,"fn":3225,"description":3226,"org":3315,"tags":3316,"stars":19,"repoUrl":20,"updatedAt":3238},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3317,3318,3319,3320],{"name":3230,"slug":3231,"type":15},{"name":3233,"slug":3224,"type":15},{"name":3235,"slug":3236,"type":15},{"name":3169,"slug":3170,"type":15},{"slug":3240,"name":3240,"fn":3241,"description":3242,"org":3322,"tags":3323,"stars":19,"repoUrl":20,"updatedAt":3254},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3324,3325,3326,3327,3328],{"name":3230,"slug":3231,"type":15},{"name":3247,"slug":3248,"type":15},{"name":3233,"slug":3224,"type":15},{"name":3235,"slug":3236,"type":15},{"name":3252,"slug":3253,"type":15},{"slug":3330,"name":3330,"fn":3331,"description":3332,"org":3333,"tags":3334,"stars":19,"repoUrl":20,"updatedAt":3342},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3335,3336,3337,3340,3341],{"name":3230,"slug":3231,"type":15},{"name":3247,"slug":3248,"type":15},{"name":3338,"slug":3339,"type":15},"Documentation","documentation",{"name":3233,"slug":3224,"type":15},{"name":3235,"slug":3236,"type":15},"2026-05-16T06:07:47.821474",{"slug":3344,"name":3344,"fn":3345,"description":3346,"org":3347,"tags":3348,"stars":19,"repoUrl":20,"updatedAt":3354},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3349,3350,3351,3352,3353],{"name":3230,"slug":3231,"type":15},{"name":3233,"slug":3224,"type":15},{"name":3235,"slug":3236,"type":15},{"name":3252,"slug":3253,"type":15},{"name":3153,"slug":3154,"type":15},"2026-05-16T06:07:40.583615",{"slug":3356,"name":3356,"fn":3357,"description":3358,"org":3359,"tags":3360,"stars":19,"repoUrl":20,"updatedAt":3369},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3361,3364,3365,3368],{"name":3362,"slug":3363,"type":15},"Animation","animation",{"name":1075,"slug":1072,"type":15},{"name":3366,"slug":3367,"type":15},"Creative","creative",{"name":3230,"slug":3231,"type":15},"2026-05-02T05:31:48.48485",{"slug":3371,"name":3371,"fn":3372,"description":3373,"org":3374,"tags":3375,"stars":19,"repoUrl":20,"updatedAt":3385},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3376,3377,3378,3381,3384],{"name":3366,"slug":3367,"type":15},{"name":3230,"slug":3231,"type":15},{"name":3379,"slug":3380,"type":15},"Image Generation","image-generation",{"name":3382,"slug":3383,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]