Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
netlify avatar

Netlify Deploy

  • 1.5k installs
  • 31 repo stars
  • Updated August 4, 2026
  • netlify/context-and-tools

This is a copy of netlify-deploy by openai - installs and ranking accrue to the original listing.

Netlify Deploy is a deployment agent skill that publishes web projects to Netlify using the Netlify CLI for developers who want preview and production deploys directly from Cursor or Claude Code without manual dashboard

About

Netlify Deploy is a context-and-tools agent skill that automates Netlify hosting via npx netlify CLI commands. It verifies CLI authentication, detects project configuration and framework, links repositories to existing sites or creates new ones, and deploys to production or preview environments. Prerequisites include Netlify CLI available through npx without global install. Developers reach for Netlify Deploy when asked to deploy, host, publish, or link a site or repo on Netlify—including preview deploys for pull requests and production releases—keeping the entire workflow inside Claude Code or Cursor sessions.

  • Verifies Netlify CLI authentication status automatically
  • Detects project configuration and framework before deploy
  • Links to existing Netlify sites or creates new ones on demand
  • Supports both production and preview deployments
  • Uses pre-authenticated Netlify CLI with graceful failure handling

Netlify Deploy by the numbers

  • 1,529 all-time installs (skills.sh)
  • +138 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/netlify/context-and-tools --skill netlify-deploy

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.5k
repo stars31
Last updatedAugust 4, 2026
Repositorynetlify/context-and-tools

How do you deploy a web project to Netlify from the editor?

Automate deploying web projects to Netlify directly from Cursor or Claude Code without leaving the editor.

Who is it for?

Developers shipping static sites or Jamstack apps who want Netlify preview and production deploys via CLI without leaving Claude Code or Cursor.

Skip if: Developers deploying to non-Netlify platforms or projects needing complex multi-service backend orchestration beyond Netlify hosting.

When should I use this skill?

The user asks to deploy, host, publish, or link a site or repository on Netlify including preview or production deploys.

What you get

Netlify preview or production deploy URLs, linked site configuration, and published hosted web artifacts.

  • deploy URLs
  • linked site config
  • published web artifacts

Files

SKILL.mdMarkdownGitHub ↗

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
  • Network access: Deployment requires outbound network calls. If sandboxing blocks these, the agent may need to request elevated permissions or prompt the user.
  • Timeouts: Deployments can take a few minutes. Use appropriate timeout values for CLI commands.

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

2. Detect Site Link Status

From netlify status output, determine:

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

3. Link to Existing Site or Create New

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

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

  • Netlify CLI Docs: https://docs.netlify.com/cli/get-started/
  • netlify.toml Reference: https://docs.netlify.com/build/configure-builds/file-based-configuration/

References

  • CLI commands
  • Deployment patterns
  • netlify.toml guide

Related skills

How it compares

Pick Netlify Deploy for in-editor Netlify CLI workflows; use platform-specific CI YAML when deploy orchestration must run entirely in GitHub Actions or similar pipelines.

FAQ

How does Netlify Deploy run the Netlify CLI?

Netlify Deploy uses npx netlify so the CLI runs without a global install, verifying authentication, detecting framework configuration, and executing preview or production deploys from the agent session.

What deploy types does Netlify Deploy support?

Netlify Deploy handles linking to existing Netlify sites or creating new ones, then publishing to preview environments for branch testing or production for live releases.

DevOps & CI/CDdeployinfra

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.