Agent skill · DevOps & Cloud

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. Do NOT use for deploying to Vercel, Cloudflare, or Render (use their respective skills).

tech-leads-clubgithub.com/tech-leads-clubGitHub ↗
claude-codecopilotcursorNOASSERTION
Install
npx skills add tech-leads-club/agent-skills --skill netlify-deploy --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 5
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.0.0
Declared author: github.com/openai/skills
Path: packages/skills-catalog/skills/(cloud)/netlify-deploy/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 4,983
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 `N

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Authentication Pattern
  4. Workflow
  5. 1. Verify Netlify CLI Authentication
  6. 2. Detect Site Link Status
  7. 3. Link to Existing Site or Create New
  8. 4. Verify Dependencies
  9. 5. Deploy to Netlify
  10. 6. Report Results
  11. Handling netlify.toml
  12. Example Full Workflow
  13. Error Handling
  14. Troubleshooting
Ships with 4 files
  • LICENSE.txt
  • references/cli-commands.md
  • references/deployment-patterns.md
  • references/netlify-toml.md
Commands it runs
npx netlify status
npx netlify login
export NETLIFY_AUTH_TOKEN=your_token_here
Check if project is Git-based
git remote show origin
If Git-based, extract remote URL
Try to link by Git remote
npx netlify link --git-remote-url <REMOTE_URL>
Create new site interactively
npx netlify init
More from agent-skills
All skills →
About this skill
What does the netlify-deploy skill do?

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. Do NOT use for deploying to Vercel, Cloudflare, or Render (use their respective skills).

How do I install it?

Run `npx skills add tech-leads-club/agent-skills --skill netlify-deploy --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From tech-leads-club/agent-skills, a repository with 4,983 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going