[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-cli":3,"mdc-9cjbpk-key":36,"related-org-openai-render-cli":1829,"related-repo-openai-render-cli":2032},{"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-cli","manage Render deployments via CLI","Installs and uses the Render CLI for deploys, logs, SSH, psql, Blueprint validation, and automation. Use when the user needs to run Render CLI commands, script deploys in CI\u002FCD, authenticate with an API key, query services non-interactively, or troubleshoot CLI auth issues. Trigger terms: render CLI, render login, render deploys, render logs, render ssh, render psql, render blueprints validate, render skills, RENDER_API_KEY, non-interactive, CI\u002FCD deploy.",{"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},"CLI","cli",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"CI\u002FCD","ci-cd",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102","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-cli","---\nname: render-cli\ndescription: >-\n  Installs and uses the Render CLI for deploys, logs, SSH, psql, Blueprint\n  validation, and automation. Use when the user needs to run Render CLI\n  commands, script deploys in CI\u002FCD, authenticate with an API key, query\n  services non-interactively, or troubleshoot CLI auth issues.\n  Trigger terms: render CLI, render login, render deploys, render logs,\n  render ssh, render psql, render blueprints validate, render skills,\n  RENDER_API_KEY, non-interactive, CI\u002FCD deploy.\nlicense: MIT\ncompatibility: Render CLI v2.7.0+ (Homebrew, Linux\u002FmacOS, direct download)\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: operations\n---\n\n# Render CLI\n\nThe Render CLI manages services, databases, and deployments from the terminal. Supports interactive use, non-interactive scripting, and CI\u002FCD automation.\n\n## When to Use\n\n- **Deploying** a service from the terminal or CI\u002FCD\n- **Tailing logs** in real time\n- **Opening psql** to a Render Postgres database\n- **SSHing** into a running service or launching an ephemeral shell\n- **Validating** a `render.yaml` Blueprint\n- **Scripting** Render operations in CI\u002FCD pipelines\n- **Installing** agent skills for AI coding tools\n\n## Installation\n\n| Method | Command |\n|--------|---------|\n| **Homebrew** | `brew update && brew install render` |\n| **Linux\u002FmacOS** | `curl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Frender-oss\u002Fcli\u002Frefs\u002Fheads\u002Fmain\u002Fbin\u002Finstall.sh \\| sh` |\n| **Direct download** | [GitHub releases](https:\u002F\u002Fgithub.com\u002Frender-oss\u002Fcli\u002Freleases\u002F) |\n| **Build from source** | `git clone git@github.com:render-oss\u002Fcli.git && cd cli && go build -o render` |\n\nAfter install, run `render` with no arguments to confirm.\n\n## Authentication\n\n### Interactive (local dev)\n\n```bash\nrender login\n```\n\nOpens the browser to generate a CLI token. Token is saved to `~\u002F.render\u002Fcli.yaml`. Tokens expire periodically—re-run `render login` when prompted.\n\n### Non-interactive (CI\u002FCD)\n\n```bash\nexport RENDER_API_KEY=rnd_...\n```\n\nAPI keys do not expire. Generate one from **Account Settings > API Keys** in the Dashboard. The API key takes precedence over CLI tokens when set.\n\nSet the active workspace:\n\n```bash\nrender workspace set\n```\n\n## Command Reference\n\n### Core commands\n\n| Command | Purpose | Key flags |\n|---------|---------|-----------|\n| `render login` | Authenticate via browser | — |\n| `render workspace set` | Set active workspace | — |\n| `render services` | List all services and datastores | `-o json` for scripting |\n| `render deploys create [SVC]` | Trigger a deploy | `--wait`, `--commit SHA`, `--image URL` |\n| `render deploys list [SVC]` | List deploys for a service | `-o json` |\n| `render logs -r [SVC]` | View logs | `--tail` for streaming |\n| `render psql [DB]` | Open psql session | `-c \"SQL\"`, `-o json`, `-- --csv` |\n| `render ssh [SVC]` | SSH into running instance | `--ephemeral` \u002F `-e` for isolated shell |\n| `render blueprints validate` | Validate `render.yaml` | Defaults to `.\u002Frender.yaml` |\n| `render skills [install\\|update\\|list]` | Manage agent skills | — |\n| `render workspaces` | List workspaces | `-o json` |\n\n### Non-interactive mode\n\nFor CI\u002FCD and scripts, always set:\n\n| Flag | Purpose |\n|------|---------|\n| `-o json` (or `yaml`, `text`) | Machine-readable output |\n| `--confirm` | Skip confirmation prompts |\n\nOutput format precedence: `--output` flag > `RENDER_OUTPUT` env var > auto-detect (TTY → interactive, pipe → text).\n\n```bash\nexport RENDER_OUTPUT=json\nrender services --confirm\n```\n\n### Deploy patterns\n\n```bash\n# Deploy and wait for completion (exits non-zero on failure)\nrender deploys create srv-xxx --wait --confirm -o json\n\n# Deploy a specific commit\nrender deploys create srv-xxx --commit abc123 --wait --confirm\n\n# Deploy a specific Docker image\nrender deploys create srv-xxx --image ghcr.io\u002Forg\u002Fapp:v1.2.3 --wait --confirm\n```\n\n### Database queries\n\n```bash\n# Single query, JSON output\nrender psql db-xxx -c \"SELECT NOW();\" -o json\n\n# CSV output via psql passthrough\nrender psql db-xxx -c \"SELECT id, email FROM users;\" -o text -- --csv\n```\n\n## CI\u002FCD Example (GitHub Actions)\n\n```yaml\nname: Deploy to Render\non:\n  push:\n    branches: [main]\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Install Render CLI\n        run: |\n          curl -L https:\u002F\u002Fgithub.com\u002Frender-oss\u002Fcli\u002Freleases\u002Fdownload\u002Fv1.1.0\u002Fcli_1.1.0_linux_amd64.zip -o render.zip\n          unzip render.zip\n          sudo mv cli_v1.1.0 \u002Fusr\u002Flocal\u002Fbin\u002Frender\n      - name: Deploy\n        env:\n          RENDER_API_KEY: ${{ secrets.RENDER_API_KEY }}\n        run: render deploys create ${{ secrets.RENDER_SERVICE_ID }} --wait --confirm -o json\n```\n\nPin to a specific CLI version in CI to avoid breaking changes.\n\n## Local Config\n\nConfig file: `~\u002F.render\u002Fcli.yaml`\n\nOverride with `RENDER_CLI_CONFIG_PATH` env var.\n\n## Common Mistakes\n\n| Mistake | Fix |\n|---------|-----|\n| Token expired | Re-run `render login` |\n| Wrong workspace | Run `render workspace set` to switch |\n| Missing `--confirm` in CI | Add `--confirm` to skip interactive prompts |\n| Using `--output interactive` in CI | Use `-o json` or `-o text` in non-TTY environments |\n| Deploying without `--wait` in CI | Add `--wait` so the job fails on deploy failure |\n\n## References\n\n| Document | Contents |\n|----------|----------|\n| `references\u002Fcommand-cheatsheet.md` | Full command list with flags, output examples, and scripting patterns |\n\n## Related Skills\n\n- **render-deploy** — End-to-end deploy flows, MCP operations, Dashboard deeplinks\n- **render-blueprints** — `render.yaml` authoring and validation\n- **render-postgres** — Database connections, `render psql` usage\n- **render-debug** — Using `render logs` and `render ssh` for troubleshooting\n",{"data":37,"body":42},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Render CLI v2.7.0+ (Homebrew, Linux\u002FmacOS, direct download)",{"author":13,"version":40,"category":41},"1.0.0","operations",{"type":43,"children":44},"root",[45,53,59,66,151,157,268,280,286,293,321,342,348,381,393,398,422,428,434,778,784,789,859,880,926,932,1102,1108,1234,1240,1511,1516,1522,1532,1545,1551,1698,1704,1743,1749,1823],{"type":46,"tag":47,"props":48,"children":49},"element","h1",{"id":4},[50],{"type":51,"value":52},"text","Render CLI",{"type":46,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"The Render CLI manages services, databases, and deployments from the terminal. Supports interactive use, non-interactive scripting, and CI\u002FCD automation.",{"type":46,"tag":60,"props":61,"children":63},"h2",{"id":62},"when-to-use",[64],{"type":51,"value":65},"When to Use",{"type":46,"tag":67,"props":68,"children":69},"ul",{},[70,82,92,102,112,131,141],{"type":46,"tag":71,"props":72,"children":73},"li",{},[74,80],{"type":46,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":51,"value":79},"Deploying",{"type":51,"value":81}," a service from the terminal or CI\u002FCD",{"type":46,"tag":71,"props":83,"children":84},{},[85,90],{"type":46,"tag":75,"props":86,"children":87},{},[88],{"type":51,"value":89},"Tailing logs",{"type":51,"value":91}," in real time",{"type":46,"tag":71,"props":93,"children":94},{},[95,100],{"type":46,"tag":75,"props":96,"children":97},{},[98],{"type":51,"value":99},"Opening psql",{"type":51,"value":101}," to a Render Postgres database",{"type":46,"tag":71,"props":103,"children":104},{},[105,110],{"type":46,"tag":75,"props":106,"children":107},{},[108],{"type":51,"value":109},"SSHing",{"type":51,"value":111}," into a running service or launching an ephemeral shell",{"type":46,"tag":71,"props":113,"children":114},{},[115,120,122,129],{"type":46,"tag":75,"props":116,"children":117},{},[118],{"type":51,"value":119},"Validating",{"type":51,"value":121}," a ",{"type":46,"tag":123,"props":124,"children":126},"code",{"className":125},[],[127],{"type":51,"value":128},"render.yaml",{"type":51,"value":130}," Blueprint",{"type":46,"tag":71,"props":132,"children":133},{},[134,139],{"type":46,"tag":75,"props":135,"children":136},{},[137],{"type":51,"value":138},"Scripting",{"type":51,"value":140}," Render operations in CI\u002FCD pipelines",{"type":46,"tag":71,"props":142,"children":143},{},[144,149],{"type":46,"tag":75,"props":145,"children":146},{},[147],{"type":51,"value":148},"Installing",{"type":51,"value":150}," agent skills for AI coding tools",{"type":46,"tag":60,"props":152,"children":154},{"id":153},"installation",[155],{"type":51,"value":156},"Installation",{"type":46,"tag":158,"props":159,"children":160},"table",{},[161,180],{"type":46,"tag":162,"props":163,"children":164},"thead",{},[165],{"type":46,"tag":166,"props":167,"children":168},"tr",{},[169,175],{"type":46,"tag":170,"props":171,"children":172},"th",{},[173],{"type":51,"value":174},"Method",{"type":46,"tag":170,"props":176,"children":177},{},[178],{"type":51,"value":179},"Command",{"type":46,"tag":181,"props":182,"children":183},"tbody",{},[184,205,225,248],{"type":46,"tag":166,"props":185,"children":186},{},[187,196],{"type":46,"tag":188,"props":189,"children":190},"td",{},[191],{"type":46,"tag":75,"props":192,"children":193},{},[194],{"type":51,"value":195},"Homebrew",{"type":46,"tag":188,"props":197,"children":198},{},[199],{"type":46,"tag":123,"props":200,"children":202},{"className":201},[],[203],{"type":51,"value":204},"brew update && brew install render",{"type":46,"tag":166,"props":206,"children":207},{},[208,216],{"type":46,"tag":188,"props":209,"children":210},{},[211],{"type":46,"tag":75,"props":212,"children":213},{},[214],{"type":51,"value":215},"Linux\u002FmacOS",{"type":46,"tag":188,"props":217,"children":218},{},[219],{"type":46,"tag":123,"props":220,"children":222},{"className":221},[],[223],{"type":51,"value":224},"curl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Frender-oss\u002Fcli\u002Frefs\u002Fheads\u002Fmain\u002Fbin\u002Finstall.sh | sh",{"type":46,"tag":166,"props":226,"children":227},{},[228,236],{"type":46,"tag":188,"props":229,"children":230},{},[231],{"type":46,"tag":75,"props":232,"children":233},{},[234],{"type":51,"value":235},"Direct download",{"type":46,"tag":188,"props":237,"children":238},{},[239],{"type":46,"tag":240,"props":241,"children":245},"a",{"href":242,"rel":243},"https:\u002F\u002Fgithub.com\u002Frender-oss\u002Fcli\u002Freleases\u002F",[244],"nofollow",[246],{"type":51,"value":247},"GitHub releases",{"type":46,"tag":166,"props":249,"children":250},{},[251,259],{"type":46,"tag":188,"props":252,"children":253},{},[254],{"type":46,"tag":75,"props":255,"children":256},{},[257],{"type":51,"value":258},"Build from source",{"type":46,"tag":188,"props":260,"children":261},{},[262],{"type":46,"tag":123,"props":263,"children":265},{"className":264},[],[266],{"type":51,"value":267},"git clone git@github.com:render-oss\u002Fcli.git && cd cli && go build -o render",{"type":46,"tag":54,"props":269,"children":270},{},[271,273,278],{"type":51,"value":272},"After install, run ",{"type":46,"tag":123,"props":274,"children":276},{"className":275},[],[277],{"type":51,"value":14},{"type":51,"value":279}," with no arguments to confirm.",{"type":46,"tag":60,"props":281,"children":283},{"id":282},"authentication",[284],{"type":51,"value":285},"Authentication",{"type":46,"tag":287,"props":288,"children":290},"h3",{"id":289},"interactive-local-dev",[291],{"type":51,"value":292},"Interactive (local dev)",{"type":46,"tag":294,"props":295,"children":300},"pre",{"className":296,"code":297,"language":298,"meta":299,"style":299},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","render login\n","bash","",[301],{"type":46,"tag":123,"props":302,"children":303},{"__ignoreMap":299},[304],{"type":46,"tag":305,"props":306,"children":309},"span",{"class":307,"line":308},"line",1,[310,315],{"type":46,"tag":305,"props":311,"children":313},{"style":312},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[314],{"type":51,"value":14},{"type":46,"tag":305,"props":316,"children":318},{"style":317},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[319],{"type":51,"value":320}," login\n",{"type":46,"tag":54,"props":322,"children":323},{},[324,326,332,334,340],{"type":51,"value":325},"Opens the browser to generate a CLI token. Token is saved to ",{"type":46,"tag":123,"props":327,"children":329},{"className":328},[],[330],{"type":51,"value":331},"~\u002F.render\u002Fcli.yaml",{"type":51,"value":333},". Tokens expire periodically—re-run ",{"type":46,"tag":123,"props":335,"children":337},{"className":336},[],[338],{"type":51,"value":339},"render login",{"type":51,"value":341}," when prompted.",{"type":46,"tag":287,"props":343,"children":345},{"id":344},"non-interactive-cicd",[346],{"type":51,"value":347},"Non-interactive (CI\u002FCD)",{"type":46,"tag":294,"props":349,"children":351},{"className":296,"code":350,"language":298,"meta":299,"style":299},"export RENDER_API_KEY=rnd_...\n",[352],{"type":46,"tag":123,"props":353,"children":354},{"__ignoreMap":299},[355],{"type":46,"tag":305,"props":356,"children":357},{"class":307,"line":308},[358,364,370,376],{"type":46,"tag":305,"props":359,"children":361},{"style":360},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[362],{"type":51,"value":363},"export",{"type":46,"tag":305,"props":365,"children":367},{"style":366},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[368],{"type":51,"value":369}," RENDER_API_KEY",{"type":46,"tag":305,"props":371,"children":373},{"style":372},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[374],{"type":51,"value":375},"=",{"type":46,"tag":305,"props":377,"children":378},{"style":366},[379],{"type":51,"value":380},"rnd_...\n",{"type":46,"tag":54,"props":382,"children":383},{},[384,386,391],{"type":51,"value":385},"API keys do not expire. Generate one from ",{"type":46,"tag":75,"props":387,"children":388},{},[389],{"type":51,"value":390},"Account Settings > API Keys",{"type":51,"value":392}," in the Dashboard. The API key takes precedence over CLI tokens when set.",{"type":46,"tag":54,"props":394,"children":395},{},[396],{"type":51,"value":397},"Set the active workspace:",{"type":46,"tag":294,"props":399,"children":401},{"className":296,"code":400,"language":298,"meta":299,"style":299},"render workspace set\n",[402],{"type":46,"tag":123,"props":403,"children":404},{"__ignoreMap":299},[405],{"type":46,"tag":305,"props":406,"children":407},{"class":307,"line":308},[408,412,417],{"type":46,"tag":305,"props":409,"children":410},{"style":312},[411],{"type":51,"value":14},{"type":46,"tag":305,"props":413,"children":414},{"style":317},[415],{"type":51,"value":416}," workspace",{"type":46,"tag":305,"props":418,"children":419},{"style":317},[420],{"type":51,"value":421}," set\n",{"type":46,"tag":60,"props":423,"children":425},{"id":424},"command-reference",[426],{"type":51,"value":427},"Command Reference",{"type":46,"tag":287,"props":429,"children":431},{"id":430},"core-commands",[432],{"type":51,"value":433},"Core commands",{"type":46,"tag":158,"props":435,"children":436},{},[437,457],{"type":46,"tag":162,"props":438,"children":439},{},[440],{"type":46,"tag":166,"props":441,"children":442},{},[443,447,452],{"type":46,"tag":170,"props":444,"children":445},{},[446],{"type":51,"value":179},{"type":46,"tag":170,"props":448,"children":449},{},[450],{"type":51,"value":451},"Purpose",{"type":46,"tag":170,"props":453,"children":454},{},[455],{"type":51,"value":456},"Key flags",{"type":46,"tag":181,"props":458,"children":459},{},[460,481,502,530,571,596,624,663,699,732,753],{"type":46,"tag":166,"props":461,"children":462},{},[463,471,476],{"type":46,"tag":188,"props":464,"children":465},{},[466],{"type":46,"tag":123,"props":467,"children":469},{"className":468},[],[470],{"type":51,"value":339},{"type":46,"tag":188,"props":472,"children":473},{},[474],{"type":51,"value":475},"Authenticate via browser",{"type":46,"tag":188,"props":477,"children":478},{},[479],{"type":51,"value":480},"—",{"type":46,"tag":166,"props":482,"children":483},{},[484,493,498],{"type":46,"tag":188,"props":485,"children":486},{},[487],{"type":46,"tag":123,"props":488,"children":490},{"className":489},[],[491],{"type":51,"value":492},"render workspace set",{"type":46,"tag":188,"props":494,"children":495},{},[496],{"type":51,"value":497},"Set active workspace",{"type":46,"tag":188,"props":499,"children":500},{},[501],{"type":51,"value":480},{"type":46,"tag":166,"props":503,"children":504},{},[505,514,519],{"type":46,"tag":188,"props":506,"children":507},{},[508],{"type":46,"tag":123,"props":509,"children":511},{"className":510},[],[512],{"type":51,"value":513},"render services",{"type":46,"tag":188,"props":515,"children":516},{},[517],{"type":51,"value":518},"List all services and datastores",{"type":46,"tag":188,"props":520,"children":521},{},[522,528],{"type":46,"tag":123,"props":523,"children":525},{"className":524},[],[526],{"type":51,"value":527},"-o json",{"type":51,"value":529}," for scripting",{"type":46,"tag":166,"props":531,"children":532},{},[533,542,547],{"type":46,"tag":188,"props":534,"children":535},{},[536],{"type":46,"tag":123,"props":537,"children":539},{"className":538},[],[540],{"type":51,"value":541},"render deploys create [SVC]",{"type":46,"tag":188,"props":543,"children":544},{},[545],{"type":51,"value":546},"Trigger a deploy",{"type":46,"tag":188,"props":548,"children":549},{},[550,556,558,564,565],{"type":46,"tag":123,"props":551,"children":553},{"className":552},[],[554],{"type":51,"value":555},"--wait",{"type":51,"value":557},", ",{"type":46,"tag":123,"props":559,"children":561},{"className":560},[],[562],{"type":51,"value":563},"--commit SHA",{"type":51,"value":557},{"type":46,"tag":123,"props":566,"children":568},{"className":567},[],[569],{"type":51,"value":570},"--image URL",{"type":46,"tag":166,"props":572,"children":573},{},[574,583,588],{"type":46,"tag":188,"props":575,"children":576},{},[577],{"type":46,"tag":123,"props":578,"children":580},{"className":579},[],[581],{"type":51,"value":582},"render deploys list [SVC]",{"type":46,"tag":188,"props":584,"children":585},{},[586],{"type":51,"value":587},"List deploys for a service",{"type":46,"tag":188,"props":589,"children":590},{},[591],{"type":46,"tag":123,"props":592,"children":594},{"className":593},[],[595],{"type":51,"value":527},{"type":46,"tag":166,"props":597,"children":598},{},[599,608,613],{"type":46,"tag":188,"props":600,"children":601},{},[602],{"type":46,"tag":123,"props":603,"children":605},{"className":604},[],[606],{"type":51,"value":607},"render logs -r [SVC]",{"type":46,"tag":188,"props":609,"children":610},{},[611],{"type":51,"value":612},"View logs",{"type":46,"tag":188,"props":614,"children":615},{},[616,622],{"type":46,"tag":123,"props":617,"children":619},{"className":618},[],[620],{"type":51,"value":621},"--tail",{"type":51,"value":623}," for streaming",{"type":46,"tag":166,"props":625,"children":626},{},[627,636,641],{"type":46,"tag":188,"props":628,"children":629},{},[630],{"type":46,"tag":123,"props":631,"children":633},{"className":632},[],[634],{"type":51,"value":635},"render psql [DB]",{"type":46,"tag":188,"props":637,"children":638},{},[639],{"type":51,"value":640},"Open psql session",{"type":46,"tag":188,"props":642,"children":643},{},[644,650,651,656,657],{"type":46,"tag":123,"props":645,"children":647},{"className":646},[],[648],{"type":51,"value":649},"-c \"SQL\"",{"type":51,"value":557},{"type":46,"tag":123,"props":652,"children":654},{"className":653},[],[655],{"type":51,"value":527},{"type":51,"value":557},{"type":46,"tag":123,"props":658,"children":660},{"className":659},[],[661],{"type":51,"value":662},"-- --csv",{"type":46,"tag":166,"props":664,"children":665},{},[666,675,680],{"type":46,"tag":188,"props":667,"children":668},{},[669],{"type":46,"tag":123,"props":670,"children":672},{"className":671},[],[673],{"type":51,"value":674},"render ssh [SVC]",{"type":46,"tag":188,"props":676,"children":677},{},[678],{"type":51,"value":679},"SSH into running instance",{"type":46,"tag":188,"props":681,"children":682},{},[683,689,691,697],{"type":46,"tag":123,"props":684,"children":686},{"className":685},[],[687],{"type":51,"value":688},"--ephemeral",{"type":51,"value":690}," \u002F ",{"type":46,"tag":123,"props":692,"children":694},{"className":693},[],[695],{"type":51,"value":696},"-e",{"type":51,"value":698}," for isolated shell",{"type":46,"tag":166,"props":700,"children":701},{},[702,711,721],{"type":46,"tag":188,"props":703,"children":704},{},[705],{"type":46,"tag":123,"props":706,"children":708},{"className":707},[],[709],{"type":51,"value":710},"render blueprints validate",{"type":46,"tag":188,"props":712,"children":713},{},[714,716],{"type":51,"value":715},"Validate ",{"type":46,"tag":123,"props":717,"children":719},{"className":718},[],[720],{"type":51,"value":128},{"type":46,"tag":188,"props":722,"children":723},{},[724,726],{"type":51,"value":725},"Defaults to ",{"type":46,"tag":123,"props":727,"children":729},{"className":728},[],[730],{"type":51,"value":731},".\u002Frender.yaml",{"type":46,"tag":166,"props":733,"children":734},{},[735,744,749],{"type":46,"tag":188,"props":736,"children":737},{},[738],{"type":46,"tag":123,"props":739,"children":741},{"className":740},[],[742],{"type":51,"value":743},"render skills [install|update|list]",{"type":46,"tag":188,"props":745,"children":746},{},[747],{"type":51,"value":748},"Manage agent skills",{"type":46,"tag":188,"props":750,"children":751},{},[752],{"type":51,"value":480},{"type":46,"tag":166,"props":754,"children":755},{},[756,765,770],{"type":46,"tag":188,"props":757,"children":758},{},[759],{"type":46,"tag":123,"props":760,"children":762},{"className":761},[],[763],{"type":51,"value":764},"render workspaces",{"type":46,"tag":188,"props":766,"children":767},{},[768],{"type":51,"value":769},"List workspaces",{"type":46,"tag":188,"props":771,"children":772},{},[773],{"type":46,"tag":123,"props":774,"children":776},{"className":775},[],[777],{"type":51,"value":527},{"type":46,"tag":287,"props":779,"children":781},{"id":780},"non-interactive-mode",[782],{"type":51,"value":783},"Non-interactive mode",{"type":46,"tag":54,"props":785,"children":786},{},[787],{"type":51,"value":788},"For CI\u002FCD and scripts, always set:",{"type":46,"tag":158,"props":790,"children":791},{},[792,807],{"type":46,"tag":162,"props":793,"children":794},{},[795],{"type":46,"tag":166,"props":796,"children":797},{},[798,803],{"type":46,"tag":170,"props":799,"children":800},{},[801],{"type":51,"value":802},"Flag",{"type":46,"tag":170,"props":804,"children":805},{},[806],{"type":51,"value":451},{"type":46,"tag":181,"props":808,"children":809},{},[810,842],{"type":46,"tag":166,"props":811,"children":812},{},[813,837],{"type":46,"tag":188,"props":814,"children":815},{},[816,821,823,829,830,835],{"type":46,"tag":123,"props":817,"children":819},{"className":818},[],[820],{"type":51,"value":527},{"type":51,"value":822}," (or ",{"type":46,"tag":123,"props":824,"children":826},{"className":825},[],[827],{"type":51,"value":828},"yaml",{"type":51,"value":557},{"type":46,"tag":123,"props":831,"children":833},{"className":832},[],[834],{"type":51,"value":51},{"type":51,"value":836},")",{"type":46,"tag":188,"props":838,"children":839},{},[840],{"type":51,"value":841},"Machine-readable output",{"type":46,"tag":166,"props":843,"children":844},{},[845,854],{"type":46,"tag":188,"props":846,"children":847},{},[848],{"type":46,"tag":123,"props":849,"children":851},{"className":850},[],[852],{"type":51,"value":853},"--confirm",{"type":46,"tag":188,"props":855,"children":856},{},[857],{"type":51,"value":858},"Skip confirmation prompts",{"type":46,"tag":54,"props":860,"children":861},{},[862,864,870,872,878],{"type":51,"value":863},"Output format precedence: ",{"type":46,"tag":123,"props":865,"children":867},{"className":866},[],[868],{"type":51,"value":869},"--output",{"type":51,"value":871}," flag > ",{"type":46,"tag":123,"props":873,"children":875},{"className":874},[],[876],{"type":51,"value":877},"RENDER_OUTPUT",{"type":51,"value":879}," env var > auto-detect (TTY → interactive, pipe → text).",{"type":46,"tag":294,"props":881,"children":883},{"className":296,"code":882,"language":298,"meta":299,"style":299},"export RENDER_OUTPUT=json\nrender services --confirm\n",[884],{"type":46,"tag":123,"props":885,"children":886},{"__ignoreMap":299},[887,908],{"type":46,"tag":305,"props":888,"children":889},{"class":307,"line":308},[890,894,899,903],{"type":46,"tag":305,"props":891,"children":892},{"style":360},[893],{"type":51,"value":363},{"type":46,"tag":305,"props":895,"children":896},{"style":366},[897],{"type":51,"value":898}," RENDER_OUTPUT",{"type":46,"tag":305,"props":900,"children":901},{"style":372},[902],{"type":51,"value":375},{"type":46,"tag":305,"props":904,"children":905},{"style":366},[906],{"type":51,"value":907},"json\n",{"type":46,"tag":305,"props":909,"children":911},{"class":307,"line":910},2,[912,916,921],{"type":46,"tag":305,"props":913,"children":914},{"style":312},[915],{"type":51,"value":14},{"type":46,"tag":305,"props":917,"children":918},{"style":317},[919],{"type":51,"value":920}," services",{"type":46,"tag":305,"props":922,"children":923},{"style":317},[924],{"type":51,"value":925}," --confirm\n",{"type":46,"tag":287,"props":927,"children":929},{"id":928},"deploy-patterns",[930],{"type":51,"value":931},"Deploy patterns",{"type":46,"tag":294,"props":933,"children":935},{"className":296,"code":934,"language":298,"meta":299,"style":299},"# Deploy and wait for completion (exits non-zero on failure)\nrender deploys create srv-xxx --wait --confirm -o json\n\n# Deploy a specific commit\nrender deploys create srv-xxx --commit abc123 --wait --confirm\n\n# Deploy a specific Docker image\nrender deploys create srv-xxx --image ghcr.io\u002Forg\u002Fapp:v1.2.3 --wait --confirm\n",[936],{"type":46,"tag":123,"props":937,"children":938},{"__ignoreMap":299},[939,948,990,1000,1009,1047,1055,1064],{"type":46,"tag":305,"props":940,"children":941},{"class":307,"line":308},[942],{"type":46,"tag":305,"props":943,"children":945},{"style":944},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[946],{"type":51,"value":947},"# Deploy and wait for completion (exits non-zero on failure)\n",{"type":46,"tag":305,"props":949,"children":950},{"class":307,"line":910},[951,955,960,965,970,975,980,985],{"type":46,"tag":305,"props":952,"children":953},{"style":312},[954],{"type":51,"value":14},{"type":46,"tag":305,"props":956,"children":957},{"style":317},[958],{"type":51,"value":959}," deploys",{"type":46,"tag":305,"props":961,"children":962},{"style":317},[963],{"type":51,"value":964}," create",{"type":46,"tag":305,"props":966,"children":967},{"style":317},[968],{"type":51,"value":969}," srv-xxx",{"type":46,"tag":305,"props":971,"children":972},{"style":317},[973],{"type":51,"value":974}," --wait",{"type":46,"tag":305,"props":976,"children":977},{"style":317},[978],{"type":51,"value":979}," --confirm",{"type":46,"tag":305,"props":981,"children":982},{"style":317},[983],{"type":51,"value":984}," -o",{"type":46,"tag":305,"props":986,"children":987},{"style":317},[988],{"type":51,"value":989}," json\n",{"type":46,"tag":305,"props":991,"children":993},{"class":307,"line":992},3,[994],{"type":46,"tag":305,"props":995,"children":997},{"emptyLinePlaceholder":996},true,[998],{"type":51,"value":999},"\n",{"type":46,"tag":305,"props":1001,"children":1003},{"class":307,"line":1002},4,[1004],{"type":46,"tag":305,"props":1005,"children":1006},{"style":944},[1007],{"type":51,"value":1008},"# Deploy a specific commit\n",{"type":46,"tag":305,"props":1010,"children":1012},{"class":307,"line":1011},5,[1013,1017,1021,1025,1029,1034,1039,1043],{"type":46,"tag":305,"props":1014,"children":1015},{"style":312},[1016],{"type":51,"value":14},{"type":46,"tag":305,"props":1018,"children":1019},{"style":317},[1020],{"type":51,"value":959},{"type":46,"tag":305,"props":1022,"children":1023},{"style":317},[1024],{"type":51,"value":964},{"type":46,"tag":305,"props":1026,"children":1027},{"style":317},[1028],{"type":51,"value":969},{"type":46,"tag":305,"props":1030,"children":1031},{"style":317},[1032],{"type":51,"value":1033}," --commit",{"type":46,"tag":305,"props":1035,"children":1036},{"style":317},[1037],{"type":51,"value":1038}," abc123",{"type":46,"tag":305,"props":1040,"children":1041},{"style":317},[1042],{"type":51,"value":974},{"type":46,"tag":305,"props":1044,"children":1045},{"style":317},[1046],{"type":51,"value":925},{"type":46,"tag":305,"props":1048,"children":1050},{"class":307,"line":1049},6,[1051],{"type":46,"tag":305,"props":1052,"children":1053},{"emptyLinePlaceholder":996},[1054],{"type":51,"value":999},{"type":46,"tag":305,"props":1056,"children":1058},{"class":307,"line":1057},7,[1059],{"type":46,"tag":305,"props":1060,"children":1061},{"style":944},[1062],{"type":51,"value":1063},"# Deploy a specific Docker image\n",{"type":46,"tag":305,"props":1065,"children":1067},{"class":307,"line":1066},8,[1068,1072,1076,1080,1084,1089,1094,1098],{"type":46,"tag":305,"props":1069,"children":1070},{"style":312},[1071],{"type":51,"value":14},{"type":46,"tag":305,"props":1073,"children":1074},{"style":317},[1075],{"type":51,"value":959},{"type":46,"tag":305,"props":1077,"children":1078},{"style":317},[1079],{"type":51,"value":964},{"type":46,"tag":305,"props":1081,"children":1082},{"style":317},[1083],{"type":51,"value":969},{"type":46,"tag":305,"props":1085,"children":1086},{"style":317},[1087],{"type":51,"value":1088}," --image",{"type":46,"tag":305,"props":1090,"children":1091},{"style":317},[1092],{"type":51,"value":1093}," ghcr.io\u002Forg\u002Fapp:v1.2.3",{"type":46,"tag":305,"props":1095,"children":1096},{"style":317},[1097],{"type":51,"value":974},{"type":46,"tag":305,"props":1099,"children":1100},{"style":317},[1101],{"type":51,"value":925},{"type":46,"tag":287,"props":1103,"children":1105},{"id":1104},"database-queries",[1106],{"type":51,"value":1107},"Database queries",{"type":46,"tag":294,"props":1109,"children":1111},{"className":296,"code":1110,"language":298,"meta":299,"style":299},"# Single query, JSON output\nrender psql db-xxx -c \"SELECT NOW();\" -o json\n\n# CSV output via psql passthrough\nrender psql db-xxx -c \"SELECT id, email FROM users;\" -o text -- --csv\n",[1112],{"type":46,"tag":123,"props":1113,"children":1114},{"__ignoreMap":299},[1115,1123,1168,1175,1183],{"type":46,"tag":305,"props":1116,"children":1117},{"class":307,"line":308},[1118],{"type":46,"tag":305,"props":1119,"children":1120},{"style":944},[1121],{"type":51,"value":1122},"# Single query, JSON output\n",{"type":46,"tag":305,"props":1124,"children":1125},{"class":307,"line":910},[1126,1130,1135,1140,1145,1150,1155,1160,1164],{"type":46,"tag":305,"props":1127,"children":1128},{"style":312},[1129],{"type":51,"value":14},{"type":46,"tag":305,"props":1131,"children":1132},{"style":317},[1133],{"type":51,"value":1134}," psql",{"type":46,"tag":305,"props":1136,"children":1137},{"style":317},[1138],{"type":51,"value":1139}," db-xxx",{"type":46,"tag":305,"props":1141,"children":1142},{"style":317},[1143],{"type":51,"value":1144}," -c",{"type":46,"tag":305,"props":1146,"children":1147},{"style":372},[1148],{"type":51,"value":1149}," \"",{"type":46,"tag":305,"props":1151,"children":1152},{"style":317},[1153],{"type":51,"value":1154},"SELECT NOW();",{"type":46,"tag":305,"props":1156,"children":1157},{"style":372},[1158],{"type":51,"value":1159},"\"",{"type":46,"tag":305,"props":1161,"children":1162},{"style":317},[1163],{"type":51,"value":984},{"type":46,"tag":305,"props":1165,"children":1166},{"style":317},[1167],{"type":51,"value":989},{"type":46,"tag":305,"props":1169,"children":1170},{"class":307,"line":992},[1171],{"type":46,"tag":305,"props":1172,"children":1173},{"emptyLinePlaceholder":996},[1174],{"type":51,"value":999},{"type":46,"tag":305,"props":1176,"children":1177},{"class":307,"line":1002},[1178],{"type":46,"tag":305,"props":1179,"children":1180},{"style":944},[1181],{"type":51,"value":1182},"# CSV output via psql passthrough\n",{"type":46,"tag":305,"props":1184,"children":1185},{"class":307,"line":1011},[1186,1190,1194,1198,1202,1206,1211,1215,1219,1224,1229],{"type":46,"tag":305,"props":1187,"children":1188},{"style":312},[1189],{"type":51,"value":14},{"type":46,"tag":305,"props":1191,"children":1192},{"style":317},[1193],{"type":51,"value":1134},{"type":46,"tag":305,"props":1195,"children":1196},{"style":317},[1197],{"type":51,"value":1139},{"type":46,"tag":305,"props":1199,"children":1200},{"style":317},[1201],{"type":51,"value":1144},{"type":46,"tag":305,"props":1203,"children":1204},{"style":372},[1205],{"type":51,"value":1149},{"type":46,"tag":305,"props":1207,"children":1208},{"style":317},[1209],{"type":51,"value":1210},"SELECT id, email FROM users;",{"type":46,"tag":305,"props":1212,"children":1213},{"style":372},[1214],{"type":51,"value":1159},{"type":46,"tag":305,"props":1216,"children":1217},{"style":317},[1218],{"type":51,"value":984},{"type":46,"tag":305,"props":1220,"children":1221},{"style":317},[1222],{"type":51,"value":1223}," text",{"type":46,"tag":305,"props":1225,"children":1226},{"style":317},[1227],{"type":51,"value":1228}," --",{"type":46,"tag":305,"props":1230,"children":1231},{"style":317},[1232],{"type":51,"value":1233}," --csv\n",{"type":46,"tag":60,"props":1235,"children":1237},{"id":1236},"cicd-example-github-actions",[1238],{"type":51,"value":1239},"CI\u002FCD Example (GitHub Actions)",{"type":46,"tag":294,"props":1241,"children":1244},{"className":1242,"code":1243,"language":828,"meta":299,"style":299},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","name: Deploy to Render\non:\n  push:\n    branches: [main]\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Install Render CLI\n        run: |\n          curl -L https:\u002F\u002Fgithub.com\u002Frender-oss\u002Fcli\u002Freleases\u002Fdownload\u002Fv1.1.0\u002Fcli_1.1.0_linux_amd64.zip -o render.zip\n          unzip render.zip\n          sudo mv cli_v1.1.0 \u002Fusr\u002Flocal\u002Fbin\u002Frender\n      - name: Deploy\n        env:\n          RENDER_API_KEY: ${{ secrets.RENDER_API_KEY }}\n        run: render deploys create ${{ secrets.RENDER_SERVICE_ID }} --wait --confirm -o json\n",[1245],{"type":46,"tag":123,"props":1246,"children":1247},{"__ignoreMap":299},[1248,1267,1281,1293,1320,1332,1344,1361,1373,1396,1415,1424,1433,1442,1463,1476,1494],{"type":46,"tag":305,"props":1249,"children":1250},{"class":307,"line":308},[1251,1257,1262],{"type":46,"tag":305,"props":1252,"children":1254},{"style":1253},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1255],{"type":51,"value":1256},"name",{"type":46,"tag":305,"props":1258,"children":1259},{"style":372},[1260],{"type":51,"value":1261},":",{"type":46,"tag":305,"props":1263,"children":1264},{"style":317},[1265],{"type":51,"value":1266}," Deploy to Render\n",{"type":46,"tag":305,"props":1268,"children":1269},{"class":307,"line":910},[1270,1276],{"type":46,"tag":305,"props":1271,"children":1273},{"style":1272},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1274],{"type":51,"value":1275},"on",{"type":46,"tag":305,"props":1277,"children":1278},{"style":372},[1279],{"type":51,"value":1280},":\n",{"type":46,"tag":305,"props":1282,"children":1283},{"class":307,"line":992},[1284,1289],{"type":46,"tag":305,"props":1285,"children":1286},{"style":1253},[1287],{"type":51,"value":1288},"  push",{"type":46,"tag":305,"props":1290,"children":1291},{"style":372},[1292],{"type":51,"value":1280},{"type":46,"tag":305,"props":1294,"children":1295},{"class":307,"line":1002},[1296,1301,1305,1310,1315],{"type":46,"tag":305,"props":1297,"children":1298},{"style":1253},[1299],{"type":51,"value":1300},"    branches",{"type":46,"tag":305,"props":1302,"children":1303},{"style":372},[1304],{"type":51,"value":1261},{"type":46,"tag":305,"props":1306,"children":1307},{"style":372},[1308],{"type":51,"value":1309}," [",{"type":46,"tag":305,"props":1311,"children":1312},{"style":317},[1313],{"type":51,"value":1314},"main",{"type":46,"tag":305,"props":1316,"children":1317},{"style":372},[1318],{"type":51,"value":1319},"]\n",{"type":46,"tag":305,"props":1321,"children":1322},{"class":307,"line":1011},[1323,1328],{"type":46,"tag":305,"props":1324,"children":1325},{"style":1253},[1326],{"type":51,"value":1327},"jobs",{"type":46,"tag":305,"props":1329,"children":1330},{"style":372},[1331],{"type":51,"value":1280},{"type":46,"tag":305,"props":1333,"children":1334},{"class":307,"line":1049},[1335,1340],{"type":46,"tag":305,"props":1336,"children":1337},{"style":1253},[1338],{"type":51,"value":1339},"  deploy",{"type":46,"tag":305,"props":1341,"children":1342},{"style":372},[1343],{"type":51,"value":1280},{"type":46,"tag":305,"props":1345,"children":1346},{"class":307,"line":1057},[1347,1352,1356],{"type":46,"tag":305,"props":1348,"children":1349},{"style":1253},[1350],{"type":51,"value":1351},"    runs-on",{"type":46,"tag":305,"props":1353,"children":1354},{"style":372},[1355],{"type":51,"value":1261},{"type":46,"tag":305,"props":1357,"children":1358},{"style":317},[1359],{"type":51,"value":1360}," ubuntu-latest\n",{"type":46,"tag":305,"props":1362,"children":1363},{"class":307,"line":1066},[1364,1369],{"type":46,"tag":305,"props":1365,"children":1366},{"style":1253},[1367],{"type":51,"value":1368},"    steps",{"type":46,"tag":305,"props":1370,"children":1371},{"style":372},[1372],{"type":51,"value":1280},{"type":46,"tag":305,"props":1374,"children":1376},{"class":307,"line":1375},9,[1377,1382,1387,1391],{"type":46,"tag":305,"props":1378,"children":1379},{"style":372},[1380],{"type":51,"value":1381},"      -",{"type":46,"tag":305,"props":1383,"children":1384},{"style":1253},[1385],{"type":51,"value":1386}," name",{"type":46,"tag":305,"props":1388,"children":1389},{"style":372},[1390],{"type":51,"value":1261},{"type":46,"tag":305,"props":1392,"children":1393},{"style":317},[1394],{"type":51,"value":1395}," Install Render CLI\n",{"type":46,"tag":305,"props":1397,"children":1399},{"class":307,"line":1398},10,[1400,1405,1409],{"type":46,"tag":305,"props":1401,"children":1402},{"style":1253},[1403],{"type":51,"value":1404},"        run",{"type":46,"tag":305,"props":1406,"children":1407},{"style":372},[1408],{"type":51,"value":1261},{"type":46,"tag":305,"props":1410,"children":1412},{"style":1411},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[1413],{"type":51,"value":1414}," |\n",{"type":46,"tag":305,"props":1416,"children":1418},{"class":307,"line":1417},11,[1419],{"type":46,"tag":305,"props":1420,"children":1421},{"style":317},[1422],{"type":51,"value":1423},"          curl -L https:\u002F\u002Fgithub.com\u002Frender-oss\u002Fcli\u002Freleases\u002Fdownload\u002Fv1.1.0\u002Fcli_1.1.0_linux_amd64.zip -o render.zip\n",{"type":46,"tag":305,"props":1425,"children":1427},{"class":307,"line":1426},12,[1428],{"type":46,"tag":305,"props":1429,"children":1430},{"style":317},[1431],{"type":51,"value":1432},"          unzip render.zip\n",{"type":46,"tag":305,"props":1434,"children":1436},{"class":307,"line":1435},13,[1437],{"type":46,"tag":305,"props":1438,"children":1439},{"style":317},[1440],{"type":51,"value":1441},"          sudo mv cli_v1.1.0 \u002Fusr\u002Flocal\u002Fbin\u002Frender\n",{"type":46,"tag":305,"props":1443,"children":1445},{"class":307,"line":1444},14,[1446,1450,1454,1458],{"type":46,"tag":305,"props":1447,"children":1448},{"style":372},[1449],{"type":51,"value":1381},{"type":46,"tag":305,"props":1451,"children":1452},{"style":1253},[1453],{"type":51,"value":1386},{"type":46,"tag":305,"props":1455,"children":1456},{"style":372},[1457],{"type":51,"value":1261},{"type":46,"tag":305,"props":1459,"children":1460},{"style":317},[1461],{"type":51,"value":1462}," Deploy\n",{"type":46,"tag":305,"props":1464,"children":1466},{"class":307,"line":1465},15,[1467,1472],{"type":46,"tag":305,"props":1468,"children":1469},{"style":1253},[1470],{"type":51,"value":1471},"        env",{"type":46,"tag":305,"props":1473,"children":1474},{"style":372},[1475],{"type":51,"value":1280},{"type":46,"tag":305,"props":1477,"children":1479},{"class":307,"line":1478},16,[1480,1485,1489],{"type":46,"tag":305,"props":1481,"children":1482},{"style":1253},[1483],{"type":51,"value":1484},"          RENDER_API_KEY",{"type":46,"tag":305,"props":1486,"children":1487},{"style":372},[1488],{"type":51,"value":1261},{"type":46,"tag":305,"props":1490,"children":1491},{"style":317},[1492],{"type":51,"value":1493}," ${{ secrets.RENDER_API_KEY }}\n",{"type":46,"tag":305,"props":1495,"children":1497},{"class":307,"line":1496},17,[1498,1502,1506],{"type":46,"tag":305,"props":1499,"children":1500},{"style":1253},[1501],{"type":51,"value":1404},{"type":46,"tag":305,"props":1503,"children":1504},{"style":372},[1505],{"type":51,"value":1261},{"type":46,"tag":305,"props":1507,"children":1508},{"style":317},[1509],{"type":51,"value":1510}," render deploys create ${{ secrets.RENDER_SERVICE_ID }} --wait --confirm -o json\n",{"type":46,"tag":54,"props":1512,"children":1513},{},[1514],{"type":51,"value":1515},"Pin to a specific CLI version in CI to avoid breaking changes.",{"type":46,"tag":60,"props":1517,"children":1519},{"id":1518},"local-config",[1520],{"type":51,"value":1521},"Local Config",{"type":46,"tag":54,"props":1523,"children":1524},{},[1525,1527],{"type":51,"value":1526},"Config file: ",{"type":46,"tag":123,"props":1528,"children":1530},{"className":1529},[],[1531],{"type":51,"value":331},{"type":46,"tag":54,"props":1533,"children":1534},{},[1535,1537,1543],{"type":51,"value":1536},"Override with ",{"type":46,"tag":123,"props":1538,"children":1540},{"className":1539},[],[1541],{"type":51,"value":1542},"RENDER_CLI_CONFIG_PATH",{"type":51,"value":1544}," env var.",{"type":46,"tag":60,"props":1546,"children":1548},{"id":1547},"common-mistakes",[1549],{"type":51,"value":1550},"Common Mistakes",{"type":46,"tag":158,"props":1552,"children":1553},{},[1554,1570],{"type":46,"tag":162,"props":1555,"children":1556},{},[1557],{"type":46,"tag":166,"props":1558,"children":1559},{},[1560,1565],{"type":46,"tag":170,"props":1561,"children":1562},{},[1563],{"type":51,"value":1564},"Mistake",{"type":46,"tag":170,"props":1566,"children":1567},{},[1568],{"type":51,"value":1569},"Fix",{"type":46,"tag":181,"props":1571,"children":1572},{},[1573,1591,1611,1638,1673],{"type":46,"tag":166,"props":1574,"children":1575},{},[1576,1581],{"type":46,"tag":188,"props":1577,"children":1578},{},[1579],{"type":51,"value":1580},"Token expired",{"type":46,"tag":188,"props":1582,"children":1583},{},[1584,1586],{"type":51,"value":1585},"Re-run ",{"type":46,"tag":123,"props":1587,"children":1589},{"className":1588},[],[1590],{"type":51,"value":339},{"type":46,"tag":166,"props":1592,"children":1593},{},[1594,1599],{"type":46,"tag":188,"props":1595,"children":1596},{},[1597],{"type":51,"value":1598},"Wrong workspace",{"type":46,"tag":188,"props":1600,"children":1601},{},[1602,1604,1609],{"type":51,"value":1603},"Run ",{"type":46,"tag":123,"props":1605,"children":1607},{"className":1606},[],[1608],{"type":51,"value":492},{"type":51,"value":1610}," to switch",{"type":46,"tag":166,"props":1612,"children":1613},{},[1614,1626],{"type":46,"tag":188,"props":1615,"children":1616},{},[1617,1619,1624],{"type":51,"value":1618},"Missing ",{"type":46,"tag":123,"props":1620,"children":1622},{"className":1621},[],[1623],{"type":51,"value":853},{"type":51,"value":1625}," in CI",{"type":46,"tag":188,"props":1627,"children":1628},{},[1629,1631,1636],{"type":51,"value":1630},"Add ",{"type":46,"tag":123,"props":1632,"children":1634},{"className":1633},[],[1635],{"type":51,"value":853},{"type":51,"value":1637}," to skip interactive prompts",{"type":46,"tag":166,"props":1639,"children":1640},{},[1641,1653],{"type":46,"tag":188,"props":1642,"children":1643},{},[1644,1646,1652],{"type":51,"value":1645},"Using ",{"type":46,"tag":123,"props":1647,"children":1649},{"className":1648},[],[1650],{"type":51,"value":1651},"--output interactive",{"type":51,"value":1625},{"type":46,"tag":188,"props":1654,"children":1655},{},[1656,1658,1663,1665,1671],{"type":51,"value":1657},"Use ",{"type":46,"tag":123,"props":1659,"children":1661},{"className":1660},[],[1662],{"type":51,"value":527},{"type":51,"value":1664}," or ",{"type":46,"tag":123,"props":1666,"children":1668},{"className":1667},[],[1669],{"type":51,"value":1670},"-o text",{"type":51,"value":1672}," in non-TTY environments",{"type":46,"tag":166,"props":1674,"children":1675},{},[1676,1687],{"type":46,"tag":188,"props":1677,"children":1678},{},[1679,1681,1686],{"type":51,"value":1680},"Deploying without ",{"type":46,"tag":123,"props":1682,"children":1684},{"className":1683},[],[1685],{"type":51,"value":555},{"type":51,"value":1625},{"type":46,"tag":188,"props":1688,"children":1689},{},[1690,1691,1696],{"type":51,"value":1630},{"type":46,"tag":123,"props":1692,"children":1694},{"className":1693},[],[1695],{"type":51,"value":555},{"type":51,"value":1697}," so the job fails on deploy failure",{"type":46,"tag":60,"props":1699,"children":1701},{"id":1700},"references",[1702],{"type":51,"value":1703},"References",{"type":46,"tag":158,"props":1705,"children":1706},{},[1707,1723],{"type":46,"tag":162,"props":1708,"children":1709},{},[1710],{"type":46,"tag":166,"props":1711,"children":1712},{},[1713,1718],{"type":46,"tag":170,"props":1714,"children":1715},{},[1716],{"type":51,"value":1717},"Document",{"type":46,"tag":170,"props":1719,"children":1720},{},[1721],{"type":51,"value":1722},"Contents",{"type":46,"tag":181,"props":1724,"children":1725},{},[1726],{"type":46,"tag":166,"props":1727,"children":1728},{},[1729,1738],{"type":46,"tag":188,"props":1730,"children":1731},{},[1732],{"type":46,"tag":123,"props":1733,"children":1735},{"className":1734},[],[1736],{"type":51,"value":1737},"references\u002Fcommand-cheatsheet.md",{"type":46,"tag":188,"props":1739,"children":1740},{},[1741],{"type":51,"value":1742},"Full command list with flags, output examples, and scripting patterns",{"type":46,"tag":60,"props":1744,"children":1746},{"id":1745},"related-skills",[1747],{"type":51,"value":1748},"Related Skills",{"type":46,"tag":67,"props":1750,"children":1751},{},[1752,1762,1779,1797],{"type":46,"tag":71,"props":1753,"children":1754},{},[1755,1760],{"type":46,"tag":75,"props":1756,"children":1757},{},[1758],{"type":51,"value":1759},"render-deploy",{"type":51,"value":1761}," — End-to-end deploy flows, MCP operations, Dashboard deeplinks",{"type":46,"tag":71,"props":1763,"children":1764},{},[1765,1770,1772,1777],{"type":46,"tag":75,"props":1766,"children":1767},{},[1768],{"type":51,"value":1769},"render-blueprints",{"type":51,"value":1771}," — ",{"type":46,"tag":123,"props":1773,"children":1775},{"className":1774},[],[1776],{"type":51,"value":128},{"type":51,"value":1778}," authoring and validation",{"type":46,"tag":71,"props":1780,"children":1781},{},[1782,1787,1789,1795],{"type":46,"tag":75,"props":1783,"children":1784},{},[1785],{"type":51,"value":1786},"render-postgres",{"type":51,"value":1788}," — Database connections, ",{"type":46,"tag":123,"props":1790,"children":1792},{"className":1791},[],[1793],{"type":51,"value":1794},"render psql",{"type":51,"value":1796}," usage",{"type":46,"tag":71,"props":1798,"children":1799},{},[1800,1805,1807,1813,1815,1821],{"type":46,"tag":75,"props":1801,"children":1802},{},[1803],{"type":51,"value":1804},"render-debug",{"type":51,"value":1806}," — Using ",{"type":46,"tag":123,"props":1808,"children":1810},{"className":1809},[],[1811],{"type":51,"value":1812},"render logs",{"type":51,"value":1814}," and ",{"type":46,"tag":123,"props":1816,"children":1818},{"className":1817},[],[1819],{"type":51,"value":1820},"render ssh",{"type":51,"value":1822}," for troubleshooting",{"type":46,"tag":1824,"props":1825,"children":1826},"style",{},[1827],{"type":51,"value":1828},"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":1830,"total":2031},[1831,1852,1875,1892,1906,1923,1942,1958,1974,1988,2000,2015],{"slug":1832,"name":1832,"fn":1833,"description":1834,"org":1835,"tags":1836,"stars":1849,"repoUrl":1850,"updatedAt":1851},"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},[1837,1840,1843,1846],{"name":1838,"slug":1839,"type":15},"Documents","documents",{"name":1841,"slug":1842,"type":15},"Healthcare","healthcare",{"name":1844,"slug":1845,"type":15},"Insurance","insurance",{"name":1847,"slug":1848,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1853,"name":1853,"fn":1854,"description":1855,"org":1856,"tags":1857,"stars":1872,"repoUrl":1873,"updatedAt":1874},"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},[1858,1861,1863,1866,1869],{"name":1859,"slug":1860,"type":15},".NET","dotnet",{"name":1862,"slug":1853,"type":15},"ASP.NET Core",{"name":1864,"slug":1865,"type":15},"Blazor","blazor",{"name":1867,"slug":1868,"type":15},"C#","csharp",{"name":1870,"slug":1871,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1876,"name":1876,"fn":1877,"description":1878,"org":1879,"tags":1880,"stars":1872,"repoUrl":1873,"updatedAt":1891},"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},[1881,1884,1887,1890],{"name":1882,"slug":1883,"type":15},"Apps SDK","apps-sdk",{"name":1885,"slug":1886,"type":15},"ChatGPT","chatgpt",{"name":1888,"slug":1889,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1893,"name":1893,"fn":1894,"description":1895,"org":1896,"tags":1897,"stars":1872,"repoUrl":1873,"updatedAt":1905},"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},[1898,1901,1902],{"name":1899,"slug":1900,"type":15},"API Development","api-development",{"name":17,"slug":18,"type":15},{"name":1903,"slug":1904,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1907,"name":1907,"fn":1908,"description":1909,"org":1910,"tags":1911,"stars":1872,"repoUrl":1873,"updatedAt":1922},"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},[1912,1915,1918,1921],{"name":1913,"slug":1914,"type":15},"Cloudflare","cloudflare",{"name":1916,"slug":1917,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1919,"slug":1920,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":1924,"name":1924,"fn":1925,"description":1926,"org":1927,"tags":1928,"stars":1872,"repoUrl":1873,"updatedAt":1941},"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},[1929,1932,1935,1938],{"name":1930,"slug":1931,"type":15},"Productivity","productivity",{"name":1933,"slug":1934,"type":15},"Project Management","project-management",{"name":1936,"slug":1937,"type":15},"Strategy","strategy",{"name":1939,"slug":1940,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1943,"name":1943,"fn":1944,"description":1945,"org":1946,"tags":1947,"stars":1872,"repoUrl":1873,"updatedAt":1957},"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},[1948,1951,1953,1956],{"name":1949,"slug":1950,"type":15},"Design","design",{"name":1952,"slug":1943,"type":15},"Figma",{"name":1954,"slug":1955,"type":15},"Frontend","frontend",{"name":1888,"slug":1889,"type":15},"2026-04-12T05:06:47.939943",{"slug":1959,"name":1959,"fn":1960,"description":1961,"org":1962,"tags":1963,"stars":1872,"repoUrl":1873,"updatedAt":1973},"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},[1964,1965,1968,1969,1970],{"name":1949,"slug":1950,"type":15},{"name":1966,"slug":1967,"type":15},"Design System","design-system",{"name":1952,"slug":1943,"type":15},{"name":1954,"slug":1955,"type":15},{"name":1971,"slug":1972,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1975,"name":1975,"fn":1976,"description":1977,"org":1978,"tags":1979,"stars":1872,"repoUrl":1873,"updatedAt":1987},"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},[1980,1981,1982,1985,1986],{"name":1949,"slug":1950,"type":15},{"name":1966,"slug":1967,"type":15},{"name":1983,"slug":1984,"type":15},"Documentation","documentation",{"name":1952,"slug":1943,"type":15},{"name":1954,"slug":1955,"type":15},"2026-05-16T06:07:47.821474",{"slug":1989,"name":1989,"fn":1990,"description":1991,"org":1992,"tags":1993,"stars":1872,"repoUrl":1873,"updatedAt":1999},"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},[1994,1995,1996,1997,1998],{"name":1949,"slug":1950,"type":15},{"name":1952,"slug":1943,"type":15},{"name":1954,"slug":1955,"type":15},{"name":1971,"slug":1972,"type":15},{"name":1870,"slug":1871,"type":15},"2026-05-16T06:07:40.583615",{"slug":2001,"name":2001,"fn":2002,"description":2003,"org":2004,"tags":2005,"stars":1872,"repoUrl":1873,"updatedAt":2014},"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},[2006,2009,2010,2013],{"name":2007,"slug":2008,"type":15},"Animation","animation",{"name":1903,"slug":1904,"type":15},{"name":2011,"slug":2012,"type":15},"Creative","creative",{"name":1949,"slug":1950,"type":15},"2026-05-02T05:31:48.48485",{"slug":2016,"name":2016,"fn":2017,"description":2018,"org":2019,"tags":2020,"stars":1872,"repoUrl":1873,"updatedAt":2030},"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},[2021,2022,2023,2026,2029],{"name":2011,"slug":2012,"type":15},{"name":1949,"slug":1950,"type":15},{"name":2024,"slug":2025,"type":15},"Image Generation","image-generation",{"name":2027,"slug":2028,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":2033,"total":2146},[2034,2050,2066,2078,2096,2114,2134],{"slug":2035,"name":2035,"fn":2036,"description":2037,"org":2038,"tags":2039,"stars":25,"repoUrl":26,"updatedAt":27},"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},[2040,2043,2046,2049],{"name":2041,"slug":2042,"type":15},"Accessibility","accessibility",{"name":2044,"slug":2045,"type":15},"Charts","charts",{"name":2047,"slug":2048,"type":15},"Data Visualization","data-visualization",{"name":1949,"slug":1950,"type":15},{"slug":2051,"name":2051,"fn":2052,"description":2053,"org":2054,"tags":2055,"stars":25,"repoUrl":26,"updatedAt":2065},"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},[2056,2059,2062],{"name":2057,"slug":2058,"type":15},"Agents","agents",{"name":2060,"slug":2061,"type":15},"Browser Automation","browser-automation",{"name":2063,"slug":2064,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2067,"name":2067,"fn":2068,"description":2069,"org":2070,"tags":2071,"stars":25,"repoUrl":26,"updatedAt":2077},"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},[2072,2073,2076],{"name":2060,"slug":2061,"type":15},{"name":2074,"slug":2075,"type":15},"Local Development","local-development",{"name":2063,"slug":2064,"type":15},"2026-04-06T18:41:17.526867",{"slug":2079,"name":2079,"fn":2080,"description":2081,"org":2082,"tags":2083,"stars":25,"repoUrl":26,"updatedAt":2095},"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},[2084,2085,2086,2089,2092],{"name":2057,"slug":2058,"type":15},{"name":1919,"slug":1920,"type":15},{"name":2087,"slug":2088,"type":15},"SDK","sdk",{"name":2090,"slug":2091,"type":15},"Serverless","serverless",{"name":2093,"slug":2094,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2097,"name":2097,"fn":2098,"description":2099,"org":2100,"tags":2101,"stars":25,"repoUrl":26,"updatedAt":2113},"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},[2102,2103,2106,2109,2110],{"name":1954,"slug":1955,"type":15},{"name":2104,"slug":2105,"type":15},"React","react",{"name":2107,"slug":2108,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1971,"slug":1972,"type":15},{"name":2111,"slug":2112,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2115,"name":2115,"fn":2116,"description":2117,"org":2118,"tags":2119,"stars":25,"repoUrl":26,"updatedAt":2133},"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},[2120,2123,2126,2129,2132],{"name":2121,"slug":2122,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2124,"slug":2125,"type":15},"Cost Optimization","cost-optimization",{"name":2127,"slug":2128,"type":15},"LLM","llm",{"name":2130,"slug":2131,"type":15},"Performance","performance",{"name":2111,"slug":2112,"type":15},"2026-04-06T18:40:44.377464",{"slug":2135,"name":2135,"fn":2136,"description":2137,"org":2138,"tags":2139,"stars":25,"repoUrl":26,"updatedAt":2145},"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},[2140,2141,2144],{"name":2124,"slug":2125,"type":15},{"name":2142,"slug":2143,"type":15},"Database","database",{"name":2127,"slug":2128,"type":15},"2026-04-06T18:41:08.513425",600]