[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-migrate-from-heroku":3,"mdc-zhfv9g-key":36,"related-repo-openai-render-migrate-from-heroku":2489,"related-org-openai-render-migrate-from-heroku":2613},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"render-migrate-from-heroku","migrate Heroku projects to Render","Migrate from Heroku to Render by reading local project files and generating equivalent Render services. Triggers: any mention of migrating from Heroku, moving off Heroku, Heroku to Render migration, or switching from Heroku. Reads Procfile, dependency files, and app config from the local repo. Optionally uses Heroku MCP to enrich with live config vars, add-on details, and dyno sizes. Uses Render MCP or Blueprint YAML to create services.",{"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,19,22],{"name":13,"slug":14,"type":15},"Render","render","tag",{"name":17,"slug":18,"type":15},"Migration","migration",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Heroku","heroku",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-17T05:07:49.698531","MIT",465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Frender\u002Fskills\u002Frender-migrate-from-heroku","---\nname: render-migrate-from-heroku\ndescription: \"Migrate from Heroku to Render by reading local project files and generating equivalent Render services. Triggers: any mention of migrating from Heroku, moving off Heroku, Heroku to Render migration, or switching from Heroku. Reads Procfile, dependency files, and app config from the local repo. Optionally uses Heroku MCP to enrich with live config vars, add-on details, and dyno sizes. Uses Render MCP or Blueprint YAML to create services.\"\nlicense: MIT\ncompatibility: Render MCP server recommended for direct creation and automated verification; not required for the Blueprint path. Heroku MCP server is optional (enhances config var and add-on discovery).\nmetadata:\n  author: Render\n  version: \"1.5.0\"\n  category: migration\n---\n\n# Heroku to Render Migration\n\nMigrate from Heroku to Render by reading local project files first, then optionally enriching with live Heroku data via MCP.\n\n## Prerequisites Check\n\nBefore starting, verify what's available:\n\n1. **Local project files** (required) — confirm the current directory contains a Heroku app (look for `Procfile`, `app.json`, `package.json`, `requirements.txt`, `Gemfile`, `go.mod`, or similar)\n2. **Render MCP** (recommended) — check if `list_services` tool is available. Required for MCP Direct Creation (Step 3B) and automated verification (Step 6). Not required for the Blueprint path — the Render CLI and Dashboard handle generation, validation, and deployment.\n3. **Heroku MCP** (optional) — check if `list_apps` tool is available\n\nIf Render MCP is missing and the user needs it, guide them through setup using the [MCP setup guide](references\u002Fmcp-setup.md). If Heroku MCP is missing, note that config var values and add-on plan details will need to be provided manually.\n\n## Migration Workflow\n\nExecute steps in order. Present findings to the user and get confirmation before creating any resources.\n\n### Step 1: Inventory Heroku App\n\nGather app details from local files first, then supplement with Heroku MCP if available.\n\n#### 1a. Read local project files (always)\n\nRead these files from the repo to determine runtime, commands, and dependencies:\n\n| File                                              | What it tells you                                                      |\n| ------------------------------------------------- | ---------------------------------------------------------------------- |\n| `Procfile`                                        | Process types and start commands (`web`, `worker`, `clock`, `release`) |\n| `package.json`                                    | Node.js runtime, build scripts, framework deps (Next.js, React, etc.)  |\n| `requirements.txt` \u002F `Pipfile` \u002F `pyproject.toml` | Python runtime, dependencies (Django, Flask, etc.)                     |\n| `Gemfile`                                         | Ruby runtime, dependencies (Rails, Sidekiq, etc.)                      |\n| `go.mod`                                          | Go runtime                                                             |\n| `Cargo.toml`                                      | Rust runtime                                                           |\n| `app.json`                                        | Declared add-ons, env var descriptions, buildpacks                     |\n| `runtime.txt`                                     | Pinned runtime version                                                 |\n| `static.json`                                     | Static site indicator                                                  |\n| `yarn.lock` \u002F `pnpm-lock.yaml`                    | Package manager (affects build command)                                |\n\nFrom these files, determine:\n\n- **Runtime** — from dependency files (see the [buildpack mapping](references\u002Fbuildpack-mapping.md))\n- **Runtime version** — from `runtime.txt`, `.node-version`, or `engines` in `package.json`. If pinned, carry it over as an env var (e.g., `PYTHON_VERSION`, `NODE_VERSION`). If not pinned, do not specify a version — never assume or state what Render's default version is.\n- **Build command** — from package manager and framework (see the [buildpack mapping](references\u002Fbuildpack-mapping.md))\n- **Start commands** — from `Procfile` entries\n- **Process types** — from `Procfile` (web, worker, clock, release)\n- **Add-ons needed** — from `app.json` `addons` field, or infer from dependency files (e.g., `pg` in `package.json` suggests Postgres, `redis` suggests Key Value)\n- **Static site?** — from `static.json`, SPA framework deps, or static buildpack in `app.json`\n\n#### 1b. Enrich with Heroku MCP (if available)\n\nIf the Heroku MCP server is connected, call these tools to fill in details that aren't in the repo. The **dyno size** and **add-on plan slug** are critical — they determine which Render plans to use.\n\n1. `list_apps` — let user select which app to migrate (confirms app name)\n2. `get_app_info` — capture: region, stack, buildpacks, **config var names**\n3. `list_addons` — capture the **exact add-on plan slug** (e.g., `heroku-postgresql:essential-2`, `heroku-redis:premium-0`). The part after the colon maps to a specific Render plan in the [service mapping](references\u002Fservice-mapping.md).\n4. `ps_list` — capture the **exact dyno size** for each process type (e.g., `Standard-2X`, `Performance-M`). Each dyno size maps to a specific Render plan in the [service mapping](references\u002Fservice-mapping.md).\n5. `pg_info` (if Postgres exists) — capture **Data Size** (actual usage) and the plan's disk allocation. The plan's disk size determines the `diskSizeGB` value in the Blueprint (see the [service mapping](references\u002Fservice-mapping.md)).\n\nIf Heroku MCP is **not** available, ask the user to provide:\n\n- Dyno sizes (or run `heroku ps:type -a \u003Capp>` and paste output)\n- Add-on plans (or run `heroku addons -a \u003Capp>` and paste output)\n- Database info (or run `heroku pg:info -a \u003Capp>` and paste output — captures plan name, data size, and disk allocation)\n- App region (`us` or `eu`)\n- Config var names (or run `heroku config -a \u003Capp> --shell` and paste output)\n\nIf the user cannot provide dyno sizes or add-on plans, use the fallback defaults from the [service mapping](references\u002Fservice-mapping.md): `starter` for compute, `basic-1gb` for Postgres, `starter` for Key Value.\n\n#### Present summary\n\n```\nApp: [name] | Region: [region] | Runtime: [node\u002Fpython\u002Fruby\u002Fetc]\nSource: [local files | local files + Heroku MCP]\nBuild command: [inferred from buildpack\u002Fdeps]\nProcesses:\n  web: [command from Procfile] → Render web service ([mapped-plan])\n  worker: [command] → Render background worker ([mapped-plan], Blueprint only)\n  clock: [command] → Render cron job ([mapped-plan])\n  release: [command] → Append to build command\nAdd-ons:\n  Heroku Postgres ([plan-slug], [disk-size]) → Render Postgres ([mapped-plan], diskSizeGB: [size])\n  Heroku Redis ([plan-slug]) → Render Key Value ([mapped-plan])\nConfig vars: 14 total (list names, not values)\n```\n\n### Step 2: Pre-Flight Check\n\nBefore creating anything, run through the [pre-flight checklist](references\u002Fpreflight-checklist.md) to validate the migration plan. Key checks:\n\n- Runtime supported (or needs Dockerfile)\n- Worker dynos, release phase, static site detection\n- Third-party add-ons without Render equivalents\n- Git remote exists and is HTTPS format\n- Database size (large DBs need assisted migration)\n\nLook up each Heroku dyno size and add-on plan in the [service mapping](references\u002Fservice-mapping.md) to determine correct Render plans and cost estimates. Present the migration plan table from the [pre-flight checklist](references\u002Fpreflight-checklist.md) and wait for user confirmation before creating any resources.\n\n### Determine Creation Method\n\nAfter the user approves the pre-flight plan, apply this decision rule. **Default to Blueprint** — only use MCP Direct Creation when every condition below is met.\n\n**Use Blueprint** (the default) when ANY are true:\n\n- Multiple process types (web + worker, web + cron, etc.)\n- Databases or Key Value stores needed\n- Background workers in the Procfile\n- User prefers Infrastructure-as-Code configuration\n\n**Fall back to MCP Direct Creation** ONLY when ALL are true:\n\n- Single web or static site service (one process type)\n- No background workers or cron jobs\n- No databases or Key Value stores\n\nIf unsure, use Blueprint. Most Heroku apps have at least a database, so Blueprint applies to the vast majority of migrations.\n\n### Step 3A: Generate Blueprint (Multi-Service)\n\nThis step has three mandatory sub-steps. Complete all three in order.\n\n#### 3A-i. Write render.yaml\n\nGenerate a `render.yaml` file and write it to the repo root. See the [Blueprint example](references\u002Fblueprint-example.md) for a complete example, the [Blueprint docs](https:\u002F\u002Frender.com\u002Fdocs\u002Fblueprint-spec#projects-and-environments) for usage guidance, and the [Blueprint YAML JSON schema](https:\u002F\u002Frender.com\u002Fschema\u002Frender.yaml.json) for the full field reference.\n\n**IMPORTANT: Always use the `projects`\u002F`environments` pattern.** The YAML must start with a `projects:` key — never use flat top-level `services:` or `databases:` keys. This groups all migrated resources into a single Render project.\n\n**Set the `plan:` field for each service and database using the mapped Render plan from the [service mapping](references\u002Fservice-mapping.md).** Look up the Heroku dyno size (from `ps_list`) and add-on plan slug (from `list_addons`) to find the correct Render plan. If the Heroku plan is unknown, use the fallback defaults: `starter` for compute, `basic-1gb` for Postgres, `starter` for Key Value.\n\nGenerate the YAML following the full template, rules, and patterns in the [Blueprint example](references\u002Fblueprint-example.md). Critical rules:\n\n- Always use the `projects:`\u002F`environments:` pattern — never flat top-level `services:`\n- Set every `plan:` field using the [service mapping](references\u002Fservice-mapping.md)\n- Set `diskSizeGB` on databases from the Heroku disk allocation\n- Use `fromDatabase` for `DATABASE_URL` and `fromService` for `REDIS_URL` — never hardcode connection strings\n- Mark secrets with `sync: false`\n\n#### 3A-ii. Validate the Blueprint\n\nThis step is mandatory. First, check if the Render CLI is installed:\n\n```bash\nrender --version\n```\n\nIf not installed, offer to install it:\n\n- macOS: `brew install render`\n- Linux\u002FmacOS: `curl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Frender-oss\u002Fcli\u002Fmain\u002Fbin\u002Finstall.sh | sh`\n\nOnce the CLI is available, run the validation command and show the output to the user:\n\n```bash\nrender blueprints validate render.yaml\n```\n\nIf validation fails, fix the errors in the YAML and re-validate. Repeat until validation passes. **Do not proceed to the next step until the Blueprint validates successfully.**\n\n#### 3A-iii. Provide the deploy URL\n\nAfter validation passes:\n\n1. Instruct user to commit and push: `git add render.yaml && git commit -m \"Add Render migration Blueprint\" && git push`\n2. Get the repo URL by running `git remote get-url origin`. If the URL is SSH format (e.g., `git@github.com:user\u002Frepo.git`), convert it to HTTPS (`https:\u002F\u002Fgithub.com\u002Fuser\u002Frepo`). Then construct the deeplink: `https:\u002F\u002Fdashboard.render.com\u002Fblueprint\u002Fnew?repo=\u003CHTTPS_REPO_URL>`\n3. Present the **actual working deeplink** to the user — never show a placeholder URL. Guide user to open it, fill in `sync: false` secrets, and click **Apply**\n\n**Do not skip the deploy URL.** The user needs this link to apply the Blueprint on Render.\n\n### Step 3B: MCP Direct Creation (Single-Service)\n\nBefore creating resources via MCP, verify the active workspace:\n\n```\nget_selected_workspace()\n```\n\nIf the workspace is wrong, list available workspaces with `list_workspaces()` and ask the user to select the correct one. Resources will be created in whichever workspace is active.\n\nFor single-service migrations without databases, create via MCP tools:\n\n1. **Web service** — `create_web_service` with:\n   - `runtime`: from the [buildpack mapping](references\u002Fbuildpack-mapping.md)\n   - `buildCommand`: from the [buildpack mapping](references\u002Fbuildpack-mapping.md)\n   - `startCommand`: from Procfile `web:` entry\n   - `repo`: user-provided GitHub\u002FGitLab URL\n   - `region`: mapped from Heroku region\n   - `plan`: mapped from Heroku dyno size using the [service mapping](references\u002Fservice-mapping.md) (fallback: `starter`)\n2. **Static site** — `create_static_site` if detected (instead of web service)\n\nPresent the creation result (service URL, ID) when complete.\n\n### Step 4: Migrate Environment Variables\n\n#### Gather config vars\n\nUse the first available source:\n\n1. **Heroku MCP** (preferred) — config vars from `get_app_info` results (Step 1b)\n2. **User-provided** — ask the user to paste output of `heroku config -a \u003Capp> --shell`\n3. **`app.json`** — var names and descriptions (no values, but useful for `sync: false` entries)\n\n#### Filter and categorize\n\nRemove auto-generated and Heroku-specific vars (see the full filter list in the [service mapping](references\u002Fservice-mapping.md)):\n\n- `DATABASE_URL`, `REDIS_URL`, `REDIS_TLS_URL` (Render generates these)\n- `HEROKU_*` vars (e.g., `HEROKU_APP_NAME`, `HEROKU_SLUG_COMMIT`)\n- Add-on connection strings (`PAPERTRAIL_*`, `SENDGRID_*`, etc.)\n\nPresent filtered list to user — **do not write without confirmation**.\n\n#### Apply vars\n\n**Blueprint path (Step 3A):** Env vars are already embedded in the `render.yaml` on each service (non-secret values inline, secrets marked `sync: false` for the user to fill in during Blueprint apply). No separate MCP call is needed — skip to Step 5.\n\n**MCP path (Step 3B):** Call Render `update_environment_variables` with confirmed vars (supports bulk set, merges by default).\n\n### Step 5: Data Migration\n\nFollow the [data migration guide](references\u002Fdata-migration.md) to migrate Postgres and Redis data. The guide covers sub-steps 5a through 5e in detail. Summary of the flow:\n\n1. **Pre-migration checks** — confirm Render resources are provisioned via `list_postgres_instances()` and `list_key_value()`, check source DB size, verify Render CLI (`render --version`), `pg_dump`, and `pg_restore` are installed\n2. **Gather connection strings** — Heroku Postgres via `pg_credentials` (MCP) or user CLI paste. For Key Value, construct a Dashboard deeplink from the ID.\n3. **Postgres migration** — two approaches based on size: **under 2 GB** uses `render psql` (no Render connection string needed); **2-50 GB** uses `pg_dump -Fc` + `pg_restore` with external connection string from Dashboard (faster, compressed, parallel restore).\n4. **Key Value \u002F Redis** — usually skip (ephemeral cache). If persistent data, use `redis-cli` dump\u002Frestore with Dashboard-provided Render URL.\n5. **Data validation** — verify schema and row counts via `query_render_postgres`, compare against Heroku source if MCP is available.\n\n### Step 6: Verify Migration\n\nAfter user confirms database migration is complete, run through each check in order. Stop at the first failure, fix it, and redeploy before continuing.\n\n#### 1. Confirm deploy status\n\n```\nlist_deploys(serviceId: \"\u003Cservice-id>\", limit: 1)\n```\n\nExpect `status: \"live\"`. If status is `failed`, inspect build and runtime logs immediately.\n\n#### 2. Verify service health\n\nHit the health endpoint (or `\u002F`) and confirm a 200 response. If there is no health endpoint, verify the app binds to `0.0.0.0:$PORT` (not `localhost`).\n\n#### 3. Scan error logs\n\n```\nlist_logs(resource: [\"\u003Cservice-id>\"], level: [\"error\"], limit: 50)\n```\n\nLook for clear failure signatures: missing env vars, connection refused, module not found, port binding errors.\n\n#### 4. Verify env vars and port binding\n\nConfirm all required env vars are set — especially secrets marked `sync: false` during Blueprint apply. Ensure the app binds to `0.0.0.0:$PORT`.\n\n#### 5. Check resource metrics\n\n```\nget_metrics(\n  resourceId: \"\u003Cservice-id>\",\n  metricTypes: [\"http_request_count\", \"cpu_usage\", \"memory_usage\"]\n)\n```\n\nVerify CPU and memory are within expected ranges for the selected plan.\n\n#### 6. Confirm database connectivity\n\n```\nquery_render_postgres(postgresId: \"\u003Cpostgres-id>\", sql: \"SELECT count(*) FROM \u003Ckey_table>\")\n```\n\nRun a read-only query on a key table to confirm data was restored correctly. Compare row counts against the Heroku source if possible.\n\nPresent a health summary after all checks pass.\n\n### Step 7: DNS Cutover (Manual)\n\nInstruct user to:\n\n1. Add CNAME pointing domain to `[service-name].onrender.com`\n2. Remove\u002Fupdate old Heroku DNS entries\n3. Wait for propagation\n\n## Rollback Plan\n\nIf the migration fails at any point:\n\n- **Services created but not working**: Services can be deleted from the Render dashboard (MCP server intentionally does not support deletion). Heroku app is untouched until maintenance mode is enabled.\n- **Env vars wrong**: Call `update_environment_variables` with `replace: true` to overwrite, or fix individual vars.\n- **Database migration failed**: Render Postgres can be deleted and recreated. Heroku database is read-only during dump (no data loss). If `maintenance_off` is called on Heroku, the original app is fully operational again.\n- **DNS already changed**: Revert CNAME to Heroku and disable maintenance mode on Heroku.\n\nKey principle: **Heroku stays fully functional until the user explicitly cuts over DNS.** The migration is additive until that final step.\n\n## Error Handling\n\n- Service creation fails: show error, suggest fixes (invalid plan, bad repo URL)\n- Env var migration partially fails: show which succeeded\u002Ffailed\n- Heroku auth errors: instruct `heroku login` or check `HEROKU_API_KEY`\n- Render auth errors: check Render API key in MCP config\n",{"data":37,"body":41},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Render MCP server recommended for direct creation and automated verification; not required for the Blueprint path. Heroku MCP server is optional (enhances config var and add-on discovery).",{"author":13,"version":40,"category":18},"1.5.0",{"type":42,"children":43},"root",[44,53,59,66,71,168,182,188,193,200,205,212,217,460,465,654,660,679,818,830,903,937,943,955,961,974,1002,1019,1025,1037,1047,1070,1080,1098,1103,1109,1114,1120,1160,1209,1264,1275,1376,1382,1387,1413,1418,1443,1448,1477,1487,1493,1498,1571,1581,1587,1592,1601,1614,1619,1753,1758,1764,1770,1775,1829,1835,1846,1917,1928,1934,1958,1976,1982,1995,2147,2153,2158,2164,2173,2194,2200,2227,2233,2242,2247,2253,2271,2277,2286,2291,2297,2306,2311,2316,2322,2327,2351,2357,2362,2428,2440,2446,2483],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"heroku-to-render-migration",[50],{"type":51,"value":52},"text","Heroku to Render Migration",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Migrate from Heroku to Render by reading local project files first, then optionally enriching with live Heroku data via MCP.",{"type":45,"tag":60,"props":61,"children":63},"h2",{"id":62},"prerequisites-check",[64],{"type":51,"value":65},"Prerequisites Check",{"type":45,"tag":54,"props":67,"children":68},{},[69],{"type":51,"value":70},"Before starting, verify what's available:",{"type":45,"tag":72,"props":73,"children":74},"ol",{},[75,132,150],{"type":45,"tag":76,"props":77,"children":78},"li",{},[79,85,87,94,96,102,103,109,110,116,117,123,124,130],{"type":45,"tag":80,"props":81,"children":82},"strong",{},[83],{"type":51,"value":84},"Local project files",{"type":51,"value":86}," (required) — confirm the current directory contains a Heroku app (look for ",{"type":45,"tag":88,"props":89,"children":91},"code",{"className":90},[],[92],{"type":51,"value":93},"Procfile",{"type":51,"value":95},", ",{"type":45,"tag":88,"props":97,"children":99},{"className":98},[],[100],{"type":51,"value":101},"app.json",{"type":51,"value":95},{"type":45,"tag":88,"props":104,"children":106},{"className":105},[],[107],{"type":51,"value":108},"package.json",{"type":51,"value":95},{"type":45,"tag":88,"props":111,"children":113},{"className":112},[],[114],{"type":51,"value":115},"requirements.txt",{"type":51,"value":95},{"type":45,"tag":88,"props":118,"children":120},{"className":119},[],[121],{"type":51,"value":122},"Gemfile",{"type":51,"value":95},{"type":45,"tag":88,"props":125,"children":127},{"className":126},[],[128],{"type":51,"value":129},"go.mod",{"type":51,"value":131},", or similar)",{"type":45,"tag":76,"props":133,"children":134},{},[135,140,142,148],{"type":45,"tag":80,"props":136,"children":137},{},[138],{"type":51,"value":139},"Render MCP",{"type":51,"value":141}," (recommended) — check if ",{"type":45,"tag":88,"props":143,"children":145},{"className":144},[],[146],{"type":51,"value":147},"list_services",{"type":51,"value":149}," tool is available. Required for MCP Direct Creation (Step 3B) and automated verification (Step 6). Not required for the Blueprint path — the Render CLI and Dashboard handle generation, validation, and deployment.",{"type":45,"tag":76,"props":151,"children":152},{},[153,158,160,166],{"type":45,"tag":80,"props":154,"children":155},{},[156],{"type":51,"value":157},"Heroku MCP",{"type":51,"value":159}," (optional) — check if ",{"type":45,"tag":88,"props":161,"children":163},{"className":162},[],[164],{"type":51,"value":165},"list_apps",{"type":51,"value":167}," tool is available",{"type":45,"tag":54,"props":169,"children":170},{},[171,173,180],{"type":51,"value":172},"If Render MCP is missing and the user needs it, guide them through setup using the ",{"type":45,"tag":174,"props":175,"children":177},"a",{"href":176},"references\u002Fmcp-setup.md",[178],{"type":51,"value":179},"MCP setup guide",{"type":51,"value":181},". If Heroku MCP is missing, note that config var values and add-on plan details will need to be provided manually.",{"type":45,"tag":60,"props":183,"children":185},{"id":184},"migration-workflow",[186],{"type":51,"value":187},"Migration Workflow",{"type":45,"tag":54,"props":189,"children":190},{},[191],{"type":51,"value":192},"Execute steps in order. Present findings to the user and get confirmation before creating any resources.",{"type":45,"tag":194,"props":195,"children":197},"h3",{"id":196},"step-1-inventory-heroku-app",[198],{"type":51,"value":199},"Step 1: Inventory Heroku App",{"type":45,"tag":54,"props":201,"children":202},{},[203],{"type":51,"value":204},"Gather app details from local files first, then supplement with Heroku MCP if available.",{"type":45,"tag":206,"props":207,"children":209},"h4",{"id":208},"_1a-read-local-project-files-always",[210],{"type":51,"value":211},"1a. Read local project files (always)",{"type":45,"tag":54,"props":213,"children":214},{},[215],{"type":51,"value":216},"Read these files from the repo to determine runtime, commands, and dependencies:",{"type":45,"tag":218,"props":219,"children":220},"table",{},[221,240],{"type":45,"tag":222,"props":223,"children":224},"thead",{},[225],{"type":45,"tag":226,"props":227,"children":228},"tr",{},[229,235],{"type":45,"tag":230,"props":231,"children":232},"th",{},[233],{"type":51,"value":234},"File",{"type":45,"tag":230,"props":236,"children":237},{},[238],{"type":51,"value":239},"What it tells you",{"type":45,"tag":241,"props":242,"children":243},"tbody",{},[244,290,306,337,353,369,386,402,419,436],{"type":45,"tag":226,"props":245,"children":246},{},[247,256],{"type":45,"tag":248,"props":249,"children":250},"td",{},[251],{"type":45,"tag":88,"props":252,"children":254},{"className":253},[],[255],{"type":51,"value":93},{"type":45,"tag":248,"props":257,"children":258},{},[259,261,267,268,274,275,281,282,288],{"type":51,"value":260},"Process types and start commands (",{"type":45,"tag":88,"props":262,"children":264},{"className":263},[],[265],{"type":51,"value":266},"web",{"type":51,"value":95},{"type":45,"tag":88,"props":269,"children":271},{"className":270},[],[272],{"type":51,"value":273},"worker",{"type":51,"value":95},{"type":45,"tag":88,"props":276,"children":278},{"className":277},[],[279],{"type":51,"value":280},"clock",{"type":51,"value":95},{"type":45,"tag":88,"props":283,"children":285},{"className":284},[],[286],{"type":51,"value":287},"release",{"type":51,"value":289},")",{"type":45,"tag":226,"props":291,"children":292},{},[293,301],{"type":45,"tag":248,"props":294,"children":295},{},[296],{"type":45,"tag":88,"props":297,"children":299},{"className":298},[],[300],{"type":51,"value":108},{"type":45,"tag":248,"props":302,"children":303},{},[304],{"type":51,"value":305},"Node.js runtime, build scripts, framework deps (Next.js, React, etc.)",{"type":45,"tag":226,"props":307,"children":308},{},[309,332],{"type":45,"tag":248,"props":310,"children":311},{},[312,317,319,325,326],{"type":45,"tag":88,"props":313,"children":315},{"className":314},[],[316],{"type":51,"value":115},{"type":51,"value":318}," \u002F ",{"type":45,"tag":88,"props":320,"children":322},{"className":321},[],[323],{"type":51,"value":324},"Pipfile",{"type":51,"value":318},{"type":45,"tag":88,"props":327,"children":329},{"className":328},[],[330],{"type":51,"value":331},"pyproject.toml",{"type":45,"tag":248,"props":333,"children":334},{},[335],{"type":51,"value":336},"Python runtime, dependencies (Django, Flask, etc.)",{"type":45,"tag":226,"props":338,"children":339},{},[340,348],{"type":45,"tag":248,"props":341,"children":342},{},[343],{"type":45,"tag":88,"props":344,"children":346},{"className":345},[],[347],{"type":51,"value":122},{"type":45,"tag":248,"props":349,"children":350},{},[351],{"type":51,"value":352},"Ruby runtime, dependencies (Rails, Sidekiq, etc.)",{"type":45,"tag":226,"props":354,"children":355},{},[356,364],{"type":45,"tag":248,"props":357,"children":358},{},[359],{"type":45,"tag":88,"props":360,"children":362},{"className":361},[],[363],{"type":51,"value":129},{"type":45,"tag":248,"props":365,"children":366},{},[367],{"type":51,"value":368},"Go runtime",{"type":45,"tag":226,"props":370,"children":371},{},[372,381],{"type":45,"tag":248,"props":373,"children":374},{},[375],{"type":45,"tag":88,"props":376,"children":378},{"className":377},[],[379],{"type":51,"value":380},"Cargo.toml",{"type":45,"tag":248,"props":382,"children":383},{},[384],{"type":51,"value":385},"Rust runtime",{"type":45,"tag":226,"props":387,"children":388},{},[389,397],{"type":45,"tag":248,"props":390,"children":391},{},[392],{"type":45,"tag":88,"props":393,"children":395},{"className":394},[],[396],{"type":51,"value":101},{"type":45,"tag":248,"props":398,"children":399},{},[400],{"type":51,"value":401},"Declared add-ons, env var descriptions, buildpacks",{"type":45,"tag":226,"props":403,"children":404},{},[405,414],{"type":45,"tag":248,"props":406,"children":407},{},[408],{"type":45,"tag":88,"props":409,"children":411},{"className":410},[],[412],{"type":51,"value":413},"runtime.txt",{"type":45,"tag":248,"props":415,"children":416},{},[417],{"type":51,"value":418},"Pinned runtime version",{"type":45,"tag":226,"props":420,"children":421},{},[422,431],{"type":45,"tag":248,"props":423,"children":424},{},[425],{"type":45,"tag":88,"props":426,"children":428},{"className":427},[],[429],{"type":51,"value":430},"static.json",{"type":45,"tag":248,"props":432,"children":433},{},[434],{"type":51,"value":435},"Static site indicator",{"type":45,"tag":226,"props":437,"children":438},{},[439,455],{"type":45,"tag":248,"props":440,"children":441},{},[442,448,449],{"type":45,"tag":88,"props":443,"children":445},{"className":444},[],[446],{"type":51,"value":447},"yarn.lock",{"type":51,"value":318},{"type":45,"tag":88,"props":450,"children":452},{"className":451},[],[453],{"type":51,"value":454},"pnpm-lock.yaml",{"type":45,"tag":248,"props":456,"children":457},{},[458],{"type":51,"value":459},"Package manager (affects build command)",{"type":45,"tag":54,"props":461,"children":462},{},[463],{"type":51,"value":464},"From these files, determine:",{"type":45,"tag":466,"props":467,"children":468},"ul",{},[469,486,540,555,571,587,633],{"type":45,"tag":76,"props":470,"children":471},{},[472,477,479,485],{"type":45,"tag":80,"props":473,"children":474},{},[475],{"type":51,"value":476},"Runtime",{"type":51,"value":478}," — from dependency files (see the ",{"type":45,"tag":174,"props":480,"children":482},{"href":481},"references\u002Fbuildpack-mapping.md",[483],{"type":51,"value":484},"buildpack mapping",{"type":51,"value":289},{"type":45,"tag":76,"props":487,"children":488},{},[489,494,496,501,502,508,510,516,518,523,525,531,532,538],{"type":45,"tag":80,"props":490,"children":491},{},[492],{"type":51,"value":493},"Runtime version",{"type":51,"value":495}," — from ",{"type":45,"tag":88,"props":497,"children":499},{"className":498},[],[500],{"type":51,"value":413},{"type":51,"value":95},{"type":45,"tag":88,"props":503,"children":505},{"className":504},[],[506],{"type":51,"value":507},".node-version",{"type":51,"value":509},", or ",{"type":45,"tag":88,"props":511,"children":513},{"className":512},[],[514],{"type":51,"value":515},"engines",{"type":51,"value":517}," in ",{"type":45,"tag":88,"props":519,"children":521},{"className":520},[],[522],{"type":51,"value":108},{"type":51,"value":524},". If pinned, carry it over as an env var (e.g., ",{"type":45,"tag":88,"props":526,"children":528},{"className":527},[],[529],{"type":51,"value":530},"PYTHON_VERSION",{"type":51,"value":95},{"type":45,"tag":88,"props":533,"children":535},{"className":534},[],[536],{"type":51,"value":537},"NODE_VERSION",{"type":51,"value":539},"). If not pinned, do not specify a version — never assume or state what Render's default version is.",{"type":45,"tag":76,"props":541,"children":542},{},[543,548,550,554],{"type":45,"tag":80,"props":544,"children":545},{},[546],{"type":51,"value":547},"Build command",{"type":51,"value":549}," — from package manager and framework (see the ",{"type":45,"tag":174,"props":551,"children":552},{"href":481},[553],{"type":51,"value":484},{"type":51,"value":289},{"type":45,"tag":76,"props":556,"children":557},{},[558,563,564,569],{"type":45,"tag":80,"props":559,"children":560},{},[561],{"type":51,"value":562},"Start commands",{"type":51,"value":495},{"type":45,"tag":88,"props":565,"children":567},{"className":566},[],[568],{"type":51,"value":93},{"type":51,"value":570}," entries",{"type":45,"tag":76,"props":572,"children":573},{},[574,579,580,585],{"type":45,"tag":80,"props":575,"children":576},{},[577],{"type":51,"value":578},"Process types",{"type":51,"value":495},{"type":45,"tag":88,"props":581,"children":583},{"className":582},[],[584],{"type":51,"value":93},{"type":51,"value":586}," (web, worker, clock, release)",{"type":45,"tag":76,"props":588,"children":589},{},[590,595,596,601,603,609,611,617,618,623,625,631],{"type":45,"tag":80,"props":591,"children":592},{},[593],{"type":51,"value":594},"Add-ons needed",{"type":51,"value":495},{"type":45,"tag":88,"props":597,"children":599},{"className":598},[],[600],{"type":51,"value":101},{"type":51,"value":602}," ",{"type":45,"tag":88,"props":604,"children":606},{"className":605},[],[607],{"type":51,"value":608},"addons",{"type":51,"value":610}," field, or infer from dependency files (e.g., ",{"type":45,"tag":88,"props":612,"children":614},{"className":613},[],[615],{"type":51,"value":616},"pg",{"type":51,"value":517},{"type":45,"tag":88,"props":619,"children":621},{"className":620},[],[622],{"type":51,"value":108},{"type":51,"value":624}," suggests Postgres, ",{"type":45,"tag":88,"props":626,"children":628},{"className":627},[],[629],{"type":51,"value":630},"redis",{"type":51,"value":632}," suggests Key Value)",{"type":45,"tag":76,"props":634,"children":635},{},[636,641,642,647,649],{"type":45,"tag":80,"props":637,"children":638},{},[639],{"type":51,"value":640},"Static site?",{"type":51,"value":495},{"type":45,"tag":88,"props":643,"children":645},{"className":644},[],[646],{"type":51,"value":430},{"type":51,"value":648},", SPA framework deps, or static buildpack in ",{"type":45,"tag":88,"props":650,"children":652},{"className":651},[],[653],{"type":51,"value":101},{"type":45,"tag":206,"props":655,"children":657},{"id":656},"_1b-enrich-with-heroku-mcp-if-available",[658],{"type":51,"value":659},"1b. Enrich with Heroku MCP (if available)",{"type":45,"tag":54,"props":661,"children":662},{},[663,665,670,672,677],{"type":51,"value":664},"If the Heroku MCP server is connected, call these tools to fill in details that aren't in the repo. The ",{"type":45,"tag":80,"props":666,"children":667},{},[668],{"type":51,"value":669},"dyno size",{"type":51,"value":671}," and ",{"type":45,"tag":80,"props":673,"children":674},{},[675],{"type":51,"value":676},"add-on plan slug",{"type":51,"value":678}," are critical — they determine which Render plans to use.",{"type":45,"tag":72,"props":680,"children":681},{},[682,692,708,749,786],{"type":45,"tag":76,"props":683,"children":684},{},[685,690],{"type":45,"tag":88,"props":686,"children":688},{"className":687},[],[689],{"type":51,"value":165},{"type":51,"value":691}," — let user select which app to migrate (confirms app name)",{"type":45,"tag":76,"props":693,"children":694},{},[695,701,703],{"type":45,"tag":88,"props":696,"children":698},{"className":697},[],[699],{"type":51,"value":700},"get_app_info",{"type":51,"value":702}," — capture: region, stack, buildpacks, ",{"type":45,"tag":80,"props":704,"children":705},{},[706],{"type":51,"value":707},"config var names",{"type":45,"tag":76,"props":709,"children":710},{},[711,717,719,724,726,732,733,739,741,747],{"type":45,"tag":88,"props":712,"children":714},{"className":713},[],[715],{"type":51,"value":716},"list_addons",{"type":51,"value":718}," — capture the ",{"type":45,"tag":80,"props":720,"children":721},{},[722],{"type":51,"value":723},"exact add-on plan slug",{"type":51,"value":725}," (e.g., ",{"type":45,"tag":88,"props":727,"children":729},{"className":728},[],[730],{"type":51,"value":731},"heroku-postgresql:essential-2",{"type":51,"value":95},{"type":45,"tag":88,"props":734,"children":736},{"className":735},[],[737],{"type":51,"value":738},"heroku-redis:premium-0",{"type":51,"value":740},"). The part after the colon maps to a specific Render plan in the ",{"type":45,"tag":174,"props":742,"children":744},{"href":743},"references\u002Fservice-mapping.md",[745],{"type":51,"value":746},"service mapping",{"type":51,"value":748},".",{"type":45,"tag":76,"props":750,"children":751},{},[752,758,759,764,766,772,773,779,781,785],{"type":45,"tag":88,"props":753,"children":755},{"className":754},[],[756],{"type":51,"value":757},"ps_list",{"type":51,"value":718},{"type":45,"tag":80,"props":760,"children":761},{},[762],{"type":51,"value":763},"exact dyno size",{"type":51,"value":765}," for each process type (e.g., ",{"type":45,"tag":88,"props":767,"children":769},{"className":768},[],[770],{"type":51,"value":771},"Standard-2X",{"type":51,"value":95},{"type":45,"tag":88,"props":774,"children":776},{"className":775},[],[777],{"type":51,"value":778},"Performance-M",{"type":51,"value":780},"). Each dyno size maps to a specific Render plan in the ",{"type":45,"tag":174,"props":782,"children":783},{"href":743},[784],{"type":51,"value":746},{"type":51,"value":748},{"type":45,"tag":76,"props":787,"children":788},{},[789,795,797,802,804,810,812,816],{"type":45,"tag":88,"props":790,"children":792},{"className":791},[],[793],{"type":51,"value":794},"pg_info",{"type":51,"value":796}," (if Postgres exists) — capture ",{"type":45,"tag":80,"props":798,"children":799},{},[800],{"type":51,"value":801},"Data Size",{"type":51,"value":803}," (actual usage) and the plan's disk allocation. The plan's disk size determines the ",{"type":45,"tag":88,"props":805,"children":807},{"className":806},[],[808],{"type":51,"value":809},"diskSizeGB",{"type":51,"value":811}," value in the Blueprint (see the ",{"type":45,"tag":174,"props":813,"children":814},{"href":743},[815],{"type":51,"value":746},{"type":51,"value":817},").",{"type":45,"tag":54,"props":819,"children":820},{},[821,823,828],{"type":51,"value":822},"If Heroku MCP is ",{"type":45,"tag":80,"props":824,"children":825},{},[826],{"type":51,"value":827},"not",{"type":51,"value":829}," available, ask the user to provide:",{"type":45,"tag":466,"props":831,"children":832},{},[833,846,858,871,891],{"type":45,"tag":76,"props":834,"children":835},{},[836,838,844],{"type":51,"value":837},"Dyno sizes (or run ",{"type":45,"tag":88,"props":839,"children":841},{"className":840},[],[842],{"type":51,"value":843},"heroku ps:type -a \u003Capp>",{"type":51,"value":845}," and paste output)",{"type":45,"tag":76,"props":847,"children":848},{},[849,851,857],{"type":51,"value":850},"Add-on plans (or run ",{"type":45,"tag":88,"props":852,"children":854},{"className":853},[],[855],{"type":51,"value":856},"heroku addons -a \u003Capp>",{"type":51,"value":845},{"type":45,"tag":76,"props":859,"children":860},{},[861,863,869],{"type":51,"value":862},"Database info (or run ",{"type":45,"tag":88,"props":864,"children":866},{"className":865},[],[867],{"type":51,"value":868},"heroku pg:info -a \u003Capp>",{"type":51,"value":870}," and paste output — captures plan name, data size, and disk allocation)",{"type":45,"tag":76,"props":872,"children":873},{},[874,876,882,884,890],{"type":51,"value":875},"App region (",{"type":45,"tag":88,"props":877,"children":879},{"className":878},[],[880],{"type":51,"value":881},"us",{"type":51,"value":883}," or ",{"type":45,"tag":88,"props":885,"children":887},{"className":886},[],[888],{"type":51,"value":889},"eu",{"type":51,"value":289},{"type":45,"tag":76,"props":892,"children":893},{},[894,896,902],{"type":51,"value":895},"Config var names (or run ",{"type":45,"tag":88,"props":897,"children":899},{"className":898},[],[900],{"type":51,"value":901},"heroku config -a \u003Capp> --shell",{"type":51,"value":845},{"type":45,"tag":54,"props":904,"children":905},{},[906,908,912,914,920,922,928,930,935],{"type":51,"value":907},"If the user cannot provide dyno sizes or add-on plans, use the fallback defaults from the ",{"type":45,"tag":174,"props":909,"children":910},{"href":743},[911],{"type":51,"value":746},{"type":51,"value":913},": ",{"type":45,"tag":88,"props":915,"children":917},{"className":916},[],[918],{"type":51,"value":919},"starter",{"type":51,"value":921}," for compute, ",{"type":45,"tag":88,"props":923,"children":925},{"className":924},[],[926],{"type":51,"value":927},"basic-1gb",{"type":51,"value":929}," for Postgres, ",{"type":45,"tag":88,"props":931,"children":933},{"className":932},[],[934],{"type":51,"value":919},{"type":51,"value":936}," for Key Value.",{"type":45,"tag":206,"props":938,"children":940},{"id":939},"present-summary",[941],{"type":51,"value":942},"Present summary",{"type":45,"tag":944,"props":945,"children":949},"pre",{"className":946,"code":948,"language":51},[947],"language-text","App: [name] | Region: [region] | Runtime: [node\u002Fpython\u002Fruby\u002Fetc]\nSource: [local files | local files + Heroku MCP]\nBuild command: [inferred from buildpack\u002Fdeps]\nProcesses:\n  web: [command from Procfile] → Render web service ([mapped-plan])\n  worker: [command] → Render background worker ([mapped-plan], Blueprint only)\n  clock: [command] → Render cron job ([mapped-plan])\n  release: [command] → Append to build command\nAdd-ons:\n  Heroku Postgres ([plan-slug], [disk-size]) → Render Postgres ([mapped-plan], diskSizeGB: [size])\n  Heroku Redis ([plan-slug]) → Render Key Value ([mapped-plan])\nConfig vars: 14 total (list names, not values)\n",[950],{"type":45,"tag":88,"props":951,"children":953},{"__ignoreMap":952},"",[954],{"type":51,"value":948},{"type":45,"tag":194,"props":956,"children":958},{"id":957},"step-2-pre-flight-check",[959],{"type":51,"value":960},"Step 2: Pre-Flight Check",{"type":45,"tag":54,"props":962,"children":963},{},[964,966,972],{"type":51,"value":965},"Before creating anything, run through the ",{"type":45,"tag":174,"props":967,"children":969},{"href":968},"references\u002Fpreflight-checklist.md",[970],{"type":51,"value":971},"pre-flight checklist",{"type":51,"value":973}," to validate the migration plan. Key checks:",{"type":45,"tag":466,"props":975,"children":976},{},[977,982,987,992,997],{"type":45,"tag":76,"props":978,"children":979},{},[980],{"type":51,"value":981},"Runtime supported (or needs Dockerfile)",{"type":45,"tag":76,"props":983,"children":984},{},[985],{"type":51,"value":986},"Worker dynos, release phase, static site detection",{"type":45,"tag":76,"props":988,"children":989},{},[990],{"type":51,"value":991},"Third-party add-ons without Render equivalents",{"type":45,"tag":76,"props":993,"children":994},{},[995],{"type":51,"value":996},"Git remote exists and is HTTPS format",{"type":45,"tag":76,"props":998,"children":999},{},[1000],{"type":51,"value":1001},"Database size (large DBs need assisted migration)",{"type":45,"tag":54,"props":1003,"children":1004},{},[1005,1007,1011,1013,1017],{"type":51,"value":1006},"Look up each Heroku dyno size and add-on plan in the ",{"type":45,"tag":174,"props":1008,"children":1009},{"href":743},[1010],{"type":51,"value":746},{"type":51,"value":1012}," to determine correct Render plans and cost estimates. Present the migration plan table from the ",{"type":45,"tag":174,"props":1014,"children":1015},{"href":968},[1016],{"type":51,"value":971},{"type":51,"value":1018}," and wait for user confirmation before creating any resources.",{"type":45,"tag":194,"props":1020,"children":1022},{"id":1021},"determine-creation-method",[1023],{"type":51,"value":1024},"Determine Creation Method",{"type":45,"tag":54,"props":1026,"children":1027},{},[1028,1030,1035],{"type":51,"value":1029},"After the user approves the pre-flight plan, apply this decision rule. ",{"type":45,"tag":80,"props":1031,"children":1032},{},[1033],{"type":51,"value":1034},"Default to Blueprint",{"type":51,"value":1036}," — only use MCP Direct Creation when every condition below is met.",{"type":45,"tag":54,"props":1038,"children":1039},{},[1040,1045],{"type":45,"tag":80,"props":1041,"children":1042},{},[1043],{"type":51,"value":1044},"Use Blueprint",{"type":51,"value":1046}," (the default) when ANY are true:",{"type":45,"tag":466,"props":1048,"children":1049},{},[1050,1055,1060,1065],{"type":45,"tag":76,"props":1051,"children":1052},{},[1053],{"type":51,"value":1054},"Multiple process types (web + worker, web + cron, etc.)",{"type":45,"tag":76,"props":1056,"children":1057},{},[1058],{"type":51,"value":1059},"Databases or Key Value stores needed",{"type":45,"tag":76,"props":1061,"children":1062},{},[1063],{"type":51,"value":1064},"Background workers in the Procfile",{"type":45,"tag":76,"props":1066,"children":1067},{},[1068],{"type":51,"value":1069},"User prefers Infrastructure-as-Code configuration",{"type":45,"tag":54,"props":1071,"children":1072},{},[1073,1078],{"type":45,"tag":80,"props":1074,"children":1075},{},[1076],{"type":51,"value":1077},"Fall back to MCP Direct Creation",{"type":51,"value":1079}," ONLY when ALL are true:",{"type":45,"tag":466,"props":1081,"children":1082},{},[1083,1088,1093],{"type":45,"tag":76,"props":1084,"children":1085},{},[1086],{"type":51,"value":1087},"Single web or static site service (one process type)",{"type":45,"tag":76,"props":1089,"children":1090},{},[1091],{"type":51,"value":1092},"No background workers or cron jobs",{"type":45,"tag":76,"props":1094,"children":1095},{},[1096],{"type":51,"value":1097},"No databases or Key Value stores",{"type":45,"tag":54,"props":1099,"children":1100},{},[1101],{"type":51,"value":1102},"If unsure, use Blueprint. Most Heroku apps have at least a database, so Blueprint applies to the vast majority of migrations.",{"type":45,"tag":194,"props":1104,"children":1106},{"id":1105},"step-3a-generate-blueprint-multi-service",[1107],{"type":51,"value":1108},"Step 3A: Generate Blueprint (Multi-Service)",{"type":45,"tag":54,"props":1110,"children":1111},{},[1112],{"type":51,"value":1113},"This step has three mandatory sub-steps. Complete all three in order.",{"type":45,"tag":206,"props":1115,"children":1117},{"id":1116},"_3a-i-write-renderyaml",[1118],{"type":51,"value":1119},"3A-i. Write render.yaml",{"type":45,"tag":54,"props":1121,"children":1122},{},[1123,1125,1131,1133,1139,1141,1149,1151,1158],{"type":51,"value":1124},"Generate a ",{"type":45,"tag":88,"props":1126,"children":1128},{"className":1127},[],[1129],{"type":51,"value":1130},"render.yaml",{"type":51,"value":1132}," file and write it to the repo root. See the ",{"type":45,"tag":174,"props":1134,"children":1136},{"href":1135},"references\u002Fblueprint-example.md",[1137],{"type":51,"value":1138},"Blueprint example",{"type":51,"value":1140}," for a complete example, the ",{"type":45,"tag":174,"props":1142,"children":1146},{"href":1143,"rel":1144},"https:\u002F\u002Frender.com\u002Fdocs\u002Fblueprint-spec#projects-and-environments",[1145],"nofollow",[1147],{"type":51,"value":1148},"Blueprint docs",{"type":51,"value":1150}," for usage guidance, and the ",{"type":45,"tag":174,"props":1152,"children":1155},{"href":1153,"rel":1154},"https:\u002F\u002Frender.com\u002Fschema\u002Frender.yaml.json",[1145],[1156],{"type":51,"value":1157},"Blueprint YAML JSON schema",{"type":51,"value":1159}," for the full field reference.",{"type":45,"tag":54,"props":1161,"children":1162},{},[1163,1184,1186,1192,1194,1200,1201,1207],{"type":45,"tag":80,"props":1164,"children":1165},{},[1166,1168,1174,1176,1182],{"type":51,"value":1167},"IMPORTANT: Always use the ",{"type":45,"tag":88,"props":1169,"children":1171},{"className":1170},[],[1172],{"type":51,"value":1173},"projects",{"type":51,"value":1175},"\u002F",{"type":45,"tag":88,"props":1177,"children":1179},{"className":1178},[],[1180],{"type":51,"value":1181},"environments",{"type":51,"value":1183}," pattern.",{"type":51,"value":1185}," The YAML must start with a ",{"type":45,"tag":88,"props":1187,"children":1189},{"className":1188},[],[1190],{"type":51,"value":1191},"projects:",{"type":51,"value":1193}," key — never use flat top-level ",{"type":45,"tag":88,"props":1195,"children":1197},{"className":1196},[],[1198],{"type":51,"value":1199},"services:",{"type":51,"value":883},{"type":45,"tag":88,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":51,"value":1206},"databases:",{"type":51,"value":1208}," keys. This groups all migrated resources into a single Render project.",{"type":45,"tag":54,"props":1210,"children":1211},{},[1212,1230,1232,1237,1239,1244,1246,1251,1252,1257,1258,1263],{"type":45,"tag":80,"props":1213,"children":1214},{},[1215,1217,1223,1225,1229],{"type":51,"value":1216},"Set the ",{"type":45,"tag":88,"props":1218,"children":1220},{"className":1219},[],[1221],{"type":51,"value":1222},"plan:",{"type":51,"value":1224}," field for each service and database using the mapped Render plan from the ",{"type":45,"tag":174,"props":1226,"children":1227},{"href":743},[1228],{"type":51,"value":746},{"type":51,"value":748},{"type":51,"value":1231}," Look up the Heroku dyno size (from ",{"type":45,"tag":88,"props":1233,"children":1235},{"className":1234},[],[1236],{"type":51,"value":757},{"type":51,"value":1238},") and add-on plan slug (from ",{"type":45,"tag":88,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":51,"value":716},{"type":51,"value":1245},") to find the correct Render plan. If the Heroku plan is unknown, use the fallback defaults: ",{"type":45,"tag":88,"props":1247,"children":1249},{"className":1248},[],[1250],{"type":51,"value":919},{"type":51,"value":921},{"type":45,"tag":88,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":51,"value":927},{"type":51,"value":929},{"type":45,"tag":88,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":51,"value":919},{"type":51,"value":936},{"type":45,"tag":54,"props":1265,"children":1266},{},[1267,1269,1273],{"type":51,"value":1268},"Generate the YAML following the full template, rules, and patterns in the ",{"type":45,"tag":174,"props":1270,"children":1271},{"href":1135},[1272],{"type":51,"value":1138},{"type":51,"value":1274},". Critical rules:",{"type":45,"tag":466,"props":1276,"children":1277},{},[1278,1302,1318,1330,1365],{"type":45,"tag":76,"props":1279,"children":1280},{},[1281,1283,1288,1289,1295,1297],{"type":51,"value":1282},"Always use the ",{"type":45,"tag":88,"props":1284,"children":1286},{"className":1285},[],[1287],{"type":51,"value":1191},{"type":51,"value":1175},{"type":45,"tag":88,"props":1290,"children":1292},{"className":1291},[],[1293],{"type":51,"value":1294},"environments:",{"type":51,"value":1296}," pattern — never flat top-level ",{"type":45,"tag":88,"props":1298,"children":1300},{"className":1299},[],[1301],{"type":51,"value":1199},{"type":45,"tag":76,"props":1303,"children":1304},{},[1305,1307,1312,1314],{"type":51,"value":1306},"Set every ",{"type":45,"tag":88,"props":1308,"children":1310},{"className":1309},[],[1311],{"type":51,"value":1222},{"type":51,"value":1313}," field using the ",{"type":45,"tag":174,"props":1315,"children":1316},{"href":743},[1317],{"type":51,"value":746},{"type":45,"tag":76,"props":1319,"children":1320},{},[1321,1323,1328],{"type":51,"value":1322},"Set ",{"type":45,"tag":88,"props":1324,"children":1326},{"className":1325},[],[1327],{"type":51,"value":809},{"type":51,"value":1329}," on databases from the Heroku disk allocation",{"type":45,"tag":76,"props":1331,"children":1332},{},[1333,1335,1341,1343,1349,1350,1356,1357,1363],{"type":51,"value":1334},"Use ",{"type":45,"tag":88,"props":1336,"children":1338},{"className":1337},[],[1339],{"type":51,"value":1340},"fromDatabase",{"type":51,"value":1342}," for ",{"type":45,"tag":88,"props":1344,"children":1346},{"className":1345},[],[1347],{"type":51,"value":1348},"DATABASE_URL",{"type":51,"value":671},{"type":45,"tag":88,"props":1351,"children":1353},{"className":1352},[],[1354],{"type":51,"value":1355},"fromService",{"type":51,"value":1342},{"type":45,"tag":88,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":51,"value":1362},"REDIS_URL",{"type":51,"value":1364}," — never hardcode connection strings",{"type":45,"tag":76,"props":1366,"children":1367},{},[1368,1370],{"type":51,"value":1369},"Mark secrets with ",{"type":45,"tag":88,"props":1371,"children":1373},{"className":1372},[],[1374],{"type":51,"value":1375},"sync: false",{"type":45,"tag":206,"props":1377,"children":1379},{"id":1378},"_3a-ii-validate-the-blueprint",[1380],{"type":51,"value":1381},"3A-ii. Validate the Blueprint",{"type":45,"tag":54,"props":1383,"children":1384},{},[1385],{"type":51,"value":1386},"This step is mandatory. First, check if the Render CLI is installed:",{"type":45,"tag":944,"props":1388,"children":1392},{"className":1389,"code":1390,"language":1391,"meta":952,"style":952},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","render --version\n","bash",[1393],{"type":45,"tag":88,"props":1394,"children":1395},{"__ignoreMap":952},[1396],{"type":45,"tag":1397,"props":1398,"children":1401},"span",{"class":1399,"line":1400},"line",1,[1402,1407],{"type":45,"tag":1397,"props":1403,"children":1405},{"style":1404},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1406],{"type":51,"value":14},{"type":45,"tag":1397,"props":1408,"children":1410},{"style":1409},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1411],{"type":51,"value":1412}," --version\n",{"type":45,"tag":54,"props":1414,"children":1415},{},[1416],{"type":51,"value":1417},"If not installed, offer to install it:",{"type":45,"tag":466,"props":1419,"children":1420},{},[1421,1432],{"type":45,"tag":76,"props":1422,"children":1423},{},[1424,1426],{"type":51,"value":1425},"macOS: ",{"type":45,"tag":88,"props":1427,"children":1429},{"className":1428},[],[1430],{"type":51,"value":1431},"brew install render",{"type":45,"tag":76,"props":1433,"children":1434},{},[1435,1437],{"type":51,"value":1436},"Linux\u002FmacOS: ",{"type":45,"tag":88,"props":1438,"children":1440},{"className":1439},[],[1441],{"type":51,"value":1442},"curl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Frender-oss\u002Fcli\u002Fmain\u002Fbin\u002Finstall.sh | sh",{"type":45,"tag":54,"props":1444,"children":1445},{},[1446],{"type":51,"value":1447},"Once the CLI is available, run the validation command and show the output to the user:",{"type":45,"tag":944,"props":1449,"children":1451},{"className":1389,"code":1450,"language":1391,"meta":952,"style":952},"render blueprints validate render.yaml\n",[1452],{"type":45,"tag":88,"props":1453,"children":1454},{"__ignoreMap":952},[1455],{"type":45,"tag":1397,"props":1456,"children":1457},{"class":1399,"line":1400},[1458,1462,1467,1472],{"type":45,"tag":1397,"props":1459,"children":1460},{"style":1404},[1461],{"type":51,"value":14},{"type":45,"tag":1397,"props":1463,"children":1464},{"style":1409},[1465],{"type":51,"value":1466}," blueprints",{"type":45,"tag":1397,"props":1468,"children":1469},{"style":1409},[1470],{"type":51,"value":1471}," validate",{"type":45,"tag":1397,"props":1473,"children":1474},{"style":1409},[1475],{"type":51,"value":1476}," render.yaml\n",{"type":45,"tag":54,"props":1478,"children":1479},{},[1480,1482],{"type":51,"value":1481},"If validation fails, fix the errors in the YAML and re-validate. Repeat until validation passes. ",{"type":45,"tag":80,"props":1483,"children":1484},{},[1485],{"type":51,"value":1486},"Do not proceed to the next step until the Blueprint validates successfully.",{"type":45,"tag":206,"props":1488,"children":1490},{"id":1489},"_3a-iii-provide-the-deploy-url",[1491],{"type":51,"value":1492},"3A-iii. Provide the deploy URL",{"type":45,"tag":54,"props":1494,"children":1495},{},[1496],{"type":51,"value":1497},"After validation passes:",{"type":45,"tag":72,"props":1499,"children":1500},{},[1501,1512,1547],{"type":45,"tag":76,"props":1502,"children":1503},{},[1504,1506],{"type":51,"value":1505},"Instruct user to commit and push: ",{"type":45,"tag":88,"props":1507,"children":1509},{"className":1508},[],[1510],{"type":51,"value":1511},"git add render.yaml && git commit -m \"Add Render migration Blueprint\" && git push",{"type":45,"tag":76,"props":1513,"children":1514},{},[1515,1517,1523,1525,1531,1533,1539,1541],{"type":51,"value":1516},"Get the repo URL by running ",{"type":45,"tag":88,"props":1518,"children":1520},{"className":1519},[],[1521],{"type":51,"value":1522},"git remote get-url origin",{"type":51,"value":1524},". If the URL is SSH format (e.g., ",{"type":45,"tag":88,"props":1526,"children":1528},{"className":1527},[],[1529],{"type":51,"value":1530},"git@github.com:user\u002Frepo.git",{"type":51,"value":1532},"), convert it to HTTPS (",{"type":45,"tag":88,"props":1534,"children":1536},{"className":1535},[],[1537],{"type":51,"value":1538},"https:\u002F\u002Fgithub.com\u002Fuser\u002Frepo",{"type":51,"value":1540},"). Then construct the deeplink: ",{"type":45,"tag":88,"props":1542,"children":1544},{"className":1543},[],[1545],{"type":51,"value":1546},"https:\u002F\u002Fdashboard.render.com\u002Fblueprint\u002Fnew?repo=\u003CHTTPS_REPO_URL>",{"type":45,"tag":76,"props":1548,"children":1549},{},[1550,1552,1557,1559,1564,1566],{"type":51,"value":1551},"Present the ",{"type":45,"tag":80,"props":1553,"children":1554},{},[1555],{"type":51,"value":1556},"actual working deeplink",{"type":51,"value":1558}," to the user — never show a placeholder URL. Guide user to open it, fill in ",{"type":45,"tag":88,"props":1560,"children":1562},{"className":1561},[],[1563],{"type":51,"value":1375},{"type":51,"value":1565}," secrets, and click ",{"type":45,"tag":80,"props":1567,"children":1568},{},[1569],{"type":51,"value":1570},"Apply",{"type":45,"tag":54,"props":1572,"children":1573},{},[1574,1579],{"type":45,"tag":80,"props":1575,"children":1576},{},[1577],{"type":51,"value":1578},"Do not skip the deploy URL.",{"type":51,"value":1580}," The user needs this link to apply the Blueprint on Render.",{"type":45,"tag":194,"props":1582,"children":1584},{"id":1583},"step-3b-mcp-direct-creation-single-service",[1585],{"type":51,"value":1586},"Step 3B: MCP Direct Creation (Single-Service)",{"type":45,"tag":54,"props":1588,"children":1589},{},[1590],{"type":51,"value":1591},"Before creating resources via MCP, verify the active workspace:",{"type":45,"tag":944,"props":1593,"children":1596},{"className":1594,"code":1595,"language":51},[947],"get_selected_workspace()\n",[1597],{"type":45,"tag":88,"props":1598,"children":1599},{"__ignoreMap":952},[1600],{"type":51,"value":1595},{"type":45,"tag":54,"props":1602,"children":1603},{},[1604,1606,1612],{"type":51,"value":1605},"If the workspace is wrong, list available workspaces with ",{"type":45,"tag":88,"props":1607,"children":1609},{"className":1608},[],[1610],{"type":51,"value":1611},"list_workspaces()",{"type":51,"value":1613}," and ask the user to select the correct one. Resources will be created in whichever workspace is active.",{"type":45,"tag":54,"props":1615,"children":1616},{},[1617],{"type":51,"value":1618},"For single-service migrations without databases, create via MCP tools:",{"type":45,"tag":72,"props":1620,"children":1621},{},[1622,1736],{"type":45,"tag":76,"props":1623,"children":1624},{},[1625,1630,1632,1638,1640],{"type":45,"tag":80,"props":1626,"children":1627},{},[1628],{"type":51,"value":1629},"Web service",{"type":51,"value":1631}," — ",{"type":45,"tag":88,"props":1633,"children":1635},{"className":1634},[],[1636],{"type":51,"value":1637},"create_web_service",{"type":51,"value":1639}," with:\n",{"type":45,"tag":466,"props":1641,"children":1642},{},[1643,1658,1672,1691,1702,1713],{"type":45,"tag":76,"props":1644,"children":1645},{},[1646,1652,1654],{"type":45,"tag":88,"props":1647,"children":1649},{"className":1648},[],[1650],{"type":51,"value":1651},"runtime",{"type":51,"value":1653},": from the ",{"type":45,"tag":174,"props":1655,"children":1656},{"href":481},[1657],{"type":51,"value":484},{"type":45,"tag":76,"props":1659,"children":1660},{},[1661,1667,1668],{"type":45,"tag":88,"props":1662,"children":1664},{"className":1663},[],[1665],{"type":51,"value":1666},"buildCommand",{"type":51,"value":1653},{"type":45,"tag":174,"props":1669,"children":1670},{"href":481},[1671],{"type":51,"value":484},{"type":45,"tag":76,"props":1673,"children":1674},{},[1675,1681,1683,1689],{"type":45,"tag":88,"props":1676,"children":1678},{"className":1677},[],[1679],{"type":51,"value":1680},"startCommand",{"type":51,"value":1682},": from Procfile ",{"type":45,"tag":88,"props":1684,"children":1686},{"className":1685},[],[1687],{"type":51,"value":1688},"web:",{"type":51,"value":1690}," entry",{"type":45,"tag":76,"props":1692,"children":1693},{},[1694,1700],{"type":45,"tag":88,"props":1695,"children":1697},{"className":1696},[],[1698],{"type":51,"value":1699},"repo",{"type":51,"value":1701},": user-provided GitHub\u002FGitLab URL",{"type":45,"tag":76,"props":1703,"children":1704},{},[1705,1711],{"type":45,"tag":88,"props":1706,"children":1708},{"className":1707},[],[1709],{"type":51,"value":1710},"region",{"type":51,"value":1712},": mapped from Heroku region",{"type":45,"tag":76,"props":1714,"children":1715},{},[1716,1722,1724,1728,1730,1735],{"type":45,"tag":88,"props":1717,"children":1719},{"className":1718},[],[1720],{"type":51,"value":1721},"plan",{"type":51,"value":1723},": mapped from Heroku dyno size using the ",{"type":45,"tag":174,"props":1725,"children":1726},{"href":743},[1727],{"type":51,"value":746},{"type":51,"value":1729}," (fallback: ",{"type":45,"tag":88,"props":1731,"children":1733},{"className":1732},[],[1734],{"type":51,"value":919},{"type":51,"value":289},{"type":45,"tag":76,"props":1737,"children":1738},{},[1739,1744,1745,1751],{"type":45,"tag":80,"props":1740,"children":1741},{},[1742],{"type":51,"value":1743},"Static site",{"type":51,"value":1631},{"type":45,"tag":88,"props":1746,"children":1748},{"className":1747},[],[1749],{"type":51,"value":1750},"create_static_site",{"type":51,"value":1752}," if detected (instead of web service)",{"type":45,"tag":54,"props":1754,"children":1755},{},[1756],{"type":51,"value":1757},"Present the creation result (service URL, ID) when complete.",{"type":45,"tag":194,"props":1759,"children":1761},{"id":1760},"step-4-migrate-environment-variables",[1762],{"type":51,"value":1763},"Step 4: Migrate Environment Variables",{"type":45,"tag":206,"props":1765,"children":1767},{"id":1766},"gather-config-vars",[1768],{"type":51,"value":1769},"Gather config vars",{"type":45,"tag":54,"props":1771,"children":1772},{},[1773],{"type":51,"value":1774},"Use the first available source:",{"type":45,"tag":72,"props":1776,"children":1777},{},[1778,1794,1809],{"type":45,"tag":76,"props":1779,"children":1780},{},[1781,1785,1787,1792],{"type":45,"tag":80,"props":1782,"children":1783},{},[1784],{"type":51,"value":157},{"type":51,"value":1786}," (preferred) — config vars from ",{"type":45,"tag":88,"props":1788,"children":1790},{"className":1789},[],[1791],{"type":51,"value":700},{"type":51,"value":1793}," results (Step 1b)",{"type":45,"tag":76,"props":1795,"children":1796},{},[1797,1802,1804],{"type":45,"tag":80,"props":1798,"children":1799},{},[1800],{"type":51,"value":1801},"User-provided",{"type":51,"value":1803}," — ask the user to paste output of ",{"type":45,"tag":88,"props":1805,"children":1807},{"className":1806},[],[1808],{"type":51,"value":901},{"type":45,"tag":76,"props":1810,"children":1811},{},[1812,1820,1822,1827],{"type":45,"tag":80,"props":1813,"children":1814},{},[1815],{"type":45,"tag":88,"props":1816,"children":1818},{"className":1817},[],[1819],{"type":51,"value":101},{"type":51,"value":1821}," — var names and descriptions (no values, but useful for ",{"type":45,"tag":88,"props":1823,"children":1825},{"className":1824},[],[1826],{"type":51,"value":1375},{"type":51,"value":1828}," entries)",{"type":45,"tag":206,"props":1830,"children":1832},{"id":1831},"filter-and-categorize",[1833],{"type":51,"value":1834},"Filter and categorize",{"type":45,"tag":54,"props":1836,"children":1837},{},[1838,1840,1844],{"type":51,"value":1839},"Remove auto-generated and Heroku-specific vars (see the full filter list in the ",{"type":45,"tag":174,"props":1841,"children":1842},{"href":743},[1843],{"type":51,"value":746},{"type":51,"value":1845},"):",{"type":45,"tag":466,"props":1847,"children":1848},{},[1849,1872,1897],{"type":45,"tag":76,"props":1850,"children":1851},{},[1852,1857,1858,1863,1864,1870],{"type":45,"tag":88,"props":1853,"children":1855},{"className":1854},[],[1856],{"type":51,"value":1348},{"type":51,"value":95},{"type":45,"tag":88,"props":1859,"children":1861},{"className":1860},[],[1862],{"type":51,"value":1362},{"type":51,"value":95},{"type":45,"tag":88,"props":1865,"children":1867},{"className":1866},[],[1868],{"type":51,"value":1869},"REDIS_TLS_URL",{"type":51,"value":1871}," (Render generates these)",{"type":45,"tag":76,"props":1873,"children":1874},{},[1875,1881,1883,1889,1890,1896],{"type":45,"tag":88,"props":1876,"children":1878},{"className":1877},[],[1879],{"type":51,"value":1880},"HEROKU_*",{"type":51,"value":1882}," vars (e.g., ",{"type":45,"tag":88,"props":1884,"children":1886},{"className":1885},[],[1887],{"type":51,"value":1888},"HEROKU_APP_NAME",{"type":51,"value":95},{"type":45,"tag":88,"props":1891,"children":1893},{"className":1892},[],[1894],{"type":51,"value":1895},"HEROKU_SLUG_COMMIT",{"type":51,"value":289},{"type":45,"tag":76,"props":1898,"children":1899},{},[1900,1902,1908,1909,1915],{"type":51,"value":1901},"Add-on connection strings (",{"type":45,"tag":88,"props":1903,"children":1905},{"className":1904},[],[1906],{"type":51,"value":1907},"PAPERTRAIL_*",{"type":51,"value":95},{"type":45,"tag":88,"props":1910,"children":1912},{"className":1911},[],[1913],{"type":51,"value":1914},"SENDGRID_*",{"type":51,"value":1916},", etc.)",{"type":45,"tag":54,"props":1918,"children":1919},{},[1920,1922,1927],{"type":51,"value":1921},"Present filtered list to user — ",{"type":45,"tag":80,"props":1923,"children":1924},{},[1925],{"type":51,"value":1926},"do not write without confirmation",{"type":51,"value":748},{"type":45,"tag":206,"props":1929,"children":1931},{"id":1930},"apply-vars",[1932],{"type":51,"value":1933},"Apply vars",{"type":45,"tag":54,"props":1935,"children":1936},{},[1937,1942,1944,1949,1951,1956],{"type":45,"tag":80,"props":1938,"children":1939},{},[1940],{"type":51,"value":1941},"Blueprint path (Step 3A):",{"type":51,"value":1943}," Env vars are already embedded in the ",{"type":45,"tag":88,"props":1945,"children":1947},{"className":1946},[],[1948],{"type":51,"value":1130},{"type":51,"value":1950}," on each service (non-secret values inline, secrets marked ",{"type":45,"tag":88,"props":1952,"children":1954},{"className":1953},[],[1955],{"type":51,"value":1375},{"type":51,"value":1957}," for the user to fill in during Blueprint apply). No separate MCP call is needed — skip to Step 5.",{"type":45,"tag":54,"props":1959,"children":1960},{},[1961,1966,1968,1974],{"type":45,"tag":80,"props":1962,"children":1963},{},[1964],{"type":51,"value":1965},"MCP path (Step 3B):",{"type":51,"value":1967}," Call Render ",{"type":45,"tag":88,"props":1969,"children":1971},{"className":1970},[],[1972],{"type":51,"value":1973},"update_environment_variables",{"type":51,"value":1975}," with confirmed vars (supports bulk set, merges by default).",{"type":45,"tag":194,"props":1977,"children":1979},{"id":1978},"step-5-data-migration",[1980],{"type":51,"value":1981},"Step 5: Data Migration",{"type":45,"tag":54,"props":1983,"children":1984},{},[1985,1987,1993],{"type":51,"value":1986},"Follow the ",{"type":45,"tag":174,"props":1988,"children":1990},{"href":1989},"references\u002Fdata-migration.md",[1991],{"type":51,"value":1992},"data migration guide",{"type":51,"value":1994}," to migrate Postgres and Redis data. The guide covers sub-steps 5a through 5e in detail. Summary of the flow:",{"type":45,"tag":72,"props":1996,"children":1997},{},[1998,2047,2065,2111,2129],{"type":45,"tag":76,"props":1999,"children":2000},{},[2001,2006,2008,2014,2015,2021,2023,2029,2031,2037,2039,2045],{"type":45,"tag":80,"props":2002,"children":2003},{},[2004],{"type":51,"value":2005},"Pre-migration checks",{"type":51,"value":2007}," — confirm Render resources are provisioned via ",{"type":45,"tag":88,"props":2009,"children":2011},{"className":2010},[],[2012],{"type":51,"value":2013},"list_postgres_instances()",{"type":51,"value":671},{"type":45,"tag":88,"props":2016,"children":2018},{"className":2017},[],[2019],{"type":51,"value":2020},"list_key_value()",{"type":51,"value":2022},", check source DB size, verify Render CLI (",{"type":45,"tag":88,"props":2024,"children":2026},{"className":2025},[],[2027],{"type":51,"value":2028},"render --version",{"type":51,"value":2030},"), ",{"type":45,"tag":88,"props":2032,"children":2034},{"className":2033},[],[2035],{"type":51,"value":2036},"pg_dump",{"type":51,"value":2038},", and ",{"type":45,"tag":88,"props":2040,"children":2042},{"className":2041},[],[2043],{"type":51,"value":2044},"pg_restore",{"type":51,"value":2046}," are installed",{"type":45,"tag":76,"props":2048,"children":2049},{},[2050,2055,2057,2063],{"type":45,"tag":80,"props":2051,"children":2052},{},[2053],{"type":51,"value":2054},"Gather connection strings",{"type":51,"value":2056}," — Heroku Postgres via ",{"type":45,"tag":88,"props":2058,"children":2060},{"className":2059},[],[2061],{"type":51,"value":2062},"pg_credentials",{"type":51,"value":2064}," (MCP) or user CLI paste. For Key Value, construct a Dashboard deeplink from the ID.",{"type":45,"tag":76,"props":2066,"children":2067},{},[2068,2073,2075,2080,2082,2088,2090,2095,2096,2102,2104,2109],{"type":45,"tag":80,"props":2069,"children":2070},{},[2071],{"type":51,"value":2072},"Postgres migration",{"type":51,"value":2074}," — two approaches based on size: ",{"type":45,"tag":80,"props":2076,"children":2077},{},[2078],{"type":51,"value":2079},"under 2 GB",{"type":51,"value":2081}," uses ",{"type":45,"tag":88,"props":2083,"children":2085},{"className":2084},[],[2086],{"type":51,"value":2087},"render psql",{"type":51,"value":2089}," (no Render connection string needed); ",{"type":45,"tag":80,"props":2091,"children":2092},{},[2093],{"type":51,"value":2094},"2-50 GB",{"type":51,"value":2081},{"type":45,"tag":88,"props":2097,"children":2099},{"className":2098},[],[2100],{"type":51,"value":2101},"pg_dump -Fc",{"type":51,"value":2103}," + ",{"type":45,"tag":88,"props":2105,"children":2107},{"className":2106},[],[2108],{"type":51,"value":2044},{"type":51,"value":2110}," with external connection string from Dashboard (faster, compressed, parallel restore).",{"type":45,"tag":76,"props":2112,"children":2113},{},[2114,2119,2121,2127],{"type":45,"tag":80,"props":2115,"children":2116},{},[2117],{"type":51,"value":2118},"Key Value \u002F Redis",{"type":51,"value":2120}," — usually skip (ephemeral cache). If persistent data, use ",{"type":45,"tag":88,"props":2122,"children":2124},{"className":2123},[],[2125],{"type":51,"value":2126},"redis-cli",{"type":51,"value":2128}," dump\u002Frestore with Dashboard-provided Render URL.",{"type":45,"tag":76,"props":2130,"children":2131},{},[2132,2137,2139,2145],{"type":45,"tag":80,"props":2133,"children":2134},{},[2135],{"type":51,"value":2136},"Data validation",{"type":51,"value":2138}," — verify schema and row counts via ",{"type":45,"tag":88,"props":2140,"children":2142},{"className":2141},[],[2143],{"type":51,"value":2144},"query_render_postgres",{"type":51,"value":2146},", compare against Heroku source if MCP is available.",{"type":45,"tag":194,"props":2148,"children":2150},{"id":2149},"step-6-verify-migration",[2151],{"type":51,"value":2152},"Step 6: Verify Migration",{"type":45,"tag":54,"props":2154,"children":2155},{},[2156],{"type":51,"value":2157},"After user confirms database migration is complete, run through each check in order. Stop at the first failure, fix it, and redeploy before continuing.",{"type":45,"tag":206,"props":2159,"children":2161},{"id":2160},"_1-confirm-deploy-status",[2162],{"type":51,"value":2163},"1. Confirm deploy status",{"type":45,"tag":944,"props":2165,"children":2168},{"className":2166,"code":2167,"language":51},[947],"list_deploys(serviceId: \"\u003Cservice-id>\", limit: 1)\n",[2169],{"type":45,"tag":88,"props":2170,"children":2171},{"__ignoreMap":952},[2172],{"type":51,"value":2167},{"type":45,"tag":54,"props":2174,"children":2175},{},[2176,2178,2184,2186,2192],{"type":51,"value":2177},"Expect ",{"type":45,"tag":88,"props":2179,"children":2181},{"className":2180},[],[2182],{"type":51,"value":2183},"status: \"live\"",{"type":51,"value":2185},". If status is ",{"type":45,"tag":88,"props":2187,"children":2189},{"className":2188},[],[2190],{"type":51,"value":2191},"failed",{"type":51,"value":2193},", inspect build and runtime logs immediately.",{"type":45,"tag":206,"props":2195,"children":2197},{"id":2196},"_2-verify-service-health",[2198],{"type":51,"value":2199},"2. Verify service health",{"type":45,"tag":54,"props":2201,"children":2202},{},[2203,2205,2210,2212,2218,2220,2226],{"type":51,"value":2204},"Hit the health endpoint (or ",{"type":45,"tag":88,"props":2206,"children":2208},{"className":2207},[],[2209],{"type":51,"value":1175},{"type":51,"value":2211},") and confirm a 200 response. If there is no health endpoint, verify the app binds to ",{"type":45,"tag":88,"props":2213,"children":2215},{"className":2214},[],[2216],{"type":51,"value":2217},"0.0.0.0:$PORT",{"type":51,"value":2219}," (not ",{"type":45,"tag":88,"props":2221,"children":2223},{"className":2222},[],[2224],{"type":51,"value":2225},"localhost",{"type":51,"value":817},{"type":45,"tag":206,"props":2228,"children":2230},{"id":2229},"_3-scan-error-logs",[2231],{"type":51,"value":2232},"3. Scan error logs",{"type":45,"tag":944,"props":2234,"children":2237},{"className":2235,"code":2236,"language":51},[947],"list_logs(resource: [\"\u003Cservice-id>\"], level: [\"error\"], limit: 50)\n",[2238],{"type":45,"tag":88,"props":2239,"children":2240},{"__ignoreMap":952},[2241],{"type":51,"value":2236},{"type":45,"tag":54,"props":2243,"children":2244},{},[2245],{"type":51,"value":2246},"Look for clear failure signatures: missing env vars, connection refused, module not found, port binding errors.",{"type":45,"tag":206,"props":2248,"children":2250},{"id":2249},"_4-verify-env-vars-and-port-binding",[2251],{"type":51,"value":2252},"4. Verify env vars and port binding",{"type":45,"tag":54,"props":2254,"children":2255},{},[2256,2258,2263,2265,2270],{"type":51,"value":2257},"Confirm all required env vars are set — especially secrets marked ",{"type":45,"tag":88,"props":2259,"children":2261},{"className":2260},[],[2262],{"type":51,"value":1375},{"type":51,"value":2264}," during Blueprint apply. Ensure the app binds to ",{"type":45,"tag":88,"props":2266,"children":2268},{"className":2267},[],[2269],{"type":51,"value":2217},{"type":51,"value":748},{"type":45,"tag":206,"props":2272,"children":2274},{"id":2273},"_5-check-resource-metrics",[2275],{"type":51,"value":2276},"5. Check resource metrics",{"type":45,"tag":944,"props":2278,"children":2281},{"className":2279,"code":2280,"language":51},[947],"get_metrics(\n  resourceId: \"\u003Cservice-id>\",\n  metricTypes: [\"http_request_count\", \"cpu_usage\", \"memory_usage\"]\n)\n",[2282],{"type":45,"tag":88,"props":2283,"children":2284},{"__ignoreMap":952},[2285],{"type":51,"value":2280},{"type":45,"tag":54,"props":2287,"children":2288},{},[2289],{"type":51,"value":2290},"Verify CPU and memory are within expected ranges for the selected plan.",{"type":45,"tag":206,"props":2292,"children":2294},{"id":2293},"_6-confirm-database-connectivity",[2295],{"type":51,"value":2296},"6. Confirm database connectivity",{"type":45,"tag":944,"props":2298,"children":2301},{"className":2299,"code":2300,"language":51},[947],"query_render_postgres(postgresId: \"\u003Cpostgres-id>\", sql: \"SELECT count(*) FROM \u003Ckey_table>\")\n",[2302],{"type":45,"tag":88,"props":2303,"children":2304},{"__ignoreMap":952},[2305],{"type":51,"value":2300},{"type":45,"tag":54,"props":2307,"children":2308},{},[2309],{"type":51,"value":2310},"Run a read-only query on a key table to confirm data was restored correctly. Compare row counts against the Heroku source if possible.",{"type":45,"tag":54,"props":2312,"children":2313},{},[2314],{"type":51,"value":2315},"Present a health summary after all checks pass.",{"type":45,"tag":194,"props":2317,"children":2319},{"id":2318},"step-7-dns-cutover-manual",[2320],{"type":51,"value":2321},"Step 7: DNS Cutover (Manual)",{"type":45,"tag":54,"props":2323,"children":2324},{},[2325],{"type":51,"value":2326},"Instruct user to:",{"type":45,"tag":72,"props":2328,"children":2329},{},[2330,2341,2346],{"type":45,"tag":76,"props":2331,"children":2332},{},[2333,2335],{"type":51,"value":2334},"Add CNAME pointing domain to ",{"type":45,"tag":88,"props":2336,"children":2338},{"className":2337},[],[2339],{"type":51,"value":2340},"[service-name].onrender.com",{"type":45,"tag":76,"props":2342,"children":2343},{},[2344],{"type":51,"value":2345},"Remove\u002Fupdate old Heroku DNS entries",{"type":45,"tag":76,"props":2347,"children":2348},{},[2349],{"type":51,"value":2350},"Wait for propagation",{"type":45,"tag":60,"props":2352,"children":2354},{"id":2353},"rollback-plan",[2355],{"type":51,"value":2356},"Rollback Plan",{"type":45,"tag":54,"props":2358,"children":2359},{},[2360],{"type":51,"value":2361},"If the migration fails at any point:",{"type":45,"tag":466,"props":2363,"children":2364},{},[2365,2375,2400,2418],{"type":45,"tag":76,"props":2366,"children":2367},{},[2368,2373],{"type":45,"tag":80,"props":2369,"children":2370},{},[2371],{"type":51,"value":2372},"Services created but not working",{"type":51,"value":2374},": Services can be deleted from the Render dashboard (MCP server intentionally does not support deletion). Heroku app is untouched until maintenance mode is enabled.",{"type":45,"tag":76,"props":2376,"children":2377},{},[2378,2383,2385,2390,2392,2398],{"type":45,"tag":80,"props":2379,"children":2380},{},[2381],{"type":51,"value":2382},"Env vars wrong",{"type":51,"value":2384},": Call ",{"type":45,"tag":88,"props":2386,"children":2388},{"className":2387},[],[2389],{"type":51,"value":1973},{"type":51,"value":2391}," with ",{"type":45,"tag":88,"props":2393,"children":2395},{"className":2394},[],[2396],{"type":51,"value":2397},"replace: true",{"type":51,"value":2399}," to overwrite, or fix individual vars.",{"type":45,"tag":76,"props":2401,"children":2402},{},[2403,2408,2410,2416],{"type":45,"tag":80,"props":2404,"children":2405},{},[2406],{"type":51,"value":2407},"Database migration failed",{"type":51,"value":2409},": Render Postgres can be deleted and recreated. Heroku database is read-only during dump (no data loss). If ",{"type":45,"tag":88,"props":2411,"children":2413},{"className":2412},[],[2414],{"type":51,"value":2415},"maintenance_off",{"type":51,"value":2417}," is called on Heroku, the original app is fully operational again.",{"type":45,"tag":76,"props":2419,"children":2420},{},[2421,2426],{"type":45,"tag":80,"props":2422,"children":2423},{},[2424],{"type":51,"value":2425},"DNS already changed",{"type":51,"value":2427},": Revert CNAME to Heroku and disable maintenance mode on Heroku.",{"type":45,"tag":54,"props":2429,"children":2430},{},[2431,2433,2438],{"type":51,"value":2432},"Key principle: ",{"type":45,"tag":80,"props":2434,"children":2435},{},[2436],{"type":51,"value":2437},"Heroku stays fully functional until the user explicitly cuts over DNS.",{"type":51,"value":2439}," The migration is additive until that final step.",{"type":45,"tag":60,"props":2441,"children":2443},{"id":2442},"error-handling",[2444],{"type":51,"value":2445},"Error Handling",{"type":45,"tag":466,"props":2447,"children":2448},{},[2449,2454,2459,2478],{"type":45,"tag":76,"props":2450,"children":2451},{},[2452],{"type":51,"value":2453},"Service creation fails: show error, suggest fixes (invalid plan, bad repo URL)",{"type":45,"tag":76,"props":2455,"children":2456},{},[2457],{"type":51,"value":2458},"Env var migration partially fails: show which succeeded\u002Ffailed",{"type":45,"tag":76,"props":2460,"children":2461},{},[2462,2464,2470,2472],{"type":51,"value":2463},"Heroku auth errors: instruct ",{"type":45,"tag":88,"props":2465,"children":2467},{"className":2466},[],[2468],{"type":51,"value":2469},"heroku login",{"type":51,"value":2471}," or check ",{"type":45,"tag":88,"props":2473,"children":2475},{"className":2474},[],[2476],{"type":51,"value":2477},"HEROKU_API_KEY",{"type":45,"tag":76,"props":2479,"children":2480},{},[2481],{"type":51,"value":2482},"Render auth errors: check Render API key in MCP config",{"type":45,"tag":2484,"props":2485,"children":2486},"style",{},[2487],{"type":51,"value":2488},"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":2490,"total":2612},[2491,2510,2526,2538,2558,2580,2600],{"slug":2492,"name":2492,"fn":2493,"description":2494,"org":2495,"tags":2496,"stars":25,"repoUrl":26,"updatedAt":2509},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2497,2500,2503,2506],{"name":2498,"slug":2499,"type":15},"Accessibility","accessibility",{"name":2501,"slug":2502,"type":15},"Charts","charts",{"name":2504,"slug":2505,"type":15},"Data Visualization","data-visualization",{"name":2507,"slug":2508,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":2511,"name":2511,"fn":2512,"description":2513,"org":2514,"tags":2515,"stars":25,"repoUrl":26,"updatedAt":2525},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2516,2519,2522],{"name":2517,"slug":2518,"type":15},"Agents","agents",{"name":2520,"slug":2521,"type":15},"Browser Automation","browser-automation",{"name":2523,"slug":2524,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2527,"name":2527,"fn":2528,"description":2529,"org":2530,"tags":2531,"stars":25,"repoUrl":26,"updatedAt":2537},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2532,2533,2536],{"name":2520,"slug":2521,"type":15},{"name":2534,"slug":2535,"type":15},"Local Development","local-development",{"name":2523,"slug":2524,"type":15},"2026-04-06T18:41:17.526867",{"slug":2539,"name":2539,"fn":2540,"description":2541,"org":2542,"tags":2543,"stars":25,"repoUrl":26,"updatedAt":2557},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2544,2545,2548,2551,2554],{"name":2517,"slug":2518,"type":15},{"name":2546,"slug":2547,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2549,"slug":2550,"type":15},"SDK","sdk",{"name":2552,"slug":2553,"type":15},"Serverless","serverless",{"name":2555,"slug":2556,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2559,"name":2559,"fn":2560,"description":2561,"org":2562,"tags":2563,"stars":25,"repoUrl":26,"updatedAt":2579},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2564,2567,2570,2573,2576],{"name":2565,"slug":2566,"type":15},"Frontend","frontend",{"name":2568,"slug":2569,"type":15},"React","react",{"name":2571,"slug":2572,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2574,"slug":2575,"type":15},"UI Components","ui-components",{"name":2577,"slug":2578,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2581,"name":2581,"fn":2582,"description":2583,"org":2584,"tags":2585,"stars":25,"repoUrl":26,"updatedAt":2599},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2586,2589,2592,2595,2598],{"name":2587,"slug":2588,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2590,"slug":2591,"type":15},"Cost Optimization","cost-optimization",{"name":2593,"slug":2594,"type":15},"LLM","llm",{"name":2596,"slug":2597,"type":15},"Performance","performance",{"name":2577,"slug":2578,"type":15},"2026-04-06T18:40:44.377464",{"slug":2601,"name":2601,"fn":2602,"description":2603,"org":2604,"tags":2605,"stars":25,"repoUrl":26,"updatedAt":2611},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2606,2607,2610],{"name":2590,"slug":2591,"type":15},{"name":2608,"slug":2609,"type":15},"Database","database",{"name":2593,"slug":2594,"type":15},"2026-04-06T18:41:08.513425",600,{"items":2614,"total":2809},[2615,2636,2659,2676,2692,2707,2726,2738,2752,2766,2778,2793],{"slug":2616,"name":2616,"fn":2617,"description":2618,"org":2619,"tags":2620,"stars":2633,"repoUrl":2634,"updatedAt":2635},"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},[2621,2624,2627,2630],{"name":2622,"slug":2623,"type":15},"Documents","documents",{"name":2625,"slug":2626,"type":15},"Healthcare","healthcare",{"name":2628,"slug":2629,"type":15},"Insurance","insurance",{"name":2631,"slug":2632,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2637,"name":2637,"fn":2638,"description":2639,"org":2640,"tags":2641,"stars":2656,"repoUrl":2657,"updatedAt":2658},"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},[2642,2645,2647,2650,2653],{"name":2643,"slug":2644,"type":15},".NET","dotnet",{"name":2646,"slug":2637,"type":15},"ASP.NET Core",{"name":2648,"slug":2649,"type":15},"Blazor","blazor",{"name":2651,"slug":2652,"type":15},"C#","csharp",{"name":2654,"slug":2655,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2660,"name":2660,"fn":2661,"description":2662,"org":2663,"tags":2664,"stars":2656,"repoUrl":2657,"updatedAt":2675},"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},[2665,2668,2671,2674],{"name":2666,"slug":2667,"type":15},"Apps SDK","apps-sdk",{"name":2669,"slug":2670,"type":15},"ChatGPT","chatgpt",{"name":2672,"slug":2673,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2677,"name":2677,"fn":2678,"description":2679,"org":2680,"tags":2681,"stars":2656,"repoUrl":2657,"updatedAt":2691},"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},[2682,2685,2688],{"name":2683,"slug":2684,"type":15},"API Development","api-development",{"name":2686,"slug":2687,"type":15},"CLI","cli",{"name":2689,"slug":2690,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2693,"name":2693,"fn":2694,"description":2695,"org":2696,"tags":2697,"stars":2656,"repoUrl":2657,"updatedAt":2706},"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},[2698,2701,2704,2705],{"name":2699,"slug":2700,"type":15},"Cloudflare","cloudflare",{"name":2702,"slug":2703,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2546,"slug":2547,"type":15},{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":2708,"name":2708,"fn":2709,"description":2710,"org":2711,"tags":2712,"stars":2656,"repoUrl":2657,"updatedAt":2725},"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},[2713,2716,2719,2722],{"name":2714,"slug":2715,"type":15},"Productivity","productivity",{"name":2717,"slug":2718,"type":15},"Project Management","project-management",{"name":2720,"slug":2721,"type":15},"Strategy","strategy",{"name":2723,"slug":2724,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2727,"name":2727,"fn":2728,"description":2729,"org":2730,"tags":2731,"stars":2656,"repoUrl":2657,"updatedAt":2737},"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},[2732,2733,2735,2736],{"name":2507,"slug":2508,"type":15},{"name":2734,"slug":2727,"type":15},"Figma",{"name":2565,"slug":2566,"type":15},{"name":2672,"slug":2673,"type":15},"2026-04-12T05:06:47.939943",{"slug":2739,"name":2739,"fn":2740,"description":2741,"org":2742,"tags":2743,"stars":2656,"repoUrl":2657,"updatedAt":2751},"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},[2744,2745,2748,2749,2750],{"name":2507,"slug":2508,"type":15},{"name":2746,"slug":2747,"type":15},"Design System","design-system",{"name":2734,"slug":2727,"type":15},{"name":2565,"slug":2566,"type":15},{"name":2574,"slug":2575,"type":15},"2026-05-10T05:59:52.971881",{"slug":2753,"name":2753,"fn":2754,"description":2755,"org":2756,"tags":2757,"stars":2656,"repoUrl":2657,"updatedAt":2765},"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},[2758,2759,2760,2763,2764],{"name":2507,"slug":2508,"type":15},{"name":2746,"slug":2747,"type":15},{"name":2761,"slug":2762,"type":15},"Documentation","documentation",{"name":2734,"slug":2727,"type":15},{"name":2565,"slug":2566,"type":15},"2026-05-16T06:07:47.821474",{"slug":2767,"name":2767,"fn":2768,"description":2769,"org":2770,"tags":2771,"stars":2656,"repoUrl":2657,"updatedAt":2777},"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},[2772,2773,2774,2775,2776],{"name":2507,"slug":2508,"type":15},{"name":2734,"slug":2727,"type":15},{"name":2565,"slug":2566,"type":15},{"name":2574,"slug":2575,"type":15},{"name":2654,"slug":2655,"type":15},"2026-05-16T06:07:40.583615",{"slug":2779,"name":2779,"fn":2780,"description":2781,"org":2782,"tags":2783,"stars":2656,"repoUrl":2657,"updatedAt":2792},"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},[2784,2787,2788,2791],{"name":2785,"slug":2786,"type":15},"Animation","animation",{"name":2689,"slug":2690,"type":15},{"name":2789,"slug":2790,"type":15},"Creative","creative",{"name":2507,"slug":2508,"type":15},"2026-05-02T05:31:48.48485",{"slug":2794,"name":2794,"fn":2795,"description":2796,"org":2797,"tags":2798,"stars":2656,"repoUrl":2657,"updatedAt":2808},"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},[2799,2800,2801,2804,2807],{"name":2789,"slug":2790,"type":15},{"name":2507,"slug":2508,"type":15},{"name":2802,"slug":2803,"type":15},"Image Generation","image-generation",{"name":2805,"slug":2806,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]