[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-netlify-deploy":3,"mdc-ffxuwy-key":33,"related-repo-jetbrains-netlify-deploy":1632,"related-org-jetbrains-netlify-deploy":1756},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"netlify-deploy","deploy web projects to Netlify","Deploy web projects to Netlify using the Netlify CLI (`npx netlify`). Use when the user asks to deploy, host, publish, or link a site\u002Frepo on Netlify, including preview and production deploys.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.png",[12,16,19],{"name":13,"slug":14,"type":15},"Netlify","netlify","tag",{"name":17,"slug":18,"type":15},"Deployment","deployment",{"name":20,"slug":21,"type":15},"Frontend","frontend",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:40:06.930845",null,17,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\u002Fnetlify-deploy","---\nname: netlify-deploy\ndescription: Deploy web projects to Netlify using the Netlify CLI (`npx netlify`). Use when the user asks to deploy, host, publish, or link a site\u002Frepo on Netlify, including preview and production deploys.\nmetadata:\n  short-description: \"Deploy web projects to Netlify with the Netlify CLI\"\n  author: OpenAI\n  source: https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.curated\u002Fnetlify-deploy\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":34,"body":39},{"name":4,"description":6,"metadata":35},{"short-description":36,"author":37,"source":38},"Deploy web projects to Netlify with the Netlify CLI","OpenAI","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.curated\u002Fnetlify-deploy",{"type":40,"children":41},"root",[42,51,57,64,69,94,100,153,159,171,202,207,246,252,259,264,298,308,321,331,354,367,375,380,413,426,432,444,467,473,483,493,620,630,661,666,689,695,700,751,757,762,772,795,800,810,838,843,852,875,881,886,937,943,956,1012,1017,1072,1085,1091,1350,1356,1361,1376,1399,1409,1419,1425,1431,1443,1448,1458,1464,1469,1493,1499,1559,1565,1590,1596,1626],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"netlify-deployment-skill",[48],{"type":49,"value":50},"text","Netlify Deployment Skill",{"type":43,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"Deploy web projects to Netlify using the Netlify CLI with intelligent detection of project configuration and deployment context.",{"type":43,"tag":58,"props":59,"children":61},"h2",{"id":60},"overview",[62],{"type":49,"value":63},"Overview",{"type":43,"tag":52,"props":65,"children":66},{},[67],{"type":49,"value":68},"This skill automates Netlify deployments by:",{"type":43,"tag":70,"props":71,"children":72},"ul",{},[73,79,84,89],{"type":43,"tag":74,"props":75,"children":76},"li",{},[77],{"type":49,"value":78},"Verifying Netlify CLI authentication",{"type":43,"tag":74,"props":80,"children":81},{},[82],{"type":49,"value":83},"Detecting project configuration and framework",{"type":43,"tag":74,"props":85,"children":86},{},[87],{"type":49,"value":88},"Linking to existing sites or creating new ones",{"type":43,"tag":74,"props":90,"children":91},{},[92],{"type":49,"value":93},"Deploying to production or preview environments",{"type":43,"tag":58,"props":95,"children":97},{"id":96},"prerequisites",[98],{"type":49,"value":99},"Prerequisites",{"type":43,"tag":70,"props":101,"children":102},{},[103,114,124,134,148],{"type":43,"tag":74,"props":104,"children":105},{},[106,112],{"type":43,"tag":107,"props":108,"children":109},"strong",{},[110],{"type":49,"value":111},"Netlify CLI",{"type":49,"value":113},": Installed via npx (no global install required)",{"type":43,"tag":74,"props":115,"children":116},{},[117,122],{"type":43,"tag":107,"props":118,"children":119},{},[120],{"type":49,"value":121},"Authentication",{"type":49,"value":123},": Netlify account with active login session",{"type":43,"tag":74,"props":125,"children":126},{},[127,132],{"type":43,"tag":107,"props":128,"children":129},{},[130],{"type":49,"value":131},"Project",{"type":49,"value":133},": Valid web project in current directory",{"type":43,"tag":74,"props":135,"children":136},{},[137,139,146],{"type":49,"value":138},"When sandboxing blocks the deployment network calls, rerun with ",{"type":43,"tag":140,"props":141,"children":143},"code",{"className":142},[],[144],{"type":49,"value":145},"sandbox_permissions=require_escalated",{"type":49,"value":147},".",{"type":43,"tag":74,"props":149,"children":150},{},[151],{"type":49,"value":152},"The deployment might take a few minutes. Use appropriate timeout values.",{"type":43,"tag":58,"props":154,"children":156},{"id":155},"authentication-pattern",[157],{"type":49,"value":158},"Authentication Pattern",{"type":43,"tag":52,"props":160,"children":161},{},[162,164,169],{"type":49,"value":163},"The skill uses the ",{"type":43,"tag":107,"props":165,"children":166},{},[167],{"type":49,"value":168},"pre-authenticated Netlify CLI",{"type":49,"value":170}," approach:",{"type":43,"tag":172,"props":173,"children":174},"ol",{},[175,186,197],{"type":43,"tag":74,"props":176,"children":177},{},[178,180],{"type":49,"value":179},"Check authentication status with ",{"type":43,"tag":140,"props":181,"children":183},{"className":182},[],[184],{"type":49,"value":185},"npx netlify status",{"type":43,"tag":74,"props":187,"children":188},{},[189,191],{"type":49,"value":190},"If not authenticated, guide user through ",{"type":43,"tag":140,"props":192,"children":194},{"className":193},[],[195],{"type":49,"value":196},"npx netlify login",{"type":43,"tag":74,"props":198,"children":199},{},[200],{"type":49,"value":201},"Fail gracefully if authentication cannot be established",{"type":43,"tag":52,"props":203,"children":204},{},[205],{"type":49,"value":206},"Authentication uses either:",{"type":43,"tag":70,"props":208,"children":209},{},[210,228],{"type":43,"tag":74,"props":211,"children":212},{},[213,218,220,226],{"type":43,"tag":107,"props":214,"children":215},{},[216],{"type":49,"value":217},"Browser-based OAuth",{"type":49,"value":219}," (primary): ",{"type":43,"tag":140,"props":221,"children":223},{"className":222},[],[224],{"type":49,"value":225},"netlify login",{"type":49,"value":227}," opens browser for authentication",{"type":43,"tag":74,"props":229,"children":230},{},[231,236,238,244],{"type":43,"tag":107,"props":232,"children":233},{},[234],{"type":49,"value":235},"API Key",{"type":49,"value":237}," (alternative): Set ",{"type":43,"tag":140,"props":239,"children":241},{"className":240},[],[242],{"type":49,"value":243},"NETLIFY_AUTH_TOKEN",{"type":49,"value":245}," environment variable",{"type":43,"tag":58,"props":247,"children":249},{"id":248},"workflow",[250],{"type":49,"value":251},"Workflow",{"type":43,"tag":253,"props":254,"children":256},"h3",{"id":255},"_1-verify-netlify-cli-authentication",[257],{"type":49,"value":258},"1. Verify Netlify CLI Authentication",{"type":43,"tag":52,"props":260,"children":261},{},[262],{"type":49,"value":263},"Check if the user is logged into Netlify:",{"type":43,"tag":265,"props":266,"children":271},"pre",{"className":267,"code":268,"language":269,"meta":270,"style":270},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx netlify status\n","bash","",[272],{"type":43,"tag":140,"props":273,"children":274},{"__ignoreMap":270},[275],{"type":43,"tag":276,"props":277,"children":280},"span",{"class":278,"line":279},"line",1,[281,287,293],{"type":43,"tag":276,"props":282,"children":284},{"style":283},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[285],{"type":49,"value":286},"npx",{"type":43,"tag":276,"props":288,"children":290},{"style":289},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[291],{"type":49,"value":292}," netlify",{"type":43,"tag":276,"props":294,"children":295},{"style":289},[296],{"type":49,"value":297}," status\n",{"type":43,"tag":52,"props":299,"children":300},{},[301,306],{"type":43,"tag":107,"props":302,"children":303},{},[304],{"type":49,"value":305},"Expected output patterns",{"type":49,"value":307},":",{"type":43,"tag":70,"props":309,"children":310},{},[311,316],{"type":43,"tag":74,"props":312,"children":313},{},[314],{"type":49,"value":315},"✅ Authenticated: Shows logged-in user email and site link status",{"type":43,"tag":74,"props":317,"children":318},{},[319],{"type":49,"value":320},"❌ Not authenticated: \"Not logged into any site\" or authentication error",{"type":43,"tag":52,"props":322,"children":323},{},[324,329],{"type":43,"tag":107,"props":325,"children":326},{},[327],{"type":49,"value":328},"If not authenticated",{"type":49,"value":330},", guide the user:",{"type":43,"tag":265,"props":332,"children":334},{"className":267,"code":333,"language":269,"meta":270,"style":270},"npx netlify login\n",[335],{"type":43,"tag":140,"props":336,"children":337},{"__ignoreMap":270},[338],{"type":43,"tag":276,"props":339,"children":340},{"class":278,"line":279},[341,345,349],{"type":43,"tag":276,"props":342,"children":343},{"style":283},[344],{"type":49,"value":286},{"type":43,"tag":276,"props":346,"children":347},{"style":289},[348],{"type":49,"value":292},{"type":43,"tag":276,"props":350,"children":351},{"style":289},[352],{"type":49,"value":353}," login\n",{"type":43,"tag":52,"props":355,"children":356},{},[357,359,365],{"type":49,"value":358},"This opens a browser window for OAuth authentication. Wait for user to complete login, then verify with ",{"type":43,"tag":140,"props":360,"children":362},{"className":361},[],[363],{"type":49,"value":364},"netlify status",{"type":49,"value":366}," again.",{"type":43,"tag":52,"props":368,"children":369},{},[370],{"type":43,"tag":107,"props":371,"children":372},{},[373],{"type":49,"value":374},"Alternative: API Key authentication",{"type":43,"tag":52,"props":376,"children":377},{},[378],{"type":49,"value":379},"If browser authentication isn't available, users can set:",{"type":43,"tag":265,"props":381,"children":383},{"className":267,"code":382,"language":269,"meta":270,"style":270},"export NETLIFY_AUTH_TOKEN=your_token_here\n",[384],{"type":43,"tag":140,"props":385,"children":386},{"__ignoreMap":270},[387],{"type":43,"tag":276,"props":388,"children":389},{"class":278,"line":279},[390,396,402,408],{"type":43,"tag":276,"props":391,"children":393},{"style":392},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[394],{"type":49,"value":395},"export",{"type":43,"tag":276,"props":397,"children":399},{"style":398},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[400],{"type":49,"value":401}," NETLIFY_AUTH_TOKEN",{"type":43,"tag":276,"props":403,"children":405},{"style":404},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[406],{"type":49,"value":407},"=",{"type":43,"tag":276,"props":409,"children":410},{"style":398},[411],{"type":49,"value":412},"your_token_here\n",{"type":43,"tag":52,"props":414,"children":415},{},[416,418],{"type":49,"value":417},"Tokens can be generated at: ",{"type":43,"tag":419,"props":420,"children":424},"a",{"href":421,"rel":422},"https:\u002F\u002Fapp.netlify.com\u002Fuser\u002Fapplications#personal-access-tokens",[423],"nofollow",[425],{"type":49,"value":421},{"type":43,"tag":253,"props":427,"children":429},{"id":428},"_2-detect-site-link-status",[430],{"type":49,"value":431},"2. Detect Site Link Status",{"type":43,"tag":52,"props":433,"children":434},{},[435,437,442],{"type":49,"value":436},"From ",{"type":43,"tag":140,"props":438,"children":440},{"className":439},[],[441],{"type":49,"value":364},{"type":49,"value":443}," output, determine:",{"type":43,"tag":70,"props":445,"children":446},{},[447,457],{"type":43,"tag":74,"props":448,"children":449},{},[450,455],{"type":43,"tag":107,"props":451,"children":452},{},[453],{"type":49,"value":454},"Linked",{"type":49,"value":456},": Site already connected to Netlify (shows site name\u002FURL)",{"type":43,"tag":74,"props":458,"children":459},{},[460,465],{"type":43,"tag":107,"props":461,"children":462},{},[463],{"type":49,"value":464},"Not linked",{"type":49,"value":466},": Need to link or create site",{"type":43,"tag":253,"props":468,"children":470},{"id":469},"_3-link-to-existing-site-or-create-new",[471],{"type":49,"value":472},"3. Link to Existing Site or Create New",{"type":43,"tag":52,"props":474,"children":475},{},[476,481],{"type":43,"tag":107,"props":477,"children":478},{},[479],{"type":49,"value":480},"If already linked",{"type":49,"value":482}," → Skip to step 4",{"type":43,"tag":52,"props":484,"children":485},{},[486,491],{"type":43,"tag":107,"props":487,"children":488},{},[489],{"type":49,"value":490},"If not linked",{"type":49,"value":492},", attempt to link by Git remote:",{"type":43,"tag":265,"props":494,"children":496},{"className":267,"code":495,"language":269,"meta":270,"style":270},"# 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",[497],{"type":43,"tag":140,"props":498,"children":499},{"__ignoreMap":270},[500,509,533,543,552,561,569,578],{"type":43,"tag":276,"props":501,"children":502},{"class":278,"line":279},[503],{"type":43,"tag":276,"props":504,"children":506},{"style":505},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[507],{"type":49,"value":508},"# Check if project is Git-based\n",{"type":43,"tag":276,"props":510,"children":512},{"class":278,"line":511},2,[513,518,523,528],{"type":43,"tag":276,"props":514,"children":515},{"style":283},[516],{"type":49,"value":517},"git",{"type":43,"tag":276,"props":519,"children":520},{"style":289},[521],{"type":49,"value":522}," remote",{"type":43,"tag":276,"props":524,"children":525},{"style":289},[526],{"type":49,"value":527}," show",{"type":43,"tag":276,"props":529,"children":530},{"style":289},[531],{"type":49,"value":532}," origin\n",{"type":43,"tag":276,"props":534,"children":536},{"class":278,"line":535},3,[537],{"type":43,"tag":276,"props":538,"children":540},{"emptyLinePlaceholder":539},true,[541],{"type":49,"value":542},"\n",{"type":43,"tag":276,"props":544,"children":546},{"class":278,"line":545},4,[547],{"type":43,"tag":276,"props":548,"children":549},{"style":505},[550],{"type":49,"value":551},"# If Git-based, extract remote URL\n",{"type":43,"tag":276,"props":553,"children":555},{"class":278,"line":554},5,[556],{"type":43,"tag":276,"props":557,"children":558},{"style":505},[559],{"type":49,"value":560},"# Format: https:\u002F\u002Fgithub.com\u002Fusername\u002Frepo or git@github.com:username\u002Frepo.git\n",{"type":43,"tag":276,"props":562,"children":564},{"class":278,"line":563},6,[565],{"type":43,"tag":276,"props":566,"children":567},{"emptyLinePlaceholder":539},[568],{"type":49,"value":542},{"type":43,"tag":276,"props":570,"children":572},{"class":278,"line":571},7,[573],{"type":43,"tag":276,"props":574,"children":575},{"style":505},[576],{"type":49,"value":577},"# Try to link by Git remote\n",{"type":43,"tag":276,"props":579,"children":581},{"class":278,"line":580},8,[582,586,590,595,600,605,610,615],{"type":43,"tag":276,"props":583,"children":584},{"style":283},[585],{"type":49,"value":286},{"type":43,"tag":276,"props":587,"children":588},{"style":289},[589],{"type":49,"value":292},{"type":43,"tag":276,"props":591,"children":592},{"style":289},[593],{"type":49,"value":594}," link",{"type":43,"tag":276,"props":596,"children":597},{"style":289},[598],{"type":49,"value":599}," --git-remote-url",{"type":43,"tag":276,"props":601,"children":602},{"style":404},[603],{"type":49,"value":604}," \u003C",{"type":43,"tag":276,"props":606,"children":607},{"style":289},[608],{"type":49,"value":609},"REMOTE_UR",{"type":43,"tag":276,"props":611,"children":612},{"style":398},[613],{"type":49,"value":614},"L",{"type":43,"tag":276,"props":616,"children":617},{"style":404},[618],{"type":49,"value":619},">\n",{"type":43,"tag":52,"props":621,"children":622},{},[623,628],{"type":43,"tag":107,"props":624,"children":625},{},[626],{"type":49,"value":627},"If link fails",{"type":49,"value":629}," (site doesn't exist on Netlify):",{"type":43,"tag":265,"props":631,"children":633},{"className":267,"code":632,"language":269,"meta":270,"style":270},"# Create new site interactively\nnpx netlify init\n",[634],{"type":43,"tag":140,"props":635,"children":636},{"__ignoreMap":270},[637,645],{"type":43,"tag":276,"props":638,"children":639},{"class":278,"line":279},[640],{"type":43,"tag":276,"props":641,"children":642},{"style":505},[643],{"type":49,"value":644},"# Create new site interactively\n",{"type":43,"tag":276,"props":646,"children":647},{"class":278,"line":511},[648,652,656],{"type":43,"tag":276,"props":649,"children":650},{"style":283},[651],{"type":49,"value":286},{"type":43,"tag":276,"props":653,"children":654},{"style":289},[655],{"type":49,"value":292},{"type":43,"tag":276,"props":657,"children":658},{"style":289},[659],{"type":49,"value":660}," init\n",{"type":43,"tag":52,"props":662,"children":663},{},[664],{"type":49,"value":665},"This guides user through:",{"type":43,"tag":172,"props":667,"children":668},{},[669,674,679,684],{"type":43,"tag":74,"props":670,"children":671},{},[672],{"type":49,"value":673},"Choosing team\u002Faccount",{"type":43,"tag":74,"props":675,"children":676},{},[677],{"type":49,"value":678},"Setting site name",{"type":43,"tag":74,"props":680,"children":681},{},[682],{"type":49,"value":683},"Configuring build settings",{"type":43,"tag":74,"props":685,"children":686},{},[687],{"type":49,"value":688},"Creating netlify.toml if needed",{"type":43,"tag":253,"props":690,"children":692},{"id":691},"_4-verify-dependencies",[693],{"type":49,"value":694},"4. Verify Dependencies",{"type":43,"tag":52,"props":696,"children":697},{},[698],{"type":49,"value":699},"Before deploying, ensure project dependencies are installed:",{"type":43,"tag":265,"props":701,"children":703},{"className":267,"code":702,"language":269,"meta":270,"style":270},"# For npm projects\nnpm install\n\n# For other package managers, detect and use appropriate command\n# yarn install, pnpm install, etc.\n",[704],{"type":43,"tag":140,"props":705,"children":706},{"__ignoreMap":270},[707,715,728,735,743],{"type":43,"tag":276,"props":708,"children":709},{"class":278,"line":279},[710],{"type":43,"tag":276,"props":711,"children":712},{"style":505},[713],{"type":49,"value":714},"# For npm projects\n",{"type":43,"tag":276,"props":716,"children":717},{"class":278,"line":511},[718,723],{"type":43,"tag":276,"props":719,"children":720},{"style":283},[721],{"type":49,"value":722},"npm",{"type":43,"tag":276,"props":724,"children":725},{"style":289},[726],{"type":49,"value":727}," install\n",{"type":43,"tag":276,"props":729,"children":730},{"class":278,"line":535},[731],{"type":43,"tag":276,"props":732,"children":733},{"emptyLinePlaceholder":539},[734],{"type":49,"value":542},{"type":43,"tag":276,"props":736,"children":737},{"class":278,"line":545},[738],{"type":43,"tag":276,"props":739,"children":740},{"style":505},[741],{"type":49,"value":742},"# For other package managers, detect and use appropriate command\n",{"type":43,"tag":276,"props":744,"children":745},{"class":278,"line":554},[746],{"type":43,"tag":276,"props":747,"children":748},{"style":505},[749],{"type":49,"value":750},"# yarn install, pnpm install, etc.\n",{"type":43,"tag":253,"props":752,"children":754},{"id":753},"_5-deploy-to-netlify",[755],{"type":49,"value":756},"5. Deploy to Netlify",{"type":43,"tag":52,"props":758,"children":759},{},[760],{"type":49,"value":761},"Choose deployment type based on context:",{"type":43,"tag":52,"props":763,"children":764},{},[765,770],{"type":43,"tag":107,"props":766,"children":767},{},[768],{"type":49,"value":769},"Preview\u002FDraft Deploy",{"type":49,"value":771}," (default for existing sites):",{"type":43,"tag":265,"props":773,"children":775},{"className":267,"code":774,"language":269,"meta":270,"style":270},"npx netlify deploy\n",[776],{"type":43,"tag":140,"props":777,"children":778},{"__ignoreMap":270},[779],{"type":43,"tag":276,"props":780,"children":781},{"class":278,"line":279},[782,786,790],{"type":43,"tag":276,"props":783,"children":784},{"style":283},[785],{"type":49,"value":286},{"type":43,"tag":276,"props":787,"children":788},{"style":289},[789],{"type":49,"value":292},{"type":43,"tag":276,"props":791,"children":792},{"style":289},[793],{"type":49,"value":794}," deploy\n",{"type":43,"tag":52,"props":796,"children":797},{},[798],{"type":49,"value":799},"This creates a deploy preview with a unique URL for testing.",{"type":43,"tag":52,"props":801,"children":802},{},[803,808],{"type":43,"tag":107,"props":804,"children":805},{},[806],{"type":49,"value":807},"Production Deploy",{"type":49,"value":809}," (for new sites or explicit production deployments):",{"type":43,"tag":265,"props":811,"children":813},{"className":267,"code":812,"language":269,"meta":270,"style":270},"npx netlify deploy --prod\n",[814],{"type":43,"tag":140,"props":815,"children":816},{"__ignoreMap":270},[817],{"type":43,"tag":276,"props":818,"children":819},{"class":278,"line":279},[820,824,828,833],{"type":43,"tag":276,"props":821,"children":822},{"style":283},[823],{"type":49,"value":286},{"type":43,"tag":276,"props":825,"children":826},{"style":289},[827],{"type":49,"value":292},{"type":43,"tag":276,"props":829,"children":830},{"style":289},[831],{"type":49,"value":832}," deploy",{"type":43,"tag":276,"props":834,"children":835},{"style":289},[836],{"type":49,"value":837}," --prod\n",{"type":43,"tag":52,"props":839,"children":840},{},[841],{"type":49,"value":842},"This deploys to the live production URL.",{"type":43,"tag":52,"props":844,"children":845},{},[846,851],{"type":43,"tag":107,"props":847,"children":848},{},[849],{"type":49,"value":850},"Deployment process",{"type":49,"value":307},{"type":43,"tag":172,"props":853,"children":854},{},[855,860,865,870],{"type":43,"tag":74,"props":856,"children":857},{},[858],{"type":49,"value":859},"CLI detects build settings (from netlify.toml or prompts user)",{"type":43,"tag":74,"props":861,"children":862},{},[863],{"type":49,"value":864},"Builds the project locally",{"type":43,"tag":74,"props":866,"children":867},{},[868],{"type":49,"value":869},"Uploads built assets to Netlify",{"type":43,"tag":74,"props":871,"children":872},{},[873],{"type":49,"value":874},"Returns deployment URL",{"type":43,"tag":253,"props":876,"children":878},{"id":877},"_6-report-results",[879],{"type":49,"value":880},"6. Report Results",{"type":43,"tag":52,"props":882,"children":883},{},[884],{"type":49,"value":885},"After deployment, report to user:",{"type":43,"tag":70,"props":887,"children":888},{},[889,899,909,919],{"type":43,"tag":74,"props":890,"children":891},{},[892,897],{"type":43,"tag":107,"props":893,"children":894},{},[895],{"type":49,"value":896},"Deploy URL",{"type":49,"value":898},": Unique URL for this deployment",{"type":43,"tag":74,"props":900,"children":901},{},[902,907],{"type":43,"tag":107,"props":903,"children":904},{},[905],{"type":49,"value":906},"Site URL",{"type":49,"value":908},": Production URL (if production deploy)",{"type":43,"tag":74,"props":910,"children":911},{},[912,917],{"type":43,"tag":107,"props":913,"children":914},{},[915],{"type":49,"value":916},"Deploy logs",{"type":49,"value":918},": Link to Netlify dashboard for logs",{"type":43,"tag":74,"props":920,"children":921},{},[922,927,929,935],{"type":43,"tag":107,"props":923,"children":924},{},[925],{"type":49,"value":926},"Next steps",{"type":49,"value":928},": Suggest ",{"type":43,"tag":140,"props":930,"children":932},{"className":931},[],[933],{"type":49,"value":934},"netlify open",{"type":49,"value":936}," to view site or dashboard",{"type":43,"tag":58,"props":938,"children":940},{"id":939},"handling-netlifytoml",[941],{"type":49,"value":942},"Handling netlify.toml",{"type":43,"tag":52,"props":944,"children":945},{},[946,948,954],{"type":49,"value":947},"If a ",{"type":43,"tag":140,"props":949,"children":951},{"className":950},[],[952],{"type":49,"value":953},"netlify.toml",{"type":49,"value":955}," file exists, the CLI uses it automatically. If not, the CLI will prompt for:",{"type":43,"tag":70,"props":957,"children":958},{},[959,983],{"type":43,"tag":74,"props":960,"children":961},{},[962,967,969,975,977],{"type":43,"tag":107,"props":963,"children":964},{},[965],{"type":49,"value":966},"Build command",{"type":49,"value":968},": e.g., ",{"type":43,"tag":140,"props":970,"children":972},{"className":971},[],[973],{"type":49,"value":974},"npm run build",{"type":49,"value":976},", ",{"type":43,"tag":140,"props":978,"children":980},{"className":979},[],[981],{"type":49,"value":982},"next build",{"type":43,"tag":74,"props":984,"children":985},{},[986,991,992,998,999,1005,1006],{"type":43,"tag":107,"props":987,"children":988},{},[989],{"type":49,"value":990},"Publish directory",{"type":49,"value":968},{"type":43,"tag":140,"props":993,"children":995},{"className":994},[],[996],{"type":49,"value":997},"dist",{"type":49,"value":976},{"type":43,"tag":140,"props":1000,"children":1002},{"className":1001},[],[1003],{"type":49,"value":1004},"build",{"type":49,"value":976},{"type":43,"tag":140,"props":1007,"children":1009},{"className":1008},[],[1010],{"type":49,"value":1011},".next",{"type":43,"tag":52,"props":1013,"children":1014},{},[1015],{"type":49,"value":1016},"Common framework defaults:",{"type":43,"tag":70,"props":1018,"children":1019},{},[1020,1042,1062],{"type":43,"tag":74,"props":1021,"children":1022},{},[1023,1028,1030,1035,1037],{"type":43,"tag":107,"props":1024,"children":1025},{},[1026],{"type":49,"value":1027},"Next.js",{"type":49,"value":1029},": build command ",{"type":43,"tag":140,"props":1031,"children":1033},{"className":1032},[],[1034],{"type":49,"value":974},{"type":49,"value":1036},", publish ",{"type":43,"tag":140,"props":1038,"children":1040},{"className":1039},[],[1041],{"type":49,"value":1011},{"type":43,"tag":74,"props":1043,"children":1044},{},[1045,1050,1051,1056,1057],{"type":43,"tag":107,"props":1046,"children":1047},{},[1048],{"type":49,"value":1049},"React (Vite)",{"type":49,"value":1029},{"type":43,"tag":140,"props":1052,"children":1054},{"className":1053},[],[1055],{"type":49,"value":974},{"type":49,"value":1036},{"type":43,"tag":140,"props":1058,"children":1060},{"className":1059},[],[1061],{"type":49,"value":997},{"type":43,"tag":74,"props":1063,"children":1064},{},[1065,1070],{"type":43,"tag":107,"props":1066,"children":1067},{},[1068],{"type":49,"value":1069},"Static HTML",{"type":49,"value":1071},": no build command, publish current directory",{"type":43,"tag":52,"props":1073,"children":1074},{},[1075,1077,1083],{"type":49,"value":1076},"The skill should detect framework from ",{"type":43,"tag":140,"props":1078,"children":1080},{"className":1079},[],[1081],{"type":49,"value":1082},"package.json",{"type":49,"value":1084}," if possible and suggest appropriate settings.",{"type":43,"tag":58,"props":1086,"children":1088},{"id":1087},"example-full-workflow",[1089],{"type":49,"value":1090},"Example Full Workflow",{"type":43,"tag":265,"props":1092,"children":1094},{"className":267,"code":1093,"language":269,"meta":270,"style":270},"# 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",[1095],{"type":43,"tag":140,"props":1096,"children":1097},{"__ignoreMap":270},[1098,1106,1121,1128,1136,1151,1158,1166,1174,1194,1219,1227,1236,1252,1260,1269,1281,1288,1297,1313,1321,1330],{"type":43,"tag":276,"props":1099,"children":1100},{"class":278,"line":279},[1101],{"type":43,"tag":276,"props":1102,"children":1103},{"style":505},[1104],{"type":49,"value":1105},"# 1. Check authentication\n",{"type":43,"tag":276,"props":1107,"children":1108},{"class":278,"line":511},[1109,1113,1117],{"type":43,"tag":276,"props":1110,"children":1111},{"style":283},[1112],{"type":49,"value":286},{"type":43,"tag":276,"props":1114,"children":1115},{"style":289},[1116],{"type":49,"value":292},{"type":43,"tag":276,"props":1118,"children":1119},{"style":289},[1120],{"type":49,"value":297},{"type":43,"tag":276,"props":1122,"children":1123},{"class":278,"line":535},[1124],{"type":43,"tag":276,"props":1125,"children":1126},{"emptyLinePlaceholder":539},[1127],{"type":49,"value":542},{"type":43,"tag":276,"props":1129,"children":1130},{"class":278,"line":545},[1131],{"type":43,"tag":276,"props":1132,"children":1133},{"style":505},[1134],{"type":49,"value":1135},"# If not authenticated:\n",{"type":43,"tag":276,"props":1137,"children":1138},{"class":278,"line":554},[1139,1143,1147],{"type":43,"tag":276,"props":1140,"children":1141},{"style":283},[1142],{"type":49,"value":286},{"type":43,"tag":276,"props":1144,"children":1145},{"style":289},[1146],{"type":49,"value":292},{"type":43,"tag":276,"props":1148,"children":1149},{"style":289},[1150],{"type":49,"value":353},{"type":43,"tag":276,"props":1152,"children":1153},{"class":278,"line":563},[1154],{"type":43,"tag":276,"props":1155,"children":1156},{"emptyLinePlaceholder":539},[1157],{"type":49,"value":542},{"type":43,"tag":276,"props":1159,"children":1160},{"class":278,"line":571},[1161],{"type":43,"tag":276,"props":1162,"children":1163},{"style":505},[1164],{"type":49,"value":1165},"# 2. Link site (if needed)\n",{"type":43,"tag":276,"props":1167,"children":1168},{"class":278,"line":580},[1169],{"type":43,"tag":276,"props":1170,"children":1171},{"style":505},[1172],{"type":49,"value":1173},"# Try Git-based linking first\n",{"type":43,"tag":276,"props":1175,"children":1177},{"class":278,"line":1176},9,[1178,1182,1186,1190],{"type":43,"tag":276,"props":1179,"children":1180},{"style":283},[1181],{"type":49,"value":517},{"type":43,"tag":276,"props":1183,"children":1184},{"style":289},[1185],{"type":49,"value":522},{"type":43,"tag":276,"props":1187,"children":1188},{"style":289},[1189],{"type":49,"value":527},{"type":43,"tag":276,"props":1191,"children":1192},{"style":289},[1193],{"type":49,"value":532},{"type":43,"tag":276,"props":1195,"children":1197},{"class":278,"line":1196},10,[1198,1202,1206,1210,1214],{"type":43,"tag":276,"props":1199,"children":1200},{"style":283},[1201],{"type":49,"value":286},{"type":43,"tag":276,"props":1203,"children":1204},{"style":289},[1205],{"type":49,"value":292},{"type":43,"tag":276,"props":1207,"children":1208},{"style":289},[1209],{"type":49,"value":594},{"type":43,"tag":276,"props":1211,"children":1212},{"style":289},[1213],{"type":49,"value":599},{"type":43,"tag":276,"props":1215,"children":1216},{"style":289},[1217],{"type":49,"value":1218}," https:\u002F\u002Fgithub.com\u002Fuser\u002Frepo\n",{"type":43,"tag":276,"props":1220,"children":1222},{"class":278,"line":1221},11,[1223],{"type":43,"tag":276,"props":1224,"children":1225},{"emptyLinePlaceholder":539},[1226],{"type":49,"value":542},{"type":43,"tag":276,"props":1228,"children":1230},{"class":278,"line":1229},12,[1231],{"type":43,"tag":276,"props":1232,"children":1233},{"style":505},[1234],{"type":49,"value":1235},"# If no site exists, create new one:\n",{"type":43,"tag":276,"props":1237,"children":1239},{"class":278,"line":1238},13,[1240,1244,1248],{"type":43,"tag":276,"props":1241,"children":1242},{"style":283},[1243],{"type":49,"value":286},{"type":43,"tag":276,"props":1245,"children":1246},{"style":289},[1247],{"type":49,"value":292},{"type":43,"tag":276,"props":1249,"children":1250},{"style":289},[1251],{"type":49,"value":660},{"type":43,"tag":276,"props":1253,"children":1255},{"class":278,"line":1254},14,[1256],{"type":43,"tag":276,"props":1257,"children":1258},{"emptyLinePlaceholder":539},[1259],{"type":49,"value":542},{"type":43,"tag":276,"props":1261,"children":1263},{"class":278,"line":1262},15,[1264],{"type":43,"tag":276,"props":1265,"children":1266},{"style":505},[1267],{"type":49,"value":1268},"# 3. Install dependencies\n",{"type":43,"tag":276,"props":1270,"children":1272},{"class":278,"line":1271},16,[1273,1277],{"type":43,"tag":276,"props":1274,"children":1275},{"style":283},[1276],{"type":49,"value":722},{"type":43,"tag":276,"props":1278,"children":1279},{"style":289},[1280],{"type":49,"value":727},{"type":43,"tag":276,"props":1282,"children":1283},{"class":278,"line":26},[1284],{"type":43,"tag":276,"props":1285,"children":1286},{"emptyLinePlaceholder":539},[1287],{"type":49,"value":542},{"type":43,"tag":276,"props":1289,"children":1291},{"class":278,"line":1290},18,[1292],{"type":43,"tag":276,"props":1293,"children":1294},{"style":505},[1295],{"type":49,"value":1296},"# 4. Deploy (preview for testing)\n",{"type":43,"tag":276,"props":1298,"children":1300},{"class":278,"line":1299},19,[1301,1305,1309],{"type":43,"tag":276,"props":1302,"children":1303},{"style":283},[1304],{"type":49,"value":286},{"type":43,"tag":276,"props":1306,"children":1307},{"style":289},[1308],{"type":49,"value":292},{"type":43,"tag":276,"props":1310,"children":1311},{"style":289},[1312],{"type":49,"value":794},{"type":43,"tag":276,"props":1314,"children":1316},{"class":278,"line":1315},20,[1317],{"type":43,"tag":276,"props":1318,"children":1319},{"emptyLinePlaceholder":539},[1320],{"type":49,"value":542},{"type":43,"tag":276,"props":1322,"children":1324},{"class":278,"line":1323},21,[1325],{"type":43,"tag":276,"props":1326,"children":1327},{"style":505},[1328],{"type":49,"value":1329},"# 5. Deploy to production (when ready)\n",{"type":43,"tag":276,"props":1331,"children":1333},{"class":278,"line":1332},22,[1334,1338,1342,1346],{"type":43,"tag":276,"props":1335,"children":1336},{"style":283},[1337],{"type":49,"value":286},{"type":43,"tag":276,"props":1339,"children":1340},{"style":289},[1341],{"type":49,"value":292},{"type":43,"tag":276,"props":1343,"children":1344},{"style":289},[1345],{"type":49,"value":832},{"type":43,"tag":276,"props":1347,"children":1348},{"style":289},[1349],{"type":49,"value":837},{"type":43,"tag":58,"props":1351,"children":1353},{"id":1352},"error-handling",[1354],{"type":49,"value":1355},"Error Handling",{"type":43,"tag":52,"props":1357,"children":1358},{},[1359],{"type":49,"value":1360},"Common issues and solutions:",{"type":43,"tag":52,"props":1362,"children":1363},{},[1364,1369,1371],{"type":43,"tag":107,"props":1365,"children":1366},{},[1367],{"type":49,"value":1368},"\"Not logged in\"",{"type":49,"value":1370},"\n→ Run ",{"type":43,"tag":140,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":49,"value":196},{"type":43,"tag":52,"props":1377,"children":1378},{},[1379,1384,1385,1391,1393],{"type":43,"tag":107,"props":1380,"children":1381},{},[1382],{"type":49,"value":1383},"\"No site linked\"",{"type":49,"value":1370},{"type":43,"tag":140,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":49,"value":1390},"npx netlify link",{"type":49,"value":1392}," or ",{"type":43,"tag":140,"props":1394,"children":1396},{"className":1395},[],[1397],{"type":49,"value":1398},"npx netlify init",{"type":43,"tag":52,"props":1400,"children":1401},{},[1402,1407],{"type":43,"tag":107,"props":1403,"children":1404},{},[1405],{"type":49,"value":1406},"\"Build failed\"",{"type":49,"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":43,"tag":52,"props":1410,"children":1411},{},[1412,1417],{"type":43,"tag":107,"props":1413,"children":1414},{},[1415],{"type":49,"value":1416},"\"Publish directory not found\"",{"type":49,"value":1418},"\n→ Verify build command ran successfully\n→ Check publish directory path is correct",{"type":43,"tag":58,"props":1420,"children":1422},{"id":1421},"troubleshooting",[1423],{"type":49,"value":1424},"Troubleshooting",{"type":43,"tag":253,"props":1426,"children":1428},{"id":1427},"escalated-network-access",[1429],{"type":49,"value":1430},"Escalated Network Access",{"type":43,"tag":52,"props":1432,"children":1433},{},[1434,1436,1441],{"type":49,"value":1435},"If deployment fails due to network issues (timeouts, DNS errors, connection resets), rerun the deploy with escalated permissions (use ",{"type":43,"tag":140,"props":1437,"children":1439},{"className":1438},[],[1440],{"type":49,"value":145},{"type":49,"value":1442},"). The deploy requires escalated network access when sandbox networking blocks outbound requests.",{"type":43,"tag":52,"props":1444,"children":1445},{},[1446],{"type":49,"value":1447},"Example guidance to the user:",{"type":43,"tag":265,"props":1449,"children":1453},{"className":1450,"code":1452,"language":49},[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":43,"tag":140,"props":1455,"children":1456},{"__ignoreMap":270},[1457],{"type":49,"value":1452},{"type":43,"tag":58,"props":1459,"children":1461},{"id":1460},"environment-variables",[1462],{"type":49,"value":1463},"Environment Variables",{"type":43,"tag":52,"props":1465,"children":1466},{},[1467],{"type":49,"value":1468},"For secrets and configuration:",{"type":43,"tag":172,"props":1470,"children":1471},{},[1472,1477,1482],{"type":43,"tag":74,"props":1473,"children":1474},{},[1475],{"type":49,"value":1476},"Never commit secrets to Git",{"type":43,"tag":74,"props":1478,"children":1479},{},[1480],{"type":49,"value":1481},"Set in Netlify dashboard: Site Settings → Environment Variables",{"type":43,"tag":74,"props":1483,"children":1484},{},[1485,1487],{"type":49,"value":1486},"Access in builds via ",{"type":43,"tag":140,"props":1488,"children":1490},{"className":1489},[],[1491],{"type":49,"value":1492},"process.env.VARIABLE_NAME",{"type":43,"tag":58,"props":1494,"children":1496},{"id":1495},"tips",[1497],{"type":49,"value":1498},"Tips",{"type":43,"tag":70,"props":1500,"children":1501},{},[1502,1523,1535,1547],{"type":43,"tag":74,"props":1503,"children":1504},{},[1505,1507,1513,1515,1521],{"type":49,"value":1506},"Use ",{"type":43,"tag":140,"props":1508,"children":1510},{"className":1509},[],[1511],{"type":49,"value":1512},"netlify deploy",{"type":49,"value":1514}," (no ",{"type":43,"tag":140,"props":1516,"children":1518},{"className":1517},[],[1519],{"type":49,"value":1520},"--prod",{"type":49,"value":1522},") first to test before production",{"type":43,"tag":74,"props":1524,"children":1525},{},[1526,1528,1533],{"type":49,"value":1527},"Run ",{"type":43,"tag":140,"props":1529,"children":1531},{"className":1530},[],[1532],{"type":49,"value":934},{"type":49,"value":1534}," to view site in Netlify dashboard",{"type":43,"tag":74,"props":1536,"children":1537},{},[1538,1539,1545],{"type":49,"value":1527},{"type":43,"tag":140,"props":1540,"children":1542},{"className":1541},[],[1543],{"type":49,"value":1544},"netlify logs",{"type":49,"value":1546}," to view function logs (if using Netlify Functions)",{"type":43,"tag":74,"props":1548,"children":1549},{},[1550,1551,1557],{"type":49,"value":1506},{"type":43,"tag":140,"props":1552,"children":1554},{"className":1553},[],[1555],{"type":49,"value":1556},"netlify dev",{"type":49,"value":1558}," for local development with Netlify Functions",{"type":43,"tag":58,"props":1560,"children":1562},{"id":1561},"reference",[1563],{"type":49,"value":1564},"Reference",{"type":43,"tag":70,"props":1566,"children":1567},{},[1568,1579],{"type":43,"tag":74,"props":1569,"children":1570},{},[1571,1573],{"type":49,"value":1572},"Netlify CLI Docs: ",{"type":43,"tag":419,"props":1574,"children":1577},{"href":1575,"rel":1576},"https:\u002F\u002Fdocs.netlify.com\u002Fcli\u002Fget-started\u002F",[423],[1578],{"type":49,"value":1575},{"type":43,"tag":74,"props":1580,"children":1581},{},[1582,1584],{"type":49,"value":1583},"netlify.toml Reference: ",{"type":43,"tag":419,"props":1585,"children":1588},{"href":1586,"rel":1587},"https:\u002F\u002Fdocs.netlify.com\u002Fconfigure-builds\u002Ffile-based-configuration\u002F",[423],[1589],{"type":49,"value":1586},{"type":43,"tag":58,"props":1591,"children":1593},{"id":1592},"bundled-references-load-as-needed",[1594],{"type":49,"value":1595},"Bundled References (Load As Needed)",{"type":43,"tag":70,"props":1597,"children":1598},{},[1599,1608,1617],{"type":43,"tag":74,"props":1600,"children":1601},{},[1602],{"type":43,"tag":419,"props":1603,"children":1605},{"href":1604},"references\u002Fcli-commands.md",[1606],{"type":49,"value":1607},"CLI commands",{"type":43,"tag":74,"props":1609,"children":1610},{},[1611],{"type":43,"tag":419,"props":1612,"children":1614},{"href":1613},"references\u002Fdeployment-patterns.md",[1615],{"type":49,"value":1616},"Deployment patterns",{"type":43,"tag":74,"props":1618,"children":1619},{},[1620],{"type":43,"tag":419,"props":1621,"children":1623},{"href":1622},"references\u002Fnetlify-toml.md",[1624],{"type":49,"value":1625},"netlify.toml guide",{"type":43,"tag":1627,"props":1628,"children":1629},"style",{},[1630],{"type":49,"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":1755},[1634,1653,1670,1686,1701,1722,1739],{"slug":1635,"name":1635,"fn":1636,"description":1637,"org":1638,"tags":1639,"stars":22,"repoUrl":23,"updatedAt":1652},"algorithmic-art","create generative art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1640,1643,1646,1649],{"name":1641,"slug":1642,"type":15},"Creative","creative",{"name":1644,"slug":1645,"type":15},"Generative Art","generative-art",{"name":1647,"slug":1648,"type":15},"Graphics","graphics",{"name":1650,"slug":1651,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":1654,"name":1654,"fn":1655,"description":1656,"org":1657,"tags":1658,"stars":22,"repoUrl":23,"updatedAt":1669},"antfu","configure JavaScript projects with Anthony Fu's tools","Anthony Fu's opinionated tooling and conventions for JavaScript\u002FTypeScript projects. Use when setting up new projects, configuring ESLint\u002FPrettier alternatives, monorepos, library publishing, or when the user mentions Anthony Fu's preferences.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1659,1662,1665,1666],{"name":1660,"slug":1661,"type":15},"Best Practices","best-practices",{"name":1663,"slug":1664,"type":15},"Engineering","engineering",{"name":1650,"slug":1651,"type":15},{"name":1667,"slug":1668,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":1671,"name":1671,"fn":1672,"description":1673,"org":1674,"tags":1675,"stars":22,"repoUrl":23,"updatedAt":1685},"brand-guidelines","apply Anthropic brand guidelines","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1676,1679,1682],{"name":1677,"slug":1678,"type":15},"Branding","branding",{"name":1680,"slug":1681,"type":15},"Design","design",{"name":1683,"slug":1684,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":1687,"name":1687,"fn":1688,"description":1689,"org":1690,"tags":1691,"stars":22,"repoUrl":23,"updatedAt":1700},"canvas-design","create visual art and design assets","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1692,1693,1694,1697],{"name":1641,"slug":1642,"type":15},{"name":1680,"slug":1681,"type":15},{"name":1695,"slug":1696,"type":15},"Images","images",{"name":1698,"slug":1699,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1705,"tags":1706,"stars":22,"repoUrl":23,"updatedAt":1721},"ci-cd-containerization-advisor","design CI\u002FCD pipelines for Kotlin applications","Design reproducible build, image, and deployment pipelines for Kotlin plus Spring applications, including CI verification, layered containers, rollout safety, and deployment-time migration coordination. Use when creating or improving Dockerfiles, CI workflows, image hardening, Kubernetes manifests, release gates, or deployment strategies for Spring Boot services, especially where build reproducibility and operational safety matter.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1707,1710,1713,1714,1715,1718],{"name":1708,"slug":1709,"type":15},"CI\u002FCD","ci-cd",{"name":1711,"slug":1712,"type":15},"Containers","containers",{"name":17,"slug":18,"type":15},{"name":1663,"slug":1664,"type":15},{"name":1716,"slug":1717,"type":15},"Kotlin","kotlin",{"name":1719,"slug":1720,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":1723,"name":1723,"fn":1724,"description":1725,"org":1726,"tags":1727,"stars":22,"repoUrl":23,"updatedAt":1738},"cloudflare-deploy","deploy applications 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":9},[1728,1731,1734,1737],{"name":1729,"slug":1730,"type":15},"Cloudflare","cloudflare",{"name":1732,"slug":1733,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1735,"slug":1736,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":17,"slug":18,"type":15},"2026-07-17T06:04:42.853896",{"slug":1740,"name":1740,"fn":1741,"description":1742,"org":1743,"tags":1744,"stars":22,"repoUrl":23,"updatedAt":1754},"compose-ui-control","interact with Compose Desktop applications","Control a running Compose Desktop application via HTTP. Use when you need to interact with UI elements, click buttons, enter text, wait for elements to appear, or capture screenshots in a Compose Desktop app that has compose-ui-test-server enabled.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1745,1748,1751],{"name":1746,"slug":1747,"type":15},"Automation","automation",{"name":1749,"slug":1750,"type":15},"Desktop","desktop",{"name":1752,"slug":1753,"type":15},"UI Components","ui-components","2026-07-13T06:40:38.798626",128,{"items":1757,"total":1882},[1758,1774,1783,1792,1803,1813,1822,1831,1840,1850,1859,1872],{"slug":1759,"name":1759,"fn":1760,"description":1761,"org":1762,"tags":1763,"stars":1771,"repoUrl":1772,"updatedAt":1773},"mps-aspect-accessories","configure JetBrains MPS module dependencies","Wire MPS module and model dependencies, used languages, used devkits, extended languages, runtime solutions, accessory models, and language\u002Fdependency versions. Use when adding\u002Fremoving module dependencies, importing languages or devkits into a model, declaring runtime solutions, or shipping accessory content visible to consumers without explicit import.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1764,1767,1770],{"name":1765,"slug":1766,"type":15},"Architecture","architecture",{"name":1768,"slug":1769,"type":15},"Configuration","configuration",{"name":1663,"slug":1664,"type":15},1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1775,"name":1775,"fn":1776,"description":1777,"org":1778,"tags":1779,"stars":1771,"repoUrl":1772,"updatedAt":1782},"mps-aspect-actions","define and edit MPS node factories","Use when defining or editing MPS node factories (the \"actions\" aspect) — `NodeFactories` roots, per-concept `NodeFactory` setup functions that initialize a freshly created node and optionally copy data from a replaced `sampleNode`, plus the actions aspect's `CopyPasteHandlers` and `PasteWrappers` roots. Reach for this skill when a substitution, side transform, completion replacement, or `add new initialized(...)` should preserve fields from the node it is replacing, or when defaults set in a constructor are not enough.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1780,1781],{"name":1765,"slug":1766,"type":15},{"name":1663,"slug":1664,"type":15},"2026-07-17T06:04:48.066901",{"slug":1784,"name":1784,"fn":1785,"description":1786,"org":1787,"tags":1788,"stars":1771,"repoUrl":1772,"updatedAt":1791},"mps-aspect-behavior","define and edit MPS concept behavior","Use when defining or editing MPS `ConceptBehavior` — per-concept methods (non-virtual \u002F virtual \u002F abstract \u002F static \u002F virtual static), constructors, virtual dispatch (MRO), super and interface-default calls (`super\u003CInterface>.method`), overriding methods from `lang.core.behavior` interfaces such as `ScopeProvider.getScope` \u002F `INamedConcept.getName` \u002F `BaseConcept.getPresentation`, calling sibling methods (`LocalBehaviorMethodCall`) and behavior methods from other aspects via `node.method(...)`. Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fbehavior.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1789,1790],{"name":1765,"slug":1766,"type":15},{"name":1663,"slug":1664,"type":15},"2026-07-13T06:45:21.757084",{"slug":1793,"name":1793,"fn":1794,"description":1795,"org":1796,"tags":1797,"stars":1771,"repoUrl":1772,"updatedAt":1802},"mps-aspect-constraints","define JetBrains MPS language constraints","Use when defining or editing MPS language constraints — property validators \u002F setters \u002F getters, referent search scopes (imperative or inherited via `ScopeProvider.getScope`), `referentSetHandler` side effects, default-scope blocks, `canBeChild` \u002F `canBeParent` \u002F `canBeAncestor` \u002F `canBeRoot` placement rules, `defaultConcreteConcept` for abstract concepts, `set \u003Cread-only>` and `{name}` aliasing, and scope helpers (`SimpleRoleScope`, `ListScope`, `CompositeScope`, `HidingByNameScope`). Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fconstraints.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1798,1799],{"name":1765,"slug":1766,"type":15},{"name":1800,"slug":1801,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":1804,"name":1804,"fn":1805,"description":1806,"org":1807,"tags":1808,"stars":1771,"repoUrl":1772,"updatedAt":1812},"mps-aspect-dataflow","define and debug MPS dataflow builders","Use when defining or debugging MPS dataflow builders for a concept — control\u002Fdata flow declarations that drive reachability analysis and variable-use checking. Covers DataFlowBuilderDeclaration, BuilderBlock, emit instructions (code for, jump, ifjump, label, read, write, ret, mayBeUnreachable), positions (AfterPosition, BeforePosition, LabelPosition), the jetbrains.mps.lang.dataFlow language, the NodeParameter implicit, BL+smodel usage inside builder bodies, and IBuilderMode for advanced analyses such as nullable\u002Fnon-null tracking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1809],{"name":1810,"slug":1811,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1814,"name":1814,"fn":1815,"description":1816,"org":1817,"tags":1818,"stars":1771,"repoUrl":1772,"updatedAt":1821},"mps-aspect-editor","define MPS editor layouts","Use when creating or changing MPS editor definitions — the overall workflow from scaffolding a `ConceptEditorDeclaration` through componentizing reusable `EditorComponentDeclaration`s, refining cell models and cell layouts, applying style sheets and indent-layout style items, wiring smart references, leveraging inheritance via super-concepts and interfaces, inspecting (`print_node_json`, `show_node_representation`) and validating (`check_root_node_problems`). Covers `jetbrains.mps.lang.editor` cell models (`CellModel_RefNode`\u002F`CellModel_RefNodeList`\u002F`CellModel_RefCell`\u002F`CellModel_Property`\u002F`CellModel_Constant`), layout choices, and JSON blueprints for common editor shapes. For the non-layout side (action maps, keymaps, transformation\u002Fsubstitute menus) use `mps-aspect-editor-menus-and-keymaps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1819,1820],{"name":1680,"slug":1681,"type":15},{"name":1752,"slug":1753,"type":15},"2026-07-23T05:41:56.638151",{"slug":1823,"name":1823,"fn":1824,"description":1825,"org":1826,"tags":1827,"stars":1771,"repoUrl":1772,"updatedAt":1830},"mps-aspect-editor-menus-and-keymaps","author MPS editor menus and keymaps","Use when authoring the **non-layout** parts of the MPS editor aspect — what happens when the user types, presses a key, triggers completion, pastes, or invokes a context action. Covers action maps (`CellActionMapDeclaration`), cell keymaps (`CellKeyMapDeclaration`), transformation menus (`TransformationMenu_Default` \u002F `_Named` \u002F `_Contribution`), substitute menus (`SubstituteMenu_Default` \u002F `SubstituteMenu` \u002F contributions), side transforms (LEFT\u002FRIGHT), legacy cell menus, paste wrappers and copy-paste handlers (in the actions language), completion styling, reference presentation, two-step deletion, and the editor selection API. Trigger terms: `actionMap`, `keyMap`, `delete_action_id`, `transformationMenu`, `substituteMenu`, `Ctrl+Space`, `Ctrl+Alt+B`, side transform, paste wrapper, completion styling, `PasteWrappers`, `CopyPasteHandlers`. For the **layout** side (cells, layouts, style sheets) use `mps-aspect-editor` instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1828,1829],{"name":1663,"slug":1664,"type":15},{"name":1752,"slug":1753,"type":15},"2026-07-23T05:41:49.666535",{"slug":1832,"name":1832,"fn":1833,"description":1834,"org":1835,"tags":1836,"stars":1771,"repoUrl":1772,"updatedAt":1839},"mps-aspect-generation-plan","modify MPS generation plans","Use when defining or modifying an MPS generation plan — explicit ordering of generators, checkpoints for cross-model reference resolution, forks for parallel branches, IncludePlan composition, conditional PlanContribution activation, ParameterEquals\u002FConceptListSelector fork selectors, and InitModelAttributes for targetFacet routing. Apply when working with @genplan models, the jetbrains.mps.lang.generator.plan language, attaching plans via DevKits or the Custom generation facet, or debugging cross-model mapping label resolution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1837,1838],{"name":1765,"slug":1766,"type":15},{"name":1663,"slug":1664,"type":15},"2026-07-13T06:44:59.507855",{"slug":1841,"name":1841,"fn":1842,"description":1843,"org":1844,"tags":1845,"stars":1771,"repoUrl":1772,"updatedAt":1849},"mps-aspect-generator","define JetBrains MPS generator rules","Use when defining or modifying MPS generators — author a generator module, add or edit root\u002Freduction\u002Fweaving\u002Fpattern mapping rules, attach template macros ($COPY_SRC, $LOOP, $IF, $PROPERTY, $REF, $SWITCH, $MAP_SRC, $WEAVE, $INSERT, $LABEL, $TRACE, $VAR), wire mapping labels, build template switches, write pre\u002Fpost mapping scripts, navigate `genContext`, or debug \"rule didn't fire\", missing references, empty output, infinite reduction loops, and generated-Java compile failures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1846,1847,1848],{"name":1765,"slug":1766,"type":15},{"name":1800,"slug":1801,"type":15},{"name":1663,"slug":1664,"type":15},"2026-07-17T06:06:58.042999",{"slug":1851,"name":1851,"fn":1852,"description":1853,"org":1854,"tags":1855,"stars":1771,"repoUrl":1772,"updatedAt":1858},"mps-aspect-intentions","define and edit MPS intentions","Use when defining or editing MPS intentions (the Alt+Enter context-action aspect) — adding `IntentionDeclaration` roots, parameterized or surround-with variants, description\u002FisApplicable\u002Fexecute blocks, child-filter functions, factory-initialized AST splicing, or debugging why an intention is not offered. Lives in the language's `intentions` model and uses `jetbrains.mps.lang.intentions`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1856,1857],{"name":1765,"slug":1766,"type":15},{"name":1663,"slug":1664,"type":15},"2026-07-23T05:41:48.692899",{"slug":1860,"name":1860,"fn":1861,"description":1862,"org":1863,"tags":1864,"stars":1771,"repoUrl":1772,"updatedAt":1871},"mps-aspect-migrations","author and debug MPS migration scripts","Use when authoring or debugging MPS migration scripts that upgrade user models after a language definition changes — covers jetbrains.mps.lang.migration (MigrationScript class-based, PureMigrationScript declarative, MoveConcept\u002FMoveContainmentLink\u002FMoveReferenceLink\u002FMoveProperty, ordering via OrderDependency, data exchange via putData\u002FgetData, RefactoringLog, ConceptMigrationReference) and jetbrains.mps.lang.script Enhancement Scripts (MigrationScript with MigrationScriptPart_Instance, ExtractInterfaceMigration, FactoryMigrationScriptPart, CommentMigrationScriptPart) — when a model needs version-gated upgrade, concept rename or removal, link or property rename, instance-level transformation, or composition of migration steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1865,1868],{"name":1866,"slug":1867,"type":15},"Debugging","debugging",{"name":1869,"slug":1870,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":1873,"name":1873,"fn":1874,"description":1875,"org":1876,"tags":1877,"stars":1771,"repoUrl":1772,"updatedAt":1881},"mps-aspect-structure-concepts","define concepts in MPS structure aspect","Define concepts, interface concepts, enumerations, and constrained data types in an MPS language's `structure` aspect. Covers smart-reference detection, alias rules, cardinality, INamedConcept usage, bulk creation, and the full `mps_mcp_alter_structure` \u002F `mps_mcp_query_structure` reference. Use when authoring or modifying a language's structure model.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1878],{"name":1879,"slug":1880,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188]