[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-netlify-cli-and-deploy":3,"mdc-lt2hlr-key":36,"related-repo-openai-netlify-cli-and-deploy":1462,"related-org-openai-netlify-cli-and-deploy":1584},{"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},"netlify-cli-and-deploy","deploy sites with Netlify CLI","Guide for using the Netlify CLI and deploying sites. Use when installing the CLI, linking sites, deploying (Git-based or manual), managing environment variables, or running local development. Covers netlify dev, netlify deploy, Git vs non-Git workflows, and environment variable management.",{"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},"Local Development","local-development","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Netlify","netlify",{"name":23,"slug":24,"type":15},"Deployment","deployment",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-09T04:58:45.700331",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fnetlify\u002Fskills\u002Fnetlify-cli-and-deploy","---\nname: netlify-cli-and-deploy\ndescription: Guide for using the Netlify CLI and deploying sites. Use when installing the CLI, linking sites, deploying (Git-based or manual), managing environment variables, or running local development. Covers netlify dev, netlify deploy, Git vs non-Git workflows, and environment variable management.\n---\n\n# Netlify CLI and Deployment\n\n## Installation\n\n```bash\nnpm install -g netlify-cli    # Global (for local dev)\nnpm install netlify-cli -D    # Local (for CI)\n```\n\nRequires Node.js 18.14.0+.\n\n## Authentication\n\n```bash\nnetlify login       # Opens browser for OAuth\nnetlify status      # Check auth + linked site status\n```\n\nFor CI, set `NETLIFY_AUTH_TOKEN` environment variable instead.\n\n## Linking a Site\n\nCheck if already linked with `netlify status`. If not:\n\n```bash\n# Interactive\nnetlify link\n\n# By Git remote (if using Git)\nnetlify link --git-remote-url https:\u002F\u002Fgithub.com\u002Forg\u002Frepo\n\n# Create new site\nnetlify init           # With Git CI\u002FCD setup\nnetlify init --manual  # Without Git CI\u002FCD\n```\n\nSite ID is stored in `.netlify\u002Fstate.json`. Add `.netlify` to `.gitignore`.\n\n## Deploying\n\n### Git-Based Deploys (Continuous Deployment)\n\nSet up with `netlify init`. Automatic deploys trigger on push\u002FPR:\n- Push to production branch → production deploy\n- Open PR → deploy preview with unique URL\n- Push to other branches → branch deploy\n\nBuild runs on Netlify's servers. Configure build settings in `netlify.toml`.\n\n### Manual \u002F Local Deploys (No Git Required)\n\nBuild locally, then upload:\n\n```bash\nnetlify deploy          # Draft deploy (preview URL)\nnetlify deploy --prod   # Production deploy\nnetlify deploy --dir=dist  # Specify output directory\n```\n\nThis works without Git — useful for prototypes, local-only projects, or CI pipelines.\n\n## Local Development\n\n### Option 1: netlify dev\n\n```bash\nnetlify dev\n```\n\nWraps your framework's dev server and provides:\n- Environment variable injection\n- Functions and edge functions\n- Redirects and headers processing\n\n### Option 2: Netlify Vite Plugin (Vite-based projects)\n\nFor projects using Vite (React SPA, TanStack Start, SvelteKit, Remix), the Vite plugin provides Netlify platform primitives directly in the framework's dev server:\n\n```bash\nnpm install @netlify\u002Fvite-plugin\n```\n\n```typescript\n\u002F\u002F vite.config.ts\nimport netlify from \"@netlify\u002Fvite-plugin\";\nexport default defineConfig({ plugins: [netlify()] });\n```\n\nThen run your normal dev command (`npm run dev`) — no `netlify dev` wrapper needed. This gives you access to Blobs, DB, Functions, and environment variables during development.\n\nSee the **netlify-frameworks** skill for framework-specific local dev guidance.\n\n## Environment Variables\n\n### CLI Management\n\n```bash\n# Set\nnetlify env:set API_KEY \"value\"\nnetlify env:set API_KEY \"value\" --secret              # Hidden from logs\nnetlify env:set API_KEY \"value\" --context production   # Context-specific\n\n# Get\nnetlify env:get API_KEY\n\n# List\nnetlify env:list\nnetlify env:list --plain > .env                        # Export to file\n\n# Import from file\nnetlify env:import .env\n\n# Delete\nnetlify env:unset API_KEY\n```\n\n### Context Scoping\n\nVariables can be scoped to deploy contexts:\n\n```bash\nnetlify env:set API_URL \"https:\u002F\u002Fapi.prod.com\" --context production\nnetlify env:set API_URL \"https:\u002F\u002Fapi.staging.com\" --context deploy-preview\nnetlify env:set DEBUG \"true\" --context branch:feature-x\n```\n\n### Accessing in Code\n\n- **Server-side (Functions)**: Use `Netlify.env.get(\"VAR\")` (preferred) or `process.env.VAR`\n- **Client-side (Vite)**: Only `VITE_`-prefixed vars via `import.meta.env.VITE_VAR`\n- **Client-side (Astro)**: Only `PUBLIC_`-prefixed vars via `import.meta.env.PUBLIC_VAR`\n\n**Never use `VITE_` or `PUBLIC_` prefix for secrets** — these are exposed to the browser.\n\n## Useful Commands\n\n| Command | Description |\n|---|---|\n| `netlify status` | Auth and site link status |\n| `netlify dev` | Start local dev server |\n| `netlify build` | Run build locally (mimics Netlify environment) |\n| `netlify deploy` | Draft deploy |\n| `netlify deploy --prod` | Production deploy |\n| `netlify dev:exec \u003Ccmd>` | Run command with Netlify environment loaded |\n| `netlify env:list` | List environment variables |\n| `netlify clone org\u002Frepo` | Clone, link, and set up in one step |\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,57,129,135,141,182,195,201,214,340,369,375,382,395,415,427,433,438,504,509,513,519,538,543,561,567,572,595,721,742,755,761,767,1054,1060,1065,1185,1191,1264,1288,1294,1456],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"netlify-cli-and-deployment",[47],{"type":48,"value":49},"text","Netlify CLI and Deployment",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"installation",[55],{"type":48,"value":56},"Installation",{"type":42,"tag":58,"props":59,"children":64},"pre",{"className":60,"code":61,"language":62,"meta":63,"style":63},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install -g netlify-cli    # Global (for local dev)\nnpm install netlify-cli -D    # Local (for CI)\n","bash","",[65],{"type":42,"tag":66,"props":67,"children":68},"code",{"__ignoreMap":63},[69,103],{"type":42,"tag":70,"props":71,"children":74},"span",{"class":72,"line":73},"line",1,[75,81,87,92,97],{"type":42,"tag":70,"props":76,"children":78},{"style":77},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[79],{"type":48,"value":80},"npm",{"type":42,"tag":70,"props":82,"children":84},{"style":83},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[85],{"type":48,"value":86}," install",{"type":42,"tag":70,"props":88,"children":89},{"style":83},[90],{"type":48,"value":91}," -g",{"type":42,"tag":70,"props":93,"children":94},{"style":83},[95],{"type":48,"value":96}," netlify-cli",{"type":42,"tag":70,"props":98,"children":100},{"style":99},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[101],{"type":48,"value":102},"    # Global (for local dev)\n",{"type":42,"tag":70,"props":104,"children":106},{"class":72,"line":105},2,[107,111,115,119,124],{"type":42,"tag":70,"props":108,"children":109},{"style":77},[110],{"type":48,"value":80},{"type":42,"tag":70,"props":112,"children":113},{"style":83},[114],{"type":48,"value":86},{"type":42,"tag":70,"props":116,"children":117},{"style":83},[118],{"type":48,"value":96},{"type":42,"tag":70,"props":120,"children":121},{"style":83},[122],{"type":48,"value":123}," -D",{"type":42,"tag":70,"props":125,"children":126},{"style":99},[127],{"type":48,"value":128},"    # Local (for CI)\n",{"type":42,"tag":130,"props":131,"children":132},"p",{},[133],{"type":48,"value":134},"Requires Node.js 18.14.0+.",{"type":42,"tag":51,"props":136,"children":138},{"id":137},"authentication",[139],{"type":48,"value":140},"Authentication",{"type":42,"tag":58,"props":142,"children":144},{"className":60,"code":143,"language":62,"meta":63,"style":63},"netlify login       # Opens browser for OAuth\nnetlify status      # Check auth + linked site status\n",[145],{"type":42,"tag":66,"props":146,"children":147},{"__ignoreMap":63},[148,165],{"type":42,"tag":70,"props":149,"children":150},{"class":72,"line":73},[151,155,160],{"type":42,"tag":70,"props":152,"children":153},{"style":77},[154],{"type":48,"value":21},{"type":42,"tag":70,"props":156,"children":157},{"style":83},[158],{"type":48,"value":159}," login",{"type":42,"tag":70,"props":161,"children":162},{"style":99},[163],{"type":48,"value":164},"       # Opens browser for OAuth\n",{"type":42,"tag":70,"props":166,"children":167},{"class":72,"line":105},[168,172,177],{"type":42,"tag":70,"props":169,"children":170},{"style":77},[171],{"type":48,"value":21},{"type":42,"tag":70,"props":173,"children":174},{"style":83},[175],{"type":48,"value":176}," status",{"type":42,"tag":70,"props":178,"children":179},{"style":99},[180],{"type":48,"value":181},"      # Check auth + linked site status\n",{"type":42,"tag":130,"props":183,"children":184},{},[185,187,193],{"type":48,"value":186},"For CI, set ",{"type":42,"tag":66,"props":188,"children":190},{"className":189},[],[191],{"type":48,"value":192},"NETLIFY_AUTH_TOKEN",{"type":48,"value":194}," environment variable instead.",{"type":42,"tag":51,"props":196,"children":198},{"id":197},"linking-a-site",[199],{"type":48,"value":200},"Linking a Site",{"type":42,"tag":130,"props":202,"children":203},{},[204,206,212],{"type":48,"value":205},"Check if already linked with ",{"type":42,"tag":66,"props":207,"children":209},{"className":208},[],[210],{"type":48,"value":211},"netlify status",{"type":48,"value":213},". If not:",{"type":42,"tag":58,"props":215,"children":217},{"className":60,"code":216,"language":62,"meta":63,"style":63},"# Interactive\nnetlify link\n\n# By Git remote (if using Git)\nnetlify link --git-remote-url https:\u002F\u002Fgithub.com\u002Forg\u002Frepo\n\n# Create new site\nnetlify init           # With Git CI\u002FCD setup\nnetlify init --manual  # Without Git CI\u002FCD\n",[218],{"type":42,"tag":66,"props":219,"children":220},{"__ignoreMap":63},[221,229,241,251,260,283,291,300,318],{"type":42,"tag":70,"props":222,"children":223},{"class":72,"line":73},[224],{"type":42,"tag":70,"props":225,"children":226},{"style":99},[227],{"type":48,"value":228},"# Interactive\n",{"type":42,"tag":70,"props":230,"children":231},{"class":72,"line":105},[232,236],{"type":42,"tag":70,"props":233,"children":234},{"style":77},[235],{"type":48,"value":21},{"type":42,"tag":70,"props":237,"children":238},{"style":83},[239],{"type":48,"value":240}," link\n",{"type":42,"tag":70,"props":242,"children":244},{"class":72,"line":243},3,[245],{"type":42,"tag":70,"props":246,"children":248},{"emptyLinePlaceholder":247},true,[249],{"type":48,"value":250},"\n",{"type":42,"tag":70,"props":252,"children":254},{"class":72,"line":253},4,[255],{"type":42,"tag":70,"props":256,"children":257},{"style":99},[258],{"type":48,"value":259},"# By Git remote (if using Git)\n",{"type":42,"tag":70,"props":261,"children":263},{"class":72,"line":262},5,[264,268,273,278],{"type":42,"tag":70,"props":265,"children":266},{"style":77},[267],{"type":48,"value":21},{"type":42,"tag":70,"props":269,"children":270},{"style":83},[271],{"type":48,"value":272}," link",{"type":42,"tag":70,"props":274,"children":275},{"style":83},[276],{"type":48,"value":277}," --git-remote-url",{"type":42,"tag":70,"props":279,"children":280},{"style":83},[281],{"type":48,"value":282}," https:\u002F\u002Fgithub.com\u002Forg\u002Frepo\n",{"type":42,"tag":70,"props":284,"children":286},{"class":72,"line":285},6,[287],{"type":42,"tag":70,"props":288,"children":289},{"emptyLinePlaceholder":247},[290],{"type":48,"value":250},{"type":42,"tag":70,"props":292,"children":294},{"class":72,"line":293},7,[295],{"type":42,"tag":70,"props":296,"children":297},{"style":99},[298],{"type":48,"value":299},"# Create new site\n",{"type":42,"tag":70,"props":301,"children":303},{"class":72,"line":302},8,[304,308,313],{"type":42,"tag":70,"props":305,"children":306},{"style":77},[307],{"type":48,"value":21},{"type":42,"tag":70,"props":309,"children":310},{"style":83},[311],{"type":48,"value":312}," init",{"type":42,"tag":70,"props":314,"children":315},{"style":99},[316],{"type":48,"value":317},"           # With Git CI\u002FCD setup\n",{"type":42,"tag":70,"props":319,"children":321},{"class":72,"line":320},9,[322,326,330,335],{"type":42,"tag":70,"props":323,"children":324},{"style":77},[325],{"type":48,"value":21},{"type":42,"tag":70,"props":327,"children":328},{"style":83},[329],{"type":48,"value":312},{"type":42,"tag":70,"props":331,"children":332},{"style":83},[333],{"type":48,"value":334}," --manual",{"type":42,"tag":70,"props":336,"children":337},{"style":99},[338],{"type":48,"value":339},"  # Without Git CI\u002FCD\n",{"type":42,"tag":130,"props":341,"children":342},{},[343,345,351,353,359,361,367],{"type":48,"value":344},"Site ID is stored in ",{"type":42,"tag":66,"props":346,"children":348},{"className":347},[],[349],{"type":48,"value":350},".netlify\u002Fstate.json",{"type":48,"value":352},". Add ",{"type":42,"tag":66,"props":354,"children":356},{"className":355},[],[357],{"type":48,"value":358},".netlify",{"type":48,"value":360}," to ",{"type":42,"tag":66,"props":362,"children":364},{"className":363},[],[365],{"type":48,"value":366},".gitignore",{"type":48,"value":368},".",{"type":42,"tag":51,"props":370,"children":372},{"id":371},"deploying",[373],{"type":48,"value":374},"Deploying",{"type":42,"tag":376,"props":377,"children":379},"h3",{"id":378},"git-based-deploys-continuous-deployment",[380],{"type":48,"value":381},"Git-Based Deploys (Continuous Deployment)",{"type":42,"tag":130,"props":383,"children":384},{},[385,387,393],{"type":48,"value":386},"Set up with ",{"type":42,"tag":66,"props":388,"children":390},{"className":389},[],[391],{"type":48,"value":392},"netlify init",{"type":48,"value":394},". Automatic deploys trigger on push\u002FPR:",{"type":42,"tag":396,"props":397,"children":398},"ul",{},[399,405,410],{"type":42,"tag":400,"props":401,"children":402},"li",{},[403],{"type":48,"value":404},"Push to production branch → production deploy",{"type":42,"tag":400,"props":406,"children":407},{},[408],{"type":48,"value":409},"Open PR → deploy preview with unique URL",{"type":42,"tag":400,"props":411,"children":412},{},[413],{"type":48,"value":414},"Push to other branches → branch deploy",{"type":42,"tag":130,"props":416,"children":417},{},[418,420,426],{"type":48,"value":419},"Build runs on Netlify's servers. Configure build settings in ",{"type":42,"tag":66,"props":421,"children":423},{"className":422},[],[424],{"type":48,"value":425},"netlify.toml",{"type":48,"value":368},{"type":42,"tag":376,"props":428,"children":430},{"id":429},"manual-local-deploys-no-git-required",[431],{"type":48,"value":432},"Manual \u002F Local Deploys (No Git Required)",{"type":42,"tag":130,"props":434,"children":435},{},[436],{"type":48,"value":437},"Build locally, then upload:",{"type":42,"tag":58,"props":439,"children":441},{"className":60,"code":440,"language":62,"meta":63,"style":63},"netlify deploy          # Draft deploy (preview URL)\nnetlify deploy --prod   # Production deploy\nnetlify deploy --dir=dist  # Specify output directory\n",[442],{"type":42,"tag":66,"props":443,"children":444},{"__ignoreMap":63},[445,462,483],{"type":42,"tag":70,"props":446,"children":447},{"class":72,"line":73},[448,452,457],{"type":42,"tag":70,"props":449,"children":450},{"style":77},[451],{"type":48,"value":21},{"type":42,"tag":70,"props":453,"children":454},{"style":83},[455],{"type":48,"value":456}," deploy",{"type":42,"tag":70,"props":458,"children":459},{"style":99},[460],{"type":48,"value":461},"          # Draft deploy (preview URL)\n",{"type":42,"tag":70,"props":463,"children":464},{"class":72,"line":105},[465,469,473,478],{"type":42,"tag":70,"props":466,"children":467},{"style":77},[468],{"type":48,"value":21},{"type":42,"tag":70,"props":470,"children":471},{"style":83},[472],{"type":48,"value":456},{"type":42,"tag":70,"props":474,"children":475},{"style":83},[476],{"type":48,"value":477}," --prod",{"type":42,"tag":70,"props":479,"children":480},{"style":99},[481],{"type":48,"value":482},"   # Production deploy\n",{"type":42,"tag":70,"props":484,"children":485},{"class":72,"line":243},[486,490,494,499],{"type":42,"tag":70,"props":487,"children":488},{"style":77},[489],{"type":48,"value":21},{"type":42,"tag":70,"props":491,"children":492},{"style":83},[493],{"type":48,"value":456},{"type":42,"tag":70,"props":495,"children":496},{"style":83},[497],{"type":48,"value":498}," --dir=dist",{"type":42,"tag":70,"props":500,"children":501},{"style":99},[502],{"type":48,"value":503},"  # Specify output directory\n",{"type":42,"tag":130,"props":505,"children":506},{},[507],{"type":48,"value":508},"This works without Git — useful for prototypes, local-only projects, or CI pipelines.",{"type":42,"tag":51,"props":510,"children":511},{"id":14},[512],{"type":48,"value":13},{"type":42,"tag":376,"props":514,"children":516},{"id":515},"option-1-netlify-dev",[517],{"type":48,"value":518},"Option 1: netlify dev",{"type":42,"tag":58,"props":520,"children":522},{"className":60,"code":521,"language":62,"meta":63,"style":63},"netlify dev\n",[523],{"type":42,"tag":66,"props":524,"children":525},{"__ignoreMap":63},[526],{"type":42,"tag":70,"props":527,"children":528},{"class":72,"line":73},[529,533],{"type":42,"tag":70,"props":530,"children":531},{"style":77},[532],{"type":48,"value":21},{"type":42,"tag":70,"props":534,"children":535},{"style":83},[536],{"type":48,"value":537}," dev\n",{"type":42,"tag":130,"props":539,"children":540},{},[541],{"type":48,"value":542},"Wraps your framework's dev server and provides:",{"type":42,"tag":396,"props":544,"children":545},{},[546,551,556],{"type":42,"tag":400,"props":547,"children":548},{},[549],{"type":48,"value":550},"Environment variable injection",{"type":42,"tag":400,"props":552,"children":553},{},[554],{"type":48,"value":555},"Functions and edge functions",{"type":42,"tag":400,"props":557,"children":558},{},[559],{"type":48,"value":560},"Redirects and headers processing",{"type":42,"tag":376,"props":562,"children":564},{"id":563},"option-2-netlify-vite-plugin-vite-based-projects",[565],{"type":48,"value":566},"Option 2: Netlify Vite Plugin (Vite-based projects)",{"type":42,"tag":130,"props":568,"children":569},{},[570],{"type":48,"value":571},"For projects using Vite (React SPA, TanStack Start, SvelteKit, Remix), the Vite plugin provides Netlify platform primitives directly in the framework's dev server:",{"type":42,"tag":58,"props":573,"children":575},{"className":60,"code":574,"language":62,"meta":63,"style":63},"npm install @netlify\u002Fvite-plugin\n",[576],{"type":42,"tag":66,"props":577,"children":578},{"__ignoreMap":63},[579],{"type":42,"tag":70,"props":580,"children":581},{"class":72,"line":73},[582,586,590],{"type":42,"tag":70,"props":583,"children":584},{"style":77},[585],{"type":48,"value":80},{"type":42,"tag":70,"props":587,"children":588},{"style":83},[589],{"type":48,"value":86},{"type":42,"tag":70,"props":591,"children":592},{"style":83},[593],{"type":48,"value":594}," @netlify\u002Fvite-plugin\n",{"type":42,"tag":58,"props":596,"children":600},{"className":597,"code":598,"language":599,"meta":63,"style":63},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F vite.config.ts\nimport netlify from \"@netlify\u002Fvite-plugin\";\nexport default defineConfig({ plugins: [netlify()] });\n","typescript",[601],{"type":42,"tag":66,"props":602,"children":603},{"__ignoreMap":63},[604,612,653],{"type":42,"tag":70,"props":605,"children":606},{"class":72,"line":73},[607],{"type":42,"tag":70,"props":608,"children":609},{"style":99},[610],{"type":48,"value":611},"\u002F\u002F vite.config.ts\n",{"type":42,"tag":70,"props":613,"children":614},{"class":72,"line":105},[615,621,627,632,638,643,648],{"type":42,"tag":70,"props":616,"children":618},{"style":617},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[619],{"type":48,"value":620},"import",{"type":42,"tag":70,"props":622,"children":624},{"style":623},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[625],{"type":48,"value":626}," netlify ",{"type":42,"tag":70,"props":628,"children":629},{"style":617},[630],{"type":48,"value":631},"from",{"type":42,"tag":70,"props":633,"children":635},{"style":634},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[636],{"type":48,"value":637}," \"",{"type":42,"tag":70,"props":639,"children":640},{"style":83},[641],{"type":48,"value":642},"@netlify\u002Fvite-plugin",{"type":42,"tag":70,"props":644,"children":645},{"style":634},[646],{"type":48,"value":647},"\"",{"type":42,"tag":70,"props":649,"children":650},{"style":634},[651],{"type":48,"value":652},";\n",{"type":42,"tag":70,"props":654,"children":655},{"class":72,"line":243},[656,661,666,672,677,682,688,693,698,702,707,712,717],{"type":42,"tag":70,"props":657,"children":658},{"style":617},[659],{"type":48,"value":660},"export",{"type":42,"tag":70,"props":662,"children":663},{"style":617},[664],{"type":48,"value":665}," default",{"type":42,"tag":70,"props":667,"children":669},{"style":668},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[670],{"type":48,"value":671}," defineConfig",{"type":42,"tag":70,"props":673,"children":674},{"style":623},[675],{"type":48,"value":676},"(",{"type":42,"tag":70,"props":678,"children":679},{"style":634},[680],{"type":48,"value":681},"{",{"type":42,"tag":70,"props":683,"children":685},{"style":684},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[686],{"type":48,"value":687}," plugins",{"type":42,"tag":70,"props":689,"children":690},{"style":634},[691],{"type":48,"value":692},":",{"type":42,"tag":70,"props":694,"children":695},{"style":623},[696],{"type":48,"value":697}," [",{"type":42,"tag":70,"props":699,"children":700},{"style":668},[701],{"type":48,"value":21},{"type":42,"tag":70,"props":703,"children":704},{"style":623},[705],{"type":48,"value":706},"()] ",{"type":42,"tag":70,"props":708,"children":709},{"style":634},[710],{"type":48,"value":711},"}",{"type":42,"tag":70,"props":713,"children":714},{"style":623},[715],{"type":48,"value":716},")",{"type":42,"tag":70,"props":718,"children":719},{"style":634},[720],{"type":48,"value":652},{"type":42,"tag":130,"props":722,"children":723},{},[724,726,732,734,740],{"type":48,"value":725},"Then run your normal dev command (",{"type":42,"tag":66,"props":727,"children":729},{"className":728},[],[730],{"type":48,"value":731},"npm run dev",{"type":48,"value":733},") — no ",{"type":42,"tag":66,"props":735,"children":737},{"className":736},[],[738],{"type":48,"value":739},"netlify dev",{"type":48,"value":741}," wrapper needed. This gives you access to Blobs, DB, Functions, and environment variables during development.",{"type":42,"tag":130,"props":743,"children":744},{},[745,747,753],{"type":48,"value":746},"See the ",{"type":42,"tag":748,"props":749,"children":750},"strong",{},[751],{"type":48,"value":752},"netlify-frameworks",{"type":48,"value":754}," skill for framework-specific local dev guidance.",{"type":42,"tag":51,"props":756,"children":758},{"id":757},"environment-variables",[759],{"type":48,"value":760},"Environment Variables",{"type":42,"tag":376,"props":762,"children":764},{"id":763},"cli-management",[765],{"type":48,"value":766},"CLI Management",{"type":42,"tag":58,"props":768,"children":770},{"className":60,"code":769,"language":62,"meta":63,"style":63},"# Set\nnetlify env:set API_KEY \"value\"\nnetlify env:set API_KEY \"value\" --secret              # Hidden from logs\nnetlify env:set API_KEY \"value\" --context production   # Context-specific\n\n# Get\nnetlify env:get API_KEY\n\n# List\nnetlify env:list\nnetlify env:list --plain > .env                        # Export to file\n\n# Import from file\nnetlify env:import .env\n\n# Delete\nnetlify env:unset API_KEY\n",[771],{"type":42,"tag":66,"props":772,"children":773},{"__ignoreMap":63},[774,782,813,850,892,899,907,924,931,939,952,985,993,1002,1020,1028,1037],{"type":42,"tag":70,"props":775,"children":776},{"class":72,"line":73},[777],{"type":42,"tag":70,"props":778,"children":779},{"style":99},[780],{"type":48,"value":781},"# Set\n",{"type":42,"tag":70,"props":783,"children":784},{"class":72,"line":105},[785,789,794,799,803,808],{"type":42,"tag":70,"props":786,"children":787},{"style":77},[788],{"type":48,"value":21},{"type":42,"tag":70,"props":790,"children":791},{"style":83},[792],{"type":48,"value":793}," env:set",{"type":42,"tag":70,"props":795,"children":796},{"style":83},[797],{"type":48,"value":798}," API_KEY",{"type":42,"tag":70,"props":800,"children":801},{"style":634},[802],{"type":48,"value":637},{"type":42,"tag":70,"props":804,"children":805},{"style":83},[806],{"type":48,"value":807},"value",{"type":42,"tag":70,"props":809,"children":810},{"style":634},[811],{"type":48,"value":812},"\"\n",{"type":42,"tag":70,"props":814,"children":815},{"class":72,"line":243},[816,820,824,828,832,836,840,845],{"type":42,"tag":70,"props":817,"children":818},{"style":77},[819],{"type":48,"value":21},{"type":42,"tag":70,"props":821,"children":822},{"style":83},[823],{"type":48,"value":793},{"type":42,"tag":70,"props":825,"children":826},{"style":83},[827],{"type":48,"value":798},{"type":42,"tag":70,"props":829,"children":830},{"style":634},[831],{"type":48,"value":637},{"type":42,"tag":70,"props":833,"children":834},{"style":83},[835],{"type":48,"value":807},{"type":42,"tag":70,"props":837,"children":838},{"style":634},[839],{"type":48,"value":647},{"type":42,"tag":70,"props":841,"children":842},{"style":83},[843],{"type":48,"value":844}," --secret",{"type":42,"tag":70,"props":846,"children":847},{"style":99},[848],{"type":48,"value":849},"              # Hidden from logs\n",{"type":42,"tag":70,"props":851,"children":852},{"class":72,"line":253},[853,857,861,865,869,873,877,882,887],{"type":42,"tag":70,"props":854,"children":855},{"style":77},[856],{"type":48,"value":21},{"type":42,"tag":70,"props":858,"children":859},{"style":83},[860],{"type":48,"value":793},{"type":42,"tag":70,"props":862,"children":863},{"style":83},[864],{"type":48,"value":798},{"type":42,"tag":70,"props":866,"children":867},{"style":634},[868],{"type":48,"value":637},{"type":42,"tag":70,"props":870,"children":871},{"style":83},[872],{"type":48,"value":807},{"type":42,"tag":70,"props":874,"children":875},{"style":634},[876],{"type":48,"value":647},{"type":42,"tag":70,"props":878,"children":879},{"style":83},[880],{"type":48,"value":881}," --context",{"type":42,"tag":70,"props":883,"children":884},{"style":83},[885],{"type":48,"value":886}," production",{"type":42,"tag":70,"props":888,"children":889},{"style":99},[890],{"type":48,"value":891},"   # Context-specific\n",{"type":42,"tag":70,"props":893,"children":894},{"class":72,"line":262},[895],{"type":42,"tag":70,"props":896,"children":897},{"emptyLinePlaceholder":247},[898],{"type":48,"value":250},{"type":42,"tag":70,"props":900,"children":901},{"class":72,"line":285},[902],{"type":42,"tag":70,"props":903,"children":904},{"style":99},[905],{"type":48,"value":906},"# Get\n",{"type":42,"tag":70,"props":908,"children":909},{"class":72,"line":293},[910,914,919],{"type":42,"tag":70,"props":911,"children":912},{"style":77},[913],{"type":48,"value":21},{"type":42,"tag":70,"props":915,"children":916},{"style":83},[917],{"type":48,"value":918}," env:get",{"type":42,"tag":70,"props":920,"children":921},{"style":83},[922],{"type":48,"value":923}," API_KEY\n",{"type":42,"tag":70,"props":925,"children":926},{"class":72,"line":302},[927],{"type":42,"tag":70,"props":928,"children":929},{"emptyLinePlaceholder":247},[930],{"type":48,"value":250},{"type":42,"tag":70,"props":932,"children":933},{"class":72,"line":320},[934],{"type":42,"tag":70,"props":935,"children":936},{"style":99},[937],{"type":48,"value":938},"# List\n",{"type":42,"tag":70,"props":940,"children":942},{"class":72,"line":941},10,[943,947],{"type":42,"tag":70,"props":944,"children":945},{"style":77},[946],{"type":48,"value":21},{"type":42,"tag":70,"props":948,"children":949},{"style":83},[950],{"type":48,"value":951}," env:list\n",{"type":42,"tag":70,"props":953,"children":955},{"class":72,"line":954},11,[956,960,965,970,975,980],{"type":42,"tag":70,"props":957,"children":958},{"style":77},[959],{"type":48,"value":21},{"type":42,"tag":70,"props":961,"children":962},{"style":83},[963],{"type":48,"value":964}," env:list",{"type":42,"tag":70,"props":966,"children":967},{"style":83},[968],{"type":48,"value":969}," --plain",{"type":42,"tag":70,"props":971,"children":972},{"style":634},[973],{"type":48,"value":974}," >",{"type":42,"tag":70,"props":976,"children":977},{"style":83},[978],{"type":48,"value":979}," .env",{"type":42,"tag":70,"props":981,"children":982},{"style":99},[983],{"type":48,"value":984},"                        # Export to file\n",{"type":42,"tag":70,"props":986,"children":988},{"class":72,"line":987},12,[989],{"type":42,"tag":70,"props":990,"children":991},{"emptyLinePlaceholder":247},[992],{"type":48,"value":250},{"type":42,"tag":70,"props":994,"children":996},{"class":72,"line":995},13,[997],{"type":42,"tag":70,"props":998,"children":999},{"style":99},[1000],{"type":48,"value":1001},"# Import from file\n",{"type":42,"tag":70,"props":1003,"children":1005},{"class":72,"line":1004},14,[1006,1010,1015],{"type":42,"tag":70,"props":1007,"children":1008},{"style":77},[1009],{"type":48,"value":21},{"type":42,"tag":70,"props":1011,"children":1012},{"style":83},[1013],{"type":48,"value":1014}," env:import",{"type":42,"tag":70,"props":1016,"children":1017},{"style":83},[1018],{"type":48,"value":1019}," .env\n",{"type":42,"tag":70,"props":1021,"children":1023},{"class":72,"line":1022},15,[1024],{"type":42,"tag":70,"props":1025,"children":1026},{"emptyLinePlaceholder":247},[1027],{"type":48,"value":250},{"type":42,"tag":70,"props":1029,"children":1031},{"class":72,"line":1030},16,[1032],{"type":42,"tag":70,"props":1033,"children":1034},{"style":99},[1035],{"type":48,"value":1036},"# Delete\n",{"type":42,"tag":70,"props":1038,"children":1040},{"class":72,"line":1039},17,[1041,1045,1050],{"type":42,"tag":70,"props":1042,"children":1043},{"style":77},[1044],{"type":48,"value":21},{"type":42,"tag":70,"props":1046,"children":1047},{"style":83},[1048],{"type":48,"value":1049}," env:unset",{"type":42,"tag":70,"props":1051,"children":1052},{"style":83},[1053],{"type":48,"value":923},{"type":42,"tag":376,"props":1055,"children":1057},{"id":1056},"context-scoping",[1058],{"type":48,"value":1059},"Context Scoping",{"type":42,"tag":130,"props":1061,"children":1062},{},[1063],{"type":48,"value":1064},"Variables can be scoped to deploy contexts:",{"type":42,"tag":58,"props":1066,"children":1068},{"className":60,"code":1067,"language":62,"meta":63,"style":63},"netlify env:set API_URL \"https:\u002F\u002Fapi.prod.com\" --context production\nnetlify env:set API_URL \"https:\u002F\u002Fapi.staging.com\" --context deploy-preview\nnetlify env:set DEBUG \"true\" --context branch:feature-x\n",[1069],{"type":42,"tag":66,"props":1070,"children":1071},{"__ignoreMap":63},[1072,1110,1147],{"type":42,"tag":70,"props":1073,"children":1074},{"class":72,"line":73},[1075,1079,1083,1088,1092,1097,1101,1105],{"type":42,"tag":70,"props":1076,"children":1077},{"style":77},[1078],{"type":48,"value":21},{"type":42,"tag":70,"props":1080,"children":1081},{"style":83},[1082],{"type":48,"value":793},{"type":42,"tag":70,"props":1084,"children":1085},{"style":83},[1086],{"type":48,"value":1087}," API_URL",{"type":42,"tag":70,"props":1089,"children":1090},{"style":634},[1091],{"type":48,"value":637},{"type":42,"tag":70,"props":1093,"children":1094},{"style":83},[1095],{"type":48,"value":1096},"https:\u002F\u002Fapi.prod.com",{"type":42,"tag":70,"props":1098,"children":1099},{"style":634},[1100],{"type":48,"value":647},{"type":42,"tag":70,"props":1102,"children":1103},{"style":83},[1104],{"type":48,"value":881},{"type":42,"tag":70,"props":1106,"children":1107},{"style":83},[1108],{"type":48,"value":1109}," production\n",{"type":42,"tag":70,"props":1111,"children":1112},{"class":72,"line":105},[1113,1117,1121,1125,1129,1134,1138,1142],{"type":42,"tag":70,"props":1114,"children":1115},{"style":77},[1116],{"type":48,"value":21},{"type":42,"tag":70,"props":1118,"children":1119},{"style":83},[1120],{"type":48,"value":793},{"type":42,"tag":70,"props":1122,"children":1123},{"style":83},[1124],{"type":48,"value":1087},{"type":42,"tag":70,"props":1126,"children":1127},{"style":634},[1128],{"type":48,"value":637},{"type":42,"tag":70,"props":1130,"children":1131},{"style":83},[1132],{"type":48,"value":1133},"https:\u002F\u002Fapi.staging.com",{"type":42,"tag":70,"props":1135,"children":1136},{"style":634},[1137],{"type":48,"value":647},{"type":42,"tag":70,"props":1139,"children":1140},{"style":83},[1141],{"type":48,"value":881},{"type":42,"tag":70,"props":1143,"children":1144},{"style":83},[1145],{"type":48,"value":1146}," deploy-preview\n",{"type":42,"tag":70,"props":1148,"children":1149},{"class":72,"line":243},[1150,1154,1158,1163,1167,1172,1176,1180],{"type":42,"tag":70,"props":1151,"children":1152},{"style":77},[1153],{"type":48,"value":21},{"type":42,"tag":70,"props":1155,"children":1156},{"style":83},[1157],{"type":48,"value":793},{"type":42,"tag":70,"props":1159,"children":1160},{"style":83},[1161],{"type":48,"value":1162}," DEBUG",{"type":42,"tag":70,"props":1164,"children":1165},{"style":634},[1166],{"type":48,"value":637},{"type":42,"tag":70,"props":1168,"children":1169},{"style":83},[1170],{"type":48,"value":1171},"true",{"type":42,"tag":70,"props":1173,"children":1174},{"style":634},[1175],{"type":48,"value":647},{"type":42,"tag":70,"props":1177,"children":1178},{"style":83},[1179],{"type":48,"value":881},{"type":42,"tag":70,"props":1181,"children":1182},{"style":83},[1183],{"type":48,"value":1184}," branch:feature-x\n",{"type":42,"tag":376,"props":1186,"children":1188},{"id":1187},"accessing-in-code",[1189],{"type":48,"value":1190},"Accessing in Code",{"type":42,"tag":396,"props":1192,"children":1193},{},[1194,1218,1242],{"type":42,"tag":400,"props":1195,"children":1196},{},[1197,1202,1204,1210,1212],{"type":42,"tag":748,"props":1198,"children":1199},{},[1200],{"type":48,"value":1201},"Server-side (Functions)",{"type":48,"value":1203},": Use ",{"type":42,"tag":66,"props":1205,"children":1207},{"className":1206},[],[1208],{"type":48,"value":1209},"Netlify.env.get(\"VAR\")",{"type":48,"value":1211}," (preferred) or ",{"type":42,"tag":66,"props":1213,"children":1215},{"className":1214},[],[1216],{"type":48,"value":1217},"process.env.VAR",{"type":42,"tag":400,"props":1219,"children":1220},{},[1221,1226,1228,1234,1236],{"type":42,"tag":748,"props":1222,"children":1223},{},[1224],{"type":48,"value":1225},"Client-side (Vite)",{"type":48,"value":1227},": Only ",{"type":42,"tag":66,"props":1229,"children":1231},{"className":1230},[],[1232],{"type":48,"value":1233},"VITE_",{"type":48,"value":1235},"-prefixed vars via ",{"type":42,"tag":66,"props":1237,"children":1239},{"className":1238},[],[1240],{"type":48,"value":1241},"import.meta.env.VITE_VAR",{"type":42,"tag":400,"props":1243,"children":1244},{},[1245,1250,1251,1257,1258],{"type":42,"tag":748,"props":1246,"children":1247},{},[1248],{"type":48,"value":1249},"Client-side (Astro)",{"type":48,"value":1227},{"type":42,"tag":66,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":48,"value":1256},"PUBLIC_",{"type":48,"value":1235},{"type":42,"tag":66,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":48,"value":1263},"import.meta.env.PUBLIC_VAR",{"type":42,"tag":130,"props":1265,"children":1266},{},[1267,1286],{"type":42,"tag":748,"props":1268,"children":1269},{},[1270,1272,1277,1279,1284],{"type":48,"value":1271},"Never use ",{"type":42,"tag":66,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":48,"value":1233},{"type":48,"value":1278}," or ",{"type":42,"tag":66,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":48,"value":1256},{"type":48,"value":1285}," prefix for secrets",{"type":48,"value":1287}," — these are exposed to the browser.",{"type":42,"tag":51,"props":1289,"children":1291},{"id":1290},"useful-commands",[1292],{"type":48,"value":1293},"Useful Commands",{"type":42,"tag":1295,"props":1296,"children":1297},"table",{},[1298,1317],{"type":42,"tag":1299,"props":1300,"children":1301},"thead",{},[1302],{"type":42,"tag":1303,"props":1304,"children":1305},"tr",{},[1306,1312],{"type":42,"tag":1307,"props":1308,"children":1309},"th",{},[1310],{"type":48,"value":1311},"Command",{"type":42,"tag":1307,"props":1313,"children":1314},{},[1315],{"type":48,"value":1316},"Description",{"type":42,"tag":1318,"props":1319,"children":1320},"tbody",{},[1321,1338,1354,1371,1388,1405,1422,1439],{"type":42,"tag":1303,"props":1322,"children":1323},{},[1324,1333],{"type":42,"tag":1325,"props":1326,"children":1327},"td",{},[1328],{"type":42,"tag":66,"props":1329,"children":1331},{"className":1330},[],[1332],{"type":48,"value":211},{"type":42,"tag":1325,"props":1334,"children":1335},{},[1336],{"type":48,"value":1337},"Auth and site link status",{"type":42,"tag":1303,"props":1339,"children":1340},{},[1341,1349],{"type":42,"tag":1325,"props":1342,"children":1343},{},[1344],{"type":42,"tag":66,"props":1345,"children":1347},{"className":1346},[],[1348],{"type":48,"value":739},{"type":42,"tag":1325,"props":1350,"children":1351},{},[1352],{"type":48,"value":1353},"Start local dev server",{"type":42,"tag":1303,"props":1355,"children":1356},{},[1357,1366],{"type":42,"tag":1325,"props":1358,"children":1359},{},[1360],{"type":42,"tag":66,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":48,"value":1365},"netlify build",{"type":42,"tag":1325,"props":1367,"children":1368},{},[1369],{"type":48,"value":1370},"Run build locally (mimics Netlify environment)",{"type":42,"tag":1303,"props":1372,"children":1373},{},[1374,1383],{"type":42,"tag":1325,"props":1375,"children":1376},{},[1377],{"type":42,"tag":66,"props":1378,"children":1380},{"className":1379},[],[1381],{"type":48,"value":1382},"netlify deploy",{"type":42,"tag":1325,"props":1384,"children":1385},{},[1386],{"type":48,"value":1387},"Draft deploy",{"type":42,"tag":1303,"props":1389,"children":1390},{},[1391,1400],{"type":42,"tag":1325,"props":1392,"children":1393},{},[1394],{"type":42,"tag":66,"props":1395,"children":1397},{"className":1396},[],[1398],{"type":48,"value":1399},"netlify deploy --prod",{"type":42,"tag":1325,"props":1401,"children":1402},{},[1403],{"type":48,"value":1404},"Production deploy",{"type":42,"tag":1303,"props":1406,"children":1407},{},[1408,1417],{"type":42,"tag":1325,"props":1409,"children":1410},{},[1411],{"type":42,"tag":66,"props":1412,"children":1414},{"className":1413},[],[1415],{"type":48,"value":1416},"netlify dev:exec \u003Ccmd>",{"type":42,"tag":1325,"props":1418,"children":1419},{},[1420],{"type":48,"value":1421},"Run command with Netlify environment loaded",{"type":42,"tag":1303,"props":1423,"children":1424},{},[1425,1434],{"type":42,"tag":1325,"props":1426,"children":1427},{},[1428],{"type":42,"tag":66,"props":1429,"children":1431},{"className":1430},[],[1432],{"type":48,"value":1433},"netlify env:list",{"type":42,"tag":1325,"props":1435,"children":1436},{},[1437],{"type":48,"value":1438},"List environment variables",{"type":42,"tag":1303,"props":1440,"children":1441},{},[1442,1451],{"type":42,"tag":1325,"props":1443,"children":1444},{},[1445],{"type":42,"tag":66,"props":1446,"children":1448},{"className":1447},[],[1449],{"type":48,"value":1450},"netlify clone org\u002Frepo",{"type":42,"tag":1325,"props":1452,"children":1453},{},[1454],{"type":48,"value":1455},"Clone, link, and set up in one step",{"type":42,"tag":1457,"props":1458,"children":1459},"style",{},[1460],{"type":48,"value":1461},"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":1463,"total":1583},[1464,1483,1499,1509,1529,1551,1571],{"slug":1465,"name":1465,"fn":1466,"description":1467,"org":1468,"tags":1469,"stars":25,"repoUrl":26,"updatedAt":1482},"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},[1470,1473,1476,1479],{"name":1471,"slug":1472,"type":15},"Accessibility","accessibility",{"name":1474,"slug":1475,"type":15},"Charts","charts",{"name":1477,"slug":1478,"type":15},"Data Visualization","data-visualization",{"name":1480,"slug":1481,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":1484,"name":1484,"fn":1485,"description":1486,"org":1487,"tags":1488,"stars":25,"repoUrl":26,"updatedAt":1498},"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},[1489,1492,1495],{"name":1490,"slug":1491,"type":15},"Agents","agents",{"name":1493,"slug":1494,"type":15},"Browser Automation","browser-automation",{"name":1496,"slug":1497,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1500,"name":1500,"fn":1501,"description":1502,"org":1503,"tags":1504,"stars":25,"repoUrl":26,"updatedAt":1508},"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},[1505,1506,1507],{"name":1493,"slug":1494,"type":15},{"name":13,"slug":14,"type":15},{"name":1496,"slug":1497,"type":15},"2026-04-06T18:41:17.526867",{"slug":1510,"name":1510,"fn":1511,"description":1512,"org":1513,"tags":1514,"stars":25,"repoUrl":26,"updatedAt":1528},"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},[1515,1516,1519,1522,1525],{"name":1490,"slug":1491,"type":15},{"name":1517,"slug":1518,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1520,"slug":1521,"type":15},"SDK","sdk",{"name":1523,"slug":1524,"type":15},"Serverless","serverless",{"name":1526,"slug":1527,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1530,"name":1530,"fn":1531,"description":1532,"org":1533,"tags":1534,"stars":25,"repoUrl":26,"updatedAt":1550},"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},[1535,1538,1541,1544,1547],{"name":1536,"slug":1537,"type":15},"Frontend","frontend",{"name":1539,"slug":1540,"type":15},"React","react",{"name":1542,"slug":1543,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1545,"slug":1546,"type":15},"UI Components","ui-components",{"name":1548,"slug":1549,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1552,"name":1552,"fn":1553,"description":1554,"org":1555,"tags":1556,"stars":25,"repoUrl":26,"updatedAt":1570},"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},[1557,1560,1563,1566,1569],{"name":1558,"slug":1559,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1561,"slug":1562,"type":15},"Cost Optimization","cost-optimization",{"name":1564,"slug":1565,"type":15},"LLM","llm",{"name":1567,"slug":1568,"type":15},"Performance","performance",{"name":1548,"slug":1549,"type":15},"2026-04-06T18:40:44.377464",{"slug":1572,"name":1572,"fn":1573,"description":1574,"org":1575,"tags":1576,"stars":25,"repoUrl":26,"updatedAt":1582},"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},[1577,1578,1581],{"name":1561,"slug":1562,"type":15},{"name":1579,"slug":1580,"type":15},"Database","database",{"name":1564,"slug":1565,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1585,"total":1778},[1586,1607,1630,1647,1661,1676,1695,1707,1721,1735,1747,1762],{"slug":1587,"name":1587,"fn":1588,"description":1589,"org":1590,"tags":1591,"stars":1604,"repoUrl":1605,"updatedAt":1606},"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},[1592,1595,1598,1601],{"name":1593,"slug":1594,"type":15},"Documents","documents",{"name":1596,"slug":1597,"type":15},"Healthcare","healthcare",{"name":1599,"slug":1600,"type":15},"Insurance","insurance",{"name":1602,"slug":1603,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1608,"name":1608,"fn":1609,"description":1610,"org":1611,"tags":1612,"stars":1627,"repoUrl":1628,"updatedAt":1629},"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},[1613,1616,1618,1621,1624],{"name":1614,"slug":1615,"type":15},".NET","dotnet",{"name":1617,"slug":1608,"type":15},"ASP.NET Core",{"name":1619,"slug":1620,"type":15},"Blazor","blazor",{"name":1622,"slug":1623,"type":15},"C#","csharp",{"name":1625,"slug":1626,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1631,"name":1631,"fn":1632,"description":1633,"org":1634,"tags":1635,"stars":1627,"repoUrl":1628,"updatedAt":1646},"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},[1636,1639,1642,1645],{"name":1637,"slug":1638,"type":15},"Apps SDK","apps-sdk",{"name":1640,"slug":1641,"type":15},"ChatGPT","chatgpt",{"name":1643,"slug":1644,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1648,"name":1648,"fn":1649,"description":1650,"org":1651,"tags":1652,"stars":1627,"repoUrl":1628,"updatedAt":1660},"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},[1653,1656,1657],{"name":1654,"slug":1655,"type":15},"API Development","api-development",{"name":17,"slug":18,"type":15},{"name":1658,"slug":1659,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1662,"name":1662,"fn":1663,"description":1664,"org":1665,"tags":1666,"stars":1627,"repoUrl":1628,"updatedAt":1675},"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},[1667,1670,1673,1674],{"name":1668,"slug":1669,"type":15},"Cloudflare","cloudflare",{"name":1671,"slug":1672,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1517,"slug":1518,"type":15},{"name":23,"slug":24,"type":15},"2026-04-12T05:07:14.275118",{"slug":1677,"name":1677,"fn":1678,"description":1679,"org":1680,"tags":1681,"stars":1627,"repoUrl":1628,"updatedAt":1694},"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},[1682,1685,1688,1691],{"name":1683,"slug":1684,"type":15},"Productivity","productivity",{"name":1686,"slug":1687,"type":15},"Project Management","project-management",{"name":1689,"slug":1690,"type":15},"Strategy","strategy",{"name":1692,"slug":1693,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1696,"name":1696,"fn":1697,"description":1698,"org":1699,"tags":1700,"stars":1627,"repoUrl":1628,"updatedAt":1706},"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},[1701,1702,1704,1705],{"name":1480,"slug":1481,"type":15},{"name":1703,"slug":1696,"type":15},"Figma",{"name":1536,"slug":1537,"type":15},{"name":1643,"slug":1644,"type":15},"2026-04-12T05:06:47.939943",{"slug":1708,"name":1708,"fn":1709,"description":1710,"org":1711,"tags":1712,"stars":1627,"repoUrl":1628,"updatedAt":1720},"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},[1713,1714,1717,1718,1719],{"name":1480,"slug":1481,"type":15},{"name":1715,"slug":1716,"type":15},"Design System","design-system",{"name":1703,"slug":1696,"type":15},{"name":1536,"slug":1537,"type":15},{"name":1545,"slug":1546,"type":15},"2026-05-10T05:59:52.971881",{"slug":1722,"name":1722,"fn":1723,"description":1724,"org":1725,"tags":1726,"stars":1627,"repoUrl":1628,"updatedAt":1734},"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},[1727,1728,1729,1732,1733],{"name":1480,"slug":1481,"type":15},{"name":1715,"slug":1716,"type":15},{"name":1730,"slug":1731,"type":15},"Documentation","documentation",{"name":1703,"slug":1696,"type":15},{"name":1536,"slug":1537,"type":15},"2026-05-16T06:07:47.821474",{"slug":1736,"name":1736,"fn":1737,"description":1738,"org":1739,"tags":1740,"stars":1627,"repoUrl":1628,"updatedAt":1746},"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},[1741,1742,1743,1744,1745],{"name":1480,"slug":1481,"type":15},{"name":1703,"slug":1696,"type":15},{"name":1536,"slug":1537,"type":15},{"name":1545,"slug":1546,"type":15},{"name":1625,"slug":1626,"type":15},"2026-05-16T06:07:40.583615",{"slug":1748,"name":1748,"fn":1749,"description":1750,"org":1751,"tags":1752,"stars":1627,"repoUrl":1628,"updatedAt":1761},"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},[1753,1756,1757,1760],{"name":1754,"slug":1755,"type":15},"Animation","animation",{"name":1658,"slug":1659,"type":15},{"name":1758,"slug":1759,"type":15},"Creative","creative",{"name":1480,"slug":1481,"type":15},"2026-05-02T05:31:48.48485",{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":1627,"repoUrl":1628,"updatedAt":1777},"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},[1768,1769,1770,1773,1776],{"name":1758,"slug":1759,"type":15},{"name":1480,"slug":1481,"type":15},{"name":1771,"slug":1772,"type":15},"Image Generation","image-generation",{"name":1774,"slug":1775,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]