Catalog
openai/netlify-deploy

openai

netlify-deploy

Deploy web projects to Netlify using the Netlify CLI (`npx netlify`). Use when the user asks to deploy, host, publish, or link a site/repo on Netlify, including preview and production deploys.

global
0installs0uses~1.7k
v1.0Saved Apr 5, 2026

Netlify Deployment Skill

Deploy web projects to Netlify using the Netlify CLI with intelligent detection of project configuration and deployment context.

Overview

This skill automates Netlify deployments by:

  • Verifying Netlify CLI authentication
  • Detecting project configuration and framework
  • Linking to existing sites or creating new ones
  • Deploying to production or preview environments

Prerequisites

  • Netlify CLI: Installed via npx (no global install required)
  • Authentication: Netlify account with active login session
  • Project: Valid web project in current directory
  • When sandboxing blocks the deployment network calls, rerun with sandbox_permissions=require_escalated.
  • The deployment might take a few minutes. Use appropriate timeout values.

Authentication Pattern

The skill uses the pre-authenticated Netlify CLI approach:

  1. Check authentication status with npx netlify status
  2. If not authenticated, guide user through npx netlify login
  3. Fail gracefully if authentication cannot be established

Authentication uses either:

  • Browser-based OAuth (primary): netlify login opens browser for authentication
  • API Key (alternative): Set NETLIFY_AUTH_TOKEN environment variable

Workflow

1. Verify Netlify CLI Authentication

Check if the user is logged into Netlify:

npx netlify status

Expected output patterns:

  • ✅ Authenticated: Shows logged-in user email and site link status
  • ❌ Not authenticated: "Not logged into any site" or authentication error

If not authenticated, guide the user:

npx netlify login

This opens a browser window for OAuth authentication. Wait for user to complete login, then verify with netlify status again.

Alternative: API Key authentication

If browser authentication isn't available, users can set:

export NETLIFY_AUTH_TOKEN=your_token_here

Tokens can be generated at: https://app.netlify.com/user/applications#personal-access-tokens

From netlify status output, determine:

  • Linked: Site already connected to Netlify (shows site name/URL)
  • Not linked: Need to link or create site

If already linked → Skip to step 4

If not linked, attempt to link by Git remote:

# Check if project is Git-based
git remote show origin

# If Git-based, extract remote URL
# Format: https://github.com/username/repo or git@github.com:username/repo.git

# Try to link by Git remote
npx netlify link --git-remote-url <REMOTE_URL>

If link fails (site doesn't exist on Netlify):

# Create new site interactively
npx netlify init

This guides user through:

  1. Choosing team/account
  2. Setting site name
  3. Configuring build settings
  4. Creating netlify.toml if needed

4. Verify Dependencies

Before deploying, ensure project dependencies are installed:

# For npm projects
npm install

# For other package managers, detect and use appropriate command
# yarn install, pnpm install, etc.

5. Deploy to Netlify

Choose deployment type based on context:

Preview/Draft Deploy (default for existing sites):

npx netlify deploy

This creates a deploy preview with a unique URL for testing.

Production Deploy (for new sites or explicit production deployments):

npx netlify deploy --prod

This deploys to the live production URL.

Deployment process:

  1. CLI detects build settings (from netlify.toml or prompts user)
  2. Builds the project locally
  3. Uploads built assets to Netlify
  4. Returns deployment URL

6. Report Results

After deployment, report to user:

  • Deploy URL: Unique URL for this deployment
  • Site URL: Production URL (if production deploy)
  • Deploy logs: Link to Netlify dashboard for logs
  • Next steps: Suggest netlify open to view site or dashboard

Handling netlify.toml

If a netlify.toml file exists, the CLI uses it automatically. If not, the CLI will prompt for:

  • Build command: e.g., npm run build, next build
  • Publish directory: e.g., dist, build, .next

Common framework defaults:

  • Next.js: build command npm run build, publish .next
  • React (Vite): build command npm run build, publish dist
  • Static HTML: no build command, publish current directory

The skill should detect framework from package.json if possible and suggest appropriate settings.

Example Full Workflow

# 1. Check authentication
npx netlify status

# If not authenticated:
npx netlify login

# 2. Link site (if needed)
# Try Git-based linking first
git remote show origin
npx netlify link --git-remote-url https://github.com/user/repo

# If no site exists, create new one:
npx netlify init

# 3. Install dependencies
npm install

# 4. Deploy (preview for testing)
npx netlify deploy

# 5. Deploy to production (when ready)
npx netlify deploy --prod

Error Handling

Common issues and solutions:

"Not logged in" → Run npx netlify login

"No site linked" → Run npx netlify link or npx netlify init

"Build failed" → Check build command and publish directory in netlify.toml or CLI prompts → Verify dependencies are installed → Review build logs for specific errors

"Publish directory not found" → Verify build command ran successfully → Check publish directory path is correct

Troubleshooting

Escalated Network Access

If 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.

Example guidance to the user:

The deploy needs escalated network access to deploy to Netlify. I can rerun the command with escalated permissions—want me to proceed?

Environment Variables

For secrets and configuration:

  1. Never commit secrets to Git
  2. Set in Netlify dashboard: Site Settings → Environment Variables
  3. Access in builds via process.env.VARIABLE_NAME

Tips

  • Use netlify deploy (no --prod) first to test before production
  • Run netlify open to view site in Netlify dashboard
  • Run netlify logs to view function logs (if using Netlify Functions)
  • Use netlify dev for local development with Netlify Functions

Reference

Bundled References (Load As Needed)

Files7
7 files · 26.0 KB

Select a file to preview

Overall Score

86/100

Grade

A

Excellent

Safety

82

Quality

89

Clarity

87

Completeness

85

Summary

This skill automates web project deployments to Netlify using the Netlify CLI. It guides agents through authentication, site linking, dependency installation, and deployment to preview or production environments, with framework detection and comprehensive error handling.

Static Analysis Findings

1 finding

Patterns detected by deterministic static analysis before AI scoring. Hover over any finding code for detailed information and remediation guidance.

Credential Exposure
SEC-020Direct .env File Access3x in 3 files

Direct .env file access

SKILL.md.env
references/cli-commands.md.env
references/deployment-patterns.md.env

Detected Capabilities

Netlify CLI authentication and status verificationSite linking by Git remote URL or interactive creationFramework detection (Next.js, React/Vite, static HTML, etc.)Build configuration detection and promptingPreview and production deployment orchestrationDependency installation (npm, yarn, pnpm)Error diagnosis and recovery guidanceEnvironment variable managementCustom domain and redirect configuration

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

deploy to netlifynetlify preview deploynetlify production deploylink netlify sitenetlify cli setupnetlify authenticationpublish to netlify

Risk Signals

INFO

References to .env file access for environment variable configuration

SKILL.md (Environment Variables section), references/cli-commands.md, references/deployment-patterns.md
INFO

API key/token environment variable (NETLIFY_AUTH_TOKEN) setup guidance

SKILL.md (Authentication Pattern section)
INFO

Guidance to set secrets via Netlify dashboard and environment variables

SKILL.md (Environment Variables section, Scenario 6 in deployment-patterns.md)

Referenced Domains

External domains referenced in skill content, detected by static analysis.

507f1f77bcf86cd799439011-my-app.netlify.appapi.example.comapp.netlify.comdocs.netlify.comexample.comgithub.comwww.apache.org

Use Cases

  • Deploy a new web project to Netlify for the first time
  • Deploy preview/draft versions of changes for testing before production
  • Link an existing Git repository to a Netlify site
  • Deploy production updates to a live Netlify site
  • Configure framework-specific build settings and deployment contexts

Quality Notes

  • Excellent documentation structure with clear workflow steps (6 distinct phases from authentication to reporting)
  • Comprehensive decision trees and scenario-based guidance (7 deployment scenarios covering common use cases)
  • Strong error handling documentation with common issues, solutions, and exit codes
  • Good framework-specific examples (Next.js, React/Vite, Vue, Astro, SvelteKit)
  • Well-structured reference files with CLI command taxonomy, deployment patterns, and netlify.toml configuration guide
  • Authentication pattern explicitly documents both OAuth (primary) and API key (alternative) approaches
  • Network escalation guidance included for sandbox permission issues
  • Security best practice documented: 'Never commit secrets to Git'
  • Clear warnings about testing with preview deploys before production
  • Monorepo support and base directory configuration documented
  • All referenced bundled files (cli-commands.md, deployment-patterns.md, netlify-toml.md) are present and substantive
  • Agent configuration (openai.yaml) properly maps display name, icons, and default prompt
Model: claude-haiku-4-5-20251001Analyzed: Apr 5, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Add openai/netlify-deploy to your library

Command Palette

Search for a command to run...