[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-netlify-deploy":3,"mdc--8bl5g6-key":36,"related-org-openai-netlify-deploy":1632,"related-repo-openai-netlify-deploy":1833},{"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-deploy","deploy projects to Netlify","Deploy projects to Netlify with the Netlify CLI. Use when the user wants to link a repo, validate deploy settings, run a deploy, or choose between preview and production flows.",{"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},"CLI","cli","tag",{"name":17,"slug":18,"type":15},"Netlify","netlify",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Frontend","frontend",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:42:01.635933",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-deploy","---\nname: netlify-deploy\ndescription: Deploy projects to Netlify with the Netlify CLI. Use when the user wants to link a repo, validate deploy settings, run a deploy, or choose between preview and production flows.\n---\n\n# Netlify Deployment Skill\n\nDeploy web projects to Netlify using the Netlify CLI with intelligent detection of project configuration and deployment context.\n\n## Overview\n\nThis skill automates Netlify deployments by:\n- Verifying Netlify CLI authentication\n- Detecting project configuration and framework\n- Linking to existing sites or creating new ones\n- Deploying to production or preview environments\n\n## Prerequisites\n\n- **Netlify CLI**: Installed via npx (no global install required)\n- **Authentication**: Netlify account with active login session\n- **Project**: Valid web project in current directory\n- When sandboxing blocks the deployment network calls, rerun with `sandbox_permissions=require_escalated`.\n- The deployment might take a few minutes. Use appropriate timeout values.\n\n## Authentication Pattern\n\nThe skill uses the **pre-authenticated Netlify CLI** approach:\n\n1. Check authentication status with `npx netlify status`\n2. If not authenticated, guide user through `npx netlify login`\n3. Fail gracefully if authentication cannot be established\n\nAuthentication uses either:\n- **Browser-based OAuth** (primary): `netlify login` opens browser for authentication\n- **API Key** (alternative): Set `NETLIFY_AUTH_TOKEN` environment variable\n\n## Workflow\n\n### 1. Verify Netlify CLI Authentication\n\nCheck if the user is logged into Netlify:\n\n```bash\nnpx netlify status\n```\n\n**Expected output patterns**:\n- ✅ Authenticated: Shows logged-in user email and site link status\n- ❌ Not authenticated: \"Not logged into any site\" or authentication error\n\n**If not authenticated**, guide the user:\n\n```bash\nnpx netlify login\n```\n\nThis opens a browser window for OAuth authentication. Wait for user to complete login, then verify with `netlify status` again.\n\n**Alternative: API Key authentication**\n\nIf browser authentication isn't available, users can set:\n\n```bash\nexport NETLIFY_AUTH_TOKEN=your_token_here\n```\n\nTokens can be generated at: https:\u002F\u002Fapp.netlify.com\u002Fuser\u002Fapplications#personal-access-tokens\n\n### 2. Detect Site Link Status\n\nFrom `netlify status` output, determine:\n- **Linked**: Site already connected to Netlify (shows site name\u002FURL)\n- **Not linked**: Need to link or create site\n\n### 3. Link to Existing Site or Create New\n\n**If already linked** → Skip to step 4\n\n**If not linked**, attempt to link by Git remote:\n\n```bash\n# Check if project is Git-based\ngit remote show origin\n\n# If Git-based, extract remote URL\n# Format: https:\u002F\u002Fgithub.com\u002Fusername\u002Frepo or git@github.com:username\u002Frepo.git\n\n# Try to link by Git remote\nnpx netlify link --git-remote-url \u003CREMOTE_URL>\n```\n\n**If link fails** (site doesn't exist on Netlify):\n\n```bash\n# Create new site interactively\nnpx netlify init\n```\n\nThis guides user through:\n1. Choosing team\u002Faccount\n2. Setting site name\n3. Configuring build settings\n4. Creating netlify.toml if needed\n\n### 4. Verify Dependencies\n\nBefore deploying, ensure project dependencies are installed:\n\n```bash\n# For npm projects\nnpm install\n\n# For other package managers, detect and use appropriate command\n# yarn install, pnpm install, etc.\n```\n\n### 5. Deploy to Netlify\n\nChoose deployment type based on context:\n\n**Preview\u002FDraft Deploy** (default for existing sites):\n\n```bash\nnpx netlify deploy\n```\n\nThis creates a deploy preview with a unique URL for testing.\n\n**Production Deploy** (for new sites or explicit production deployments):\n\n```bash\nnpx netlify deploy --prod\n```\n\nThis deploys to the live production URL.\n\n**Deployment process**:\n1. CLI detects build settings (from netlify.toml or prompts user)\n2. Builds the project locally\n3. Uploads built assets to Netlify\n4. Returns deployment URL\n\n### 6. Report Results\n\nAfter deployment, report to user:\n- **Deploy URL**: Unique URL for this deployment\n- **Site URL**: Production URL (if production deploy)\n- **Deploy logs**: Link to Netlify dashboard for logs\n- **Next steps**: Suggest `netlify open` to view site or dashboard\n\n## Handling netlify.toml\n\nIf a `netlify.toml` file exists, the CLI uses it automatically. If not, the CLI will prompt for:\n- **Build command**: e.g., `npm run build`, `next build`\n- **Publish directory**: e.g., `dist`, `build`, `.next`\n\nCommon framework defaults:\n- **Next.js**: build command `npm run build`, publish `.next`\n- **React (Vite)**: build command `npm run build`, publish `dist`\n- **Static HTML**: no build command, publish current directory\n\nThe skill should detect framework from `package.json` if possible and suggest appropriate settings.\n\n## Example Full Workflow\n\n```bash\n# 1. Check authentication\nnpx netlify status\n\n# If not authenticated:\nnpx netlify login\n\n# 2. Link site (if needed)\n# Try Git-based linking first\ngit remote show origin\nnpx netlify link --git-remote-url https:\u002F\u002Fgithub.com\u002Fuser\u002Frepo\n\n# If no site exists, create new one:\nnpx netlify init\n\n# 3. Install dependencies\nnpm install\n\n# 4. Deploy (preview for testing)\nnpx netlify deploy\n\n# 5. Deploy to production (when ready)\nnpx netlify deploy --prod\n```\n\n## Error Handling\n\nCommon issues and solutions:\n\n**\"Not logged in\"**\n→ Run `npx netlify login`\n\n**\"No site linked\"**\n→ Run `npx netlify link` or `npx netlify init`\n\n**\"Build failed\"**\n→ Check build command and publish directory in netlify.toml or CLI prompts\n→ Verify dependencies are installed\n→ Review build logs for specific errors\n\n**\"Publish directory not found\"**\n→ Verify build command ran successfully\n→ Check publish directory path is correct\n\n## Troubleshooting\n\n### Escalated Network Access\n\nIf deployment fails due to network issues (timeouts, DNS errors, connection resets), rerun the deploy with escalated permissions (use `sandbox_permissions=require_escalated`). The deploy requires escalated network access when sandbox networking blocks outbound requests.\n\nExample guidance to the user:\n\n```\nThe deploy needs escalated network access to deploy to Netlify. I can rerun the command with escalated permissions—want me to proceed?\n```\n\n## Environment Variables\n\nFor secrets and configuration:\n\n1. Never commit secrets to Git\n2. Set in Netlify dashboard: Site Settings → Environment Variables\n3. Access in builds via `process.env.VARIABLE_NAME`\n\n## Tips\n\n- Use `netlify deploy` (no `--prod`) first to test before production\n- Run `netlify open` to view site in Netlify dashboard\n- Run `netlify logs` to view function logs (if using Netlify Functions)\n- Use `netlify dev` for local development with Netlify Functions\n\n## Reference\n\n- Netlify CLI Docs: https:\u002F\u002Fdocs.netlify.com\u002Fcli\u002Fget-started\u002F\n- netlify.toml Reference: https:\u002F\u002Fdocs.netlify.com\u002Fconfigure-builds\u002Ffile-based-configuration\u002F\n\n## Bundled References (Load As Needed)\n\n- [CLI commands](references\u002Fcli-commands.md)\n- [Deployment patterns](references\u002Fdeployment-patterns.md)\n- [netlify.toml guide](references\u002Fnetlify-toml.md)\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,56,63,68,93,99,152,158,170,201,206,245,251,258,263,297,307,320,330,353,366,374,379,412,425,431,443,466,472,482,492,619,629,660,665,688,694,699,750,756,761,771,794,799,809,837,842,851,874,880,885,936,942,955,1011,1016,1071,1084,1090,1350,1356,1361,1376,1399,1409,1419,1425,1431,1443,1448,1458,1464,1469,1493,1499,1559,1565,1590,1596,1626],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"netlify-deployment-skill",[47],{"type":48,"value":49},"text","Netlify Deployment Skill",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Deploy web projects to Netlify using the Netlify CLI with intelligent detection of project configuration and deployment context.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"overview",[61],{"type":48,"value":62},"Overview",{"type":42,"tag":51,"props":64,"children":65},{},[66],{"type":48,"value":67},"This skill automates Netlify deployments by:",{"type":42,"tag":69,"props":70,"children":71},"ul",{},[72,78,83,88],{"type":42,"tag":73,"props":74,"children":75},"li",{},[76],{"type":48,"value":77},"Verifying Netlify CLI authentication",{"type":42,"tag":73,"props":79,"children":80},{},[81],{"type":48,"value":82},"Detecting project configuration and framework",{"type":42,"tag":73,"props":84,"children":85},{},[86],{"type":48,"value":87},"Linking to existing sites or creating new ones",{"type":42,"tag":73,"props":89,"children":90},{},[91],{"type":48,"value":92},"Deploying to production or preview environments",{"type":42,"tag":57,"props":94,"children":96},{"id":95},"prerequisites",[97],{"type":48,"value":98},"Prerequisites",{"type":42,"tag":69,"props":100,"children":101},{},[102,113,123,133,147],{"type":42,"tag":73,"props":103,"children":104},{},[105,111],{"type":42,"tag":106,"props":107,"children":108},"strong",{},[109],{"type":48,"value":110},"Netlify CLI",{"type":48,"value":112},": Installed via npx (no global install required)",{"type":42,"tag":73,"props":114,"children":115},{},[116,121],{"type":42,"tag":106,"props":117,"children":118},{},[119],{"type":48,"value":120},"Authentication",{"type":48,"value":122},": Netlify account with active login session",{"type":42,"tag":73,"props":124,"children":125},{},[126,131],{"type":42,"tag":106,"props":127,"children":128},{},[129],{"type":48,"value":130},"Project",{"type":48,"value":132},": Valid web project in current directory",{"type":42,"tag":73,"props":134,"children":135},{},[136,138,145],{"type":48,"value":137},"When sandboxing blocks the deployment network calls, rerun with ",{"type":42,"tag":139,"props":140,"children":142},"code",{"className":141},[],[143],{"type":48,"value":144},"sandbox_permissions=require_escalated",{"type":48,"value":146},".",{"type":42,"tag":73,"props":148,"children":149},{},[150],{"type":48,"value":151},"The deployment might take a few minutes. Use appropriate timeout values.",{"type":42,"tag":57,"props":153,"children":155},{"id":154},"authentication-pattern",[156],{"type":48,"value":157},"Authentication Pattern",{"type":42,"tag":51,"props":159,"children":160},{},[161,163,168],{"type":48,"value":162},"The skill uses the ",{"type":42,"tag":106,"props":164,"children":165},{},[166],{"type":48,"value":167},"pre-authenticated Netlify CLI",{"type":48,"value":169}," approach:",{"type":42,"tag":171,"props":172,"children":173},"ol",{},[174,185,196],{"type":42,"tag":73,"props":175,"children":176},{},[177,179],{"type":48,"value":178},"Check authentication status with ",{"type":42,"tag":139,"props":180,"children":182},{"className":181},[],[183],{"type":48,"value":184},"npx netlify status",{"type":42,"tag":73,"props":186,"children":187},{},[188,190],{"type":48,"value":189},"If not authenticated, guide user through ",{"type":42,"tag":139,"props":191,"children":193},{"className":192},[],[194],{"type":48,"value":195},"npx netlify login",{"type":42,"tag":73,"props":197,"children":198},{},[199],{"type":48,"value":200},"Fail gracefully if authentication cannot be established",{"type":42,"tag":51,"props":202,"children":203},{},[204],{"type":48,"value":205},"Authentication uses either:",{"type":42,"tag":69,"props":207,"children":208},{},[209,227],{"type":42,"tag":73,"props":210,"children":211},{},[212,217,219,225],{"type":42,"tag":106,"props":213,"children":214},{},[215],{"type":48,"value":216},"Browser-based OAuth",{"type":48,"value":218}," (primary): ",{"type":42,"tag":139,"props":220,"children":222},{"className":221},[],[223],{"type":48,"value":224},"netlify login",{"type":48,"value":226}," opens browser for authentication",{"type":42,"tag":73,"props":228,"children":229},{},[230,235,237,243],{"type":42,"tag":106,"props":231,"children":232},{},[233],{"type":48,"value":234},"API Key",{"type":48,"value":236}," (alternative): Set ",{"type":42,"tag":139,"props":238,"children":240},{"className":239},[],[241],{"type":48,"value":242},"NETLIFY_AUTH_TOKEN",{"type":48,"value":244}," environment variable",{"type":42,"tag":57,"props":246,"children":248},{"id":247},"workflow",[249],{"type":48,"value":250},"Workflow",{"type":42,"tag":252,"props":253,"children":255},"h3",{"id":254},"_1-verify-netlify-cli-authentication",[256],{"type":48,"value":257},"1. Verify Netlify CLI Authentication",{"type":42,"tag":51,"props":259,"children":260},{},[261],{"type":48,"value":262},"Check if the user is logged into Netlify:",{"type":42,"tag":264,"props":265,"children":270},"pre",{"className":266,"code":267,"language":268,"meta":269,"style":269},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx netlify status\n","bash","",[271],{"type":42,"tag":139,"props":272,"children":273},{"__ignoreMap":269},[274],{"type":42,"tag":275,"props":276,"children":279},"span",{"class":277,"line":278},"line",1,[280,286,292],{"type":42,"tag":275,"props":281,"children":283},{"style":282},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[284],{"type":48,"value":285},"npx",{"type":42,"tag":275,"props":287,"children":289},{"style":288},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[290],{"type":48,"value":291}," netlify",{"type":42,"tag":275,"props":293,"children":294},{"style":288},[295],{"type":48,"value":296}," status\n",{"type":42,"tag":51,"props":298,"children":299},{},[300,305],{"type":42,"tag":106,"props":301,"children":302},{},[303],{"type":48,"value":304},"Expected output patterns",{"type":48,"value":306},":",{"type":42,"tag":69,"props":308,"children":309},{},[310,315],{"type":42,"tag":73,"props":311,"children":312},{},[313],{"type":48,"value":314},"✅ Authenticated: Shows logged-in user email and site link status",{"type":42,"tag":73,"props":316,"children":317},{},[318],{"type":48,"value":319},"❌ Not authenticated: \"Not logged into any site\" or authentication error",{"type":42,"tag":51,"props":321,"children":322},{},[323,328],{"type":42,"tag":106,"props":324,"children":325},{},[326],{"type":48,"value":327},"If not authenticated",{"type":48,"value":329},", guide the user:",{"type":42,"tag":264,"props":331,"children":333},{"className":266,"code":332,"language":268,"meta":269,"style":269},"npx netlify login\n",[334],{"type":42,"tag":139,"props":335,"children":336},{"__ignoreMap":269},[337],{"type":42,"tag":275,"props":338,"children":339},{"class":277,"line":278},[340,344,348],{"type":42,"tag":275,"props":341,"children":342},{"style":282},[343],{"type":48,"value":285},{"type":42,"tag":275,"props":345,"children":346},{"style":288},[347],{"type":48,"value":291},{"type":42,"tag":275,"props":349,"children":350},{"style":288},[351],{"type":48,"value":352}," login\n",{"type":42,"tag":51,"props":354,"children":355},{},[356,358,364],{"type":48,"value":357},"This opens a browser window for OAuth authentication. Wait for user to complete login, then verify with ",{"type":42,"tag":139,"props":359,"children":361},{"className":360},[],[362],{"type":48,"value":363},"netlify status",{"type":48,"value":365}," again.",{"type":42,"tag":51,"props":367,"children":368},{},[369],{"type":42,"tag":106,"props":370,"children":371},{},[372],{"type":48,"value":373},"Alternative: API Key authentication",{"type":42,"tag":51,"props":375,"children":376},{},[377],{"type":48,"value":378},"If browser authentication isn't available, users can set:",{"type":42,"tag":264,"props":380,"children":382},{"className":266,"code":381,"language":268,"meta":269,"style":269},"export NETLIFY_AUTH_TOKEN=your_token_here\n",[383],{"type":42,"tag":139,"props":384,"children":385},{"__ignoreMap":269},[386],{"type":42,"tag":275,"props":387,"children":388},{"class":277,"line":278},[389,395,401,407],{"type":42,"tag":275,"props":390,"children":392},{"style":391},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[393],{"type":48,"value":394},"export",{"type":42,"tag":275,"props":396,"children":398},{"style":397},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[399],{"type":48,"value":400}," NETLIFY_AUTH_TOKEN",{"type":42,"tag":275,"props":402,"children":404},{"style":403},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[405],{"type":48,"value":406},"=",{"type":42,"tag":275,"props":408,"children":409},{"style":397},[410],{"type":48,"value":411},"your_token_here\n",{"type":42,"tag":51,"props":413,"children":414},{},[415,417],{"type":48,"value":416},"Tokens can be generated at: ",{"type":42,"tag":418,"props":419,"children":423},"a",{"href":420,"rel":421},"https:\u002F\u002Fapp.netlify.com\u002Fuser\u002Fapplications#personal-access-tokens",[422],"nofollow",[424],{"type":48,"value":420},{"type":42,"tag":252,"props":426,"children":428},{"id":427},"_2-detect-site-link-status",[429],{"type":48,"value":430},"2. Detect Site Link Status",{"type":42,"tag":51,"props":432,"children":433},{},[434,436,441],{"type":48,"value":435},"From ",{"type":42,"tag":139,"props":437,"children":439},{"className":438},[],[440],{"type":48,"value":363},{"type":48,"value":442}," output, determine:",{"type":42,"tag":69,"props":444,"children":445},{},[446,456],{"type":42,"tag":73,"props":447,"children":448},{},[449,454],{"type":42,"tag":106,"props":450,"children":451},{},[452],{"type":48,"value":453},"Linked",{"type":48,"value":455},": Site already connected to Netlify (shows site name\u002FURL)",{"type":42,"tag":73,"props":457,"children":458},{},[459,464],{"type":42,"tag":106,"props":460,"children":461},{},[462],{"type":48,"value":463},"Not linked",{"type":48,"value":465},": Need to link or create site",{"type":42,"tag":252,"props":467,"children":469},{"id":468},"_3-link-to-existing-site-or-create-new",[470],{"type":48,"value":471},"3. Link to Existing Site or Create New",{"type":42,"tag":51,"props":473,"children":474},{},[475,480],{"type":42,"tag":106,"props":476,"children":477},{},[478],{"type":48,"value":479},"If already linked",{"type":48,"value":481}," → Skip to step 4",{"type":42,"tag":51,"props":483,"children":484},{},[485,490],{"type":42,"tag":106,"props":486,"children":487},{},[488],{"type":48,"value":489},"If not linked",{"type":48,"value":491},", attempt to link by Git remote:",{"type":42,"tag":264,"props":493,"children":495},{"className":266,"code":494,"language":268,"meta":269,"style":269},"# Check if project is Git-based\ngit remote show origin\n\n# If Git-based, extract remote URL\n# Format: https:\u002F\u002Fgithub.com\u002Fusername\u002Frepo or git@github.com:username\u002Frepo.git\n\n# Try to link by Git remote\nnpx netlify link --git-remote-url \u003CREMOTE_URL>\n",[496],{"type":42,"tag":139,"props":497,"children":498},{"__ignoreMap":269},[499,508,532,542,551,560,568,577],{"type":42,"tag":275,"props":500,"children":501},{"class":277,"line":278},[502],{"type":42,"tag":275,"props":503,"children":505},{"style":504},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[506],{"type":48,"value":507},"# Check if project is Git-based\n",{"type":42,"tag":275,"props":509,"children":511},{"class":277,"line":510},2,[512,517,522,527],{"type":42,"tag":275,"props":513,"children":514},{"style":282},[515],{"type":48,"value":516},"git",{"type":42,"tag":275,"props":518,"children":519},{"style":288},[520],{"type":48,"value":521}," remote",{"type":42,"tag":275,"props":523,"children":524},{"style":288},[525],{"type":48,"value":526}," show",{"type":42,"tag":275,"props":528,"children":529},{"style":288},[530],{"type":48,"value":531}," origin\n",{"type":42,"tag":275,"props":533,"children":535},{"class":277,"line":534},3,[536],{"type":42,"tag":275,"props":537,"children":539},{"emptyLinePlaceholder":538},true,[540],{"type":48,"value":541},"\n",{"type":42,"tag":275,"props":543,"children":545},{"class":277,"line":544},4,[546],{"type":42,"tag":275,"props":547,"children":548},{"style":504},[549],{"type":48,"value":550},"# If Git-based, extract remote URL\n",{"type":42,"tag":275,"props":552,"children":554},{"class":277,"line":553},5,[555],{"type":42,"tag":275,"props":556,"children":557},{"style":504},[558],{"type":48,"value":559},"# Format: https:\u002F\u002Fgithub.com\u002Fusername\u002Frepo or git@github.com:username\u002Frepo.git\n",{"type":42,"tag":275,"props":561,"children":563},{"class":277,"line":562},6,[564],{"type":42,"tag":275,"props":565,"children":566},{"emptyLinePlaceholder":538},[567],{"type":48,"value":541},{"type":42,"tag":275,"props":569,"children":571},{"class":277,"line":570},7,[572],{"type":42,"tag":275,"props":573,"children":574},{"style":504},[575],{"type":48,"value":576},"# Try to link by Git remote\n",{"type":42,"tag":275,"props":578,"children":580},{"class":277,"line":579},8,[581,585,589,594,599,604,609,614],{"type":42,"tag":275,"props":582,"children":583},{"style":282},[584],{"type":48,"value":285},{"type":42,"tag":275,"props":586,"children":587},{"style":288},[588],{"type":48,"value":291},{"type":42,"tag":275,"props":590,"children":591},{"style":288},[592],{"type":48,"value":593}," link",{"type":42,"tag":275,"props":595,"children":596},{"style":288},[597],{"type":48,"value":598}," --git-remote-url",{"type":42,"tag":275,"props":600,"children":601},{"style":403},[602],{"type":48,"value":603}," \u003C",{"type":42,"tag":275,"props":605,"children":606},{"style":288},[607],{"type":48,"value":608},"REMOTE_UR",{"type":42,"tag":275,"props":610,"children":611},{"style":397},[612],{"type":48,"value":613},"L",{"type":42,"tag":275,"props":615,"children":616},{"style":403},[617],{"type":48,"value":618},">\n",{"type":42,"tag":51,"props":620,"children":621},{},[622,627],{"type":42,"tag":106,"props":623,"children":624},{},[625],{"type":48,"value":626},"If link fails",{"type":48,"value":628}," (site doesn't exist on Netlify):",{"type":42,"tag":264,"props":630,"children":632},{"className":266,"code":631,"language":268,"meta":269,"style":269},"# Create new site interactively\nnpx netlify init\n",[633],{"type":42,"tag":139,"props":634,"children":635},{"__ignoreMap":269},[636,644],{"type":42,"tag":275,"props":637,"children":638},{"class":277,"line":278},[639],{"type":42,"tag":275,"props":640,"children":641},{"style":504},[642],{"type":48,"value":643},"# Create new site interactively\n",{"type":42,"tag":275,"props":645,"children":646},{"class":277,"line":510},[647,651,655],{"type":42,"tag":275,"props":648,"children":649},{"style":282},[650],{"type":48,"value":285},{"type":42,"tag":275,"props":652,"children":653},{"style":288},[654],{"type":48,"value":291},{"type":42,"tag":275,"props":656,"children":657},{"style":288},[658],{"type":48,"value":659}," init\n",{"type":42,"tag":51,"props":661,"children":662},{},[663],{"type":48,"value":664},"This guides user through:",{"type":42,"tag":171,"props":666,"children":667},{},[668,673,678,683],{"type":42,"tag":73,"props":669,"children":670},{},[671],{"type":48,"value":672},"Choosing team\u002Faccount",{"type":42,"tag":73,"props":674,"children":675},{},[676],{"type":48,"value":677},"Setting site name",{"type":42,"tag":73,"props":679,"children":680},{},[681],{"type":48,"value":682},"Configuring build settings",{"type":42,"tag":73,"props":684,"children":685},{},[686],{"type":48,"value":687},"Creating netlify.toml if needed",{"type":42,"tag":252,"props":689,"children":691},{"id":690},"_4-verify-dependencies",[692],{"type":48,"value":693},"4. Verify Dependencies",{"type":42,"tag":51,"props":695,"children":696},{},[697],{"type":48,"value":698},"Before deploying, ensure project dependencies are installed:",{"type":42,"tag":264,"props":700,"children":702},{"className":266,"code":701,"language":268,"meta":269,"style":269},"# For npm projects\nnpm install\n\n# For other package managers, detect and use appropriate command\n# yarn install, pnpm install, etc.\n",[703],{"type":42,"tag":139,"props":704,"children":705},{"__ignoreMap":269},[706,714,727,734,742],{"type":42,"tag":275,"props":707,"children":708},{"class":277,"line":278},[709],{"type":42,"tag":275,"props":710,"children":711},{"style":504},[712],{"type":48,"value":713},"# For npm projects\n",{"type":42,"tag":275,"props":715,"children":716},{"class":277,"line":510},[717,722],{"type":42,"tag":275,"props":718,"children":719},{"style":282},[720],{"type":48,"value":721},"npm",{"type":42,"tag":275,"props":723,"children":724},{"style":288},[725],{"type":48,"value":726}," install\n",{"type":42,"tag":275,"props":728,"children":729},{"class":277,"line":534},[730],{"type":42,"tag":275,"props":731,"children":732},{"emptyLinePlaceholder":538},[733],{"type":48,"value":541},{"type":42,"tag":275,"props":735,"children":736},{"class":277,"line":544},[737],{"type":42,"tag":275,"props":738,"children":739},{"style":504},[740],{"type":48,"value":741},"# For other package managers, detect and use appropriate command\n",{"type":42,"tag":275,"props":743,"children":744},{"class":277,"line":553},[745],{"type":42,"tag":275,"props":746,"children":747},{"style":504},[748],{"type":48,"value":749},"# yarn install, pnpm install, etc.\n",{"type":42,"tag":252,"props":751,"children":753},{"id":752},"_5-deploy-to-netlify",[754],{"type":48,"value":755},"5. Deploy to Netlify",{"type":42,"tag":51,"props":757,"children":758},{},[759],{"type":48,"value":760},"Choose deployment type based on context:",{"type":42,"tag":51,"props":762,"children":763},{},[764,769],{"type":42,"tag":106,"props":765,"children":766},{},[767],{"type":48,"value":768},"Preview\u002FDraft Deploy",{"type":48,"value":770}," (default for existing sites):",{"type":42,"tag":264,"props":772,"children":774},{"className":266,"code":773,"language":268,"meta":269,"style":269},"npx netlify deploy\n",[775],{"type":42,"tag":139,"props":776,"children":777},{"__ignoreMap":269},[778],{"type":42,"tag":275,"props":779,"children":780},{"class":277,"line":278},[781,785,789],{"type":42,"tag":275,"props":782,"children":783},{"style":282},[784],{"type":48,"value":285},{"type":42,"tag":275,"props":786,"children":787},{"style":288},[788],{"type":48,"value":291},{"type":42,"tag":275,"props":790,"children":791},{"style":288},[792],{"type":48,"value":793}," deploy\n",{"type":42,"tag":51,"props":795,"children":796},{},[797],{"type":48,"value":798},"This creates a deploy preview with a unique URL for testing.",{"type":42,"tag":51,"props":800,"children":801},{},[802,807],{"type":42,"tag":106,"props":803,"children":804},{},[805],{"type":48,"value":806},"Production Deploy",{"type":48,"value":808}," (for new sites or explicit production deployments):",{"type":42,"tag":264,"props":810,"children":812},{"className":266,"code":811,"language":268,"meta":269,"style":269},"npx netlify deploy --prod\n",[813],{"type":42,"tag":139,"props":814,"children":815},{"__ignoreMap":269},[816],{"type":42,"tag":275,"props":817,"children":818},{"class":277,"line":278},[819,823,827,832],{"type":42,"tag":275,"props":820,"children":821},{"style":282},[822],{"type":48,"value":285},{"type":42,"tag":275,"props":824,"children":825},{"style":288},[826],{"type":48,"value":291},{"type":42,"tag":275,"props":828,"children":829},{"style":288},[830],{"type":48,"value":831}," deploy",{"type":42,"tag":275,"props":833,"children":834},{"style":288},[835],{"type":48,"value":836}," --prod\n",{"type":42,"tag":51,"props":838,"children":839},{},[840],{"type":48,"value":841},"This deploys to the live production URL.",{"type":42,"tag":51,"props":843,"children":844},{},[845,850],{"type":42,"tag":106,"props":846,"children":847},{},[848],{"type":48,"value":849},"Deployment process",{"type":48,"value":306},{"type":42,"tag":171,"props":852,"children":853},{},[854,859,864,869],{"type":42,"tag":73,"props":855,"children":856},{},[857],{"type":48,"value":858},"CLI detects build settings (from netlify.toml or prompts user)",{"type":42,"tag":73,"props":860,"children":861},{},[862],{"type":48,"value":863},"Builds the project locally",{"type":42,"tag":73,"props":865,"children":866},{},[867],{"type":48,"value":868},"Uploads built assets to Netlify",{"type":42,"tag":73,"props":870,"children":871},{},[872],{"type":48,"value":873},"Returns deployment URL",{"type":42,"tag":252,"props":875,"children":877},{"id":876},"_6-report-results",[878],{"type":48,"value":879},"6. Report Results",{"type":42,"tag":51,"props":881,"children":882},{},[883],{"type":48,"value":884},"After deployment, report to user:",{"type":42,"tag":69,"props":886,"children":887},{},[888,898,908,918],{"type":42,"tag":73,"props":889,"children":890},{},[891,896],{"type":42,"tag":106,"props":892,"children":893},{},[894],{"type":48,"value":895},"Deploy URL",{"type":48,"value":897},": Unique URL for this deployment",{"type":42,"tag":73,"props":899,"children":900},{},[901,906],{"type":42,"tag":106,"props":902,"children":903},{},[904],{"type":48,"value":905},"Site URL",{"type":48,"value":907},": Production URL (if production deploy)",{"type":42,"tag":73,"props":909,"children":910},{},[911,916],{"type":42,"tag":106,"props":912,"children":913},{},[914],{"type":48,"value":915},"Deploy logs",{"type":48,"value":917},": Link to Netlify dashboard for logs",{"type":42,"tag":73,"props":919,"children":920},{},[921,926,928,934],{"type":42,"tag":106,"props":922,"children":923},{},[924],{"type":48,"value":925},"Next steps",{"type":48,"value":927},": Suggest ",{"type":42,"tag":139,"props":929,"children":931},{"className":930},[],[932],{"type":48,"value":933},"netlify open",{"type":48,"value":935}," to view site or dashboard",{"type":42,"tag":57,"props":937,"children":939},{"id":938},"handling-netlifytoml",[940],{"type":48,"value":941},"Handling netlify.toml",{"type":42,"tag":51,"props":943,"children":944},{},[945,947,953],{"type":48,"value":946},"If a ",{"type":42,"tag":139,"props":948,"children":950},{"className":949},[],[951],{"type":48,"value":952},"netlify.toml",{"type":48,"value":954}," file exists, the CLI uses it automatically. If not, the CLI will prompt for:",{"type":42,"tag":69,"props":956,"children":957},{},[958,982],{"type":42,"tag":73,"props":959,"children":960},{},[961,966,968,974,976],{"type":42,"tag":106,"props":962,"children":963},{},[964],{"type":48,"value":965},"Build command",{"type":48,"value":967},": e.g., ",{"type":42,"tag":139,"props":969,"children":971},{"className":970},[],[972],{"type":48,"value":973},"npm run build",{"type":48,"value":975},", ",{"type":42,"tag":139,"props":977,"children":979},{"className":978},[],[980],{"type":48,"value":981},"next build",{"type":42,"tag":73,"props":983,"children":984},{},[985,990,991,997,998,1004,1005],{"type":42,"tag":106,"props":986,"children":987},{},[988],{"type":48,"value":989},"Publish directory",{"type":48,"value":967},{"type":42,"tag":139,"props":992,"children":994},{"className":993},[],[995],{"type":48,"value":996},"dist",{"type":48,"value":975},{"type":42,"tag":139,"props":999,"children":1001},{"className":1000},[],[1002],{"type":48,"value":1003},"build",{"type":48,"value":975},{"type":42,"tag":139,"props":1006,"children":1008},{"className":1007},[],[1009],{"type":48,"value":1010},".next",{"type":42,"tag":51,"props":1012,"children":1013},{},[1014],{"type":48,"value":1015},"Common framework defaults:",{"type":42,"tag":69,"props":1017,"children":1018},{},[1019,1041,1061],{"type":42,"tag":73,"props":1020,"children":1021},{},[1022,1027,1029,1034,1036],{"type":42,"tag":106,"props":1023,"children":1024},{},[1025],{"type":48,"value":1026},"Next.js",{"type":48,"value":1028},": build command ",{"type":42,"tag":139,"props":1030,"children":1032},{"className":1031},[],[1033],{"type":48,"value":973},{"type":48,"value":1035},", publish ",{"type":42,"tag":139,"props":1037,"children":1039},{"className":1038},[],[1040],{"type":48,"value":1010},{"type":42,"tag":73,"props":1042,"children":1043},{},[1044,1049,1050,1055,1056],{"type":42,"tag":106,"props":1045,"children":1046},{},[1047],{"type":48,"value":1048},"React (Vite)",{"type":48,"value":1028},{"type":42,"tag":139,"props":1051,"children":1053},{"className":1052},[],[1054],{"type":48,"value":973},{"type":48,"value":1035},{"type":42,"tag":139,"props":1057,"children":1059},{"className":1058},[],[1060],{"type":48,"value":996},{"type":42,"tag":73,"props":1062,"children":1063},{},[1064,1069],{"type":42,"tag":106,"props":1065,"children":1066},{},[1067],{"type":48,"value":1068},"Static HTML",{"type":48,"value":1070},": no build command, publish current directory",{"type":42,"tag":51,"props":1072,"children":1073},{},[1074,1076,1082],{"type":48,"value":1075},"The skill should detect framework from ",{"type":42,"tag":139,"props":1077,"children":1079},{"className":1078},[],[1080],{"type":48,"value":1081},"package.json",{"type":48,"value":1083}," if possible and suggest appropriate settings.",{"type":42,"tag":57,"props":1085,"children":1087},{"id":1086},"example-full-workflow",[1088],{"type":48,"value":1089},"Example Full Workflow",{"type":42,"tag":264,"props":1091,"children":1093},{"className":266,"code":1092,"language":268,"meta":269,"style":269},"# 1. Check authentication\nnpx netlify status\n\n# If not authenticated:\nnpx netlify login\n\n# 2. Link site (if needed)\n# Try Git-based linking first\ngit remote show origin\nnpx netlify link --git-remote-url https:\u002F\u002Fgithub.com\u002Fuser\u002Frepo\n\n# If no site exists, create new one:\nnpx netlify init\n\n# 3. Install dependencies\nnpm install\n\n# 4. Deploy (preview for testing)\nnpx netlify deploy\n\n# 5. Deploy to production (when ready)\nnpx netlify deploy --prod\n",[1094],{"type":42,"tag":139,"props":1095,"children":1096},{"__ignoreMap":269},[1097,1105,1120,1127,1135,1150,1157,1165,1173,1193,1218,1226,1235,1251,1259,1268,1280,1288,1297,1313,1321,1330],{"type":42,"tag":275,"props":1098,"children":1099},{"class":277,"line":278},[1100],{"type":42,"tag":275,"props":1101,"children":1102},{"style":504},[1103],{"type":48,"value":1104},"# 1. Check authentication\n",{"type":42,"tag":275,"props":1106,"children":1107},{"class":277,"line":510},[1108,1112,1116],{"type":42,"tag":275,"props":1109,"children":1110},{"style":282},[1111],{"type":48,"value":285},{"type":42,"tag":275,"props":1113,"children":1114},{"style":288},[1115],{"type":48,"value":291},{"type":42,"tag":275,"props":1117,"children":1118},{"style":288},[1119],{"type":48,"value":296},{"type":42,"tag":275,"props":1121,"children":1122},{"class":277,"line":534},[1123],{"type":42,"tag":275,"props":1124,"children":1125},{"emptyLinePlaceholder":538},[1126],{"type":48,"value":541},{"type":42,"tag":275,"props":1128,"children":1129},{"class":277,"line":544},[1130],{"type":42,"tag":275,"props":1131,"children":1132},{"style":504},[1133],{"type":48,"value":1134},"# If not authenticated:\n",{"type":42,"tag":275,"props":1136,"children":1137},{"class":277,"line":553},[1138,1142,1146],{"type":42,"tag":275,"props":1139,"children":1140},{"style":282},[1141],{"type":48,"value":285},{"type":42,"tag":275,"props":1143,"children":1144},{"style":288},[1145],{"type":48,"value":291},{"type":42,"tag":275,"props":1147,"children":1148},{"style":288},[1149],{"type":48,"value":352},{"type":42,"tag":275,"props":1151,"children":1152},{"class":277,"line":562},[1153],{"type":42,"tag":275,"props":1154,"children":1155},{"emptyLinePlaceholder":538},[1156],{"type":48,"value":541},{"type":42,"tag":275,"props":1158,"children":1159},{"class":277,"line":570},[1160],{"type":42,"tag":275,"props":1161,"children":1162},{"style":504},[1163],{"type":48,"value":1164},"# 2. Link site (if needed)\n",{"type":42,"tag":275,"props":1166,"children":1167},{"class":277,"line":579},[1168],{"type":42,"tag":275,"props":1169,"children":1170},{"style":504},[1171],{"type":48,"value":1172},"# Try Git-based linking first\n",{"type":42,"tag":275,"props":1174,"children":1176},{"class":277,"line":1175},9,[1177,1181,1185,1189],{"type":42,"tag":275,"props":1178,"children":1179},{"style":282},[1180],{"type":48,"value":516},{"type":42,"tag":275,"props":1182,"children":1183},{"style":288},[1184],{"type":48,"value":521},{"type":42,"tag":275,"props":1186,"children":1187},{"style":288},[1188],{"type":48,"value":526},{"type":42,"tag":275,"props":1190,"children":1191},{"style":288},[1192],{"type":48,"value":531},{"type":42,"tag":275,"props":1194,"children":1196},{"class":277,"line":1195},10,[1197,1201,1205,1209,1213],{"type":42,"tag":275,"props":1198,"children":1199},{"style":282},[1200],{"type":48,"value":285},{"type":42,"tag":275,"props":1202,"children":1203},{"style":288},[1204],{"type":48,"value":291},{"type":42,"tag":275,"props":1206,"children":1207},{"style":288},[1208],{"type":48,"value":593},{"type":42,"tag":275,"props":1210,"children":1211},{"style":288},[1212],{"type":48,"value":598},{"type":42,"tag":275,"props":1214,"children":1215},{"style":288},[1216],{"type":48,"value":1217}," https:\u002F\u002Fgithub.com\u002Fuser\u002Frepo\n",{"type":42,"tag":275,"props":1219,"children":1221},{"class":277,"line":1220},11,[1222],{"type":42,"tag":275,"props":1223,"children":1224},{"emptyLinePlaceholder":538},[1225],{"type":48,"value":541},{"type":42,"tag":275,"props":1227,"children":1229},{"class":277,"line":1228},12,[1230],{"type":42,"tag":275,"props":1231,"children":1232},{"style":504},[1233],{"type":48,"value":1234},"# If no site exists, create new one:\n",{"type":42,"tag":275,"props":1236,"children":1238},{"class":277,"line":1237},13,[1239,1243,1247],{"type":42,"tag":275,"props":1240,"children":1241},{"style":282},[1242],{"type":48,"value":285},{"type":42,"tag":275,"props":1244,"children":1245},{"style":288},[1246],{"type":48,"value":291},{"type":42,"tag":275,"props":1248,"children":1249},{"style":288},[1250],{"type":48,"value":659},{"type":42,"tag":275,"props":1252,"children":1254},{"class":277,"line":1253},14,[1255],{"type":42,"tag":275,"props":1256,"children":1257},{"emptyLinePlaceholder":538},[1258],{"type":48,"value":541},{"type":42,"tag":275,"props":1260,"children":1262},{"class":277,"line":1261},15,[1263],{"type":42,"tag":275,"props":1264,"children":1265},{"style":504},[1266],{"type":48,"value":1267},"# 3. Install dependencies\n",{"type":42,"tag":275,"props":1269,"children":1271},{"class":277,"line":1270},16,[1272,1276],{"type":42,"tag":275,"props":1273,"children":1274},{"style":282},[1275],{"type":48,"value":721},{"type":42,"tag":275,"props":1277,"children":1278},{"style":288},[1279],{"type":48,"value":726},{"type":42,"tag":275,"props":1281,"children":1283},{"class":277,"line":1282},17,[1284],{"type":42,"tag":275,"props":1285,"children":1286},{"emptyLinePlaceholder":538},[1287],{"type":48,"value":541},{"type":42,"tag":275,"props":1289,"children":1291},{"class":277,"line":1290},18,[1292],{"type":42,"tag":275,"props":1293,"children":1294},{"style":504},[1295],{"type":48,"value":1296},"# 4. Deploy (preview for testing)\n",{"type":42,"tag":275,"props":1298,"children":1300},{"class":277,"line":1299},19,[1301,1305,1309],{"type":42,"tag":275,"props":1302,"children":1303},{"style":282},[1304],{"type":48,"value":285},{"type":42,"tag":275,"props":1306,"children":1307},{"style":288},[1308],{"type":48,"value":291},{"type":42,"tag":275,"props":1310,"children":1311},{"style":288},[1312],{"type":48,"value":793},{"type":42,"tag":275,"props":1314,"children":1316},{"class":277,"line":1315},20,[1317],{"type":42,"tag":275,"props":1318,"children":1319},{"emptyLinePlaceholder":538},[1320],{"type":48,"value":541},{"type":42,"tag":275,"props":1322,"children":1324},{"class":277,"line":1323},21,[1325],{"type":42,"tag":275,"props":1326,"children":1327},{"style":504},[1328],{"type":48,"value":1329},"# 5. Deploy to production (when ready)\n",{"type":42,"tag":275,"props":1331,"children":1333},{"class":277,"line":1332},22,[1334,1338,1342,1346],{"type":42,"tag":275,"props":1335,"children":1336},{"style":282},[1337],{"type":48,"value":285},{"type":42,"tag":275,"props":1339,"children":1340},{"style":288},[1341],{"type":48,"value":291},{"type":42,"tag":275,"props":1343,"children":1344},{"style":288},[1345],{"type":48,"value":831},{"type":42,"tag":275,"props":1347,"children":1348},{"style":288},[1349],{"type":48,"value":836},{"type":42,"tag":57,"props":1351,"children":1353},{"id":1352},"error-handling",[1354],{"type":48,"value":1355},"Error Handling",{"type":42,"tag":51,"props":1357,"children":1358},{},[1359],{"type":48,"value":1360},"Common issues and solutions:",{"type":42,"tag":51,"props":1362,"children":1363},{},[1364,1369,1371],{"type":42,"tag":106,"props":1365,"children":1366},{},[1367],{"type":48,"value":1368},"\"Not logged in\"",{"type":48,"value":1370},"\n→ Run ",{"type":42,"tag":139,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":48,"value":195},{"type":42,"tag":51,"props":1377,"children":1378},{},[1379,1384,1385,1391,1393],{"type":42,"tag":106,"props":1380,"children":1381},{},[1382],{"type":48,"value":1383},"\"No site linked\"",{"type":48,"value":1370},{"type":42,"tag":139,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":48,"value":1390},"npx netlify link",{"type":48,"value":1392}," or ",{"type":42,"tag":139,"props":1394,"children":1396},{"className":1395},[],[1397],{"type":48,"value":1398},"npx netlify init",{"type":42,"tag":51,"props":1400,"children":1401},{},[1402,1407],{"type":42,"tag":106,"props":1403,"children":1404},{},[1405],{"type":48,"value":1406},"\"Build failed\"",{"type":48,"value":1408},"\n→ Check build command and publish directory in netlify.toml or CLI prompts\n→ Verify dependencies are installed\n→ Review build logs for specific errors",{"type":42,"tag":51,"props":1410,"children":1411},{},[1412,1417],{"type":42,"tag":106,"props":1413,"children":1414},{},[1415],{"type":48,"value":1416},"\"Publish directory not found\"",{"type":48,"value":1418},"\n→ Verify build command ran successfully\n→ Check publish directory path is correct",{"type":42,"tag":57,"props":1420,"children":1422},{"id":1421},"troubleshooting",[1423],{"type":48,"value":1424},"Troubleshooting",{"type":42,"tag":252,"props":1426,"children":1428},{"id":1427},"escalated-network-access",[1429],{"type":48,"value":1430},"Escalated Network Access",{"type":42,"tag":51,"props":1432,"children":1433},{},[1434,1436,1441],{"type":48,"value":1435},"If deployment fails due to network issues (timeouts, DNS errors, connection resets), rerun the deploy with escalated permissions (use ",{"type":42,"tag":139,"props":1437,"children":1439},{"className":1438},[],[1440],{"type":48,"value":144},{"type":48,"value":1442},"). The deploy requires escalated network access when sandbox networking blocks outbound requests.",{"type":42,"tag":51,"props":1444,"children":1445},{},[1446],{"type":48,"value":1447},"Example guidance to the user:",{"type":42,"tag":264,"props":1449,"children":1453},{"className":1450,"code":1452,"language":48},[1451],"language-text","The deploy needs escalated network access to deploy to Netlify. I can rerun the command with escalated permissions—want me to proceed?\n",[1454],{"type":42,"tag":139,"props":1455,"children":1456},{"__ignoreMap":269},[1457],{"type":48,"value":1452},{"type":42,"tag":57,"props":1459,"children":1461},{"id":1460},"environment-variables",[1462],{"type":48,"value":1463},"Environment Variables",{"type":42,"tag":51,"props":1465,"children":1466},{},[1467],{"type":48,"value":1468},"For secrets and configuration:",{"type":42,"tag":171,"props":1470,"children":1471},{},[1472,1477,1482],{"type":42,"tag":73,"props":1473,"children":1474},{},[1475],{"type":48,"value":1476},"Never commit secrets to Git",{"type":42,"tag":73,"props":1478,"children":1479},{},[1480],{"type":48,"value":1481},"Set in Netlify dashboard: Site Settings → Environment Variables",{"type":42,"tag":73,"props":1483,"children":1484},{},[1485,1487],{"type":48,"value":1486},"Access in builds via ",{"type":42,"tag":139,"props":1488,"children":1490},{"className":1489},[],[1491],{"type":48,"value":1492},"process.env.VARIABLE_NAME",{"type":42,"tag":57,"props":1494,"children":1496},{"id":1495},"tips",[1497],{"type":48,"value":1498},"Tips",{"type":42,"tag":69,"props":1500,"children":1501},{},[1502,1523,1535,1547],{"type":42,"tag":73,"props":1503,"children":1504},{},[1505,1507,1513,1515,1521],{"type":48,"value":1506},"Use ",{"type":42,"tag":139,"props":1508,"children":1510},{"className":1509},[],[1511],{"type":48,"value":1512},"netlify deploy",{"type":48,"value":1514}," (no ",{"type":42,"tag":139,"props":1516,"children":1518},{"className":1517},[],[1519],{"type":48,"value":1520},"--prod",{"type":48,"value":1522},") first to test before production",{"type":42,"tag":73,"props":1524,"children":1525},{},[1526,1528,1533],{"type":48,"value":1527},"Run ",{"type":42,"tag":139,"props":1529,"children":1531},{"className":1530},[],[1532],{"type":48,"value":933},{"type":48,"value":1534}," to view site in Netlify dashboard",{"type":42,"tag":73,"props":1536,"children":1537},{},[1538,1539,1545],{"type":48,"value":1527},{"type":42,"tag":139,"props":1540,"children":1542},{"className":1541},[],[1543],{"type":48,"value":1544},"netlify logs",{"type":48,"value":1546}," to view function logs (if using Netlify Functions)",{"type":42,"tag":73,"props":1548,"children":1549},{},[1550,1551,1557],{"type":48,"value":1506},{"type":42,"tag":139,"props":1552,"children":1554},{"className":1553},[],[1555],{"type":48,"value":1556},"netlify dev",{"type":48,"value":1558}," for local development with Netlify Functions",{"type":42,"tag":57,"props":1560,"children":1562},{"id":1561},"reference",[1563],{"type":48,"value":1564},"Reference",{"type":42,"tag":69,"props":1566,"children":1567},{},[1568,1579],{"type":42,"tag":73,"props":1569,"children":1570},{},[1571,1573],{"type":48,"value":1572},"Netlify CLI Docs: ",{"type":42,"tag":418,"props":1574,"children":1577},{"href":1575,"rel":1576},"https:\u002F\u002Fdocs.netlify.com\u002Fcli\u002Fget-started\u002F",[422],[1578],{"type":48,"value":1575},{"type":42,"tag":73,"props":1580,"children":1581},{},[1582,1584],{"type":48,"value":1583},"netlify.toml Reference: ",{"type":42,"tag":418,"props":1585,"children":1588},{"href":1586,"rel":1587},"https:\u002F\u002Fdocs.netlify.com\u002Fconfigure-builds\u002Ffile-based-configuration\u002F",[422],[1589],{"type":48,"value":1586},{"type":42,"tag":57,"props":1591,"children":1593},{"id":1592},"bundled-references-load-as-needed",[1594],{"type":48,"value":1595},"Bundled References (Load As Needed)",{"type":42,"tag":69,"props":1597,"children":1598},{},[1599,1608,1617],{"type":42,"tag":73,"props":1600,"children":1601},{},[1602],{"type":42,"tag":418,"props":1603,"children":1605},{"href":1604},"references\u002Fcli-commands.md",[1606],{"type":48,"value":1607},"CLI commands",{"type":42,"tag":73,"props":1609,"children":1610},{},[1611],{"type":42,"tag":418,"props":1612,"children":1614},{"href":1613},"references\u002Fdeployment-patterns.md",[1615],{"type":48,"value":1616},"Deployment patterns",{"type":42,"tag":73,"props":1618,"children":1619},{},[1620],{"type":42,"tag":418,"props":1621,"children":1623},{"href":1622},"references\u002Fnetlify-toml.md",[1624],{"type":48,"value":1625},"netlify.toml guide",{"type":42,"tag":1627,"props":1628,"children":1629},"style",{},[1630],{"type":48,"value":1631},"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":1633,"total":1832},[1634,1655,1678,1695,1709,1726,1745,1759,1775,1789,1801,1816],{"slug":1635,"name":1635,"fn":1636,"description":1637,"org":1638,"tags":1639,"stars":1652,"repoUrl":1653,"updatedAt":1654},"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},[1640,1643,1646,1649],{"name":1641,"slug":1642,"type":15},"Documents","documents",{"name":1644,"slug":1645,"type":15},"Healthcare","healthcare",{"name":1647,"slug":1648,"type":15},"Insurance","insurance",{"name":1650,"slug":1651,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1656,"name":1656,"fn":1657,"description":1658,"org":1659,"tags":1660,"stars":1675,"repoUrl":1676,"updatedAt":1677},"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},[1661,1664,1666,1669,1672],{"name":1662,"slug":1663,"type":15},".NET","dotnet",{"name":1665,"slug":1656,"type":15},"ASP.NET Core",{"name":1667,"slug":1668,"type":15},"Blazor","blazor",{"name":1670,"slug":1671,"type":15},"C#","csharp",{"name":1673,"slug":1674,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1679,"name":1679,"fn":1680,"description":1681,"org":1682,"tags":1683,"stars":1675,"repoUrl":1676,"updatedAt":1694},"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},[1684,1687,1690,1693],{"name":1685,"slug":1686,"type":15},"Apps SDK","apps-sdk",{"name":1688,"slug":1689,"type":15},"ChatGPT","chatgpt",{"name":1691,"slug":1692,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1696,"name":1696,"fn":1697,"description":1698,"org":1699,"tags":1700,"stars":1675,"repoUrl":1676,"updatedAt":1708},"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},[1701,1704,1705],{"name":1702,"slug":1703,"type":15},"API Development","api-development",{"name":13,"slug":14,"type":15},{"name":1706,"slug":1707,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1710,"name":1710,"fn":1711,"description":1712,"org":1713,"tags":1714,"stars":1675,"repoUrl":1676,"updatedAt":1725},"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},[1715,1718,1721,1724],{"name":1716,"slug":1717,"type":15},"Cloudflare","cloudflare",{"name":1719,"slug":1720,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1722,"slug":1723,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":1727,"name":1727,"fn":1728,"description":1729,"org":1730,"tags":1731,"stars":1675,"repoUrl":1676,"updatedAt":1744},"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},[1732,1735,1738,1741],{"name":1733,"slug":1734,"type":15},"Productivity","productivity",{"name":1736,"slug":1737,"type":15},"Project Management","project-management",{"name":1739,"slug":1740,"type":15},"Strategy","strategy",{"name":1742,"slug":1743,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1746,"name":1746,"fn":1747,"description":1748,"org":1749,"tags":1750,"stars":1675,"repoUrl":1676,"updatedAt":1758},"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},[1751,1754,1756,1757],{"name":1752,"slug":1753,"type":15},"Design","design",{"name":1755,"slug":1746,"type":15},"Figma",{"name":23,"slug":24,"type":15},{"name":1691,"slug":1692,"type":15},"2026-04-12T05:06:47.939943",{"slug":1760,"name":1760,"fn":1761,"description":1762,"org":1763,"tags":1764,"stars":1675,"repoUrl":1676,"updatedAt":1774},"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},[1765,1766,1769,1770,1771],{"name":1752,"slug":1753,"type":15},{"name":1767,"slug":1768,"type":15},"Design System","design-system",{"name":1755,"slug":1746,"type":15},{"name":23,"slug":24,"type":15},{"name":1772,"slug":1773,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1776,"name":1776,"fn":1777,"description":1778,"org":1779,"tags":1780,"stars":1675,"repoUrl":1676,"updatedAt":1788},"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},[1781,1782,1783,1786,1787],{"name":1752,"slug":1753,"type":15},{"name":1767,"slug":1768,"type":15},{"name":1784,"slug":1785,"type":15},"Documentation","documentation",{"name":1755,"slug":1746,"type":15},{"name":23,"slug":24,"type":15},"2026-05-16T06:07:47.821474",{"slug":1790,"name":1790,"fn":1791,"description":1792,"org":1793,"tags":1794,"stars":1675,"repoUrl":1676,"updatedAt":1800},"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},[1795,1796,1797,1798,1799],{"name":1752,"slug":1753,"type":15},{"name":1755,"slug":1746,"type":15},{"name":23,"slug":24,"type":15},{"name":1772,"slug":1773,"type":15},{"name":1673,"slug":1674,"type":15},"2026-05-16T06:07:40.583615",{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1805,"tags":1806,"stars":1675,"repoUrl":1676,"updatedAt":1815},"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},[1807,1810,1811,1814],{"name":1808,"slug":1809,"type":15},"Animation","animation",{"name":1706,"slug":1707,"type":15},{"name":1812,"slug":1813,"type":15},"Creative","creative",{"name":1752,"slug":1753,"type":15},"2026-05-02T05:31:48.48485",{"slug":1817,"name":1817,"fn":1818,"description":1819,"org":1820,"tags":1821,"stars":1675,"repoUrl":1676,"updatedAt":1831},"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},[1822,1823,1824,1827,1830],{"name":1812,"slug":1813,"type":15},{"name":1752,"slug":1753,"type":15},{"name":1825,"slug":1826,"type":15},"Image Generation","image-generation",{"name":1828,"slug":1829,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1834,"total":1948},[1835,1852,1868,1880,1898,1916,1936],{"slug":1836,"name":1836,"fn":1837,"description":1838,"org":1839,"tags":1840,"stars":25,"repoUrl":26,"updatedAt":1851},"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},[1841,1844,1847,1850],{"name":1842,"slug":1843,"type":15},"Accessibility","accessibility",{"name":1845,"slug":1846,"type":15},"Charts","charts",{"name":1848,"slug":1849,"type":15},"Data Visualization","data-visualization",{"name":1752,"slug":1753,"type":15},"2026-06-30T19:00:57.102",{"slug":1853,"name":1853,"fn":1854,"description":1855,"org":1856,"tags":1857,"stars":25,"repoUrl":26,"updatedAt":1867},"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},[1858,1861,1864],{"name":1859,"slug":1860,"type":15},"Agents","agents",{"name":1862,"slug":1863,"type":15},"Browser Automation","browser-automation",{"name":1865,"slug":1866,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1869,"name":1869,"fn":1870,"description":1871,"org":1872,"tags":1873,"stars":25,"repoUrl":26,"updatedAt":1879},"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},[1874,1875,1878],{"name":1862,"slug":1863,"type":15},{"name":1876,"slug":1877,"type":15},"Local Development","local-development",{"name":1865,"slug":1866,"type":15},"2026-04-06T18:41:17.526867",{"slug":1881,"name":1881,"fn":1882,"description":1883,"org":1884,"tags":1885,"stars":25,"repoUrl":26,"updatedAt":1897},"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},[1886,1887,1888,1891,1894],{"name":1859,"slug":1860,"type":15},{"name":1722,"slug":1723,"type":15},{"name":1889,"slug":1890,"type":15},"SDK","sdk",{"name":1892,"slug":1893,"type":15},"Serverless","serverless",{"name":1895,"slug":1896,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1899,"name":1899,"fn":1900,"description":1901,"org":1902,"tags":1903,"stars":25,"repoUrl":26,"updatedAt":1915},"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},[1904,1905,1908,1911,1912],{"name":23,"slug":24,"type":15},{"name":1906,"slug":1907,"type":15},"React","react",{"name":1909,"slug":1910,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1772,"slug":1773,"type":15},{"name":1913,"slug":1914,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1917,"name":1917,"fn":1918,"description":1919,"org":1920,"tags":1921,"stars":25,"repoUrl":26,"updatedAt":1935},"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},[1922,1925,1928,1931,1934],{"name":1923,"slug":1924,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1926,"slug":1927,"type":15},"Cost Optimization","cost-optimization",{"name":1929,"slug":1930,"type":15},"LLM","llm",{"name":1932,"slug":1933,"type":15},"Performance","performance",{"name":1913,"slug":1914,"type":15},"2026-04-06T18:40:44.377464",{"slug":1937,"name":1937,"fn":1938,"description":1939,"org":1940,"tags":1941,"stars":25,"repoUrl":26,"updatedAt":1947},"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},[1942,1943,1946],{"name":1926,"slug":1927,"type":15},{"name":1944,"slug":1945,"type":15},"Database","database",{"name":1929,"slug":1930,"type":15},"2026-04-06T18:41:08.513425",600]